{
  "name": "redux-portal",
  "version": "0.1.2",
  "description": "A portal that uses Redux",
  "main": "lib/index.js",
  "jsnext:main": "src/index.js",
  "scripts": {
    "start": "NODE_ENV=DEV node ./webpack.demo.server.js",
    "clean": "rimraf lib dist coverage",
    "lint": "eslint src test examples",
    "test": "mocha --compilers js:babel/register --recursive",
    "test:watch": "npm test -- --watch",
    "test:cov": "babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive",
    "test:examples": "babel-node examples/testAll.js",
    "check": "npm run lint && npm run test",
    "build:lib": "babel src --out-dir lib",
    "build:umd": "webpack src/index.js dist/redux-portal.js --config webpack.config.development.js",
    "build:umd:min": "webpack src/index.js dist/redux-portal.min.js --config webpack.config.production.js",
    "build:examples": "babel-node examples/buildAll.js",
    "build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
    "preversion": "npm run clean && npm run check",
    "version": "npm run build",
    "postversion": "git push && git push --tags && npm run clean && npm run docs:publish",
    "prepublish": "npm run clean && npm run build",
    "docs:clean": "rimraf _book",
    "docs:build": "gitbook build -g rtorr/redux-portal",
    "docs:watch": "gitbook serve",
    "docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:rackt/redux gh-pages --force"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rtorr/redux-portal.git"
  },
  "keywords": [
    "redux",
    "portal"
  ],
  "author": "Richard Torruellas <rtorruellas@gmail.com> (http://github.com/rtorr)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rtorr/redux-portal/issues"
  },
  "homepage": "",
  "devDependencies": {
    "babel": "^5.5.8",
    "babel-core": "^5.6.18",
    "babel-eslint": "^3.1.15",
    "babel-loader": "^5.1.4",
    "eslint": "^0.23",
    "eslint-config-airbnb": "0.0.6",
    "eslint-plugin-react": "^2.3.0",
    "expect": "^1.8.0",
    "gitbook-cli": "^0.3.4",
    "isparta": "^3.0.3",
    "mocha": "^2.2.5",
    "react-hot-loader": "^1.2.8",
    "rimraf": "^2.3.4",
    "webpack": "^1.9.6",
    "webpack-dev-server": "^1.8.2"
  },
  "npmName": "redux-portal",
  "npmFileMap": [
    {
      "basePath": "/dist/",
      "files": [
        "*.js"
      ]
    }
  ],
  "peerDependencies": {
    "react": "0.13.x",
    "redux": "1.0.x"
  },
  "dependencies": {
    "amp-merge": "^1.0.0",
    "react-redux": "^0.8.2"
  }
}
