-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 927 Bytes
/
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
{
"name": "gitcut",
"version": "1.14.2",
"description": "Shortcuts for git",
"main": "index.js",
"repository": "dingff/gitcut",
"bin": {
"gt": "./bin/index"
},
"scripts": {
"release": "release-it --only-version",
"prepare": "husky"
},
"keywords": [
"git",
"npm",
"node",
"shortcut",
"submit",
"query"
],
"author": "dingff",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"inquirer": "^8.2.6",
"ora": "^5.4.1"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@release-it/conventional-changelog": "^5.1.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"release-it": "^15.7.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}