{
  "name": "apicache",
  "version": "1.4.0",
  "scripts": {
    "lint": "eslint .",
    "pretest": "npm run lint",
    "test": "nyc mocha $(find test -name '*.test.js') --recursive",
    "test:watch": "npm run test -- --watch",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "prepublish": "npm run test"
  },
  "engines": {
    "node": ">=6.0.0"
  },
  "description": "An ultra-simplified API response caching middleware for Express/Node using plain-english durations.",
  "main": "./src/apicache.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/kwhitley/apicache.git"
  },
  "keywords": [
    "cache",
    "API",
    "redis",
    "memcache",
    "response",
    "express",
    "JSON",
    "duration",
    "middleware",
    "memory"
  ],
  "author": "Kevin R. Whitley <kevin3503@gmail.com> (http://krwhitley.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kwhitley/apicache/issues",
    "email": "kevin3503@gmail.com"
  },
  "devDependencies": {
    "chai": "^4.2.0",
    "compression": "^1.7.3",
    "coveralls": "^3.0.2",
    "eslint": "^4.18.0",
    "express": "^4.16.4",
    "fakeredis": "^2.0.0",
    "mocha": "^5.2.0",
    "nyc": "^13.3.0",
    "restify": "^7.7.0",
    "restify-etag-cache": "^1.0.12",
    "supertest": "^3.4.2"
  },
  "dependencies": {}
}
