some more package.json data

This commit is contained in:
Trent Mick 2012-02-02 15:15:29 -08:00
parent 5fd1b1b81a
commit 65f1533849
2 changed files with 14 additions and 2 deletions

View file

@ -9,7 +9,11 @@ Also: log4j is way more than you need.
# Current Status # Current Status
Just play stuff here. Don't try to use this for realz yet. Basic functionality there. Still a fair amount of planned work... most
importantly the clarifying of required and suggested fields.
Currently supports node 0.4+, but I'll probably make the jump to node 0.6+ as a
base soonish.
# Usage # Usage

View file

@ -1,8 +1,16 @@
{ {
"name": "bunyan", "name": "bunyan",
"version": "0.1.0", "version": "0.1.0",
"description": "a JSON Logger library for node.js servers",
"main": "./lib/bunyan.js", "main": "./lib/bunyan.js",
"bin": { "bin": {
"bunyan": "./bin/bunyan" "bunyan": "./bin/bunyan"
} },
"repository": {
"type": "git",
"url": "git://github.com/trentm/node-bunyan.git"
},
"engines": ["node >=0.4.0"],
"keywords": ["log", "logging", "log4j", "json"]
} }