node-postgres/package.json

21 lines
623 B
JSON
Raw Normal View History

{ "name": "pg",
2011-11-02 12:03:23 +08:00
"version": "0.6.5",
"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" : {
2011-10-20 11:56:47 +08:00
"generic-pool" : "1.0.7"
2011-08-12 08:37:04 +08:00
},
"scripts" : {
"test" : "make test",
"install" : "node-waf configure build || true"
},
2011-10-11 08:41:32 +08:00
"engines" : { "node": ">= 0.4.0" }
}