master
Jonatan Nilsson 2018-07-22 11:44:26 +00:00
parent 9c404a6cf5
commit d01ea1c740
1 changed files with 11 additions and 6 deletions

View File

@ -1,21 +1,27 @@
{ {
"name": "bunyan-lite", "name": "bunyan-lite",
"version": "2.0.2", "version": "1.0.0",
"description": "a lite version of bunyan, a JSON logging library for node.js services without dtrace or moment", "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)", "author": "Jonatan Nilsson <jonatan@nilsson.is> (https://nfp.is)",
"main": "./lib/bunyan.js", "main": "./lib/bunyan.js",
"bin": { "bin": {
"bunyan": "./bin/bunyan" "bunyan": "./bin/bunyan"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/trentm/node-bunyan.git" "url": "git://github.com/trentm/node-bunyan.git"
}, },
"engines": ["node >=0.10.0"], "engines": [
"keywords": ["log", "logging", "log4j", "json", "bunyan"], "node >=0.10.0"
],
"keywords": [
"log",
"logging",
"log4j",
"json",
"bunyan"
],
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"exeunt": "1.1.0" "exeunt": "1.1.0"
}, },
@ -31,7 +37,6 @@
"verror": "1.3.3", "verror": "1.3.3",
"vasync": "1.4.3" "vasync": "1.4.3"
}, },
"scripts": { "scripts": {
"test": "make test" "test": "make test"
} }