forked from graphile/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "pg-introspection",
"version": "0.0.1-beta.3",
"description": "Strongly typed PostgreSQL introspection library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "node dist/index.js",
"prepack": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"pg",
"postgres",
"postgresql",
"introspection",
"pg_class",
"pg_constraint",
"pg_attribute",
"pg_proc",
"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-introspection",
"devDependencies": {
"@types/debug": "4.1.8",
"@types/jest": "^29.5.4",
"@types/node": "20.5.7",
"jest": "^29.6.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"tslib": "^2.6.2"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.17"
}
}