forked from shaozj/silk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.73 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
123
124
125
126
127
128
129
130
131
132
133
{
"name": "silki",
"version": "0.1.5",
"description": "Cli tool for build react app, based on generator-react-multipage, create-react-app, roadhog.",
"bin": {
"silk": "./bin/silk.js"
},
"keywords": [
"silk",
"generator-react-multipage",
"roadhog",
"react",
"cli",
"create-react-app",
"webpack"
],
"authors": [
"ShaoZhenjiang <[email protected]> (https://github.com/shaozj)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shaozj/silk/issues"
},
"files": [
"bin",
"src",
"lib"
],
"scripts": {
"build": "rimraf lib && babel src --out-dir lib --ignore=generator/* && cp -r src/generator lib/generator",
"lint": "eslint --ext .js src",
"test": "npm run lint && npm run build && cross-env NODE_ENV=test nyc mocha --no-timeouts test/**/*-test.js",
"debug": "cross-env NODE_ENV=test mocha --require babel-register --no-timeouts test/**/*-test.js",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": true,
"instrument": false
},
"dependencies": {
"acorn": "^4.0.3",
"atool-monitor": "^0.3.4",
"autoprefixer": "^6.5.4",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-require": "^3.0.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"case-sensitive-paths-webpack-plugin": "^1.1.4",
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"commander": "^2.9.0",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"cross-spawn": "^5.0.1",
"css-loader": "^0.26.1",
"detect-port": "^1.0.7",
"escodegen": "^1.8.1",
"esformatter": "^0.9.6",
"esprima": "^3.1.1",
"esprima-walk": "^0.1.0",
"explain-error": "^1.0.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"filesize": "^3.3.0",
"fs-extra": "^1.0.0",
"generator-react-multipage": "^0.1.13",
"glob": "^7.1.1",
"gzip-size": "^3.0.0",
"happypack": "^3.0.2",
"html-webpack-plugin": "~2.24.1",
"http-proxy-middleware": "^0.17.3",
"is-plain-object": "^2.0.1",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"jsonpath": "^0.2.7",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^3.2.0",
"parse-json-pretty": "^0.1.0",
"postcss": "^5.2.6",
"postcss-loader": "^1.2.0",
"react-dev-utils": "^0.4.2",
"recursive-readdir": "^2.1.0",
"shelljs": "^0.7.6",
"strip-ansi": "^3.0.1",
"strip-json-comments": "^2.0.1",
"style-loader": "^0.13.1",
"system-bell-webpack-plugin": "^1.0.0",
"underscore.string": "^3.2.2",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-visualizer-plugin": "^0.1.6",
"yargs": "^6.5.0",
"yeoman-generator": "^0.24.0",
"yeoman-welcome": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"chai": "^3.2.0",
"coveralls": "^2.11.12",
"cross-env": "^3.1.4",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"expect": "^1.20.2",
"fs-extra": "^0.30.0",
"got": "^6.7.1",
"husky": "^0.11.9",
"istanbul": "^0.4.5",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"postcss-pxtorem": "^3.3.1",
"rimraf": "^2.5.4",
"yeoman-assert": "^2.1.1",
"yeoman-test": "^1.0.0"
}
}