UNPKG

2.04 kBJSONView Raw
1{
2 "name": "apollo-link",
3 "version": "1.2.14",
4 "description": "Flexible, lightweight transport layer for GraphQL",
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 "apollo-utilities": "^1.3.0",
38 "ts-invariant": "^0.4.0",
39 "tslib": "^1.9.3",
40 "zen-observable-ts": "^0.8.21"
41 },
42 "peerDependencies": {
43 "graphql": "^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0"
44 },
45 "devDependencies": {
46 "@types/graphql": "14.2.3",
47 "@types/jest": "24.9.0",
48 "@types/node": "9.6.55",
49 "graphql": "15.0.0",
50 "graphql-tag": "2.10.1",
51 "jest": "24.9.0",
52 "rimraf": "2.7.1",
53 "rollup": "1.29.1",
54 "ts-jest": "22.4.6",
55 "tslint": "5.20.1",
56 "typescript": "3.0.3"
57 },
58 "jest": {
59 "transform": {
60 ".(ts|tsx)": "ts-jest"
61 },
62 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
63 "moduleFileExtensions": [
64 "ts",
65 "tsx",
66 "js",
67 "json"
68 ],
69 "testURL": "http://localhost"
70 },
71 "gitHead": "1012934b4fd9ab436c4fdcd5e9b1bb1e4c1b0d98"
72}