-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "pgsql-parser",
"version": "17.9.12",
"author": "Constructive <developers@constructive.io>",
"description": "The real PostgreSQL query parser",
"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",
"prepare-versions": "ts-node scripts/prepare-versions.ts",
"test:ast": "ts-node scripts/test-ast.ts"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"parser",
"query",
"database"
],
"dependencies": {
"@pgsql/types": "^17.6.2",
"libpg-query": "17.7.3",
"pgsql-deparser": "workspace:*"
},
"devDependencies": {
"makage": "^0.1.8"
}
}