UNPKG

1.93 kBJSONView Raw
1{
2 "name": "apollo-link-http-common",
3 "version": "0.2.16",
4 "description": "Http utilities for Apollo Link shared across all links using http",
5 "main": "./lib/index.js",
6 "module": "./lib/bundle.esm.js",
7 "typings": "./lib/index.d.ts",
8 "sideEffects": false,
9 "scripts": {
10 "build": "tsc && rollup -c",
11 "clean": "rimraf lib/* && rimraf coverage/*",
12 "coverage": "jest --coverage",
13 "filesize": "../../scripts/minify",
14 "lint": "tslint -c \"../../tslint.json\" -p tsconfig.json -c ../../tslint.json src/*.ts",
15 "prebuild": "npm run clean",
16 "prepare": "npm run build",
17 "test": "npm run lint && jest",
18 "watch": "tsc -w -p . & rollup -c -w"
19 },
20 "keywords": [
21 "apollo",
22 "http",
23 "network"
24 ],
25 "author": "Evans Hauser",
26 "license": "MIT",
27 "dependencies": {
28 "apollo-link": "^1.2.14",
29 "ts-invariant": "^0.4.0",
30 "tslib": "^1.9.3"
31 },
32 "peerDependencies": {
33 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
34 },
35 "devDependencies": {
36 "@types/graphql": "14.2.3",
37 "@types/jest": "24.9.0",
38 "fetch-mock": "6.5.2",
39 "graphql": "15.0.0",
40 "graphql-tag": "2.10.1",
41 "jest": "24.9.0",
42 "object-to-querystring": "1.0.8",
43 "rimraf": "2.7.1",
44 "rollup": "1.29.1",
45 "ts-jest": "22.4.6",
46 "tslint": "5.20.1",
47 "typescript": "3.0.3"
48 },
49 "repository": {
50 "type": "git",
51 "url": "git+https://github.com/apollographql/apollo-link.git"
52 },
53 "bugs": {
54 "url": "https://github.com/apollographql/apollo-link/issues"
55 },
56 "homepage": "https://github.com/apollographql/apollo-link#readme",
57 "jest": {
58 "transform": {
59 ".(ts|tsx)": "ts-jest"
60 },
61 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
62 "moduleFileExtensions": [
63 "ts",
64 "tsx",
65 "js",
66 "json"
67 ],
68 "testURL": "http://localhost"
69 },
70 "gitHead": "1012934b4fd9ab436c4fdcd5e9b1bb1e4c1b0d98"
71}