UNPKG

js-vue-cache

Version:

Cache dispatched actions and prevent repeated requests and heavy actions.

74 lines (73 loc) 1.98 kB
{ "name": "js-vue-cache", "version": "1.0.2", "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.esm.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" }, "keywords": [ "vuex", "vuex-plugin", "cache", "cache-actions" ], "devDependencies": { "@babel/core": "^7.9.6", "@babel/plugin-transform-runtime": "^7.9.6", "@babel/preset-env": "^7.9.6", "@babel/runtime": "^7.9.6", "babel-core": "^6.26.3", "babel-eslint": "^10.1.0", "babel-jest": "^26.0.1", "bili": "^4.10.0", "eslint": "^7.0.0", "eslint-config-prettier": "^6.11.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.20.2", "eslint-plugin-jest": "^23.11.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "jest": "^26.0.1", "prettier": "^2.0.5", "vue": "^2.6.11", "vuex": "^3.4.0" }, "jest": { "collectCoverageFrom": [ "src/vuex-cache.js" ], "testMatch": [ "<rootDir>/__test__/*.test.js" ], "transform": { "^.+\\.js$": "babel-jest" } } }