-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
{
"name": "commitrix",
"version": "0.5.1",
"description": "Git commit quality linter",
"main": "src/index.js",
"bin": {
"commitrix": "src/index.js"
},
"scripts": {
"test": "jest --coverage",
"install-hook": "node src/install-hook.js",
"postinstall": "node src/install-hook.js",
"prepare": "npm run install-hook",
"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"
},
"devDependencies": {
"jest": "^29.6.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": ["src/**/*.js"]
}
}