-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.61 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "upm.js",
"version": "0.0.5",
"description": "upm包管理工具",
"main": "dist/index.js",
"bin": {
"upm": "./bin/upm"
},
"scripts": {
"server": "tsc --watch",
"release": "node release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zwmmm/upm.js.git"
},
"keywords": [
"umd",
"cdn",
"包管理"
],
"author": "wayne",
"license": "ISC",
"bugs": {
"url": "https://github.com/zwmmm/upm.js/issues"
},
"homepage": "https://github.com/zwmmm/upm.js#readme",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.0.0",
"compressing": "^1.5.1",
"enquirer": "^2.3.6",
"progress": "^2.0.3",
"qiniu": "^7.3.2",
"request": "^2.88.2",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/node": "^14.0.27",
"conventional-changelog-cli": "^2.0.34",
"execa": "^4.0.3",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"semver": "^7.3.2",
"typescript": "^3.9.7"
},
"files": [
"dist",
"bin",
"package.json"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"fix",
"feat",
"release",
"docs",
"style",
"test",
"revert",
"refactor"
]
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}