forked from nodejs/core-validate-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "core-validate-commit",
"version": "3.17.0",
"description": "Validate the commit message for a particular commit in node core",
"main": "index.js",
"scripts": {
"pretest": "standard && 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",
"standard": "^14.3.4",
"tap": "^14.10.2"
},
"files": [
"lib/",
"bin/",
"index.js"
],
"license": "MIT",
"bin": {
"core-validate-commit": "./bin/cmd.js"
},
"author": "Evan Lucas <evanlucas@me.com>",
"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"
}
}