-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "docker-stream-cleanser",
"version": "1.0.1",
"main": "transform.js",
"description": "This module cleans the docker headers from the log stream from a container. I never found them very useful, so I wrote this to clean them up either in bulk, or in between a piping. It's not as simple as just removing the first 8 bytes on every message",
"scripts": {
"test": "lab -c test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Nathan219/docker-stream-cleanser.git"
},
"engineStrict": true,
"engine": {
"node": "6.9.4"
},
"keywords": [
"docker",
"streams",
"dockerlog",
"container",
"stream",
"dockerheader",
"logs",
"terminal",
"log",
"cleaner",
"remove",
"parse",
"parser",
"frame",
"header",
"payload",
"stdout",
"stderr"
],
"author": "Dominathan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nathan219/docker-stream-cleanser/issues"
},
"homepage": "https://github.com/Nathan219/docker-stream-cleanser",
"dependencies": {
"async": "^2.3.0",
"through": "^2.3.6"
},
"devDependencies": {
"code": "^1.3.0",
"concat-stream": "^1.4.7",
"lab": "^13.0.2"
}
}