{
  "name": "@gmod/abortable-promise-cache",
  "version": "2.0.1",
  "description": "add AbortController support to a cache of async requests",
  "license": "MIT",
  "repository": "GMOD/abortable-promise-cache",
  "main": "dist/index.js",
  "module": "esm/index.js",
  "author": {
    "name": "Robert Buels",
    "email": "rbuels@gmail.com",
    "url": "https://github.com/rbuels"
  },
  "files": [
    "dist",
    "esm",
    "src"
  ],
  "scripts": {
    "test": "jest",
    "lint": "eslint --report-unused-disable-directives --max-warnings 0 src test",
    "docs": "documentation readme --shallow src/AbortablePromiseCache.js --section=API",
    "clean": "rimraf dist esm",
    "prebuild": "npm run clean",
    "build:esm": "tsc --target es2018 --outDir esm",
    "build:es5": "tsc --target es2015 --module commonjs --outDir dist",
    "build": "npm run build:esm && npm run build:es5",
    "prepublishOnly": "npm run lint && npm test && npm run build",
    "postversion": "git push --follow-tags"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.1.0",
    "@eslint/js": "^9.7.0",
    "@types/jest": "^29.2.4",
    "@types/node": "^20.14.11",
    "@typescript-eslint/eslint-plugin": "^7.17.0",
    "@typescript-eslint/parser": "^7.17.0",
    "documentation": "^14.0.1",
    "eslint": "^9.7.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "eslint-plugin-unicorn": "^54.0.0",
    "jest": "^29.3.1",
    "prettier": "^3.3.3",
    "quick-lru": "^4.0.0",
    "rimraf": "^6.0.1",
    "ts-jest": "^29.0.3",
    "typescript": "^5.5.4"
  },
  "publishConfig": {
    "access": "public"
  }
}
