1 | {
|
2 | "name": "bunyan",
|
3 | "version": "1.8.15",
|
4 | "description": "a JSON logging library for node.js services",
|
5 | "author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
|
6 | "main": "./lib/bunyan.js",
|
7 | "bin": {
|
8 | "bunyan": "./bin/bunyan"
|
9 | },
|
10 | "repository": {
|
11 | "type": "git",
|
12 | "url": "git://github.com/trentm/node-bunyan.git"
|
13 | },
|
14 | "engines": [
|
15 | "node >=0.10.0"
|
16 | ],
|
17 | "files": [
|
18 | "bin",
|
19 | "lib"
|
20 | ],
|
21 | "keywords": [
|
22 | "log",
|
23 | "logging",
|
24 | "log4j",
|
25 | "json",
|
26 | "bunyan"
|
27 | ],
|
28 | "license": "MIT",
|
29 | "// dtrace-provider": "required for dtrace features",
|
30 | "// mv": "required for RotatingFileStream",
|
31 | "// moment": "required for local time with CLI",
|
32 | "optionalDependencies": {
|
33 | "dtrace-provider": "~0.8",
|
34 | "mv": "~2",
|
35 | "safe-json-stringify": "~1",
|
36 | "moment": "^2.19.3"
|
37 | },
|
38 | "devDependencies": {
|
39 | "ben": "0.0.0",
|
40 | "markdown-toc": "0.12.x",
|
41 | "tap": "^9.0.3",
|
42 | "vasync": "1.4.3",
|
43 | "verror": "1.3.3"
|
44 | },
|
45 | "scripts": {
|
46 | "check": "make check",
|
47 | "test": "tap test/*.test.js # skip dtrace tests"
|
48 | }
|
49 | }
|