-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
159 lines (159 loc) · 4.58 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "bees-cli",
"version": "1.0.2",
"description": "A simple CLI for serve and build web app, support JSON pattern config.",
"bin": {
"bees": "./bin/bees"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thoughtbit/bees-cli.git"
},
"keywords": [
"bees",
"cli",
"react",
"vue",
"create-react-app",
"webpack"
],
"authors": [
"moocss <moocss@gmail.com> (https://github.com/moocss)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thoughtbit/bees-cli/issues"
},
"homepage": "https://github.com/thoughtbit/bees-cli#readme",
"files": [
"bin",
"src",
"lib",
".eslintrc"
],
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"bees:init": "node ./lib/cli/init.js",
"bees:server": "node ./lib/cli/server.js",
"bees:build": "node ./lib/cli/build.js",
"bees:build-dll": "node ./lib/cli/build-dll.js",
"bees:test": "node ./lib/cli/test.js",
"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",
"lint": "eslint --ext .js src",
"prepublish": "safe-publish-latest && npm run build",
"precommit": "npm run lint",
"pub": "npm publish && git push origin"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": true,
"instrument": false
},
"dependencies": {
"lodash.pullall": "^4.2.0",
"lodash.uniq": "^4.5.0",
"babel-core": "^6.24.1",
"babel-register": "^6.24.1",
"babel-loader": "6.4.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"bundle-loader": "^0.5.5",
"webpack": "^3.5.3",
"webpack-merge": "^4.1.0",
"webpack-dev-server": "^2.7.1",
"webpack-bundle-analyzer": "^2.4.0",
"webpack-uglify-parallel": "^0.1.3",
"webpack-md5-hash": "^0.0.5",
"case-sensitive-paths-webpack-plugin": "^1.1.4",
"copy-webpack-plugin": "^4.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"express-http-proxy": "^0.11.0",
"body-parser": "^1.17.2",
"system-bell-webpack-plugin": "^1.0.0",
"http-proxy-middleware": "^0.17.3",
"autoprefixer": "^7.1.1",
"file-loader": "^0.11.2",
"html-loader": "^0.4.5",
"url-loader": "^0.5.8",
"css-loader": "^0.28.4",
"style-loader": "^0.18.2",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"postcss": "^6.0.1",
"postcss-loader": "^1.3.3",
"vue-loader": "^12.2.1",
"vue-template-compiler": "^2.3.4",
"typescript": "^2.4.2",
"ts-loader": "^2.3.2",
"image-webpack-loader": "^3.3.1",
"npm-install-webpack-plugin-steamer": "^4.0.6",
"sw-precache-webpack-plugin": "^0.11.3",
"sw-register-webpack-plugin": "^1.0.6",
"webpack-manifest-plugin": "^1.1.0",
"react-dev-utils": "^3.0.0",
"object-assign": "4.1.1",
"promise": "7.1.1",
"whatwg-fetch": "2.0.3",
"mocha": "^3.2.0",
"istanbul": "^0.4.5",
"chalk": "^1.1.3",
"chokidar": "^1.7.0",
"cross-spawn": "4.0.2",
"filesize": "^3.3.0",
"gzip-size": "^3.0.0",
"fs-extra": "^2.1.2",
"glob": "^7.1.1",
"explain-error": "^1.0.3",
"parse-json-pretty": "^0.1.0",
"is-plain-object": "^2.0.3",
"recursive-readdir": "^2.1.0",
"strip-ansi": "^3.0.1",
"strip-json-comments": "^2.0.1",
"yargs": "8.0.1",
"download-git-repo": "^0.2.1",
"inquirer": "^0.12.0",
"rimraf": "^2.5.4",
"package-json": "^4.0.1",
"ora": "^1.2.0",
"uid": "0.0.2",
"minimatch": "^3.0.3",
"metalsmith": "^2.3.0",
"multimatch": "^2.1.0",
"handlebars": "^4.0.5",
"async": "^2.3.0",
"consolidate": "^0.14.5",
"validate-npm-package-name": "^3.0.0",
"read-metadata": "^1.0.0",
"request": "^2.67.0",
"semver": "^5.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"postcss-pxtorem": "^4.0.0",
"postcss-flexbugs-fixes": "3.0.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"cross-env": "^5.0.0",
"expect": "^1.20.2",
"got": "^6.7.1",
"husky": "^0.11.9",
"nyc": "^10.3.2",
"safe-publish-latest": "^1.1.1"
},
"engines": {
"node": ">=6.5.0"
}
}