{
  "name": "@opcjs/zoro",
  "version": "3.0.5",
  "description": "a redux framework, complete async await",
  "main": "dist/zoro.umd.js",
  "module": "dist/zoro.es.js",
  "types": "src/zoro.d.ts",
  "keywords": [
    "wx",
    "weapp",
    "redux",
    "zoro",
    "effect",
    "promise",
    "framework",
    "frontend"
  ],
  "scripts": {
    "build": "npm run clean && cross-env NODE_ENV=production rollup --config rollup.config.ts && npm run build:weapp",
    "build:weapp": "cross-env-shell NODE_ENV=production \"rollup --config rollup.config.weapp.ts && gulp replace:code && gulp copy:type\"",
    "clean": "rm -rf ./dist",
    "release": "npm run lint && npm run test && npm run build && npm publish --access=public",
    "beta": "npm run lint && npm run test && npm run build && npm publish --tag=beta",
    "lint": "eslint src --fix --ext .ts",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
    "test": "jest --coverage"
  },
  "author": "Faure Wu <502556093@qq.com>",
  "license": "MIT",
  "homepage": "https://github.com/FaureWu/zoro.git",
  "dependencies": {
    "redux": "^4.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^8.0.0",
    "@commitlint/config-conventional": "^8.0.0",
    "@types/jest": "^24.0.15",
    "@types/prettier": "^1.16.4",
    "@typescript-eslint/eslint-plugin": "^1.11.0",
    "@typescript-eslint/parser": "^1.11.0",
    "commitizen": "^3.1.1",
    "conventional-changelog": "^3.1.8",
    "conventional-changelog-cli": "^2.0.21",
    "cross-env": "^5.2.0",
    "cz-conventional-changelog": "^2.1.0",
    "eslint": "^6.0.1",
    "eslint-config-prettier": "^6.0.0",
    "eslint-plugin-prettier": "^3.1.0",
    "gulp": "^4.0.2",
    "gulp-rename": "^1.4.0",
    "gulp-replace-string": "^0.6.1",
    "husky": "^2.4.0",
    "jest": "^24.8.0",
    "prettier": "^1.18.2",
    "rollup": "^1.14.2",
    "rollup-plugin-commonjs": "^10.0.0",
    "rollup-plugin-node-resolve": "^5.0.1",
    "rollup-plugin-replace": "^2.2.0",
    "rollup-plugin-typescript2": "^0.21.2",
    "ts-jest": "^24.0.2",
    "ts-node": "^8.3.0",
    "typescript": "^3.5.3"
  },
  "directories": {
    "doc": "doc"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/FaureWu/zoro.git"
  },
  "bugs": {
    "url": "https://github.com/FaureWu/zoro/issues"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "jest": {
    "preset": "ts-jest"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-push": "npm run test && npm run lint"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  }
}
