-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "schemaglue",
"version": "4.3.0",
"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",
"types": "index.d.ts",
"scripts": {
"test": "mocha",
"lint": "eslint index.js test/ src/ --fix",
"push": "git push --follow-tags origin master && npm publish",
"rls": "standard-version --release-as",
"v": "node -e \"console.log(require('./package.json').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.3.4",
"eslint": "^7.32.0",
"graphql": "^15.6.1",
"graphql-tools": "^8.2.0",
"mocha": "^9.1.2",
"standard-version": "^9.3.1"
}
}