1 | {
|
2 | "name": "zoid",
|
3 | "version": "7.0.28",
|
4 | "description": "Cross domain components.",
|
5 | "main": "index.js",
|
6 | "scripts": {
|
7 | "setup": "npm install && npm run flow-typed",
|
8 | "demo": "serve . -l 1337",
|
9 | "lint": "eslint src/ test/ *.js",
|
10 | "flow-typed": "rm -rf ./flow-typed && flow-typed install",
|
11 | "flow": "flow",
|
12 | "flow:build": "flow gen-flow-files ./src/index.js --out-dir ./dist/module",
|
13 | "karma": "cross-env NODE_ENV=test babel-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/karma start",
|
14 | "babel": "babel src/ --out-dir dist/module",
|
15 | "webpack": "babel-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/webpack --progress",
|
16 | "test": "npm run lint && npm run flow-typed && npm run flow && npm run karma",
|
17 | "build": "npm run test && npm run babel && npm run webpack",
|
18 | "release": "./publish.sh",
|
19 | "release:patch": "./publish.sh patch",
|
20 | "release:minor": "./publish.sh minor",
|
21 | "release:major": "./publish.sh major",
|
22 | "clean": "rimraf dist coverage",
|
23 | "reinstall": "rimraf flow-typed && rimraf node_modules && npm install && flow-typed install",
|
24 | "debug": "cross-env NODE_ENV=debug"
|
25 | },
|
26 | "repository": {
|
27 | "type": "git",
|
28 | "url": "git://github.com/krakenjs/zoid.git"
|
29 | },
|
30 | "keywords": [
|
31 | "cross-domain",
|
32 | "cross domain",
|
33 | "components",
|
34 | "component",
|
35 | "krakenjs",
|
36 | "kraken"
|
37 | ],
|
38 | "licenses": [
|
39 | {
|
40 | "type": "Apache 2.0",
|
41 | "url": "http://www.apache.org/licenses/LICENSE-2.0.html"
|
42 | }
|
43 | ],
|
44 | "files": [
|
45 | "dist/",
|
46 | "src/",
|
47 | "globals.js"
|
48 | ],
|
49 | "readmeFilename": "README.md",
|
50 | "devDependencies": {
|
51 | "flow-bin": "^0.76",
|
52 | "grumbler-scripts": "^2.0.19",
|
53 | "mocha": "^4",
|
54 | "serve": "^10.0.0"
|
55 | },
|
56 | "dependencies": {
|
57 | "cross-domain-safe-weakmap": "^1.0.19",
|
58 | "cross-domain-utils": "^2.0.3",
|
59 | "jsx-pragmatic": "^1.0.7",
|
60 | "post-robot": "^9",
|
61 | "zalgo-promise": "^1.0.22"
|
62 | }
|
63 | }
|