generated from voxpelli/node-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "validate-conventional-commit",
"version": "1.0.5",
"description": "Smallest simplest conventional commit validator to use with eg Husky",
"homepage": "http://github.com/voxpelli/validate-conventional-commit",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/validate-conventional-commit.git"
},
"keywords": [
"husky",
"conventional-commit",
"commitlint",
"commit",
"git",
"commit-msg"
],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "0BSD",
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"bin": {
"validate-conventional-commit": "cli.js"
},
"files": [
"cli.js"
],
"scripts": {
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"check": "run-p check:*",
"prepare": "husky",
"test": "run-s check"
},
"devDependencies": {
"@types/node": "^16.18.123",
"@voxpelli/eslint-config": "^22.2.0",
"@voxpelli/tsconfig": "^15.1.0",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"npm-run-all2": "^7.0.2",
"typescript": "~5.7.2"
}
}