forked from graffle-js/graffle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.65 KB
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": "@testmail.app/graphql-request",
"description": "Clone of graphql-request (minimal GraphQL client) with improvements like built-in retries",
"version": "1.8.4",
"main": "dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist"
],
"bundlesize": [
{
"path": "./dist/src/index.js",
"maxSize": "15 kB"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/testmail-app/graphql-request.git"
},
"keywords": [
"graphql",
"request",
"fetch",
"graphql-client",
"apollo",
"typescript"
],
"author": "Amit <amit@testmail.app>",
"contributors": [
"Johannes Schickling <johannes@graph.cool>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/testmail-app/graphql-request/issues"
},
"homepage": "https://github.com/testmail-app/graphql-request",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -d",
"lint": "eslint '{src,tests}/**/*.ts'",
"test": "npm run lint && npm run build && mocha \"./dist/tests/*.js\" && npm run size",
"size": "bundlesize"
},
"dependencies": {
"cross-fetch": "^3.0.4",
"fetch-retry": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"bundlesize": "^0.18.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-plugin-mocha": "^6.3.0",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"typescript": "^3.8.3"
}
}