forked from boosterfuels/hostage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.17 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
56
{
"name": "hostage",
"version": "0.1.3",
"description": "Run commands on a hosting server in response to Git(Hub/Lab) webhooks",
"keywords": [
"hosting",
"github",
"gitlab",
"nodejs",
"webhooks"
],
"homepage": "https://github.com/diegonetto/hostage",
"bugs": "https://github.com/diegonetto/hostage/issues",
"author": {
"name": "Diego Netto",
"email": "diegormnetto@gmail.com",
"url": "https://github.com/diegonetto"
},
"main": "lib",
"repository": {
"type": "git",
"url": "git@github.com:diegonetto/hostage.git"
},
"bin": {
"hostage": "bin/hostage"
},
"preferGlobal": true,
"scripts": {
"test": "mocha"
},
"dependencies": {
"async": "^0.9.0",
"body-parser": "^1.9.2",
"express": "^4.10.1",
"forever": "^0.12.0",
"fs-extra": "^0.12.0",
"lodash": "^2.4.1",
"yargs": "^1.3.2"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-conventional-changelog": "^1.1.0",
"grunt-release": "^0.7.0",
"load-grunt-tasks": "^1.0.0",
"semver": "^4.1.0"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"licenses": [
{
"type": "MIT"
}
]
}