-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
55 lines (55 loc) · 1.33 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
53
54
55
{
"name" : "grunt-githooks",
"description" : "A Grunt plugin to help bind Grunt tasks to Git hooks",
"version" : "0.6.0",
"license" : "MIT",
"homepage" : "https://github.com/wecodemore/grunt-githooks",
"contributors" : [
{
"name" : "Franz Josef Kaiser",
"email" : "[email protected]",
"url" : "http://unserkaiser.com"
},
{
"name" : "Romaric Pascal",
"url" : "http://rhumaric.com"
},
{
"name" : "Contributors on GitHub",
"url" : "https://github.com/wecodemore/grunt-githooks/graphs/contributors"
}
],
"bugs" : {
"url" : "https://github.com/wecodemore/grunt-githooks/issues"
},
"author" : {
"name" : "Romaric Pascal",
"url" : "http://rhumaric.com"
},
"repository" : "wecodemore/grunt-githooks",
"main" : "Gruntfile.js",
"engines" : {
"node" : ">= 0.10.0"
},
"scripts" : {
"test" : "grunt test"
},
"devDependencies" : {
"grunt-contrib-jshint" : "~0.6.0",
"grunt-contrib-clean" : "~0.4.0",
"grunt-contrib-nodeunit" : "~0.2.0",
"grunt" : "~0.4.1",
"grunt-contrib-copy" : "~0.4.1"
},
"peerDependencies" : {
"grunt" : ">=0.4.1"
},
"keywords" : [
"gruntplugin",
"git",
"hook"
],
"dependencies" : {
"handlebars" : "~1.0.12"
}
}