{
  "name": "redux-undoable",
  "version": "1.0.2",
  "description": "A reducer enhancer (or higher order reducer) that provides undo/redo functionality for Redux by replaying actions (rather than storing previous state)",
  "main": "lib/undoable.js",
  "scripts": {
    "build": "babel -d lib/ src/ --source-maps both",
    "prepublish": "npm run build",
    "lint": "eslint src test",
    "test": "mocha",
    "coverage": "istanbul cover _mocha"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/linn/redux-undoable.git"
  },
  "keywords": [
    "redux",
    "undo",
    "redo",
    "actions",
    "undoable"
  ],
  "author": {
    "name": "Jim Liddell",
    "url": "http://liddellj.com"
  },
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/linn/redux-undoable/issues"
  },
  "homepage": "https://github.com/linn/redux-undoable#readme",
  "devDependencies": {
    "babel-cli": "^6.11.4",
    "babel-core": "^6.13.2",
    "babel-eslint": "^6.1.2",
    "babel-plugin-transform-object-rest-spread": "^6.8.0",
    "babel-polyfill": "^6.13.0",
    "babel-preset-es2015": "^6.11.3",
    "chai": "^3.5.0",
    "codecov": "^1.0.1",
    "eslint": "^3.3.1",
    "istanbul": "^1.1.0-alpha.1",
    "mocha": "^3.0.2"
  }
}
