UNPKG

relay-link-batch-http

Version:

Batch HTTP transport layer for Relay

84 lines (83 loc) 2.13 kB
{ "name": "relay-link-batch-http", "version": "1.0.2", "description": "Batch HTTP transport layer for Relay", "license": "MIT", "main": "./lib/index.js", "module": "./lib/bundle.esm.js", "typings": "./lib/index.d.ts", "sideEffects": false, "repository": { "type": "git", "url": "git+https://github.com/papahigh/relay-link.git" }, "bugs": { "url": "https://github.com/papahigh/relay-link/issues" }, "homepage": "https://github.com/papahigh/relay-link#readme", "scripts": { "build": "tsc && rollup -c", "coverage": "jest --coverage", "clean": "rimraf lib/* && rimraf coverage/*", "filesize": "../../scripts/minify", "lint": "tslint -c \"../../tslint.json\" -p tsconfig.json -c ../../tslint.json src/*.ts", "prebuild": "yarn clean", "prepare": "yarn build", "test": "yarn lint && jest", "watch": "tsc -w -p . & rollup -c -w" }, "keywords": [ "Relay", "GraphQL", "http", "Network", "Batch", "Batching" ], "dependencies": { "relay-link": "1.0.3", "relay-link-batch": "1.0.2", "relay-link-http-common": "1.0.2", "tslib": "^1.11.1" }, "peerDependencies": { "graphql": "^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^15.5.0", "relay-runtime": "^9.0.0 || ^10.0.0 || ^11.0.0" }, "devDependencies": { "@types/jest": "^25.1.4", "@types/relay-runtime": "^11.0.0", "fetch-mock": "^9.3.1", "graphql": "^15.5.0", "graphql-tag": "^2.12.4", "jest": "^25.2.1", "object-to-querystring": "^1.0.8", "proxyquire": "^2.1.3", "relay-runtime": "^11.0.2", "ts-jest": "^25.2.1", "tslint": "^6.1.0", "typescript": "^3.8.3" }, "jest": { "globals": { "ts-jest": { "diagnostics": false } }, "transform": { ".(ts|tsx)": "ts-jest" }, "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "tsx", "js", "json" ], "testPathIgnorePatterns": [ "/node_modules/", "sharedHttpTests.ts" ], "testURL": "http://localhost" } }