-
Notifications
You must be signed in to change notification settings - Fork 517
/
package.json
52 lines (52 loc) · 1.08 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": "bunyan",
"version": "2.0.5",
"description": "a JSON logging library for node.js services",
"author": "Trent Mick <trentm@gmail.com> (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",
"files": [
"bin",
"lib"
],
"dependencies": {
"exeunt": "1.1.0"
},
"// dtrace-provider": "required for dtrace features",
"// mv": "required for RotatingFileStream",
"// moment": "required for local time with CLI",
"optionalDependencies": {
"dtrace-provider": "~0.8",
"mv": "~2",
"safe-json-stringify": "~1",
"moment": "^2.19.3"
},
"devDependencies": {
"ben": "0.0.0",
"markdown-toc": "0.12.x",
"tap": "^9.0.3",
"vasync": "1.4.3",
"verror": "1.3.3"
},
"scripts": {
"check": "make check",
"test": "tap test/*.test.js # skip dtrace tests"
}
}