node-postgres/package.json

36 lines
826 B
JSON
Raw Normal View History

{
"name": "pg",
2013-03-08 05:57:00 +08:00
"version": "1.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.2",
2013-03-17 00:51:26 +08:00
"buffer-writer": "1.0.0"
2011-08-12 08:37:04 +08:00
},
"devDependencies": {
2013-03-29 02:37:08 +08:00
"jshint": "1.1.0"
},
"scripts": {
"test": "make test-all connectionString=pg://postgres@localhost:5432/postgres",
2012-08-21 10:43:29 +08:00
"prepublish": "rm -r build || (exit 0)",
"install": "node-gyp rebuild || (exit 0)"
},
"engines": {
"node": ">= 0.8.0"
}
}