-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.13 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
82
83
84
85
86
87
{
"name": "@wchenonly/git-commit-tool",
"type": "module",
"version": "1.1.35",
"packageManager": "[email protected]",
"description": "use an interactive approach to help you generate standard submission messages",
"author": "wChenonly",
"license": "MIT",
"homepage": "https://github.com/wChenonly/git-commit-tool#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wChenonly/git-commit-tool.git"
},
"bugs": {
"url": "https://github.com/wChenonly/git-commit-tool/issues"
},
"keywords": [
"git",
"commit",
"tool",
"gerrit",
"cli",
"push",
"commit-message",
"npm",
"git-emoji"
],
"bin": {
"commit": "bin/index.js"
},
"files": [
"bin",
"es"
],
"scripts": {
"changelog": "conventional-changelog -p custom-config -i CHANGELOG.md -s -r 0",
"dev": "nodemon -w './src/**/*.ts' -e .ts -x tsx ./build.ts",
"build": "rm -rf es && tsx ./build.ts",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"cac": "^6.7.14",
"execa": "^8.0.1",
"kleur": "^4.1.5",
"open": "^10.1.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.3",
"@types/node": "^20.11.29",
"bumpp": "^9.4.0",
"conventional-changelog": "^5.1.0",
"conventional-changelog-cli": "^4.1.0",
"conventional-changelog-custom-config": "^0.3.1",
"esbuild": "^0.20.2",
"nano-staged": "^0.8.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.11.0",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"nano-staged": {
"*.{ts,tsx,js,jsx,vue}": "eslint . --fix",
"*.{ts,tsx,js,jsx,vue,less,css,md}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"changelog": {
"authorName": true,
"authorEmail": false
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}