-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 925 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
{
"name": "docker-webhooks",
"version": "0.1.0",
"description": "An events hub that listens for events from docker and broadcast them via webhooks",
"main": "app.js",
"scripts": {
"test": "NODE_ENV=test node test.js",
"start": "node main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MhdSyrwan/docker-webhooks.git"
},
"keywords": [
"docker",
"webhooks",
"events",
"docker-api"
],
"author": "Muhammad Al-Syrwan <[email protected]>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/MhdSyrwan/docker-webhooks/issues"
},
"homepage": "https://github.com/MhdSyrwan/docker-webhooks#readme",
"dependencies": {
"JSONStream": "^1.1.4",
"body-parser": "^1.15.2",
"dockerode": "^2.3.0",
"express": "^4.14.0",
"lodash": "^4.15.0",
"lowdb": "^0.13.1",
"node-uuid": "^1.4.7",
"request": "^2.74.0"
}
}