-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
39 lines (39 loc) · 964 Bytes
/
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
{
"name": "gith",
"description": "gith[ooks] - a simple node server that responds to github post-receive events with meaningful data",
"version": "1.0.4",
"homepage": "https://github.com/danheberden/gith",
"author": {
"name": "Dan Heberden",
"email": "[email protected]",
"url": "http://danheberden.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/danheberden/gith.git"
},
"bugs": {
"url": "https://github.com/danheberden/gith/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/danheberden/gith/blob/master/LICENSE-MIT"
}
],
"main": "lib/gith",
"engines": {
"node": ">0.6.12"
},
"scripts": {
"test": "./node_modules/.bin/grunt test"
},
"dependencies": {
"eventemitter2" : ">= 0.4.9" ,
"lodash": ">= 0.3.2"
},
"devDependencies": {
"grunt": "~0.3.14"
},
"keywords": [ "github", "payload", "git hook", "post-receive" ]
}