UNPKG

2.19 kBJSONView Raw
1{
2 "name": "apollo-link-http",
3 "version": "1.5.12",
4 "description": "HTTP 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 "Stephen Kao <stephen.yuchen.kao@gmail.com>"
12 ],
13 "license": "MIT",
14 "main": "./lib/index.js",
15 "module": "./lib/bundle.esm.js",
16 "typings": "./lib/index.d.ts",
17 "sideEffects": false,
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/apollographql/apollo-link.git"
21 },
22 "bugs": {
23 "url": "https://github.com/apollographql/apollo-link/issues"
24 },
25 "homepage": "https://github.com/apollographql/apollo-link#readme",
26 "scripts": {
27 "build": "tsc && rollup -c",
28 "clean": "rimraf lib/* && rimraf coverage/*",
29 "coverage": "jest --coverage",
30 "filesize": "../../scripts/minify",
31 "lint": "tslint -c \"../../tslint.json\" -p tsconfig.json -c ../../tslint.json src/*.ts",
32 "prebuild": "npm run clean",
33 "prepare": "npm run build",
34 "test": "npm run lint && jest",
35 "watch": "tsc -w -p . & rollup -c -w"
36 },
37 "dependencies": {
38 "apollo-link": "^1.2.9",
39 "apollo-link-http-common": "^0.2.11",
40 "tslib": "^1.9.3"
41 },
42 "peerDependencies": {
43 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
44 },
45 "devDependencies": {
46 "@types/graphql": "14.0.7",
47 "@types/jest": "22.2.3",
48 "apollo-fetch": "0.7.0",
49 "fetch-mock": "6.5.2",
50 "graphql": "14.1.1",
51 "graphql-tag": "2.10.1",
52 "jest": "22.4.4",
53 "object-to-querystring": "1.0.8",
54 "rimraf": "2.6.3",
55 "rollup": "1.4.1",
56 "ts-jest": "22.4.6",
57 "tslint": "5.13.1",
58 "typescript": "3.0.3"
59 },
60 "jest": {
61 "transform": {
62 ".(ts|tsx)": "ts-jest"
63 },
64 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
65 "moduleFileExtensions": [
66 "ts",
67 "tsx",
68 "js",
69 "json"
70 ],
71 "testPathIgnorePatterns": [
72 "/node_modules/",
73 "sharedHttpTests.ts"
74 ],
75 "testURL": "http://localhost"
76 },
77 "gitHead": "2c960e057de9d664855bb18df4a4bd25c88bb6ef"
78}