forked from hosmelq/gql-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.17 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
{
"name": "@nerdify/gql-tools",
"version": "0.0.0-alpha-1.1",
"type": "module",
"engines": {
"node": ">=16"
},
"bin": {
"gql-tools": "./src/index.js"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"got": "^12.3.1",
"graphql": "^16.6.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
},
"author": "Nerdify S.A. <[email protected]>",
"repository": {
"type": "GitHub",
"url": "https://github.com/nerdify/gql-tools"
},
"bugs": {
"url": "https://github.com/nerdify/gql-tools/issues"
},
"description": "Graphql Tools",
"license": "ISC",
"keywords": [
"graphql",
"tools"
],
"maintainers": [
{
"name": "Rene Corrales",
"email": "[email protected]"
},
{
"name": "Hosmel Q.",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Rene Corrale",
"email": "[email protected]"
}
]
}