forked from kamilkisiela/graphql-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.58 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
{
"name": "graphql-inspector",
"version": "0.4.2",
"description": "Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.",
"keywords": [
"graphql",
"graphql-inspector",
"tools",
"cli"
],
"sideEffects": false,
"main": "dist/index.js",
"bin": {
"graphql-inspector": "dist/cli.js"
},
"author": {
"name": "Kamil Kisiela",
"email": "[email protected]",
"url": "https://github.com/kamilkisiela"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "kamilkisiela/graphql-inspector"
},
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --config .prettierrc --write \"{src,__tests__}/**/*.ts\"",
"clean": "rm -rf dist/",
"precommit": "lint-staged",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/figures": "2.0.0",
"@types/glob": "7.1.1",
"@types/graphql": "14.0.3",
"@types/is-glob": "4.0.0",
"@types/jest": "23.3.9",
"@types/log-symbols": "2.0.0",
"@types/node-fetch": "2.1.3",
"@types/opn": "5.1.0",
"graphql-tag": "2.10.0",
"jest": "23.6.0",
"lint-staged": "8.0.4",
"prettier": "1.15.2",
"ts-jest": "23.10.4",
"typescript": "3.1.6"
},
"dependencies": {
"apollo-server": "2.2.2",
"chalk": "2.4.1",
"commander": "2.19.0",
"figures": "2.0.0",
"glob": "7.1.3",
"graphql": "14.0.2",
"is-glob": "4.0.0",
"is-valid-path": "0.1.1",
"log-symbols": "2.2.0",
"node-fetch": "2.3.0",
"opn": "5.4.0"
}
}