node-postgres/package.json

21 lines
683 B
JSON
Raw Normal View History

{ "name": "pg",
2012-07-12 11:50:57 +08:00
"version": "0.8.1",
"description": "PostgreSQL client - pure javascript & libpq with the same API",
"keywords" : ["postgres", "pg", "libpq", "postgre", "database", "rdbms"],
"homepage": "http://github.com/brianc/node-postgres",
"repository" : {
"type" : "git",
"url" : "git://github.com/brianc/node-postgres.git"
},
"author" : "Brian Carlson <brian.m.carlson@gmail.com>",
"main" : "./lib",
2011-08-12 08:37:04 +08:00
"dependencies" : {
2012-02-03 13:12:34 +08:00
"generic-pool" : "1.0.9"
2011-08-12 08:37:04 +08:00
},
"scripts" : {
2012-07-12 12:01:54 +08:00
"test" : "make test-all connectionString=pg://postgres@localhost:5432/node-postgres",
2012-06-19 11:41:48 +08:00
"install" : "node-gyp rebuild || (exit 0)"
},
"engines" : { "node": ">= 0.8.0" }
}