2013-03-07 23:47:04 +08:00
|
|
|
{
|
|
|
|
"name": "pg",
|
2017-08-13 05:26:37 +08:00
|
|
|
"version": "6.1.6",
|
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": {
|
2016-02-16 00:45:09 +08:00
|
|
|
"buffer-writer": "1.0.1",
|
2017-08-13 05:04:29 +08:00
|
|
|
"js-string-escape": "1.0.1",
|
2014-03-16 04:36:27 +08:00
|
|
|
"packet-reader": "0.2.0",
|
2014-09-27 05:26:41 +08:00
|
|
|
"pg-connection-string": "0.1.3",
|
2016-06-21 22:53:09 +08:00
|
|
|
"pg-pool": "1.*",
|
2015-02-23 04:35:48 +08:00
|
|
|
"pg-types": "1.*",
|
2016-08-11 04:15:09 +08:00
|
|
|
"pgpass": "1.x",
|
2016-06-08 06:17:09 +08:00
|
|
|
"semver": "4.3.2"
|
2011-08-12 08:37:04 +08:00
|
|
|
},
|
2013-03-07 23:47:04 +08:00
|
|
|
"devDependencies": {
|
2014-10-05 23:45:27 +08:00
|
|
|
"async": "0.9.0",
|
2016-07-19 23:16:48 +08:00
|
|
|
"co": "4.6.0",
|
2014-12-14 02:32:58 +08:00
|
|
|
"jshint": "2.5.2",
|
2016-06-21 22:53:09 +08:00
|
|
|
"lodash": "4.13.1",
|
|
|
|
"pg-copy-streams": "0.3.0",
|
|
|
|
"promise-polyfill": "5.2.1"
|
2013-01-21 18:46:29 +08:00
|
|
|
},
|
2014-11-19 03:35:07 +08:00
|
|
|
"minNativeVersion": "1.7.0",
|
2013-03-07 23:47:04 +08:00
|
|
|
"scripts": {
|
2014-03-17 10:50:17 +08:00
|
|
|
"changelog": "npm i github-changes && ./node_modules/.bin/github-changes -o brianc -r node-postgres -d pulls -a -v",
|
2014-11-19 00:51:40 +08:00
|
|
|
"test": "make test-all connectionString=postgres://postgres@localhost:5432/postgres"
|
2011-03-12 02:29:27 +08:00
|
|
|
},
|
2015-05-24 06:09:47 +08:00
|
|
|
"license": "MIT",
|
2013-03-07 23:47:04 +08:00
|
|
|
"engines": {
|
|
|
|
"node": ">= 0.8.0"
|
|
|
|
}
|
2010-11-03 14:52:27 +08:00
|
|
|
}
|