{
  "name": "redux-undo-stack",
  "version": "2.0.0",
  "description": "Undo stack for redux",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/stephan83/redux-undo-stack.git"
  },
  "keywords": [
    "redux",
    "undo",
    "stack",
    "undo stack"
  ],
  "author": "Stephan Florquin",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/stephan83/redux-undo-stack/issues"
  },
  "scripts": {
    "build:lib": "babel src --out-dir lib",
    "build:umd": "webpack src/index.js dist/redux-undo-stack.js --config webpack.config.js",
    "build:umd:min": "webpack src/index.js dist/redux-undo-stack.min.js --config webpack-prod.config.js",
    "build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
    "check": "npm run lint && npm run test",
    "clean": "rimraf lib dist coverage",
    "lint": "eslint src test",
    "preversion": "npm run clean && npm run check",
    "version": "npm run build",
    "postversion": "git push && git push --tags && npm run clean",
    "prepublish": "npm run clean && npm run build",
    "test": "mocha --compilers js:babel/register --recursive --require should",
    "test:watch": "npm test -- --watch",
    "test:cov": "babel-node ./node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha -- --recursive --require should"
  },
  "homepage": "https://github.com/stephan83/redux-undo-stack",
  "devDependencies": {
    "babel": "^5.8.23",
    "babel-core": "^5.8.24",
    "babel-eslint": "^4.1.1",
    "babel-loader": "^5.3.2",
    "eslint": "^1.4.1",
    "eslint-config-airbnb": "0.0.8",
    "eslint-plugin-react": "^3.3.2",
    "isparta": "^3.0.4",
    "mocha": "^2.3.2",
    "rimraf": "^2.4.3",
    "should": "^7.1.0",
    "sinon": "^1.16.1",
    "webpack": "^1.12.1"
  },
  "dependencies": {
    "redux-smart-action": "2.x",
    "clone": "1.x",
    "redux": "3.x"
  },
  "npmName": "redux-undo-stack",
  "npmFileMap": [
    {
      "basePath": "/dist/",
      "files": [
        "*.js"
      ]
    }
  ]
}
