forked from graphile/graphile-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "graphile-utils",
"version": "4.4.6-alpha.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-build.git"
},
"keywords": [
"graphile",
"graphql",
"engine",
"plugin",
"build",
"extension",
"utils",
"utilities"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/graphile-build/issues"
},
"homepage": "https://github.com/graphile/graphile-build/tree/master/packages/graphile-utils",
"dependencies": {
"debug": "^4.1.1",
"graphql": ">=0.9 <0.14 || ^14.0.2"
},
"engines": {
"node": ">=8.6"
},
"devDependencies": {
"graphile-build": "4.4.6-alpha.0",
"graphile-build-pg": "4.4.6-alpha.0",
"jest": "^24.8.0",
"jest-serializer-graphql-schema": "4.4.6-alpha.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"graphile-build": "^4.4.2",
"graphile-build-pg": "^4.4.2"
},
"files": [
"node8plus"
]
}