forked from graffle-js/graffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 946 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
{
"name": "graphql-request",
"version": "1.1.4",
"main": "dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/graphql-request.git"
},
"keywords": [
"graphql",
"request",
"fetch",
"graphql-client",
"apollo"
],
"author": "Johannes Schickling <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/graphql-request/issues"
},
"homepage": "https://github.com/graphcool/graphql-request",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -d",
"test": "npm run build && ava --serial"
},
"devDependencies": {
"@types/fetch-mock": "^5.8.2",
"@types/node": "^7.0.18",
"ava": "^0.19.1",
"fetch-mock": "^5.11.0",
"typescript": "^2.3.2"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
}
}