UNPKG

2.3 kBJSONView Raw
1{
2 "name": "axios-cache-interceptor",
3 "version": "0.10.4",
4 "description": "Cache interceptor for axios",
5 "license": "MIT",
6 "main": "./dist/index.cjs",
7 "types": "./dist/index.d.ts",
8 "module": "./dist/index.mjs",
9 "exports": {
10 "./*": "./*",
11 "./package.json": "./package.json",
12 ".": {
13 "import": "./dist/index.mjs",
14 "require": "./dist/index.cjs"
15 },
16 "./dev": {
17 "import": "./dev/index.mjs",
18 "require": "./dev/index.cjs"
19 }
20 },
21 "jsdelivr": "./dist/index.bundle.js",
22 "unpkg": "./dist/index.bundle.js",
23 "sideEffects": false,
24 "runkitExampleFilename": "./examples/runkit.js",
25 "scripts": {
26 "build": "sh build/build.sh",
27 "test": "jest --coverage",
28 "check": "sh build/check.sh",
29 "format": "prettier --write .",
30 "lint": "eslint . --ext .ts",
31 "version": "auto-changelog -p && git add CHANGELOG.md"
32 },
33 "funding": "https://github.com/ArthurFiorette/axios-cache-interceptor?sponsor=1",
34 "repository": "https://github.com/arthurfiorette/axios-cache-interceptor.git",
35 "author": "Arthur Fiorette <npm@arthur.place>",
36 "bugs": "https://github.com/arthurfiorette/axios-cache-interceptor/issues",
37 "homepage": "https://axios-cache-interceptor.js.org",
38 "keywords": [
39 "axios",
40 "cache",
41 "interceptor",
42 "adapter",
43 "http",
44 "plugin",
45 "wrapper"
46 ],
47 "dependencies": {
48 "cache-parser": "^1.2.4",
49 "fast-defer": "^1.1.7",
50 "object-code": "^1.2.4"
51 },
52 "devDependencies": {
53 "@arthurfiorette/prettier-config": "*",
54 "@types/jest": "^28.1.0",
55 "@types/webpack": "^5.28.0",
56 "@typescript-eslint/eslint-plugin": "^5.14.0",
57 "@typescript-eslint/parser": "^5.14.0",
58 "auto-changelog": "^2.4.0",
59 "axios": "^0.27.2",
60 "es-check": "^6.1.1",
61 "eslint": "^8.15.0",
62 "eslint-config-prettier": "^8.3.0",
63 "eslint-plugin-prettier": "^4.0.0",
64 "jest": "^28.1.0",
65 "jest-environment-jsdom": "^28.1.0",
66 "prettier": "^2.5.1",
67 "prettier-plugin-jsdoc": "^0.3.30",
68 "prettier-plugin-organize-imports": "^2.3.4",
69 "ts-jest": "^28.0.1",
70 "ts-loader": "^9.2.6",
71 "tslib": "^2.3.1",
72 "typescript": "^4.5.4",
73 "webpack": "^5.66.0",
74 "webpack-cli": "^4.9.1"
75 },
76 "packageManager": "yarn@1.22.17",
77 "resolutions": {
78 "colors": "1.4.0"
79 }
80}