{
  "name": "apollo-cache-redux",
  "version": "0.1.2",
  "description": "Redux cache for Apollo Client 2.x",
  "main": "./lib/index.js",
  "typings": "./lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rportugal/apollo-cache-redux.git"
  },
  "author": "Ricardo Portugal <ricardofmportugal@gmail.com>",
  "contributors": [
    "Ricardo Portugal <ricardofmportugal@gmail.com>"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rportugal/apollo-cache-redux/issues"
  },
  "homepage": "https://github.com/rportugal/apollo-cache-redux#readme",
  "scripts": {
    "coverage": "jest --coverage",
    "test": "jest",
    "lint": "tslint --type-check -p tsconfig.json src/*.ts",
    "prebuild": "npm run clean",
    "build": "tsc -p .",
    "watch": "tsc -w -p .",
    "clean": "rimraf coverage/* && rimraf lib/*",
    "prepublishOnly": "npm run build",
    "build:browser": "browserify ./lib/index.js --i apollo-cache-core --i apollo-utilities -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.17",
    "apollo-cache-inmemory": "1.2.10"
  },
  "devDependencies": {
    "@types/graphql": "0.9.4",
    "@types/jest": "21.1.2",
    "@types/lodash": "^4.14.85",
    "browserify": "14.5.0",
    "graphql": "0.13.2",
    "graphql-tag": "2.9.2",
    "jest": "^23.6.0",
    "lodash": "^4.17.11",
    "redux": "^4.0.0",
    "rimraf": "2.6.2",
    "ts-jest": "20.0.14",
    "tslint": "5.8.0",
    "typescript": "2.5.2",
    "uglifyjs": "2.4.11"
  },
  "peerDependencies": {
    "redux": "3.x || 4.x"
  },
  "jest": {
    "testEnvironment": "node",
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ]
  }
}
