{
  "name": "@tulies/event-emitter",
  "version": "1.0.1",
  "description": "JS自定义事件消息订阅通知，类似jaquey的事件机制。",
  "main": "dist/event-emitter.umd.js",
  "module": "dist/event-emitter.es.js",
  "typings": "dist/types/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tulies/event-emitter.git"
  },
  "scripts": {
    "lint": "eslint --ext .js,.ts --ignore-path .eslintignore .",
    "lintfix": "eslint --fix --ext .js,.ts --ignore-path .eslintignore .",
    "dev": "cross-env NODE_ENV=development rollup -c rollup.config.js -w",
    "build": "tsc --module commonjs && cross-env NODE_ENV=production rollup -c rollup.config.js",
    "release": "npm run build && standard-version --release-as patch && git push --follow-tags && npm publish",
    "prebuild": "rimraf dist"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "author": "王嘉炀",
  "license": "ISC",
  "devDependencies": {
    "@babel/core": "^7.16.7",
    "@babel/plugin-proposal-class-properties": "^7.16.7",
    "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
    "@babel/plugin-proposal-object-rest-spread": "^7.16.7",
    "@babel/plugin-proposal-optional-chaining": "^7.16.7",
    "@babel/plugin-transform-runtime": "^7.16.7",
    "@babel/preset-env": "^7.16.7",
    "@babel/preset-typescript": "^7.16.7",
    "@babel/runtime-corejs3": "^7.16.7",
    "@commitlint/cli": "^8.3.5",
    "@commitlint/config-conventional": "^8.3.4",
    "@rollup/plugin-babel": "^5.3.0",
    "@rollup/plugin-commonjs": "^21.0.1",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^13.1.3",
    "@rollup/plugin-typescript": "^8.3.0",
    "@typescript-eslint/eslint-plugin": "^5.9.0",
    "@typescript-eslint/parser": "^5.9.0",
    "autoprefixer": "^9.7.4",
    "cross-env": "^7.0.3",
    "eslint": "^8.6.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^4.2.5",
    "lodash.camelcase": "^4.3.0",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.63.0",
    "rollup-plugin-sourcemaps": "^0.6.3",
    "rollup-plugin-terser": "^7.0.2",
    "standard-version": "^8.0.0",
    "tslib": "^2.3.1",
    "typescript": "^4.5.4"
  }
}
