This repository was archived by the owner on Oct 11, 2022. It is now read-only.
forked from helfer/apollo-link-queue
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "apollo-link-queue",
"version": "2.0.0",
"description": "A link to queue requests when a certain condition is met (eg. device is offline)",
"dependencies": {
"apollo-link": "^0.7.0"
},
"devDependencies": {
"@types/graphql": "^0.11.7",
"@types/jest": "^20.0.8",
"@types/node": "^8.0.26",
"codecov": "^2.3.0",
"graphql": "^0.11.7",
"graphql-tag": "^2.10.1",
"nyc": "^11.2.1",
"react-scripts-ts": "^2.6.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"main": "build/dist/index.js",
"module": "build/dist/index.js",
"jsnext:main": "build/dist/index.js",
"typings": "build/dist/index.d.ts",
"repository": {
"type": "git",
"url": "helfer/apollo-link-queue"
},
"scripts": {
"build": "tsc",
"lint": "tslint src/*.ts* src/**/*.ts*",
"test": "react-scripts-ts test --coverage --collectCoverageFrom=src/**/*.ts* --collectCoverageFrom=!src/index.ts --collectCoverageFrom=!src/TestUtils.ts && yarn run lint",
"testonly": "react-scripts-ts test --env=jsdom",
"coverage": "codecov -f coverage/*.json"
},
"keywords": [
"graphql",
"apollo",
"apollo-link",
"offline",
"queue"
],
"author": "Jonas Helfer <jonas@helfer.email>",
"license": "MIT"
}