{
  "name": "typescript-lru-cache",
  "version": "2.0.0",
  "description": "LRU Cache",
  "author": "Robert Herber",
  "license": "MIT",
  "main": "dist/index",
  "types": "dist/index",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rob893/typescript-lru-cache.git"
  },
  "keywords": [
    "cache",
    "lru",
    "typescript"
  ],
  "bugs": {
    "url": "https://github.com/rob893/typescript-lru-cache/issues"
  },
  "homepage": "https://github.com/rob893/typescript-lru-cache#readme",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "benchmark": "ts-node ./src/__benchmarks__/index.ts",
    "build": "rm -rf ./dist && tsc",
    "lint": "eslint .",
    "lint-fix": "eslint . --fix",
    "prettier": "prettier --write **/*.{ts,js,css,html,json} !**/node_modules/** !**/dist/** !**/coverage/** !**/compiled/** !**/docs/** !**/reports/**",
    "release": "np --no-cleanup --no-2fa",
    "build-circular-dependency-check": "madge --circular ./dist",
    "circular-dependency-check": "madge --circular --extensions ts --ts-config tsconfig.json ./src",
    "test": "jest --coverage",
    "test-watch": "jest --watchAll --coverage",
    "test-clean": "jest --clearCache",
    "test-mutate": "npx stryker run",
    "typedoc": "rm -rf ./docs && typedoc src/index.ts",
    "version": "npm run build && npm run typedoc",
    "validate": "npm run build && npm run build-circular-dependency-check && npm t && npm run lint"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.0.3",
    "@commitlint/config-conventional": "^17.0.3",
    "@stryker-mutator/core": "^6.1.2",
    "@stryker-mutator/jest-runner": "^6.1.2",
    "@stryker-mutator/typescript-checker": "^6.1.2",
    "@types/benchmark": "^2.1.1",
    "@types/jest": "^28.1.4",
    "@typescript-eslint/eslint-plugin": "^5.30.4",
    "@typescript-eslint/parser": "^5.30.4",
    "benchmark": "^2.1.4",
    "eslint": "^8.19.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-jest": "^26.5.3",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.1",
    "jest": "^28.1.2",
    "madge": "^5.0.1",
    "np": "^7.6.2",
    "prettier": "^2.7.1",
    "ts-jest": "^28.0.5",
    "ts-node": "^10.8.2",
    "typedoc": "^0.23.5",
    "typescript": "^4.7.4"
  }
}
