-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 961 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 961 Bytes
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
{
"name": "core-validate-commit",
"version": "3.11.0",
"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"
},
"dependencies": {
"chalk": "~1.1.1",
"fuzzyset.js": "^0.0.8",
"gitlint-parser-node": "^1.1.0",
"help": "^2.1.3",
"nopt": "^3.0.6"
},
"devDependencies": {
"check-pkg": "^2.0.2",
"lintit": "^6.0.1",
"tap": "^12.0.1"
},
"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"
}
}