UNPKG

relay-link-batch

Version:

Relay Link that performs batching and operation on batched Operations

82 lines (81 loc) 2.09 kB
{ "name": "relay-link-batch", "version": "1.0.2", "description": "Relay Link that performs batching and operation on batched Operations", "author": "Evans Hauser <evanshauser@gmail.com>", "contributors": [ "James Baxley <james@meteor.com>", "Jonas Helfer <jonas@helfer.email>", "jon wong <j@jnwng.com>", "Sashko Stubailo <sashko@stubailo.com>" ], "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", "Network", "Batch", "Batching" ], "dependencies": { "relay-link": "1.0.3", "tslib": "^1.11.1" }, "peerDependencies": { "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", "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" ], "testURL": "http://localhost" } }