35 lines
733 B
JSON
35 lines
733 B
JSON
{
|
|
"name": "bunyan-lite",
|
|
"version": "1.1.1",
|
|
"description": "a lite version of bunyan, a JSON logging library for node.js services with zero dependency",
|
|
"author": "Jonatan Nilsson <jonatan@nilsson.is> (https://nfp.is)",
|
|
"main": "./lib/bunyan.mjs",
|
|
"bin": {
|
|
"bunyan": "./bin/bunyan.mjs"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/nfp-projects/node-bunyan-lite.git"
|
|
},
|
|
"keywords": [
|
|
"log",
|
|
"logging",
|
|
"log4j",
|
|
"json",
|
|
"bunyan"
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"eltro": "^1.0.2"
|
|
},
|
|
"scripts": {
|
|
"test": "eltro test/**/*.test.mjs -r dot"
|
|
},
|
|
"files": [
|
|
"LICENSE.txt",
|
|
"README.md",
|
|
"bin",
|
|
"lib"
|
|
]
|
|
}
|