-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
64 lines (64 loc) · 1.5 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": "graphqurl",
"description": "cURL for GraphQL - CLI and JS library for making GraphQL queries",
"version": "2.0.0",
"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": "^5.3.0",
"isomorphic-ws": "4.0.1",
"open": "7.3.1",
"terminal-kit": "^3.1.1",
"ws": "^7.5.9"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^7.26.0",
"eslint-config-oclif": "^1.5.1"
},
"engines": {
"node": ">=18.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",
"posttest": "npm run eslint",
"prep": "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"
]
}