forked from constructive-io/pgsql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 KB
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
{
"name": "pg-proto-parser",
"version": "1.29.2",
"description": "The LaunchQL Proto parser",
"author": "Dan Lynch <pyramation@gmail.com>",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/launchql/pgsql-parser/tree/master/packages/proto-parser#readme",
"license": "SEE LICENSE IN LICENSE",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/launchql/pgsql-parser"
},
"bugs": {
"url": "https://github.com/launchql/pgsql-parser/issues"
},
"scripts": {
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
"clean": "rimraf dist",
"prepare": "npm run build",
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch",
"generate:test-utils": "ts-node ./scripts/generate-test-utils"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"ast",
"proto",
"parser",
"database"
],
"devDependencies": {
"recast": "0.23.6"
},
"dependencies": {
"@babel/generator": "^7.23.6",
"@babel/parser": "^7.23.6",
"@babel/traverse": "7.24.1",
"@babel/types": "7.24.0",
"@launchql/protobufjs": "7.2.6",
"case": "1.6.3",
"deepmerge": "4.3.1",
"nested-obj": "^0.0.1",
"strfy-js": "^3.0.1"
}
}