node-postgres/package.json

41 lines
937 B
JSON
Raw Normal View History

{
"name": "pg",
2014-01-22 22:43:16 +08:00
"version": "2.11.1",
"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": {
2013-05-23 23:24:43 +08:00
"generic-pool": "2.0.3",
2013-12-06 07:01:51 +08:00
"buffer-writer": "1.0.0",
2013-12-23 06:21:42 +08:00
"pgpass": "0.0.1",
2014-03-14 19:59:19 +08:00
"nan": "~0.6.0",
"packet-reader": "0.2.0",
"pg-types": "1.0.0"
2011-08-12 08:37:04 +08:00
},
"devDependencies": {
2013-04-17 22:26:31 +08:00
"jshint": "1.1.0",
2014-03-16 05:40:45 +08:00
"semver": "~1.1.4",
2014-03-16 05:46:57 +08:00
"async": "0.2.10"
},
"scripts": {
"test": "make test-travis connectionString=postgres://postgres@localhost:5432/postgres",
"install": "node-gyp rebuild || (exit 0)"
},
"engines": {
"node": ">= 0.8.0"
}
}