-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (68 loc) · 1.74 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
{
"name": "webpack-regular",
"version": "1.0.0",
"description": "regularjs with webpack",
"main": "index.js",
"scripts": {
"webpack": "webpack",
"start": "webpack-dev-server --open --port 3000",
"jcm": "jsonc --watch --file es.js --ext .js",
"component": "node ./tools/component.js component --author AlexLiu --email havedrowned@163.com",
"remove": "node ./tools/component.js remove ",
"test": "node ./tools/test.js test ",
"cover": "cross-env NODE_ENV=test nyc mocha ./test/test.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"commander": "^2.11.0",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"json-commenter": "^1.0.2",
"mocha": "^4.0.1",
"mocha-loader": "^1.1.1",
"node-sass": "^4.5.3",
"nyc": "^11.3.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.1"
},
"keywords": [
"webpack",
"regular",
"start"
],
"author": "Alex Liu",
"license": "ISC",
"dependencies": {
"redux": "^3.7.2",
"regularjs": "^0.6.0-beta.7"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
}
}