{
  "name": "redux-undo",
  "version": "1.1.0",
  "description": "simple undo/redo functionality for redux state containers",
  "main": "./dist/redux-undo.umd.js",
  "typings": "typings.d.ts",
  "exports": {
    ".": {
      "import": "./dist/redux-undo.mjs",
      "require": "./dist/redux-undo.umd.js",
      "types": "./typings.d.ts"
    }
  },
  "scripts": {
    "build": "vite build",
    "lint": "npx eslint src test",
    "test": "vitest run",
    "test:bail": "npm run test:watch -- --bail",
    "test:cov": "npm run test -- --coverage",
    "test:coveralls": "npm run test -- --coverage && coveralls < coverage/lcov.info",
    "test:watch": "vitest"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/omnidan/redux-undo.git"
  },
  "keywords": [
    "redux",
    "undo",
    "redo",
    "flux",
    "time travel"
  ],
  "author": "Daniel Bugl <me@omnidan.net> (https://github.com/omnidan)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/omnidan/redux-undo/issues"
  },
  "homepage": "https://github.com/omnidan/redux-undo",
  "devDependencies": {
    "eslint": "^8.43.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-standard": "^5.0.0",
    "npm-run-all": "^4.1.5",
    "redux": "^4.2.1",
    "rimraf": "^5.0.1",
    "vite": "^4.3.0",
    "vitest": "^0.32.2",
    "@vitest/coverage-istanbul": "^0.32.0",
    "coveralls": "^3.0.0"
  }
}
