{
  "name": "emmett",
  "version": "3.2.0",
  "description": "A custom event emitter for Node.js and the browser.",
  "main": "emmett.js",
  "scripts": {
    "lint": "eslint ./*.js ./test",
    "prepublish": "npm run lint && npm test && npm run test:types",
    "test": "mocha",
    "test:types": "tsc --target es2015 --noEmit --noImplicitAny --noImplicitReturns ./test/types.ts"
  },
  "files": [
    "emmett.js",
    "emmett.d.ts"
  ],
  "repository": {
    "type": "git",
    "url": "git@github.com:jacomyal/emmett"
  },
  "keywords": [
    "events",
    "emitter"
  ],
  "contributors": [
    {
      "name": "jacomyal",
      "url": "https://github.com/jacomyal"
    },
    {
      "name": "yomguithereal",
      "url": "https://github.com/Yomguithereal"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jacomyal/emmett/issues"
  },
  "homepage": "https://github.com/jacomyal/emmett",
  "devDependencies": {
    "@yomguithereal/eslint-config": "^4.0.0",
    "eslint": "^6.8.0",
    "mocha": "^7.0.1",
    "typescript": "^3.7.5"
  },
  "eslintConfig": {
    "extends": "@yomguithereal/eslint-config",
    "globals": {
      "define": true,
      "Symbol": true
    },
    "rules": {
      "no-new": 0
    }
  }
}
