UNPKG

undox

Version:

Redux implementation of Undo/Redo based on storing actions instead of states.

55 lines (54 loc) 1.16 kB
{ "name": "undox", "version": "1.4.1", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "https://github.com/JannicBeck/undox" }, "author": "jannicbeck <jannicbeck@gmail.com>", "license": "MIT", "files": [ "dist", "src", "index.ts" ], "scripts": { "clean": "rimraf dist coverage dist", "build": "tsc --declaration --strict index.ts --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": "^26.0.21", "jest": "^26.6.3", "ts-jest": "^26.5.4", "ts-node": "^9.1.1", "typescript": "^3.9.6" }, "jest": { "moduleFileExtensions": [ "ts", "js" ], "transform": { "\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js" }, "testRegex": "/test/.*\\.test.(ts|tsx|js)$" } }