-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 949 Bytes
/
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
{
"name": "artd-cli",
"version": "0.1.0",
"description": "前端项目构建工具",
"main": "./bin/artd.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint bin/ lib/ --ext .js --ignore-pattern public --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"lint"
],
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.9.0",
"fs-extra": "^4.0.2",
"inquirer": "^6.2.0"
},
"bin": {
"artd": "./bin/artd.js"
},
"author": "artdong",
"license": "MIT",
"devDependencies": {
"cssnano": "^3.10.0",
"directory-copy": "^0.1.0",
"eslint": "^6.7.2",
"mock2easynew": "^0.0.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"pre-commit": "^1.2.2",
"uglifyjs-webpack-plugin": "^1.1.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.5"
},
"keywords": [
"cli",
"项目构建",
"构建工具"
]
}