node-postgres/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "pg",
2014-09-18 12:24:25 +08:00
"version": "3.4.3",
"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",
"dependencies": {
"bindings": "1.2.1",
2013-12-06 07:01:51 +08:00
"buffer-writer": "1.0.0",
2014-09-18 12:24:13 +08:00
"generic-pool": "2.1.1",
"nan": "1.3.0",
"packet-reader": "0.2.0",
"pg-connection-string": "0.1.2",
2014-09-18 12:24:13 +08:00
"pg-types": "1.4.0",
"pgpass": "0.0.3"
2011-08-12 08:37:04 +08:00
},
"devDependencies": {
"jshint": "2.5.2",
"semver": "~3.0.1",
"async": "0.9.0"
},
"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",
"test": "make test-travis connectionString=postgres://postgres@localhost:5432/postgres",
"install": "node-gyp rebuild || (exit 0)"
},
"engines": {
"node": ">= 0.8.0"
}
}