forked from severnway/sevenrules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
46
47
48
49
50
51
52
{
"name": "@romeovs/sevenrules",
"version": "1.4.11",
"description": "Git commit message validator",
"homepage": "https://github.com/romeovs/sevenrules",
"bugs": "https://github.com/severnway/romeovs/issues",
"repository": "git:https://github.com/romeovs/sevenrules.git",
"license": "SEE LICENSE IN LICENSE",
"authors": [
"Romeo Van Snick <[email protected]>"
],
"main": "dist/lib.js",
"bin": {
"sevenrules": "dist/sevenrules.js"
},
"files": [
"dist/husky.js",
"dist/lib.js"
],
"scripts": {
"docs": "jsdoc -c .jsdoc.json",
"lint": "eslint src *.js",
"test": "ava --verbose src/**/*_test.js src/*_test.js",
"build": "rollup -c",
"prepublish": "rollup -c"
},
"husky": {
"hooks": {
"commit-msg": "node ./dist/sevenrules.js",
"pre-push": "concurrently npm:lint npm:test"
}
},
"ava": {
"require": [
"esm"
]
},
"devDependencies": {
"ava": "0",
"babel-eslint": "^10.0.3",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"esm": "^3.2.25",
"husky": "^4.2.1",
"jsdoc": "^3.6.3",
"package.json": "^2.0.1",
"rollup": "^1.30.1",
"rollup-plugin-hashbang": "^2.2.2",
"sinon": "^8.1.1"
}
}