-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 782 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 782 Bytes
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
{
"name": "node-bluefox-cli",
"version": "0.3.5",
"description": "node.js project generator",
"main": "./dist/index.js",
"bin": {
"bluefox": "./bin/start.js"
},
"scripts": {
"clean": "gulp clean",
"prod": "gulp",
"dev": "gulp debug",
"lint": "gulp eslint",
"depend": "gulp depend"
},
"author": "yangxu",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"del": "^3.0.0",
"eslint": "^4.16.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-eslint": "^4.0.2",
"gulp-sourcemaps": "^2.6.1",
"mocha": "^5.0.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"co": "^4.6.0"
}
}