-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 901 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 901 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
{
"name": "validate-commit-message",
"version": "3.2.0",
"author": "Frederik Krautwald",
"description": "GIT COMMIT-MSG hook for validating commit message.",
"license": "Unlicense",
"bugs": "https://github.com/Frikki/validate-commit-message/issues",
"repository": {
"type": "git",
"url": "https://github.com/Frikki/validate-commit-message"
},
"keywords": [
"git",
"message validation"
],
"bin": {
"validate-commit-msg": "./bin/validate-commit-msg.js"
},
"dependencies": {},
"devDependencies": {
"cli-release": "1.0.4"
},
"scripts": {
"hook": "ln -s ../../lib/validate-commit-msg.js .git/hooks/commit-msg",
"prehook": "rm -f .git/hooks/commit-msg",
"posthook": "chmod +x .git/hooks/commit-msg",
"start": "npm install && npm run hook",
"patch": "release patch",
"minor": "release minor",
"major": "release major"
}
}