node-bunyan-lite/package.json

44 lines
917 B
JSON
Raw Normal View History

2012-01-30 06:26:47 +00:00
{
2018-07-22 11:39:26 +00:00
"name": "bunyan-lite",
2018-07-22 11:44:26 +00:00
"version": "1.0.0",
2018-07-22 11:39:26 +00:00
"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"
2012-02-02 23:15:29 +00:00
},
"repository": {
"type": "git",
"url": "git://github.com/trentm/node-bunyan.git"
},
2018-07-22 11:44:26 +00:00
"engines": [
"node >=0.10.0"
],
"keywords": [
"log",
"logging",
"log4j",
"json",
"bunyan"
],
"license": "MIT",
"dependencies": {
"exeunt": "1.1.0"
},
"// mv": "required for RotatingFileStream",
"optionalDependencies": {
2018-07-22 11:39:26 +00:00
"mv-lite": "~1",
2018-07-22 08:30:10 +00:00
"safe-json-stringify": "~1"
},
2012-02-08 18:05:56 +00:00
"devDependencies": {
"nodeunit": "0.9",
"ben": "0.0.0",
"markdown-toc": "0.12.x",
"verror": "1.3.3",
"vasync": "1.4.3"
},
"scripts": {
2013-01-07 19:18:12 +00:00
"test": "make test"
2012-02-08 18:05:56 +00:00
}
2012-01-30 06:26:47 +00:00
}