-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 922 Bytes
/
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
{
"name": "gqall",
"version": "0.1.2",
"description": "A CLI for running a GraphQL query and requesting all fields",
"main": "index.js",
"bin": {
"gqall": "./index.js"
},
"scripts": {
"posttest": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoop33/gqall.git"
},
"keywords": [
"graphql"
],
"author": "Rob Warner <rwarner@grailbox.com> (https://grailbox.com)",
"contributors": [
"Robert McGuinness <rob.mcguinness@availity.com>",
"Tyson Warner <tysonwarner22@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hoop33/gqall/issues"
},
"homepage": "https://github.com/hoop33/gqall#readme",
"dependencies": {
"graphql-request": "^1.8.2",
"yargs": "^12.0.2"
},
"devDependencies": {
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"jest": "^23.6.0"
}
}