mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
Bumps [jest-environment-jsdom](https://github.com/facebook/jest/tree/HEAD/packages/jest-environment-jsdom) from 28.1.3 to 29.0.0. - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/jest/commits/v29.0.0/packages/jest-environment-jsdom) --- updated-dependencies: - dependency-name: jest-environment-jsdom dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
81 lines
2.2 KiB
JSON
81 lines
2.2 KiB
JSON
{
|
|
"name": "axios-cache-interceptor",
|
|
"version": "0.10.7",
|
|
"description": "Cache interceptor for axios",
|
|
"license": "MIT",
|
|
"main": "./dist/index.cjs",
|
|
"types": "./dist/index.d.ts",
|
|
"module": "./dist/index.mjs",
|
|
"exports": {
|
|
"./*": "./*",
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./dev": {
|
|
"import": "./dev/index.mjs",
|
|
"require": "./dev/index.cjs"
|
|
}
|
|
},
|
|
"jsdelivr": "./dist/index.bundle.js",
|
|
"unpkg": "./dist/index.bundle.js",
|
|
"sideEffects": false,
|
|
"runkitExampleFilename": "./examples/runkit.js",
|
|
"scripts": {
|
|
"build": "sh build/build.sh",
|
|
"test": "jest --coverage",
|
|
"check": "sh build/check.sh",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint . --ext .ts",
|
|
"version": "auto-changelog -p && git add CHANGELOG.md"
|
|
},
|
|
"funding": "https://github.com/ArthurFiorette/axios-cache-interceptor?sponsor=1",
|
|
"repository": "https://github.com/arthurfiorette/axios-cache-interceptor.git",
|
|
"author": "Arthur Fiorette <npm@arthur.place>",
|
|
"bugs": "https://github.com/arthurfiorette/axios-cache-interceptor/issues",
|
|
"homepage": "https://axios-cache-interceptor.js.org",
|
|
"keywords": [
|
|
"axios",
|
|
"cache",
|
|
"interceptor",
|
|
"adapter",
|
|
"http",
|
|
"plugin",
|
|
"wrapper"
|
|
],
|
|
"dependencies": {
|
|
"cache-parser": "^1.2.4",
|
|
"fast-defer": "^1.1.7",
|
|
"object-code": "^1.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@arthurfiorette/prettier-config": "*",
|
|
"@types/jest": "^28.1.8",
|
|
"@types/webpack": "^5.28.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.34.0",
|
|
"@typescript-eslint/parser": "^5.14.0",
|
|
"auto-changelog": "^2.4.0",
|
|
"axios": "^0.27.2",
|
|
"es-check": "^7.0.0",
|
|
"eslint": "^8.15.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^28.1.2",
|
|
"jest-environment-jsdom": "^29.0.0",
|
|
"prettier": "^2.5.1",
|
|
"prettier-plugin-jsdoc": "^0.4.2",
|
|
"prettier-plugin-organize-imports": "^3.0.0",
|
|
"ts-jest": "^28.0.1",
|
|
"ts-loader": "^9.2.6",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.5.4",
|
|
"webpack": "^5.66.0",
|
|
"webpack-cli": "^4.9.1"
|
|
},
|
|
"packageManager": "yarn@1.22.17",
|
|
"resolutions": {
|
|
"colors": "1.4.0"
|
|
}
|
|
}
|