{
  "name": "@bupkis/events",
  "version": "1.0.0",
  "type": "module",
  "description": "EventEmitter and EventTarget assertions for Bupkis",
  "repository": {
    "directory": "packages/events",
    "type": "git",
    "url": "git+https://github.com/boneskull/bupkis.git"
  },
  "author": {
    "email": "boneskull@boneskull.com",
    "name": "Christopher Hiller"
  },
  "license": "BlueOak-1.0.0",
  "engines": {
    "node": "^22.13.0 || >=24.0.0"
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.cts",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.cts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "CHANGELOG.md",
    "dist",
    "src"
  ],
  "keywords": [
    "bupkis",
    "events",
    "eventemitter",
    "eventtarget",
    "assert",
    "assertion",
    "test"
  ],
  "scripts": {
    "build": "zshy",
    "prepublishOnly": "npm run build",
    "test": "npm run test:base -- \"test/*.test.ts\"",
    "test:base": "node --import tsx --test --test-reporter=spec",
    "test:ci": "npm run test -- --test-reporter=node-test-github-reporter",
    "test:coverage": "c8 --reporter=lcov --reporter=text npm test",
    "test:dev": "npm run test -- --watch"
  },
  "peerDependencies": {
    "bupkis": ">=0.15.0"
  },
  "devDependencies": {
    "eventemitter3": "5.0.4"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "prettier": {
    "jsdocCommentLineStrategy": "keep",
    "jsdocPreferCodeFences": true,
    "plugins": [
      "prettier-plugin-jsdoc",
      "prettier-plugin-pkg"
    ],
    "singleQuote": true,
    "tsdoc": true
  },
  "zshy": {
    "exports": {
      ".": "./src/index.ts",
      "./package.json": "./package.json"
    }
  }
}
