43 lines
917 B
JSON
43 lines
917 B
JSON
{
|
|
"name": "bunyan-lite",
|
|
"version": "1.0.0",
|
|
"description": "a lite version of bunyan, a JSON logging library for node.js services without dtrace or moment",
|
|
"author": "Jonatan Nilsson <jonatan@nilsson.is> (https://nfp.is)",
|
|
"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",
|
|
"dependencies": {
|
|
"exeunt": "1.1.0"
|
|
},
|
|
"// mv": "required for RotatingFileStream",
|
|
"optionalDependencies": {
|
|
"mv-lite": "~1",
|
|
"safe-json-stringify": "~1"
|
|
},
|
|
"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"
|
|
}
|
|
}
|