{
  "name": "aerux",
  "version": "4.2.0",
  "description": "An easy way to use redux with react",
  "main": "lib/index.js",
  "module": "es/index.js",
  "types": "typings",
  "scripts": {
    "test": "jest",
    "prebuild": "npm run test",
    "build": "npm run build:es && npm run build:cjs",
    "build:es": "tsc -p tsconfig.esnext.json",
    "build:cjs": "tsc",
    "prelint": "npm run test",
    "lint": "tslint  -p .",
    "lint:fix": "tslint  -p . --fix",
    "flow": "flow",
    "preversion": "npm run build",
    "coverage": "npm run test && cat ./coverage/lcov.info | coveralls",
    "publishOnly": "npm run build"
  },
  "files": [
    "lib",
    "es",
    "src",
    "typings"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kagawagao/aerux.git"
  },
  "keywords": [
    "redux",
    "react-redux",
    "redux-actions"
  ],
  "author": {
    "name": "kagawagao",
    "email": "kingsongao1221@gmail.com",
    "url": "http://kingsongao.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kagawagao/aerux/issues"
  },
  "homepage": "https://github.com/kagawagao/aerux#readme",
  "devDependencies": {
    "@types/jest": "^25.1.1",
    "@types/lodash": "^4.14.149",
    "@types/react-redux": "^7.1.7",
    "@types/react-test-renderer": "^16.9.2",
    "@types/redux-actions": "^2.6.1",
    "coveralls": "^3.0.8",
    "husky": "^4.2.1",
    "jest": "^25.1.0",
    "lint-staged": "^10.0.7",
    "prettier": "^1.19.1",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "react-redux": "^7.1.3",
    "react-test-renderer": "^16.12.0",
    "redux": "^4.0.5",
    "ts-jest": "^25.1.0",
    "tslint": "^6.0.0",
    "tslint-plugin-prettier": "^2.1.0",
    "typescript": "^3.7.5"
  },
  "dependencies": {
    "lodash": "^4.17.14",
    "redux-actions": "^2.6.5"
  },
  "peerDependencies": {
    "react": "^0.14.0 || ^15.0.0 || ^16.0.0",
    "react-redux": "^7.0.3",
    "redux": "^4.0.1"
  },
  "engines": {
    "node": ">=8.0.0",
    "npm": ">=5.0.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,js,css,json,md}": [
      "prettier --write"
    ]
  }
}
