forked from trentm/node-bunyan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (38 loc) · 964 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
{
"name": "bunyan",
"version": "1.8.2",
"description": "a JSON logging library for node.js services",
"author": "Trent Mick <[email protected]> (http://trentm.com)",
"main": "./lib/bunyan.js",
"bin": {
"bunyan": "./bin/bunyan"
},
"repository": {
"type": "git",
"url": "git://github.com/trentm/node-bunyan.git"
},
"engines": ["node >=0.10.0"],
"keywords": ["log", "logging", "log4j", "json", "bunyan"],
"license": "MIT",
"// dtrace-provider": "required for dtrace features",
"// mv": "required for RotatingFileStream",
"// moment": "required for local time with CLI",
"optionalDependencies": {
"dtrace-provider": "~0.6",
"mv": "~2",
"safe-json-stringify": "~1",
"moment": "^2.10.6"
},
"devDependencies": {
"nodeunit": "0.9",
"ben": "0.0.0",
"markdown-toc": "0.12.x",
"verror": "1.3.3",
"vasync": "1.4.3"
},
"scripts": {
"test": "make test"
},
"dependencies": {
}
}