-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 747 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 747 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
{
"name": "prepush-hook",
"version": "0.1.0",
"description": "A useful pre-push hook for git based projects that lints and runs npm test",
"bin": {
"hook_install": "./bin/install",
"hook_uninstall": "./bin/uninstall",
"pre-push": "./bin/pre-push"
},
"scripts": {
"install": "hook_install",
"uninstall": "hook_uninstall"
},
"peerDependencies": {
"jshint": "~2.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/thadclay/prepush-hook.git"
},
"author": "Thaddaeus Clay <thadclay@gmail.com> (https://github.com/thadclay)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thadclay/prepush-hook/issues"
},
"homepage": "https://github.com/thadclay/prepush-hook"
}