-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 985 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": "r7insight_docker",
"version": "5.0.0",
"description": "Forward all logs from all running Docker containers to the Rapid7 Insight Platform",
"repository": {
"type": "git",
"url": "https://github.com/rapid7/r7insight_docker.git"
},
"readme": "see [README.md](https://github.com/rapid7/r7insight_docker/blob/master/README.md)",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha tests/**/test*.js --reporter spec"
},
"engines": {
"node": ">= 8.0.0"
},
"author": "Rapid7 <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^6.0.0",
"docker-allcontainers": "^0.8.0",
"docker-event-log": "^0.1.3",
"docker-loghose": "^1.6.5",
"docker-stats": "^0.9.0",
"dockerode": "^3.0.2",
"end-of-stream": "^1.4.4",
"through2": "^3.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"sinon": "^7.5.0"
}
}