UNPKG

undo-redo-vuex

Version:

A Vuex plugin for module namespaced undo and redo functionality. This plugin takes inspiration from and extends the work of [vuex-undo-redo](https://github.com/anthonygore/vuex-undo-redo).

71 lines (70 loc) 1.89 kB
{ "name": "undo-redo-vuex", "version": "1.4.0", "scripts": { "build": "rollup --compact -c", "test:unit": "vue-cli-service test:unit", "docs:dev": "vuepress dev docs", "docs:build": "vuepress build docs", "lint": "vue-cli-service lint" }, "dependencies": {}, "devDependencies": { "@babel/preset-typescript": "^7.3.3", "@factorial/vuepress-theme": "^1.0.0-alpha.1", "@types/jest": "^23.3.14", "@vue/cli-plugin-babel": "^3.0.1", "@vue/cli-plugin-eslint": "^3.0.1", "@vue/cli-plugin-typescript": "^3.0.1", "@vue/cli-plugin-unit-jest": "^3.0.1", "@vue/cli-service": "^3.0.1", "@vue/eslint-config-prettier": "^3.0.3", "@vue/eslint-config-typescript": "^3.0.3", "@vue/test-utils": "^1.0.0-beta.20", "babel-core": "7.0.0-bridge.0", "babel-preset-minify": "^0.5.0", "clean-webpack-plugin": "^3.0.0", "husky": "^4.2.5", "lint-staged": "^7.2.2", "node-sass": "^4.13.1", "rollup": "^1.19.4", "rollup-plugin-babel": "^4.3.3", "rollup-plugin-commonjs": "^10.0.2", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^5.1.1", "ts-jest": "^23.0.0", "typescript": "^3.0.0", "vue": "^2.6.10", "vue-template-compiler": "^2.5.17", "vuepress": "^1.3.0", "vuex": "^3.1.1", "webpack-cli": "^3.3.6" }, "husky": { "hooks": { "pre-commit": "yarn run lint", "pre-push": "yarn run lint && yarn test:unit" } }, "lint-staged": { "*.js": [ "vue-cli-service lint", "git add" ], "*.vue": [ "vue-cli-service lint", "git add" ] }, "keywords": [ "vuex", "vue", "undo/redo" ], "repository": { "type": "git", "url": "https://github.com/andrewbeng89/undo-redo-vuex.git" }, "main": "dist/undo-redo-vuex.umd.min.js", "module": "dist/undo-redo-vuex.esm.min.js" }