forked from pyramation/node-pg-query-native
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (43 loc) · 1.03 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
44
{
"name": "@sqlutils/parse",
"version": "1.2.1",
"description": "The real PostgreSQL query parser",
"homepage": "http://github.com/ethanresnick/node-pg-query-native",
"main": "index.js",
"typings": "index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp configure build",
"rebuild": "node-gyp configure rebuild",
"test": "mocha --timeout 5000",
"preinstall": "script/buildAddon.sh",
"postinstall": "node-gyp rebuild"
},
"author": "Ethan Resnick <[email protected]> (http://github.com/ethanresnick)",
"license": "BSD",
"repository": {
"type": "git",
"url": "git://github.com/ethanresnick/node-pg-query-native.git"
},
"devDependencies": {
"chai": "^3.5.0",
"lodash": "^4.17.15",
"mocha": "^5.2.0"
},
"dependencies": {
"node-addon-api": "^1.6.3",
"node-gyp": "^3.3.1"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"plpgsql",
"database"
]
}