From 65f1533849350787f0cd8478d522aca4bf349b82 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Thu, 2 Feb 2012 15:15:29 -0800 Subject: [PATCH] some more package.json data --- README.md | 6 +++++- package.json | 10 +++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 319dfc1..6576b5c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,11 @@ Also: log4j is way more than you need. # 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 diff --git a/package.json b/package.json index b637796..3cb5371 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,16 @@ { "name": "bunyan", "version": "0.1.0", + "description": "a JSON Logger library for node.js servers", "main": "./lib/bunyan.js", "bin": { "bunyan": "./bin/bunyan" - } + }, + + "repository": { + "type": "git", + "url": "git://github.com/trentm/node-bunyan.git" + }, + "engines": ["node >=0.4.0"], + "keywords": ["log", "logging", "log4j", "json"] }