forked from krakenjs/zoid-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.14 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "xcomponent-demo",
"version": "1.0.1",
"description": "Javascript module template.",
"main": "index.js",
"module": "dist/module/index.js",
"scripts": {
"lint": "eslint src/ test/ *.js",
"flow-typed": "flow-typed install",
"flow": "flow",
"demo": "echo 'Navigate to http://localhost:1337/demo/iframe/index.htm or http://localhost:1337/demo/popup/index.htm' && serve . --port 1337 --silent",
"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 && npm run karma",
"build": "npm run test && npm run babel && 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",
"postinstall": "flow-typed install",
"debug": "cross-env NODE_ENV=debug"
},
"files": [
"dist/",
"src/"
],
"browserslist": [
"IE >= 9",
"chrome >= 27",
"firefox >= 30",
"safari >= 5",
"opera >= 23"
],
"repository": {
"type": "git",
"url": "git://github.com/krakenjs/xcomponent-demo.git"
},
"keywords": [
"template"
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"readmeFilename": "README.md",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.7.7",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-flow-runtime": "^0.11.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-for-of": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.0.1",
"circular-dependency-plugin": "^4.2.0",
"cross-env": "^5.0.5",
"eslint": "^4",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-compat": "^2.0.1",
"eslint-plugin-const-immutable": "^2.0.0",
"eslint-plugin-eslint-comments": "^1.0.3",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^2.1.2",
"flow-bin": "0.56.0",
"flow-runtime": "^0.14.0",
"flow-typed": "^2.2.0",
"ifdef-loader": "^2.0.3",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-commonjs": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.3",
"lolex": "^2.1.2",
"mocha": "^4.0.1",
"phantomjs-prebuilt": "^2.1.7",
"querystring": "^0.2.0",
"raw-loader": "^0.5.1",
"serve": "^6.2.0",
"sinon": "^4.0.1",
"sinon-chai": "^2.8.0",
"text-loader": "0.0.1",
"uglify-js": "3.1.3",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^3.5.5",
"webpack-stream": "^4.0.0",
"yargs": "^9.0.1"
},
"dependencies": {
"xcomponent": "^6.0.8"
}
}