forked from mcollina/docker-loghose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1000 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
42
{
"name": "docker-loghose",
"version": "1.6.4",
"description": "Collect all the logs from all docker containers",
"main": "loghose.js",
"scripts": {
"test": "mocha --recursive",
"watch": "mocha --watch --recursive",
"start": "./loghose.js",
"standard": "standard"
},
"bin": "loghose.js",
"repository": {
"type": "git",
"url": "https://github.com/mcollina/docker-loghose.git"
},
"keywords": [
"docker",
"log",
"logs",
"collect"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/docker-loghose/issues"
},
"homepage": "https://github.com/mcollina/docker-loghose",
"dependencies": {
"bl": "^1.2.0",
"docker-allcontainers": "^0.7.0",
"minimist": "^1.1.1",
"never-ending-stream": "^2.0.0",
"pump": "^1.0.0",
"through2": "^2.0.0"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.2.5",
"standard": "^5.4.1"
}
}