-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "sevenrules",
"version": "1.1.4",
"description": "Git commit message validator",
"homepage": "https://github.com/severndb/sevenrules",
"bugs": "https://github.com/severndb/sevenrules/issues",
"license": "SEE LICENSE IN LICENSE",
"main": "lib/index",
"bin": {
"sevenruleshusky": "bin/husky.js"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/severndb/sevenrules.git"
},
"scripts": {
"ava": "ava --verbose",
"doc": "npm-run-all docjs",
"docjs": "jsdoc -c jsdoc.json",
"lint": "npm-run-all lintjs",
"lintjs": "standard --verbose | snazzy",
"localtest": "npm-run-all unittest",
"precommit": "npm-run-all lint doc localtest",
"unittest": "npm-run-all unittestjs",
"unittestjs": "ava --verbose test/unit"
},
"devDependencies": {
"ava": ">=0.23.0",
"husky": "beta",
"jsdoc": ">=3.5.5",
"mock-require": ">=2.0.2",
"npm-run-all": ">=4.1.1",
"sinon": ">=4.0.2",
"snazzy": "^7.0.0",
"standard": ">=10.0.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}