-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "mpj-cli",
"version": "1.1.12",
"description": "收集和管理项目模板的一个脚手架,方便快速引用",
"bin": {
"mpj-cli": "./bin/index.js"
},
"scripts": {
"trace": "node --trace-deprecation ./bin/index.js",
"link": "npm link",
"unlink": "npm uninstall -g mpj-cli",
"audit": "npm audit",
"whoami": "npm whoami",
"login": "npm login",
"check": "npm run whoami || npm login",
"preph": "npm config delete registry",
"ph": "npm run check && npm publish",
"postph": "npm config set registry=https://registry.npm.taobao.org",
"publish:patch": "npm version patch && npm run ph",
"publish:minor": "npm version minor && npm run ph",
"publish:major": "npm version major && npm run ph"
},
"keywords": [
"cli",
"project template"
],
"author": "muzhidong <be_your_best@163.com>",
"license": "ISC",
"repository": {
"url": "git+https://github.com/muzhidong/pj-cli.git"
},
"dependencies": {
"@colors/colors": "^1.5.0",
"async": "0.2.10",
"commander": "^7.0.0",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.3.0",
"mkdirp": "~0.5.1",
"ora": "^5.4.0",
"string-width": "^4.2.0",
"underscore": "^1.13.0"
},
"engines": {
"npm": ">=6.14.18"
}
}