-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "docker-listener",
"version": "10.9.1",
"description": "Pipe Docker events into RabbitMQ",
"main": "index.js",
"private": true,
"scripts": {
"test-watch": "rerun-script test",
"test": "npm run lint && npm run unit",
"unit": "NODE_PATH=./lib lab -c -v -m 3000 -t 100 -a code ./test/unit",
"start": "NODE_PATH=./lib node index.js",
"format": "standard --format --verbose",
"format-snazzy": "standard --format --verbose | snazzy",
"lint": "standard --verbose",
"lint-snazzy": "standard --verbose | snazzy",
"compose-test-up": "docker-compose -f docker-compose-test.yml up --build",
"compose-test-down": "docker-compose -f docker-compose-test.yml down"
},
"watches": {
"test": [
"*.js",
"lib/**/*.js",
"test/**/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/CodeNow/docker-listener.git"
},
"keywords": [
"docker",
"events",
"listener"
],
"author": "Runnable",
"bugs": {
"url": "https://github.com/CodeNow/docker-listener/issues"
},
"homepage": "https://github.com/CodeNow/docker-listener",
"dependencies": {
"101": "^1.6.2",
"@runnable/loki": "^3.3.0",
"bluebird": "3.4.6",
"bunyan": "^1.8.1",
"callsite": "^1.0.0",
"continuation-local-storage": "^3.1.7",
"error-cat": "^3.0.0",
"joi": "^9.0.4",
"keypather": "^2.0.1",
"loadenv": "^2.2.0",
"monitor-dog": "^1.5.0",
"node-uuid": "^1.4.7",
"ponos": "^5.6.1"
},
"devDependencies": {
"code": "^3.0.2",
"lab": "^11.0.0",
"rerun-script": "^0.6.0",
"sinon": "^1.17.5",
"sinon-as-promised": "^4.0.2",
"standard": "^8.0.0"
}
}