-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 889 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "graphql-got",
"version": "0.1.2",
"description": "Convenience wrapper for got to interact with GraphQL",
"license": "MIT",
"repository": "kevva/graphql-got",
"author": {
"name": "Kevin Mårtensson",
"email": "kevinmartensson@gmail.com",
"url": "github.com/kevva"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"api",
"apollo",
"get",
"got",
"graphql",
"gql",
"http",
"https",
"post",
"query",
"relay",
"request",
"uri",
"url",
"util",
"utility"
],
"dependencies": {
"aggregate-error": "^1.0.0",
"got": "^7.1.0",
"prepend-http": "^2.0.0"
},
"devDependencies": {
"apollo-server-micro": "^1.1.2",
"ava": "*",
"graphql": "^0.11.3",
"graphql-tools": "^1.2.2",
"micro": "^8.0.4",
"nock": "^9.0.18",
"test-listen": "^1.0.2",
"xo": "*"
}
}