1 | {
|
2 | "name": "apollo-link-retry",
|
3 | "version": "2.2.16",
|
4 | "description": "Retry Apollo Link for GraphQL Network Stack",
|
5 | "author": "Evans Hauser <evanshauser@gmail.com>",
|
6 | "contributors": [
|
7 | "James Baxley <james@meteor.com>",
|
8 | "Jonas Helfer <jonas@helfer.email>",
|
9 | "jon wong <j@jnwng.com>",
|
10 | "Sashko Stubailo <sashko@stubailo.com>"
|
11 | ],
|
12 | "license": "MIT",
|
13 | "main": "./lib/index.js",
|
14 | "module": "./lib/bundle.esm.js",
|
15 | "typings": "./lib/index.d.ts",
|
16 | "sideEffects": false,
|
17 | "repository": {
|
18 | "type": "git",
|
19 | "url": "git+https://github.com/apollographql/apollo-link.git"
|
20 | },
|
21 | "bugs": {
|
22 | "url": "https://github.com/apollographql/apollo-link/issues"
|
23 | },
|
24 | "homepage": "https://github.com/apollographql/apollo-link#readme",
|
25 | "scripts": {
|
26 | "build": "tsc && rollup -c",
|
27 | "clean": "rimraf lib/* && rimraf coverage/*",
|
28 | "coverage": "jest --coverage",
|
29 | "filesize": "../../scripts/minify",
|
30 | "lint": "tslint -c \"../../tslint.json\" -p tsconfig.json -c ../../tslint.json src/*.ts",
|
31 | "prebuild": "npm run clean",
|
32 | "prepare": "npm run build",
|
33 | "test": "npm run lint && jest",
|
34 | "watch": "tsc -w -p . & rollup -c -w"
|
35 | },
|
36 | "dependencies": {
|
37 | "@types/zen-observable": "0.8.0",
|
38 | "apollo-link": "^1.2.14",
|
39 | "tslib": "^1.9.3"
|
40 | },
|
41 | "devDependencies": {
|
42 | "@types/graphql": "14.2.3",
|
43 | "@types/jest": "24.9.0",
|
44 | "graphql": "15.0.0",
|
45 | "graphql-tag": "2.10.1",
|
46 | "jest": "24.9.0",
|
47 | "rimraf": "2.7.1",
|
48 | "rollup": "1.29.1",
|
49 | "ts-jest": "22.4.6",
|
50 | "tslint": "5.20.1",
|
51 | "typescript": "3.0.3",
|
52 | "wait-for-observables": "1.0.3"
|
53 | },
|
54 | "jest": {
|
55 | "transform": {
|
56 | ".(ts|tsx)": "ts-jest"
|
57 | },
|
58 | "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
59 | "moduleFileExtensions": [
|
60 | "ts",
|
61 | "tsx",
|
62 | "js",
|
63 | "json"
|
64 | ],
|
65 | "testURL": "http://localhost"
|
66 | },
|
67 | "gitHead": "1012934b4fd9ab436c4fdcd5e9b1bb1e4c1b0d98"
|
68 | }
|