-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 719 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 719 Bytes
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
{
"name": "libpq",
"version": "1.11.0",
"description": "Low-level native bindings to PostgreSQL libpq",
"main": "index.js",
"keywords": [
"postgres",
"libpq"
],
"repository": {
"type": "git",
"url": "git://github.com/brianc/node-libpq.git"
},
"scripts": {
"clean": "node-gyp clean",
"pretest": "node-gyp rebuild",
"test": "node_modules/.bin/mocha"
},
"author": "Brian M. Carlson",
"license": "MIT",
"dependencies": {
"bindings": "1.5.0",
"nan": "~2.26.2"
},
"devDependencies": {
"async": "^2.6.2",
"buffer-from": "^1.1.1",
"lodash": "^4.17.11",
"mocha": "^10.8.2",
"okay": "^1.0.0"
},
"prettier": {
"singleQuote": true
}
}