-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "node-pgparser",
"version": "16.1.12",
"description": "Node.js module for parsing PostgreSQL queries",
"main": "index.js",
"author": {
"name": "Maksim Gorkov",
"email": "[email protected]",
"url": "http://github.com/MGorkov"
},
"license": "MIT",
"gypfile": true,
"devDependencies": {
"node-gyp": "^10.1.0",
"aws-sdk": "2.x",
"mocha": "^5.1.1"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.10.0",
"@mapbox/node-pre-gyp": "^1.0.11"
},
"binary": {
"module_name": "pgparser",
"module_path": "./lib/binding/{configuration}/{node_abi}-{platform}-{arch}/",
"remote_path": "./{module_name}/v{version}/{configuration}/{platform}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{libc}-{arch}.tar.gz",
"host": "https://explain-nodeaddons.s3.eu-north-1.amazonaws.com/"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"binary:package": "node-pre-gyp package",
"binary:publish": "node-pre-gyp publish",
"clean": "rm -rf build",
"test": "mocha"
},
"keywords": [
"postgresql",
"pg",
"query",
"parser"
],
"homepage": "https://github.com/MGorkov/node-pgparser",
"repository": {
"type": "git",
"url": "https://github.com/MGorkov/node-pgparser.git"
},
"files": [
"LICENSE",
"README.md",
"binding.gyp",
"index.js",
"package.json",
"parser.cc",
"test/index.js"
]
}