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