-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 883 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 883 Bytes
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
{
"name": "commitrix",
"version": "0.5.1",
"description": "Git commit quality linter",
"main": "src/index.js",
"bin": {
"commitrix": "src/index.js"
},
"scripts": {
"test": "node test/test.js",
"install-hook": "node src/install-hook.js",
"postinstall": "node src/install-hook.js",
"prepublishOnly": "npm test"
},
"keywords": [
"git",
"commit",
"linter"
],
"author": "zmelliti",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zmelliti/commitrix.git"
},
"homepage": "https://github.com/zmelliti/commitrix#readme",
"bugs": {
"url": "https://github.com/zmelliti/commitrix/issues"
},
"files": [
"src/",
"README.md",
"package-lock.json"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^14.0.1",
"inquirer": "^12.9.6"
}
}