forked from nodejs/core-validate-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "core-validate-commit",
"version": "3.13.1",
"description": "Validate the commit message for a particular commit in node core",
"main": "index.js",
"scripts": {
"pretest": "lintit && check-pkg",
"test": "tap -j4 --cov test/**/*.js test/*.js",
"posttest": "tap --coverage-report=text-summary",
"test-ci": "npm run test -- --coverage-report=lcov"
},
"dependencies": {
"chalk": "^3.0.0",
"gitlint-parser-node": "^1.1.0",
"help": "^3.0.2",
"nopt": "^4.0.1"
},
"devDependencies": {
"check-pkg": "^2.1.1",
"lintit": "^7.2.1",
"tap": "^14.10.2"
},
"files": [
"lib/",
"bin/",
"index.js"
],
"license": "MIT",
"bin": {
"core-validate-commit": "./bin/cmd.js"
},
"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"
}
}