forked from Urigo/merge-graphql-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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": "@goodwaygroup/merge-graphql-schemas",
"author": "The Guild",
"version": "1.7.5",
"description": "A utility library to facilitate merging of modularized GraphQL schemas and resolver objects.",
"repository": {
"type": "git",
"url": "https://github.com/Urigo/merge-graphql-schemas.git"
},
"license": "MIT",
"sideEffects": false,
"main": "dist/commonjs/index.js",
"module": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"typescript": {
"definition": "dist/esnext/index.d.ts"
},
"scripts": {
"build": "tsc -m esnext --outDir dist/esnext && tsc -m commonjs --outDir dist/commonjs",
"test": "jest --forceExit && yarn bundlesize",
"ci:release:canary": "node bump.js && npm publish --tag alpha",
"bundlesize": "yarn build && cd bundle-test/ && yarn && yarn test"
},
"bugs": "https://github.com/Urigo/merge-graphql-schemas/issues",
"homepage": "https://github.com/Urigo/merge-graphql-schemas",
"keywords": [
"graphql",
"schema"
],
"files": [
"dist",
"typings"
],
"dependencies": {
"@graphql-toolkit/file-loading": "0.7.2",
"@graphql-toolkit/schema-merging": "0.7.2",
"tslib": "1.10.0"
},
"peerDependencies": {
"graphql": "^0.11.7 || ^0.13.0 || ^14.0.2"
},
"devDependencies": {
"@types/glob": "7.1.1",
"@types/graphql": "14.2.3",
"@types/jest": "24.0.23",
"graphql": "14.5.8",
"jest": "24.9.0",
"ts-jest": "24.1.0",
"typescript": "3.7.2"
},
"publishConfig": {
"access": "public"
}
}