2013-03-07 23:47:04 +08:00
|
|
|
{
|
|
|
|
"name": "pg",
|
2013-11-21 13:01:50 +08:00
|
|
|
"version": "2.8.3",
|
2011-03-12 02:29:27 +08:00
|
|
|
"description": "PostgreSQL client - pure javascript & libpq with the same API",
|
2013-03-07 23:47:04 +08:00
|
|
|
"keywords": [
|
|
|
|
"postgres",
|
|
|
|
"pg",
|
|
|
|
"libpq",
|
|
|
|
"postgre",
|
|
|
|
"database",
|
|
|
|
"rdbms"
|
|
|
|
],
|
2010-11-03 14:52:27 +08:00
|
|
|
"homepage": "http://github.com/brianc/node-postgres",
|
2013-03-07 23:47:04 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/brianc/node-postgres.git"
|
2010-11-03 14:52:27 +08:00
|
|
|
},
|
2013-03-07 23:47:04 +08:00
|
|
|
"author": "Brian Carlson <brian.m.carlson@gmail.com>",
|
|
|
|
"main": "./lib",
|
|
|
|
"dependencies": {
|
2013-05-23 23:24:43 +08:00
|
|
|
"generic-pool": "2.0.3",
|
2013-07-23 23:10:41 +08:00
|
|
|
"buffer-writer": "1.0.0"
|
2011-08-12 08:37:04 +08:00
|
|
|
},
|
2013-03-07 23:47:04 +08:00
|
|
|
"devDependencies": {
|
2013-04-17 22:26:31 +08:00
|
|
|
"jshint": "1.1.0",
|
|
|
|
"semver": "~1.1.4"
|
2013-01-21 18:46:29 +08:00
|
|
|
},
|
2013-03-07 23:47:04 +08:00
|
|
|
"scripts": {
|
2013-07-23 01:45:26 +08:00
|
|
|
"test": "make test-travis connectionString=postgres://postgres@localhost:5432/postgres",
|
2013-03-07 23:47:04 +08:00
|
|
|
"install": "node-gyp rebuild || (exit 0)"
|
2011-03-12 02:29:27 +08:00
|
|
|
},
|
2013-03-07 23:47:04 +08:00
|
|
|
"engines": {
|
|
|
|
"node": ">= 0.8.0"
|
|
|
|
}
|
2010-11-03 14:52:27 +08:00
|
|
|
}
|