-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 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
42
{
"name": "prepare-commit-msg-angular",
"version": "0.2.0",
"main": "index.js",
"bin": "index.js",
"engines" : {
"node" : ">=4.0"
},
"dependencies": {},
"devDependencies": {
"ghooks": "^1.0.1",
"validate-commit-msg": "^1.0.0"
},
"scripts": {},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg $2",
"prepare-commit-msg": "./index.js $2 $3"
}
},
"description": "Githook to prepare a commit message following Angular guidelines and display documentation about it",
"author": "Cédric Malard <[email protected]>",
"license": "MIT",
"keywords": [
"githook",
"prepare-commit-msg",
"commit",
"message",
"git",
"angular",
"guidelines",
"documentation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cmalard/prepare-commit-msg-angular.git"
},
"bugs": {
"url": "https://github.com/cmalard/prepare-commit-msg-angular/issues"
},
"homepage": "https://github.com/cmalard/prepare-commit-msg-angular#readme"
}