{
  "name": "graphql-cache",
  "version": "0.3.0",
  "description": "A simple, modular GraphQL cache for Javascript",
  "main": "lib/index.js",
  "scripts": {
    "build": "rm -rf lib && babel src --out-dir lib --copy-files",
    "watch": "rm -rf lib && babel src --out-dir lib -w --copy-files",
    "lint": "eslint .",
    "unit": "mocha --compilers js:babel-register -r babel-polyfill 'src/**/__tests__/*'",
    "test": "npm run lint && npm run unit",
    "prepublish": "npm run test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/madjam002/graphql-cache.git"
  },
  "keywords": [
    "graphql",
    "simple",
    "cache",
    "client"
  ],
  "author": "Jamie Greeff <jamie@greeff.me>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/madjam002/graphql-cache/issues"
  },
  "homepage": "https://github.com/madjam002/graphql-cache#readme",
  "dependencies": {
    "graphql": "^0.7.0",
    "invariant": "^2.2.1"
  },
  "devDependencies": {
    "babel-cli": "^6.7.5",
    "babel-eslint": "^6.0.2",
    "babel-plugin-transform-runtime": "^6.7.5",
    "babel-polyfill": "^6.13.0",
    "babel-preset-es2015": "^6.6.0",
    "babel-preset-stage-1": "^6.5.0",
    "babel-register": "^6.14.0",
    "chai": "^3.5.0",
    "eslint": "^2.7.0",
    "eslint-config-standard": "^5.1.0",
    "eslint-plugin-promise": "^1.1.0",
    "eslint-plugin-standard": "^1.3.2",
    "graphql-tag": "^0.1.14",
    "lodash": "^4.16.2",
    "mocha": "^3.1.0"
  }
}
