-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "server-deploy-hook",
"private": true,
"version": "0.1.0",
"description": "Webhook for deploying holmescode services",
"main": "dist/app/index.js",
"scripts": {
"test": "mocha dist/test/*.js",
"build": "tsc",
"start": "node dist/app/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vipercloud/web.git"
},
"author": "Matt Holmes",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/vipercloud/web/issues"
},
"homepage": "https://github.com/vipercloud/web#readme",
"dependencies": {
"amqp-ts": "^1.4.0",
"boom": "^4.3.1",
"bunyan": "^1.8.10",
"hapi": "^16.1.1",
"hapi-bunyan": "^0.7.0",
"joi": "^10.4.1",
"mongoose": "^4.9.8"
},
"devDependencies": {
"@types/boom": "^4.3.1",
"@types/bunyan": "0.0.36",
"@types/hapi": "^16.0.6",
"@types/joi": "^10.3.2",
"@types/mocha": "^2.2.40",
"@types/mongoose": "^4.7.11",
"@types/node": "^7.0.18",
"mocha": "^3.3.0",
"tslint": "^5.2.0",
"typescript": "^2.3.2"
}
}