-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 860 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
40
41
{
"name": "vici",
"version": "1.0.0",
"description": "Your webhook robot",
"main": "vici.init.js",
"bin": {
"vici": "vici.init.js"
},
"scripts": {
"test": "mocha tests/",
"start": "node vici.init.js",
"dev": "gulp dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scriptnull/vici.git"
},
"keywords": [
"deploy",
"docker"
],
"author": "scriptnull",
"license": "MIT",
"bugs": {
"url": "https://github.com/scriptnull/vici/issues"
},
"homepage": "https://github.com/scriptnull/vici#readme",
"dependencies": {
"async": "^2.0.1",
"hapi": "^15.0.2",
"hapi-status": "^2.1.0",
"js-yaml": "^3.6.1",
"superagent": "^2.2.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-nodemon": "^2.1.0",
"mocha": "^3.0.2"
}
}