forked from hasura/graphqurl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.68 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
63
64
65
66
67
68
{
"name": "graphqurl",
"description": "cURL for GraphQL - CLI and JS library for making GraphQL queries",
"version": "0.3.1",
"author": "Hasura",
"bin": {
"gq": "./bin/run",
"graphqurl": "./bin/run"
},
"bugs": "https://github.com/hasura/graphqurl/issues",
"dependencies": {
"@oclif/command": "^1.4.35",
"@oclif/config": "^1.6.33",
"@oclif/errors": "^1.1.2",
"@oclif/plugin-help": "^2.0.5",
"apollo-cache-inmemory": "^1.2.6",
"apollo-client": "^2.3.7",
"apollo-link": "^1.2.2",
"apollo-link-http": "^1.5.4",
"apollo-link-ws": "^1.0.8",
"cli-ux": "^4.7.3",
"express": "^4.16.3",
"graphql": "0.9.1",
"graphql-language-service-interface": "^1.2.2",
"graphql-language-service-utils": "^1.2.2",
"graphql-tag": "^2.9.2",
"node-fetch": "^2.2.0",
"opn": "^5.3.0",
"subscriptions-transport-ws": "^0.9.13",
"terminal-kit": "^1.19.2",
"ws": "^6.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-oclif": "^1.5.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/hasura/graphqurl",
"keywords": [
"oclif",
"cli",
"graphql",
"autocomplete"
],
"license": "Apache-2.0",
"main": "src/index.js",
"oclif": {
"bin": "gq"
},
"repository": "hasura/graphqurl",
"scripts": {
"eslint": "eslint .",
"eslintfix": "eslint . --fix",
"build-graphiql": "cd src/graphiql/app && npm install && npm run build",
"posttest": "npm run eslint",
"prepublish": "npm run build-graphiql",
"test": "node test/index.test.js && node test/clearstate.test.js"
},
"pre-commit": [
"eslintfix"
]
}