-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) 路 1.4 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) 路 1.4 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
{
"name": "plpgsql-parser",
"version": "18.5.10",
"author": "Constructive <developers@constructive.io>",
"description": "Combined SQL + PL/pgSQL parser with hydrated ASTs and transform API",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/constructive-io/pgsql-parser",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/pgsql-parser"
},
"bugs": {
"url": "https://github.com/constructive-io/pgsql-parser/issues"
},
"scripts": {
"copy": "makage assets",
"clean": "makage clean dist",
"prepublishOnly": "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"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"plpgsql",
"query",
"ast",
"parser",
"deparser",
"transform",
"database"
],
"devDependencies": {
"makage": "^0.5.1"
},
"dependencies": {
"@pgsql/traverse": "workspace:*",
"@pgsql/types": "^18.0.0",
"libpg-query": "18.1.5",
"pgsql-deparser": "workspace:*",
"plpgsql-deparser": "workspace:*"
}
}