-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "cpn-cli",
"version": "1.1.4",
"description": "一个提供快速引入各种前端框架编写的可复用组件的脚手架",
"bin": {
"cpn-cli": "./bin/index.js"
},
"scripts": {
"link": "npm link",
"unlink": "npm uninstall -g cpn-cli",
"audit": "npm audit",
"whoami": "npm whoami",
"login": "npm login",
"check": "npm run whoami || npm login",
"prepublish": "npm config delete registry",
"publish": "npm run check && npm publish",
"postpublish": "npm config set registry=https://registry.npm.taobao.org",
"publish:patch": "npm version patch && npm run publish",
"publish:minor": "npm version minor && npm run publish",
"publish:major": "npm version major && npm run publish"
},
"keywords": [
"cli",
"component"
],
"author": "muzhidong <[email protected]>",
"license": "ISC",
"dependencies": {
"@colors/colors": "1.5.0",
"string-width": "^4.2.0",
"commander": "^7.2.0",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.3.0",
"ora": "^5.4.0",
"underscore": "^1.13.0",
"async": "0.2.10",
"mkdirp": "~0.5.1"
},
"engines": {
"npm": "~9.3.0"
}
}