forked from graphile/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.48 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
57
58
59
60
61
62
63
64
65
66
{
"name": "graphile-config",
"version": "0.0.1-beta.9",
"description": "Standard plugin interface and helpers to be used across the Graphile stack.",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./load": {
"types": "./dist/loadConfig.d.ts",
"default": "./dist/loadConfig.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
}
},
"scripts": {
"test": "mocha '__tests__/**/*.test.ts'",
"prepack": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"graphile",
"plugin",
"graphite"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://graphile.org/graphile-build/",
"dependencies": {
"@types/interpret": "^1.1.1",
"@types/node": "^20.5.7",
"@types/semver": "^7.5.1",
"chalk": "^4.1.2",
"debug": "^4.3.4",
"interpret": "^3.1.1",
"semver": "^7.5.4",
"tslib": "^2.6.2",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/mocha": "^10.0.1",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}