forked from brianc/node-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "pg",
"version": "4.6.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 <[email protected]>",
"main": "./lib",
"dependencies": {
"buffer-writer": "1.0.1",
"generic-pool-timeout": "2.7.1",
"packet-reader": "0.2.0",
"pg-connection-string": "0.1.3",
"pg-types": "1.*",
"pgpass": "0.0.3",
"semver": "^4.1.0"
},
"devDependencies": {
"async": "0.9.0",
"jshint": "2.5.2",
"pg-copy-streams": "0.3.0"
},
"minNativeVersion": "1.7.0",
"scripts": {
"changelog": "npm i github-changes && ./node_modules/.bin/github-changes -o brianc -r node-postgres -d pulls -a -v",
"test": "make test-all connectionString=postgres://postgres@localhost:5432/postgres"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
}
}