-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 983 Bytes
/
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
{
"name": "@autotelic/graphql-schema-tools",
"version": "0.4.0",
"description": "Tools for GraphQL schemas.",
"main": "index.js",
"files": [
"lib"
],
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"lint": "standard",
"test": "tap --100 -j1 -R classic",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/graphql-schema-tools.git"
},
"keywords": [
"GraphQL",
"Schema",
"Tools",
"Utils"
],
"author": "Holden Whitehead <holden@autotelic.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/graphql-schema-tools/issues"
},
"homepage": "https://github.com/autotelic/graphql-schema-tools#readme",
"devDependencies": {
"@graphql-tools/stitch": "^8.6.9",
"graphql": "^16.4.0",
"standard": "^16.0.3",
"tap": "^16.0.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
}
}