UNPKG

vuex-cache

Version:

Cache dispatched actions and prevent repeated requests and heavy actions.

75 lines (74 loc) 2.04 kB
{ "name": "vuex-cache", "version": "3.5.0", "description": "Cache dispatched actions and prevent repeated requests and heavy actions.", "cdn": "dist/vuex-cache.umd.min.js", "main": "dist/vuex-cache.js", "types": "types/vuex-cache.d.ts", "unpkg": "dist/vuex-cache.umd.min.js", "module": "dist/vuex-cache.es.js", "jsdelivr": "dist/vuex-cache.umd.min.js", "umd:main": "dist/vuex-cache.umd.js", "repository": "superwf/vuex-cache", "author": "superwf@gmail.com", "contributors": [ { "url": "https://vitorluizc.github.io/", "name": "Vitor Luiz Cavalcanti", "email": "vitorluizc@outlook.com" } ], "license": "MIT", "homepage": "https://github.com/superwf/vuex-cache", "files": [ "dist/", "types/" ], "scripts": { "test": "jest", "cover": "jest --coverage", "lint": "eslint src/vuex-cache.js", "build": "bili src/vuex-cache.js --format es,cjs,umd,umd-min --module-name VuexCache --minimal", "prepublishOnly": "yarn lint && yarn build && yarn cover" }, "keywords": [ "vuex", "vuex-plugin", "cache", "cache-actions" ], "devDependencies": { "@babel/core": "^7.17.9", "@babel/plugin-transform-runtime": "^7.17.0", "@babel/preset-env": "^7.16.11", "@babel/runtime": "^7.17.9", "babel-core": "^6.26.3", "babel-jest": "^28.0.2", "bili": "^5.0.5", "eslint": "^8.14.0", "eslint-config-prettier": "^8.5.0", "eslint-config-standard": "^17.0.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jest": "^26.1.5", "eslint-plugin-n": "^15.2.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-promise": "^6.0.0", "eslint-plugin-standard": "^5.0.0", "jest": "^28.0.2", "prettier": "^2.6.2", "vue": "^2.6.14", "vuex": "^3.6.2" }, "jest": { "collectCoverageFrom": [ "src/vuex-cache.js" ], "testMatch": [ "<rootDir>/__test__/*.test.js" ], "transform": { "^.+\\.js$": "babel-jest" } } }