-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "graphqurl",
"description": "cURL for GraphQL - CLI and JS library for making GraphQL queries",
"version": "1.0.3",
"author": "Hasura",
"bin": {
"gq": "./bin/run",
"graphqurl": "./bin/run"
},
"bugs": "https://github.com/hasura/graphqurl/issues",
"dependencies": {
"@oclif/command": "1.8.0",
"@oclif/config": "1.17.0",
"@oclif/errors": "1.3.4",
"@oclif/plugin-help": "^3.3.1",
"cli-ux": "^4.7.3",
"express": "^4.19.2",
"graphql": "15.5.0",
"graphql-language-service-interface": "^2.8.2",
"graphql-language-service-utils": "2.5.1",
"isomorphic-fetch": "3.0.0",
"isomorphic-ws": "4.0.1",
"open": "7.3.1",
"subscriptions-transport-ws": "0.9.18",
"terminal-kit": "^3.1.1",
"ws": "^7.5.9"
},
"devDependencies": {
"@zeit/ncc": "^0.22.1",
"eslint": "^7.26.0",
"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",
"prep": "npm run build-graphiql && npm run bundle",
"prelink": "npm run prep",
"launch": "npm run prep && npm publish",
"clearteststate": "node test/clearstate.test.js",
"test": "node test/index.test.js && npm run clearteststate",
"bundle": "ncc build src/index.js -o lib"
},
"pre-commit": [
"eslintfix"
]
}