forked from launchql/libpg-query-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
45
46
47
48
49
50
{
"name": "libpg-query",
"version": "13.3.0",
"description": "The real PostgreSQL query parser",
"homepage": "https://github.com/pyramation/libpg-query-node",
"main": "index.js",
"typings": "index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"configure": "node-pre-gyp configure",
"install": "node-pre-gyp install --fallback-to-build",
"rebuild": "node-pre-gyp configure rebuild",
"test": "mocha --timeout 5000",
"binary:build": "node-pre-gyp rebuild package",
"binary:publish": "AWS_PROFILE=supabase-dev node-pre-gyp publish"
},
"author": "Dan Lynch <[email protected]> (http://github.com/pyramation)",
"license": "LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git://github.com/pyramation/libpg-query-node.git"
},
"devDependencies": {
"chai": "^3.5.0",
"lodash": "^4.17.15",
"mocha": "^5.2.0"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.8",
"node-addon-api": "^1.6.3",
"node-gyp": "^8.0.0"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"plpgsql",
"database"
],
"binary": {
"module_name": "queryparser",
"module_path": "./build/Release/",
"host": "https://supabase-public-artifacts-bucket.s3.amazonaws.com",
"remote_path": "./libpg-query-node/"
}
}