{
  "name": "eventtargeter",
  "version": "0.9.0",
  "description": "W3C JavaScript events for custom objects",
  "main": "./dist/index.js",
  "module": "./dist/index-es.js",
  "type": "module",
  "types": "./dist/EventTarget.d.ts",
  "exports": {
    ".": {
      "types": "./dist/EventTarget.d.ts",
      "import": "./dist/index-es.js",
      "require": "./dist/index.js"
    }
  },
  "c8": {
    "reporter": [
      "html",
      "text"
    ],
    "exclude": [
      "dist",
      "test"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/brettz9/eventdispatcher.js.git"
  },
  "keywords": [
    "EventTarget",
    "events",
    "W3C"
  ],
  "author": "Brett Zamir",
  "contributors": [],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/brettz9/eventdispatcher.js/issues"
  },
  "homepage": "https://github.com/brettz9/eventdispatcher.js",
  "engines": {
    "node": ">=16.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.21.8",
    "@babel/preset-env": "^7.21.5",
    "@brettz9/eslint-plugin": "^1.0.4",
    "@rollup/plugin-babel": "^6.0.3",
    "@types/chai": "^4.3.5",
    "@types/mocha": "^10.0.1",
    "c8": "^7.13.0",
    "chai": "4.3.7",
    "eslint": "^8.40.0",
    "eslint-config-ash-nazg": "^34.13.0",
    "eslint-config-standard": "^17.0.0",
    "eslint-plugin-array-func": "^3.1.8",
    "eslint-plugin-compat": "^4.1.4",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-html": "^7.1.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-jsdoc": "^44.2.4",
    "eslint-plugin-markdown": "^3.0.0",
    "eslint-plugin-n": "^16.0.0",
    "eslint-plugin-no-unsanitized": "^4.0.2",
    "eslint-plugin-no-use-extend-native": "^0.5.0",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-sonarjs": "^0.19.0",
    "eslint-plugin-standard": "^4.1.0",
    "eslint-plugin-unicorn": "^47.0.0",
    "mocha": "10.2.0",
    "node-static": "0.7.11",
    "open-cli": "^7.2.0",
    "rollup": "3.22.0",
    "typescript": "^5.0.4"
  },
  "scripts": {
    "tsc": "tsc",
    "start": "static -p 8090",
    "lint": "npm run eslint",
    "eslint": "eslint --ext=js,md,html .",
    "rollup": "rollup -c",
    "build": "npm run rollup && tsc -p tsconfig-prod.json",
    "coverage": "open-cli http://localhost:8090/coverage/ && npm start",
    "mocha": "rm -Rf node_modules/.cache && c8 mocha --require chai/register-expect.js",
    "test": "npm run eslint && npm run build && npm run mocha",
    "browser-test": "npm run eslint && npm run build && open-cli http://localhost:8090/test/ && npm start"
  }
}