node-bunyan-lite/package.json

36 lines
732 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",
"version": "1.1.0",
"description": "a lite version of bunyan, a JSON logging library for node.js services with zero dependency",
2018-07-22 11:39:26 +00:00
"author": "Jonatan Nilsson <jonatan@nilsson.is> (https://nfp.is)",
"main": "./lib/bunyan.js",
"bin": {
"bunyan": "./bin/bunyan.mjs"
2012-02-02 23:15:29 +00:00
},
"repository": {
"type": "git",
2018-07-23 06:01:28 +00:00
"url": "git://github.com/nfp-projects/node-bunyan-lite.git"
2012-02-02 23:15:29 +00:00
},
2018-07-22 11:44:26 +00:00
"keywords": [
"log",
"logging",
"log4j",
"json",
"bunyan"
],
"license": "MIT",
2018-07-23 06:01:42 +00:00
"dependencies": {},
2012-02-08 18:05:56 +00:00
"devDependencies": {
"eltro": "^1.0.2"
},
"scripts": {
"test": "eltro test/**/*.test.mjs -r dot"
},
"files": [
"LICENSE.txt",
"README.md",
"bin",
"lib"
]
2012-01-30 06:26:47 +00:00
}