-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
51 lines (51 loc) · 1.07 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
{
"name": "git-scripts",
"version": "0.6.4",
"description": "Git hooks integration for Node.js projects",
"main": "index.js",
"scripts": {
"test": "make test",
"build": "make build",
"postinstall": "node bin/install",
"postupdate": "node bin/install",
"preuninstall": "node bin/uninstall"
},
"bin": {
"git-scripts": "bin/git-scripts"
},
"keywords": [
"git",
"hooks",
"npm",
"scripts"
],
"author": "Naoyuki Kanezawa <[email protected]>",
"contributors": [
"Huan LI (李卓桓) <[email protected]> (https://github.com/huan)"
],
"license": "MIT",
"dependencies": {
"commander": "2.6.0"
},
"devDependencies": {
"chai": "~1.10.0",
"git-scripts": "latest",
"mktmpdir": "~0.1.1",
"mocha": "~2.1.0",
"rimraf": "~2.2.8",
"shelljs": "^0.8.3"
},
"repository": {
"type": "git",
"url": "git://github.com/nkzawa/git-scripts.git"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"git": {
"scripts": {
"pre-push": "node scripts/pre-push.js"
}
}
}