{
  "name": "ee-proxy",
  "description": "Event emitter proxy for easy local listeners cleanup",
  "version": "0.5.1",
  "author": {
    "name": "Dmitry Kirilyuk",
    "email": "gk.joker@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Jokero/ee-proxy.git"
  },
  "license": "MIT",
  "keywords": [
    "events",
    "event",
    "eventemitter",
    "emitter",
    "cleanup",
    "listeners",
    "proxy",
    "ultron"
  ],
  "engines": {
    "node": ">=6.0.0"
  },
  "main": "./lib/ee-proxy.js",
  "files": [
    "dist/",
    "lib/",
    "examples/",
    "LICENSE",
    "README.md"
  ],
  "devDependencies": {
    "babel-cli": "6.26.0",
    "babel-preset-es2015": "6.24.1",
    "browserify": "16.2.3",
    "uglify-js": "3.4.9",
    "chai": "4.2.0",
    "mocha": "5.2.0"
  },
  "scripts": {
    "test": "mocha 'tests/**/*.js'",
    "babelify": "babel src --presets es2015 --out-dir lib",
    "browserify": "browserify ./lib/ee-proxy.js --standalone emitterProxy --outfile dist/ee-proxy.js",
    "minify": "uglifyjs dist/ee-proxy.js --output dist/ee-proxy.min.js",
    "build": "npm run babelify && npm run browserify && npm run minify"
  },
  "runkitExampleFilename": "examples/index.js"
}
