{
  "name": "redux-tiles",
  "version": "0.6.1",
  "description": "Library to create and easily compose redux pieces together in less verbose manner",
  "jsnext:main": "lib/es2015/index.js",
  "module": "lib/es2015/index.js",
  "typings": "lib/es2015/index.d.ts",
  "main": "lib/commonjs/index.js",
  "files": [
    "lib",
    "dist",
    "src",
    "README.md",
    "package.json"
  ],
  "scripts": {
    "clean": "rimraf lib dist coverage",
    "prepublish": "npm run clean && npm run test && npm run build",
    "build:es2015": "tsc -P tsconfig.json",
    "build:es2015:watch": "tsc --watch -P tsconfig.json",
    "build:commonjs": "tsc -P tsconfig.commonjs.json",
    "build:umd": "cross-env NODE_ENV=development rollup -c -i lib/es2015/index.js -o dist/redux-tiles.js",
    "build:umd:min": "cross-env NODE_ENV=production rollup -c -i lib/es2015/index.js -o dist/redux-tiles.min.js",
    "build:dist": "npm run build:umd && npm run build:umd:min",
    "build": "npm run build:es2015 && npm run build:commonjs && npm run build:dist",
    "docs:clean": "rimraf _book",
    "docs:prepare": "gitbook install",
    "docs:build": "yarn run docs:prepare && gitbook build -g bloomca/redux-tiles",
    "docs:watch": "gitbook serve",
    "docs:publish": "yarn run docs:clean && yarn 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:bloomca/redux-tiles gh-pages --force",
    "test": "jest",
    "test:watch": "jest --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Bloomca/redux-tiles.git"
  },
  "keywords": [
    "redux",
    "abstraction",
    "generator",
    "actions",
    "reducers",
    "constants",
    "modules",
    "composition",
    "boilerplate"
  ],
  "author": "Seva Zaikov <seva.zaikov@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Bloomca/redux-tiles/issues"
  },
  "homepage": "https://github.com/Bloomca/redux-tiles#readme",
  "devDependencies": {
    "@types/lodash": "^4.14.64",
    "@types/redux": "^3.6.0",
    "@types/sinon": "^2.2.2",
    "babel-plugin-lodash": "^3.2.11",
    "babel-preset-es2015-rollup": "^3.0.0",
    "cross-env": "^5.0.0",
    "delounce": "^0.3.0",
    "gitbook-cli": "^2.3.0",
    "jest": "^20.0.4",
    "rimraf": "^2.6.1",
    "rollup": "^0.41.4",
    "rollup-plugin-babel": "^2.7.1",
    "rollup-plugin-commonjs": "^8.0.2",
    "rollup-plugin-node-resolve": "^2.0.0",
    "rollup-plugin-replace": "^1.1.1",
    "rollup-plugin-uglify": "^1.0.1",
    "sinon": "^2.3.2",
    "tslint": "^5.3.2",
    "tslint-microsoft-contrib": "^5.0.0",
    "typescript": "^2.3.3"
  },
  "jest": {
    "collectCoverage": true,
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      "^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
    },
    "testMatch": [
      "**/test/*.(ts|tsx|js)"
    ]
  },
  "dependencies": {
    "lodash": "^4.17.4",
    "redux": "^3.6.0"
  }
}
