UNPKG

1.72 kBJSONView Raw
1{
2 "name": "apollo-cache-inmemory",
3 "version": "1.6.6",
4 "description": "Core abstract of Caching layer for Apollo Client",
5 "author": "James Baxley <james@meteor.com>",
6 "contributors": [
7 "James Baxley <james@meteor.com>",
8 "Jonas Helfer <jonas@helfer.email>",
9 "Sashko Stubailo <sashko@stubailo.com>",
10 "James Burgess <jamesmillerburgess@gmail.com>",
11 "Bazyli Brzóska <bazyli.brzoska@gmail.com>"
12 ],
13 "license": "MIT",
14 "main": "./lib/bundle.cjs.js",
15 "module": "./lib/bundle.esm.js",
16 "typings": "./lib/index.d.ts",
17 "sideEffects": [
18 "./lib/fixPolyfills.js"
19 ],
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/apollographql/apollo-client.git"
23 },
24 "bugs": {
25 "url": "https://github.com/apollographql/apollo-client/issues"
26 },
27 "homepage": "https://github.com/apollographql/apollo-client#readme",
28 "scripts": {
29 "prepare": "npm run build",
30 "coverage": "jest --coverage",
31 "test": "tsc -p tsconfig.json --noEmit && jest",
32 "lint": "tslint -c \"../../config/tslint.json\" -p tsconfig.json src/*.ts",
33 "prebuild": "npm run clean",
34 "build": "tsc -b .",
35 "postbuild": "npm run bundle",
36 "bundle": "npx rollup -c rollup.config.js",
37 "watch": "../../node_modules/tsc-watch/index.js --onSuccess \"npm run postbuild\"",
38 "clean": "rm -rf coverage/* lib/*",
39 "prepublishOnly": "npm run build"
40 },
41 "dependencies": {
42 "apollo-cache": "^1.3.5",
43 "apollo-utilities": "^1.3.4",
44 "optimism": "^0.10.0",
45 "ts-invariant": "^0.4.0",
46 "tslib": "^1.10.0"
47 },
48 "peerDependencies": {
49 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
50 },
51 "gitHead": "d22394c419ff7d678afb5e7d4cd1df16ed803ead"
52}