UNPKG

ngrx-undoable

Version:

[Redux](https://github.com/reactjs/redux)/[Ngrx](https://github.com/ngrx) implementation of [Undo/Redo](http://redux.js.org/docs/recipes/ImplementingUndoHistory.html) based on Actions instead of States

53 lines (52 loc) 1.11 kB
{ "name": "ngrx-undoable", "version": "1.2.0", "main": "dist/index.js", "repository": { "type": "git", "url": "https://github.com/JannicBeck/ngrx-undoable" }, "author": "jannicbeck <jannicbeck@gmail.com>", "license": "MIT", "files": [ "dist", "src", "index.ts" ], "scripts": { "clean": "rimraf dist coverage", "build": "tsc index.ts --module commonjs --outDir dist", "test": "jest", "test:watch": "npm test -- --watch", "test:cov": "npm test -- --coverage", "prepare": "npm run clean && npm run build" }, "keywords": [ "redux", "undo", "redo", "undoable", "undo-redo", "redux-undo", "react-undo", "ngrx-undo", "angular-undo", "angular2-undo" ], "devDependencies": { "@types/jest": "^21.1.8", "jest": "^21.2.1", "ts-jest": "^21.1.0", "typescript": "^2.6.2" }, "jest": { "moduleFileExtensions": [ "ts", "js" ], "transform": { "\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js" }, "testRegex": "/test/.*\\.test.(ts|tsx|js)$" } }