{
  "name": "apollo-cache-inmemory-fork",
  "version": "1.1.8",
  "description": "Core abstract of Caching layer for Apollo Client",
  "author": "James Baxley <james@meteor.com>",
  "contributors": [
    "James Baxley <james@meteor.com>",
    "Jonas Helfer <jonas@helfer.email>",
    "Sashko Stubailo <sashko@stubailo.com>"
  ],
  "license": "MIT",
  "main": "./lib/bundle.umd.js",
  "module": "./lib/index.js",
  "jsnext:main": "./lib/index.js",
  "typings": "./lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/apollographql/apollo-client.git"
  },
  "bugs": {
    "url": "https://github.com/apollographql/apollo-client/issues"
  },
  "homepage": "https://github.com/apollographql/apollo-client#readme",
  "scripts": {
    "coverage": "jest --coverage",
    "test": "jest",
    "lint": "tslint --type-check -p tsconfig.json src/*.ts",
    "prebuild": "npm run clean",
    "build": "tsc -p .",
    "postbuild": "npm run bundle",
    "bundle": "rollup -c rollup.config.js",
    "watch": "tsc -w -p .",
    "clean": "rimraf coverage/* && rimraf lib/*",
    "prepublishOnly": "npm run build",
    "build:browser": "browserify ./lib/bundle.umd.js --i apollo-cache --i apollo-utilities --i graphql -o=./lib/bundle.js && npm run minify:browser",
    "minify:browser": "uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js",
    "filesize": "npm run build:browser"
  },
  "dependencies": {
    "apollo-cache": "^1.1.3",
    "apollo-utilities": "^1.0.7",
    "graphql-anywhere": "^4.1.4"
  },
  "peerDependencies": {
    "graphql": "0.11.7 || ^0.12.0"
  },
  "devDependencies": {
    "@types/graphql": "0.12.3",
    "@types/jest": "21.1.10",
    "@types/lodash": "4.14.97",
    "browserify": "15.2.0",
    "graphql": "0.12.3",
    "graphql-tag": "2.6.1",
    "jest": "20.0.4",
    "lodash": "4.17.4",
    "rimraf": "2.6.2",
    "rollup": "0.55.1",
    "ts-jest": "20.0.14",
    "tslint": "5.9.1",
    "typescript": "2.5.2",
    "uglifyjs": "2.4.11"
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ]
  }
}
