forked from fiddus/github-webhooks-listener
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
{
"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",
"deployer": "node index.js",
"config": "node index.js --config",
"start": "export $(egrep -v '^#' .env | xargs -0)&& eval `ssh-agent` && ssh-add ~/.ssh/${SSH_KEY_NAME}; forever start index.js && tail -f ~/.forever/*.log",
"stop": "forever stop 0",
"stopall": "forever stopall",
"ls": "forever list"
},
"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",
"dotenv": "^7.0.0",
"express": "^4.13.3",
"forever": "^1.0.0",
"inquirer": "^0.9.0",
"secure-compare": "^3.0.1",
"shelljs": "^0.5.3",
"shortid": "^2.2.14",
"wildcard": "^1.1.2"
},
"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"
}
}