-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "apollo-link-queue",
"version": "3.1.0",
"description": "A link to queue requests when a certain condition is met (eg. device is offline)",
"dependencies": {
"@apollo/client": "^3.2.4"
},
"devDependencies": {
"@types/graphql": "^0.11.7",
"@types/jest": "^23.0.1",
"@types/node": "^8.0.26",
"codecov": "^3.7.1",
"graphql": "^0.11.7",
"graphql-tag": "^2.4.2",
"jest": "^23.0.1",
"nyc": "^11.2.1",
"react-scripts-ts": "^2.6.0",
"ts-jest": "22.0.1",
"tslint": "^5.11.0",
"typescript": "^4.1.3"
},
"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 -c tslint.json src/*.ts* src/**/*.ts*",
"test": "yarn run lint && react-scripts-ts test --coverage --collectCoverageFrom=src/**/*.ts* --collectCoverageFrom=!src/index.ts --collectCoverageFrom=!src/TestUtils.ts",
"testonly": "react-scripts-ts test --env=jsdom",
"coverage": "codecov -f coverage/*.json"
},
"keywords": [
"graphql",
"apollo",
"apollo-link",
"offline",
"queue"
],
"author": "Jonas Helfer <[email protected]>",
"license": "MIT"
}