-
-
Notifications
You must be signed in to change notification settings - Fork 579
/
Copy pathpackage.json
56 lines (56 loc) · 1.22 KB
/
package.json
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
{
"name": "pg-sql2",
"version": "5.0.0-beta.7",
"description": "Generate safe Postgres-compliant SQL with tagged template literals",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"pretest": "node dist/index.js",
"test": "jest",
"posttest": "yarn test:docs",
"test:docs": "markdown-doctest",
"prepack": "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 <[email protected]>",
"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.8",
"@types/jest": "^29.5.4",
"@types/node": "20.5.7",
"jest": "^29.6.4",
"markdown-doctest": "^1.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@graphile/lru": "workspace:^",
"tslib": "^2.6.2"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.17"
}
}