forked from camme/webhook-deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "webhook-deployer",
"version": "0.7.7",
"description": "Deployer server app triggered by (github) webhooks",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test node node_modules/grunt-cli/bin/grunt",
"install-windows-service": "winser -i",
"uninstall-windows-service": "winser -r"
},
"repository": {
"type": "git",
"url": "https://github.com/Camme/webhook-deployer"
},
"keywords": [
"deploy",
"github",
"webhook"
],
"preferGlobal": true,
"bin": {
"webhook-deployer": "./bin/webhook-deployer"
},
"author": "Camilo Tapia",
"license": "MIT",
"devDependencies": {
"mocha": "~1.9.0",
"grunt": "~0.4.1",
"should": "~1.2.2",
"grunt-simple-mocha": "~0.4.0",
"grunt-cli": "~0.1.8",
"webdriverjs": "~0.7.3",
"webdriverio": "^2.2.3",
"selenium-standalone": "^2.43.1-5"
},
"dependencies": {
"commander": "~1.1.1",
"cookies": "~0.3.6",
"keygrip": "~0.2.2",
"mustache": "~0.7.2",
"node-github": "0.0.3",
"prompt": "~0.2.9",
"socket.io": "^1.1.0",
"stylus": "~0.32.1",
"winser": "~0.1.3"
}
}