-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.21 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "libpg-query",
"version": "15.2.0",
"description": "The real PostgreSQL query parser",
"homepage": "https://github.com/launchql/libpg-query-node",
"main": "index.js",
"typings": "index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"binding.gyp",
"index.js",
"index.d.ts",
"libpg_query/*",
"script/*",
"src/*",
"wasm/*"
],
"exports": {
".": {
"types": "./index.d.ts",
"browser": "./wasm/index.js",
"node": "./index.js",
"default": "./index.js"
},
"./wasm": {
"types": "./index.d.ts",
"default": "./wasm/index.js"
}
},
"scripts": {
"clean": "rimraf build",
"configure": "node-pre-gyp configure",
"install": "node-pre-gyp install --fallback-to-build --loglevel verbose",
"rebuild": "node-pre-gyp rebuild --loglevel verbose",
"make:wasm": "docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) emscripten/emsdk emmake make",
"build:wasm": "yarn make:wasm build",
"rebuild:wasm": "yarn make:wasm rebuild",
"clean:wasm": "yarn make:wasm clean",
"clean-cache:wasm": "yarn make:wasm clean-cache",
"workflows": "node script/workflows.js",
"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/launchql/libpg-query-node.git"
},
"devDependencies": {
"@yamlize/cli": "^0.8.0",
"chai": "^3.5.0",
"emnapi": "^0.43.1",
"lodash": "^4.17.15",
"mocha": "^5.2.0",
"rimraf": "5.0.0"
},
"dependencies": {
"@emnapi/runtime": "^0.43.1",
"@mapbox/node-pre-gyp": "^1.0.8",
"@pgsql/types": "^15.0.1",
"node-addon-api": "^7.0.0",
"node-gyp": "^10.0.1"
},
"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/"
}
}