-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.31 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.31 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
59
60
61
62
63
{
"name": "pgsql-deparser",
"version": "17.18.0",
"author": "Constructive <developers@constructive.io>",
"description": "PostgreSQL AST Deparser",
"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",
"kitchen-sink": "npm run fixtures && npm run fixtures:kitchen-sink",
"fixtures:kitchen-sink": "ts-node scripts/make-kitchen-sink.ts",
"fixtures:ast": "ts-node scripts/make-fixtures-ast.ts",
"fixtures:sql": "ts-node scripts/make-fixtures-sql.ts",
"fixtures": "ts-node scripts/make-fixtures.ts",
"fixtures:upstream-diff": "ts-node scripts/make-upstream-diff.ts",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch",
"strip-transformer-types": "ts-node scripts/strip-transformer-types.ts",
"strip-direct-transformer-types": "ts-node scripts/strip-direct-transformer-types.ts",
"strip-deparser-types": "ts-node scripts/strip-deparser-types.ts",
"organize-transformers": "ts-node scripts/organize-transformers-by-version.ts",
"generate-version-deparsers": "ts-node scripts/generate-version-deparsers.ts",
"generate-packages": "ts-node scripts/generate-version-packages.ts",
"prepare-versions": "npm run strip-transformer-types && npm run strip-direct-transformer-types && npm run strip-deparser-types && npm run organize-transformers && npm run generate-version-deparsers && npm run generate-packages"
},
"keywords": [
"sql",
"postgres",
"postgresql",
"pg",
"query",
"ast",
"deparser",
"database"
],
"devDependencies": {
"libpg-query": "17.7.3",
"makage": "^0.1.8"
},
"dependencies": {
"@pgsql/quotes": "workspace:*",
"@pgsql/types": "^17.6.2"
}
}