forked from Urigo/merge-graphql-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.96 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
57
58
59
60
61
62
63
64
65
66
{
"name": "merge-graphql-schemas",
"author": "OK GROW!",
"version": "1.5.7",
"description": "A utility library to facilitate merging of modularized GraphQL schemas and resolver objects.",
"repository": {
"type": "git",
"url": "https://github.com/okgrow/merge-graphql-schemas.git"
},
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "typings/index.d.ts",
"scripts": {
"rollup:build": "cross-env BABEL_ENV=build rollup -c",
"rollup:watch": "cross-env BABEL_ENV=build rollup -c -w",
"prepare": "npm run rollup:build",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "jest --verbose",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch",
"start": "npm run rollup:watch"
},
"bugs": "https://github.com/okgrow/merge-graphql-schemas/issues",
"homepage": "https://github.com/okgrow/merge-graphql-schemas",
"keywords": [
"graphql",
"schema"
],
"files": [
"dist",
"typings"
],
"dependencies": {
"deepmerge": "^2.1.1",
"glob": "^7.1.3",
"is-glob": "^4.0.0"
},
"peerDependencies": {
"graphql": "^0.11.7 || ^0.13.0 || ^14.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"core-js": "^2.5.7",
"cross-env": "^5.2.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-meteor": "^0.2.4",
"eslint-plugin-babel": "2.x.x",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"graphql": "^14.0.2",
"jest": "^23.6.0",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-watch": "^4.3.1"
}
}