1 | {
|
2 | "name": "pg",
|
3 | "version": "8.5.1",
|
4 | "description": "PostgreSQL client - pure javascript & libpq with the same API",
|
5 | "keywords": [
|
6 | "database",
|
7 | "libpq",
|
8 | "pg",
|
9 | "postgre",
|
10 | "postgres",
|
11 | "postgresql",
|
12 | "rdbms"
|
13 | ],
|
14 | "homepage": "https://github.com/brianc/node-postgres",
|
15 | "repository": {
|
16 | "type": "git",
|
17 | "url": "git://github.com/brianc/node-postgres.git"
|
18 | },
|
19 | "author": "Brian Carlson <brian.m.carlson@gmail.com>",
|
20 | "main": "./lib",
|
21 | "dependencies": {
|
22 | "buffer-writer": "2.0.0",
|
23 | "packet-reader": "1.0.0",
|
24 | "pg-connection-string": "^2.4.0",
|
25 | "pg-pool": "^3.2.2",
|
26 | "pg-protocol": "^1.4.0",
|
27 | "pg-types": "^2.1.0",
|
28 | "pgpass": "1.x"
|
29 | },
|
30 | "devDependencies": {
|
31 | "async": "0.9.0",
|
32 | "bluebird": "3.5.2",
|
33 | "co": "4.6.0",
|
34 | "pg-copy-streams": "0.3.0"
|
35 | },
|
36 | "peerDependencies": {
|
37 | "pg-native": ">=2.0.0"
|
38 | },
|
39 | "peerDependenciesMeta": {
|
40 | "pg-native": {
|
41 | "optional": true
|
42 | }
|
43 | },
|
44 | "scripts": {
|
45 | "test": "make test-all"
|
46 | },
|
47 | "files": [
|
48 | "lib",
|
49 | "SPONSORS.md"
|
50 | ],
|
51 | "license": "MIT",
|
52 | "engines": {
|
53 | "node": ">= 8.0.0"
|
54 | },
|
55 | "gitHead": "0b9bb349dcb10f6473737001062082b65efc74be"
|
56 | }
|