{
  "name": "graphql-resolver-cache",
  "version": "1.1.0",
  "description": "Caching for Graphql resolvers",
  "main": "src/index.js",
  "scripts": {
    "format": "prettier  --trailing-comma es5 --single-quote --write src/**/*.js",
    "lint": "eslint src",
    "test": "jest --coverage",
    "coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
    "precommit": "lint-staged"
  },
  "lint-staged": {
    "*.js": [
      "npm run format",
      "npm run lint",
      "git add"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Intellicode/graphql-resolver-cache.git"
  },
  "keywords": [
    "graphql",
    "apollo"
  ],
  "author": "Tom Hastjarjanto <tom@intellicode.nl>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Intellicode/graphql-resolver-cache/issues"
  },
  "homepage": "https://github.com/Intellicode/graphql-resolver-cache#readme",
  "devDependencies": {
    "coveralls": "^3.0.0",
    "eslint": "^4.4.1",
    "eslint-config-prettier": "^2.3.0",
    "husky": "^0.14.3",
    "jest": "^21.0.0",
    "lint-staged": "^4.0.3",
    "prettier": "^1.5.3"
  },
  "dependencies": {
    "lru-cache": "^4.1.1",
    "object-hash": "^1.1.8"
  }
}
