-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.37 KB
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
{
"name": "graphcurl",
"version": "0.3.1",
"description": "GraphQL curl-like command-line client",
"author": "GraphQL In Depth (https://github.com/graphql-in-depth)",
"license": "MIT",
"keywords": [
"graphql",
"graphql-client",
"graphql-import",
"graphql-import-cli",
"cli",
"curl",
"client",
"import",
"json",
"yaml",
"csv",
"csv-import",
"console",
"command",
"command-line",
"apollo",
"apollo-client",
"winston"
],
"repository": "https://github.com/graphql-in-depth/graphcurl",
"bugs": "https://github.com/graphql-in-depth/graphcurl/issues",
"main": "src/graphcurl.js",
"bin": {
"gc": "bin/graphcurl",
"graphcurl": "bin/graphcurl"
},
"files": [
"/bin",
"/src"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {},
"dependencies": {
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"apollo-utilities": "^1.3.4",
"commander": "^5.1.0",
"graphql": "^15.1.0",
"graphql-tag": "^2.10.3",
"node-fetch": "^2.6.0",
"subscriptions-transport-ws": "^0.9.16",
"winston": "^3.2.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"prettier": "^2.0.5"
}
}