node-postgres/package.json
Brian M. Carlson 6d64abc0e2 Bump version
2014-04-06 12:38:33 -05:00

42 lines
1.0 KiB
JSON

{
"name": "pg",
"version": "3.0.0",
"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": {
"generic-pool": "2.0.3",
"buffer-writer": "1.0.0",
"pgpass": "0.0.2",
"nan": "~0.6.0",
"packet-reader": "0.2.0",
"pg-types": "1.0.0"
},
"devDependencies": {
"jshint": "1.1.0",
"semver": "~1.1.4",
"async": "0.2.10"
},
"scripts": {
"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"
}
}