-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 806 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 806 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": "pg-query-native",
"version": "1.3.1",
"description": "The real PostgreSQL query parser",
"homepage": "http://github.com/zhm/node-pg-query-native",
"main": "index.js",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp configure build",
"rebuild": "node-gyp configure rebuild",
"test": "mocha"
},
"author": "Zac McCormick <zac.mccormick@gmail.com> (http://github.com/zhm)",
"license": "BSD",
"repository": {
"type": "git",
"url": "git://github.com/zhm/node-pg-query-native.git"
},
"devDependencies": {
"mocha": "^9.1.2"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.15.0",
"node-gyp": "^8.2.0"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"database"
]
}