forked from brianc/node-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 863 Bytes
/
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
{
"name": "pg-native",
"version": "3.2.0",
"description": "A slightly nicer interface to Postgres over node-libpq",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/brianc/node-postgres.git"
},
"keywords": [
"postgres",
"pg",
"libpq"
],
"author": "Brian M. Carlson",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianc/node-postgres/issues"
},
"homepage": "https://github.com/brianc/node-postgres/tree/master/packages/pg-native",
"dependencies": {
"libpq": "1.8.13",
"pg-types": "^4.0.2"
},
"devDependencies": {
"async": "^0.9.0",
"concat-stream": "^1.4.6",
"generic-pool": "^2.1.1",
"lodash": "^2.4.1",
"mocha": "10.5.2",
"node-gyp": ">=10.x",
"okay": "^0.3.0",
"semver": "^4.1.0"
}
}