forked from zhm/node-pg-query-native
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 898 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
{
"name": "pg-query-native",
"version": "1.1.0",
"description": "The real PostgreSQL query parser",
"homepage": "http://github.com/zhm/node-pg-query-native",
"main": "index.js",
"scripts": {
"configure": "./node_modules/node-gyp/bin/node-gyp.js configure",
"build": "./node_modules/node-gyp/bin/node-gyp.js configure build",
"rebuild": "./node_modules/node-gyp/bin/node-gyp.js 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": "^2.5.3"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.3.5",
"node-gyp": "^3.3.1"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"database"
]
}