-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.03 KB
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
{
"name": "le-cli",
"version": "0.2.5",
"description": "前端项目构建实践",
"main": "./main/bin/le.js",
"directories": {
"lib": "lib"
},
"repository": "https://github.com/yanlele/le-cli",
"scripts": {
"prepare": "npm run build",
"type-check": "tsc",
"commit": "git-cz",
"build": "tsc"
},
"bin": {
"tpm-cli": "./main/bin/le.js"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "yanle 331393627@qq.com",
"license": "ISC",
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.11.0",
"download-git-repo": "^1.1.0",
"fs-extra": "^4.0.2",
"inquirer": "^6.2.0",
"ora": "^3.4.0",
"request": "^2.88.0",
"typescript": "^3.4.5",
"user-home": "^2.0.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^5.0.5",
"@types/node": "^11.13.8",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0"
},
"keywords": [
"cli",
"项目构建",
"构建工具"
]
}