-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 KB
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
{
"name": "github-webhooks-listener",
"version": "0.2.0",
"description": "A module to listen to github hooks and to update and deploy project when push event occurs",
"main": "index.js",
"scripts": {
"test": "grunt test",
"start": "forever start index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiddus/github-webhooks-listener.git"
},
"keywords": [
"git",
"hooks",
"deploy",
"automation",
"devops"
],
"author": "Vinicius Teixeira",
"license": "MIT",
"bugs": {
"url": "https://github.com/fiddus/github-webhooks-listener/issues"
},
"homepage": "https://github.com/fiddus/github-webhooks-listener#readme",
"dependencies": {
"async": "^1.4.2",
"body-parser": "^1.13.3",
"express": "^4.13.3",
"inquirer": "^0.9.0",
"secure-compare": "^3.0.1",
"shelljs": "^0.5.3"
},
"devDependencies": {
"chai": "^3.2.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.3",
"grunt-jscs": "^2.1.0",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.3.2",
"sinon": "^1.16.1"
},
"engines": {
"node": ">=6.0.0"
}
}