-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.2 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "yato-mini-cli",
"version": "0.0.10",
"description": "taro min ci",
"main": "src/index.js",
"bin": {
"yato-mini-cli": "./bin/cli.js"
},
"scripts": {
"dev": "rollup -w -c",
"build": "rollup -c",
"prepare": "husky install",
"gitpush": "branch_name=$(git symbolic-ref --short -q HEAD) && git push origin $branch_name",
"commit": "git add . && git-cz && yarn gitpush",
"changelog": "conventional-changelog -p -i CHANGELOG.md -s -r 0",
"pub": "yarn build && npm version patch && npm publish --access=public",
"test": "standard-version --tag-prefix stable-"
},
"engines": {
"node": ">=v12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssdmtank/yato-mini-cli.git"
},
"author": "King Win",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssdmtank/yato-mini-cli/issues"
},
"homepage": "https://github.com/ssdmtank/yato-mini-cli#readme",
"keywords": [
"gitlab",
"wechat",
"miniprogram",
"taro",
"ci",
"deploy"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.0.0",
"cross-spawn": "^7.0.3",
"dayjs": "^1.10.8",
"form-data": "^4.0.0",
"miniprogram-ci": "^1.8.0",
"node-fetch": "2",
"ora": "^5.0.0",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/cz-commitlint": "^16.2.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.9.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"rollup": "^2.68.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"standard-version": "^9.3.2"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}