From ef634702b90f7692dc0d0841cfd2d906ffca8001 Mon Sep 17 00:00:00 2001 From: brianc Date: Wed, 3 Nov 2010 01:52:27 -0500 Subject: [PATCH] added package info for initial npm publish --- package.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 00000000..534ad240 --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ "name": "pg", + "version": "0.0.1", + "description": "Pure JavaScript PostgreSQL client", + "homepage": "http://github.com/brianc/node-postgres", + "repository" : { + "type" : "git", + "url" : "git://github.com/brianc/node-postgres.git" + }, + "author" : "Brian Carlson ", + "main" : "./lib/index", + "directories" : { "lib" : "./lib" }, + "scripts" : { "test" : "node .test/run.js" }, + "engines" : { "node": ">= 0.2.2" } +}