-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 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
37
38
39
40
{
"name": "strong-log-transformer",
"version": "2.1.0",
"description": "Stream transformer that prefixes lines with timestamps and other things.",
"author": "Ryan Graham <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/strongloop/strong-log-transformer"
},
"keywords": [
"logging",
"streams"
],
"bugs": {
"url": "https://github.com/strongloop/strong-log-transformer/issues"
},
"homepage": "https://github.com/strongloop/strong-log-transformer",
"directories": {
"test": "test"
},
"bin": {
"sl-log-transformer": "bin/sl-log-transformer.js"
},
"main": "index.js",
"scripts": {
"test": "tap --100 test/test-*"
},
"dependencies": {
"duplexer": "^0.1.1",
"minimist": "^1.2.0",
"through": "^2.3.4"
},
"devDependencies": {
"tap": "^12.0.1"
},
"engines": {
"node": ">=4"
}
}