-
-
Notifications
You must be signed in to change notification settings - Fork 612
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.37 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
{
"name": "pg-sql2",
"version": "5.0.1",
"description": "Generate safe Postgres-compliant SQL with tagged template literals",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepack": "node ../../scripts/build-release.mts",
"build-package": "yarn build",
"pretest": "node dist/index.js",
"test": "jest",
"posttest": "yarn test:docs",
"test:docs": "markdown-doctest",
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"sql",
"injection",
"pg",
"postgres",
"postgresql",
"tagged",
"template",
"literal",
"es6",
"graphile",
"graphite"
],
"author": "Benjie Gillam <benjie@jemjie.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://github.com/graphile/crystal/tree/main/utils/pg-sql2",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.1",
"jest": "^30.2.0",
"markdown-doctest": "^1.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@graphile/lru": "workspace:^",
"tslib": "^2.8.1"
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"directory": "release",
"access": "public"
}
}