-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "mp-ci",
"version": "1.2.1",
"description": "微信小程序、小游戏CI工具。",
"main": "lib/index.js",
"bin": {
"mp-ci": "./bin/mp-ci.js"
},
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "magic-lint --staged --eslint --stylelint --prettier --fix",
"commit-msg": "magic-lint --commit"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ineo6/mp-ci.git"
},
"authors": [
"neo <[email protected]> (https://github.com/ineo6)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ineo6/mp-ci/issues"
},
"homepage": "https://github.com/ineo6/mp-ci#readme",
"keywords": [
"jenkins",
"wechat",
"miniprogram",
"minigame",
"ci",
"deploy"
],
"dependencies": {
"chalk": "^4.0.0",
"cli-table3": "^0.6.0",
"commander": "^5.1.0",
"miniprogram-ci": "^1.0.30",
"ora": "^4.0.4",
"simple-git": "^2.5.0"
},
"devDependencies": {
"eslint-config-magic": "^1.2.0",
"magic-lint": "^1.2.0",
"typescript": "^3.9.3"
}
}