2010-11-03 14:52:27 +08:00
|
|
|
{ "name": "pg",
|
2012-08-21 10:42:40 +08:00
|
|
|
"version": "0.8.3",
|
2011-03-12 02:29:27 +08:00
|
|
|
"description": "PostgreSQL client - pure javascript & libpq with the same API",
|
|
|
|
"keywords" : ["postgres", "pg", "libpq", "postgre", "database", "rdbms"],
|
2010-11-03 14:52:27 +08:00
|
|
|
"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>",
|
2011-03-12 02:29:27 +08:00
|
|
|
"main" : "./lib",
|
2011-08-12 08:37:04 +08:00
|
|
|
"dependencies" : {
|
2012-07-16 11:08:26 +08:00
|
|
|
"generic-pool" : "1.0.12"
|
2011-08-12 08:37:04 +08:00
|
|
|
},
|
2011-03-12 02:29:27 +08:00
|
|
|
"scripts" : {
|
2012-07-12 12:05:39 +08:00
|
|
|
"test" : "make test-all connectionString=pg://postgres@localhost:5432/postgres",
|
2012-08-21 10:42:40 +08:00
|
|
|
"prepublish": "rm -r build || (exit 0)"
|
2012-06-19 11:41:48 +08:00
|
|
|
"install" : "node-gyp rebuild || (exit 0)"
|
2011-03-12 02:29:27 +08:00
|
|
|
},
|
2012-07-06 10:18:53 +08:00
|
|
|
"engines" : { "node": ">= 0.8.0" }
|
2010-11-03 14:52:27 +08:00
|
|
|
}
|