forked from nicolasdao/schemaglue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "schemaglue",
"version": "2.0.2",
"description": "Glues multiple parts of a GraphQL schema together(incl. resolvers). This library is designed specifically for building GraphQL schema using Apollo's graphql-tools.js",
"main": "index.js",
"scripts": {
"test": "mocha",
"eslint": "eslint index.js test/ src/ --fix",
"release": "standard-version"
},
"keywords": [
"graphql",
"schema",
"resolver",
"appolo",
"graphql-tools"
],
"author": "Nicolas Dao",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nicolasdao/schemaglue/issues"
},
"homepage": "https://github.com/nicolasdao/schemaglue#readme",
"repository": {
"type": "git",
"url": "https://github.com/nicolasdao/schemaglue.git"
},
"dependencies": {
"glob": "^7.1.2",
"shortid": "^2.2.8"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.2.0",
"graphql": "^0.10.0",
"graphql-tools": "^1.2.2",
"mocha": "^3.5.0",
"standard-version": "^4.2.0"
}
}