forked from linpengteng/cz-message-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.81 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
{
"name": "cz-message-helper",
"version": "1.3.1",
"description": "A commit message helper for commitizen",
"license": "MIT",
"author": "lin pengteng <[email protected]>",
"main": "./index.cjs",
"files": [
"src/config.en.js",
"src/config.cn.js",
"index.cjs"
],
"keywords": [
"cz-customizable",
"commit-message",
"commitlint",
"commitizen"
],
"scripts": {
"build": "shx rm -rf dist && rollup --config rollup.config.cjs",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linpengteng/cz-message-helper.git"
},
"bugs": {
"url": "https://github.com/linpengteng/cz-message-helper/issues"
},
"dependencies": {
"find-config": "^1.0.0",
"inquirer": "^9.2.12",
"rimraf": "^5.0.5",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/pluginutils": "^5.1.0",
"@types/eslint": "^8.56.0",
"@types/find-config": "^1.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"release-it": "^17.0.1",
"rollup": "^4.9.2",
"shx": "^0.3.4",
"typescript": "^5.3.3"
},
"config": {
"cz-message-helper": {
"config": ".cz-message.en.js"
},
"commitizen": {
"path": "./index.cjs"
}
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7"
}
}