forked from awslabs/graphql-schema-utilities
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.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
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
67
68
69
70
71
72
{
"name": "graphql-schema-utilities",
"version": "1.1.3",
"description": "Merge GraphQL Schema files and validate queries against the merged Schema",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/graphql-schema-utilities"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf coverage/ dist/ node_modules/",
"build": "npm run lint && tsc",
"prepack": "tsc",
"build:watch": "tsc --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"pretest": "npm run build",
"test:only": "lab -l -c -S dist/test",
"test": "npm run test:only --",
"test:watch": "npm test -- -w",
"coverage": "lab -c -S -r console -o stdout -r html -o ./coverage/coverage.html ./dist/test",
"release:patch": "npm version patch && npm run release:publish",
"release:minor": "npm version minor && npm run release:publish",
"release:major": "npm version major && npm run release:publish",
"release:publish": "npm publish && git push --follow-tags"
},
"bin": {
"graphql-schema-utilities": "./dist/cli-launcher.js"
},
"keywords": [
"GraphQL",
"Schema stitching",
"validate schema",
"merge schema",
"validate graphql operations",
"graphql schema utilities",
"graphql schema tools"
],
"author": "Amazon",
"license": "Apache-2.0",
"devDependencies": {
"@types/code": "^4.0.0",
"@types/glob": "^5.0.30",
"@types/graphql": "^14.2.0",
"@types/lab": "^11.1.0",
"@types/mkdirp": "^0.5.0",
"@types/node": "^8.10.49",
"@types/rimraf": "0.0.28",
"code": "^4.0.0",
"lab": "^14.1.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.1",
"tslint": "^5.5.0",
"typescript": "^3.1.0"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.11.0",
"glob": "^7.1.2",
"graphql": "^14.3.0",
"graphql-tools": "^4.0.4",
"lodash": "^4.17.14"
},
"typescript": {
"definition": "dist/index.d.ts"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0"
}
}