-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "graphile-utils",
"version": "4.14.0",
"description": "Utilities to help with building graphile-build plugins",
"main": "node8plus/index.js",
"types": "node8plus/index.d.ts",
"scripts": {
"test": "scripts/test",
"prepack": "mkdir -p node8plus && tsc",
"watch": "mkdir -p node8plus && tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/graphile-engine.git"
},
"keywords": [
"graphile",
"graphql",
"engine",
"plugin",
"build",
"extension",
"utils",
"utilities"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/graphile-engine/issues"
},
"homepage": "https://github.com/graphile/graphile-engine/tree/master/packages/graphile-utils",
"dependencies": {
"debug": "^4.1.1",
"graphql": ">=0.9 <0.14 || ^14.0.2 || ^15.4.0",
"tslib": "^2.0.1"
},
"engines": {
"node": ">=8.6"
},
"devDependencies": {
"graphile-build": "4.14.0",
"graphile-build-pg": "4.14.0",
"jest": "25.x",
"jest-serializer-graphql-schema": "4.10.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"graphile-build": "^4.5.0",
"graphile-build-pg": "^4.5.0"
},
"files": [
"node8plus"
]
}