{
  "name": "slim-cache",
  "version": "1.1.1",
  "description": "Super Fast Lightweight Cache with a Map like interface",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "repository": "https://github.com/nivrith/slim-cache",
  "author": "Nivrith <nivrithgomatam@gmail.com>",
  "license": "MIT",
  "keywords": [
    "cache",
    "memoize",
    "caching",
    "perf",
    "performance",
    "optimizations",
    "optimize",
    "slim-cache",
    "fast-cache"
  ],
  "scripts": {
    "compile": "npm run clean && tsc -b",
    "start": "yarn compile && node dist/src/index",
    "test": "nyc mocha --require ts-node/register test/**/*.spec.ts",
    "prepublishOnly": "npm run compile",
    "pretest": "npm run clean && npm run compile",
    "clean": "del-cli dist",
    "release": "npx np",
    "docs": "typedoc src",
    "trace": "tsc -b && node --trace-deopt --trace-opt --runtime_call_stats --trace_ic --trace_ic",
    "devtools": "node --inspect --inspect-brk",
    "benchmark": "tsc -b && node"
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "all": true,
    "lines": 80,
    "exclude": [
      "test",
      "docs",
      "dist",
      "benchmark"
    ],
    "check-coverage": true
  },
  "files": [
    "dist/src/**/*"
  ],
  "dependencies": {},
  "engines": {
    "node": ">=8"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^0.1.3",
    "@types/benchmark": "^1.0.31",
    "@types/chai": "^4.1.7",
    "@types/cli-table2": "^0.2.2",
    "@types/mocha": "^5.2.7",
    "@types/ora": "^3.2.0",
    "@types/typescript": "^2.0.0",
    "benchmark": "^2.1.4",
    "chai": "^4.2.0",
    "cli-table2": "^0.2.0",
    "del-cli": "^2.0.0",
    "fast-memoize": "^2.5.1",
    "logdown": "^3.2.8",
    "map-cache": "^0.2.2",
    "microtime": "^3.0.0",
    "mocha": "^6.1.4",
    "nyc": "^14.1.1",
    "ora": "^3.4.0",
    "ts-node": "^8.3.0",
    "tslint": "^5.18.0",
    "typedoc": "^0.14.2",
    "typescript": "^3.5.2"
  }
}
