{ "name": "cacheable-request", "version": "12.0.1", "description": "Wrap native HTTP requests with RFC compliant cache support", "license": "MIT", "repository": "jaredwray/cacheable", "author": "Jared Wray (http://jaredwray.com)", "type": "module", "exports": "./dist/index.js", "types": "./dist/index.d.ts", "engines": { "node": ">=18" }, "files": [ "dist" ], "dependenciesComments": { "@types/http-cache-semantics": "It needs to be in the dependencies list and not devDependencies because otherwise projects that use this one will be getting `Could not find a declaration file for module 'http-cache-semantics'` error when running `tsc`, see https://github.com/jaredwray/cacheable-request/issues/194 for details" }, "dependencies": { "@types/http-cache-semantics": "^4.0.4", "get-stream": "^9.0.1", "http-cache-semantics": "^4.1.1", "keyv": "^4.5.4", "mimic-response": "^4.0.0", "normalize-url": "^8.0.1", "responselike": "^3.0.0" }, "devDependencies": { "@keyv/sqlite": "^3.6.7", "@types/jest": "^29.5.12", "@types/node": "^20.11.30", "@types/responselike": "^1.0.3", "@types/sqlite3": "^3.1.11", "body-parser": "^1.20.2", "delay": "^6.0.0", "eslint": "^8.57.0", "eslint-plugin-jest": "^27.9.0", "express": "^4.19.1", "jest": "^29.7.0", "pify": "^6.1.0", "sqlite3": "^5.1.7", "ts-jest": "^29.1.2", "ts-jest-resolver": "^2.0.1", "ts-node": "^10.9.2", "typescript": "^5.4.3", "xo": "^0.58.0" }, "jest": { "collectCoverageFrom": [ "src/**/*.{ts,js}" ], "extensionsToTreatAsEsm": [ ".ts" ], "resolver": "ts-jest-resolver", "moduleFileExtensions": [ "ts", "js" ], "transform": { "^.+\\.(ts|tsx)$": [ "ts-jest", { "tsconfig": "./tsconfig.build.json", "useESM": true } ] }, "testMatch": [ "**/test/*.test.(ts|js)" ], "testEnvironment": "node" } }