-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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": "graphql-parse-resolve-info",
"version": "4.14.0",
"description": "Parse GraphQLResolveInfo (the 4th argument of resolve) into a simple tree",
"main": "index.js",
"types": "node8plus/index.d.ts",
"scripts": {
"test": "jest",
"prepack": "mkdir -p node8plus && tsc && tsc --target esnext --lib esnext --outDir build-turbo --declarationDir build-turbo",
"watch": "mkdir -p node8plus && tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/graphile-engine.git"
},
"keywords": [
"graphile",
"graphql",
"engine",
"resolveinfo",
"graphqljs",
"graphql-js",
"graphqlresolveinfo"
],
"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/graphql-parse-resolve-info",
"peerDependencies": {
"graphql": ">=0.9 <0.14 || ^14.0.2 || ^15.4.0 || ^16.3.0"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/jest": "25.x",
"@types/node": "^14.6.4",
"eslint_d": "^9.1.2",
"jest": "25.x",
"ts-jest": "25.x",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"debug": "^4.1.1",
"tslib": "^2.0.1"
},
"files": [
"node8plus",
"index.js",
"build-turbo"
],
"engines": {
"node": ">=8.6"
}
}