{
  "name": "redux-awaiter",
  "version": "0.3.0",
  "description": "A Redux middleware for giving opportunities to await and receive actions in anywhere",
  "main": "lib/index.js",
  "module": "es/index.js",
  "jsnext:main": "es/index.js",
  "files": [
    "dist",
    "lib",
    "es",
    "src",
    "index.d.ts"
  ],
  "scripts": {
    "clean": "rimraf dist lib es coverage",
    "lint": "tslint -p .",
    "test": "jest --colors",
    "test:coverage": "npm test -- --coverage",
    "start": "npm test -- --watch",
    "build:es": "tsc --outDir es -d",
    "build:commonjs": "tsc -m commonjs --outDir lib",
    "build:dev-umd": "cross-env NODE_ENV=development rollup -c -i src/index.ts -o dist/redux-awaiter.js",
    "build:prod-umd": "cross-env NODE_ENV=production rollup -c -i src/index.ts -o dist/redux-awaiter.min.js",
    "build": "npm-run-all -p build:*",
    "prepare": "npm run clean && npm run lint && npm run test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/yenshih/redux-awaiter.git"
  },
  "keywords": [
    "redux",
    "middleware",
    "await",
    "receive",
    "action",
    "local"
  ],
  "authors": [
    "Shi Yan <yenshih95@gmail.com> (https://github.com/yenshih)"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/yenshih/redux-awaiter/issues"
  },
  "npmName": "redux-awaiter",
  "jest": {
    "transform": {
      ".(ts|tsx)": "./node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ]
  },
  "devDependencies": {
    "@types/jest": "^21.1.5",
    "@types/node": "^8.0.47",
    "coveralls": "^3.0.0",
    "cross-env": "^5.1.1",
    "jest": "^21.2.1",
    "npm-run-all": "^4.1.1",
    "redux": "^3.7.2",
    "rollup": "^0.50.0",
    "rollup-plugin-typescript": "^0.8.1",
    "rollup-plugin-uglify": "^2.0.1",
    "ts-jest": "^21.1.4",
    "tslint": "^5.8.0",
    "tslint-config-airbnb": "^5.3.0",
    "typescript": "^2.6.1"
  },
  "peerDependencies": {
    "redux": "^3.0.0"
  },
  "browserify": {
    "transform": [
      "loose-envify"
    ]
  }
}
