-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 791 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 791 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
{
"name": "fe-cli",
"version": "1.0.0",
"description": "前端开发脚手架",
"private": true,
"main": "index.js",
"bin": {
"my-fe": "./src/bin/index.js"
},
"scripts": {
"dev": "node ./bulid.js --dev",
"build": "node ./build.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "axuebin",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"chalk": "^2.4.2",
"commander": "^3.0.0",
"download-git-repo": "^3.0.2",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.0",
"ora": "^3.4.0",
"semver": "^6.3.0",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"eslint": "^6.3.0",
"rollup": "^1.20.2"
}
}