-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "core-validate-commit",
"version": "4.1.0",
"description": "Validate the commit message for a particular commit in node core",
"main": "index.js",
"type": "module",
"scripts": {
"pretest": "standard && check-pkg",
"test": "c8 tap -j4 --no-coverage test/**/*.js test/*.js",
"test-ci": "npm run test && c8 report --reporter=lcov"
},
"dependencies": {
"chalk": "^5.2.0",
"gitlint-parser-node": "^1.1.0",
"nopt": "^7.0.0"
},
"devDependencies": {
"c8": "^7.13.0",
"check-pkg": "^2.1.1",
"standard": "^17.0.0",
"tap": "^16.3.4"
},
"files": [
"lib/",
"bin/",
"index.js"
],
"license": "MIT",
"bin": {
"core-validate-commit": "./bin/cmd.js"
},
"engines": {
"node": "^18.18.0 || >=20.10.0"
},
"author": "Evan Lucas <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/nodejs/core-validate-commit"
},
"homepage": "https://github.com/nodejs/core-validate-commit",
"bugs": {
"url": "https://github.com/nodejs/core-validate-commit/issues"
}
}