This repository was archived by the owner on Aug 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.37 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
50
51
52
53
54
55
56
57
58
59
{
"name": "@youngjuning/cli",
"version": "1.2.2",
"description": "又一个 Node Cli 工具",
"bin": {
"youngjuning": "./bin/cli.js"
},
"scripts": {
"postversion": "git push --tags && git push && npm publish && npm install -g @youngjuning/cli",
"commit": "git cz",
"pkg": "pkg . --out-path ./dist --options max_old_space_size=4096"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/youngjuning/cli",
"repository": {
"type": "git",
"url": "https://github.com/youngjuning/cli.git"
},
"author": {
"name": "杨俊宁",
"url": "https://youngjuning.js.org",
"email": "1003719811@qq.com"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.0.1",
"exec-sh": "^0.3.4",
"global-prefix": "^3.0.0",
"handlebars": "^4.5.3",
"inquirer": "^7.0.1",
"ncp": "^2.0.0",
"ora": "^4.0.3",
"recursive-readdir": "^2.2.2",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"commitizen": "^4.2.2",
"commitlint-config-cz": "^0.13.2",
"cz-customizable": "^6.3.0",
"husky": "^4.3.0",
"pkg": "^4.4.9"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"pkg": {
"scripts": "bin/**/*.js"
}
}