{
  "version": "1.2.3",
  "name": "event-target",
  "description": "The EventTarget Class Polyfill",
  "homepage": "https://github.com/WebReflection/event-target",
  "unpkg": "./min.js",
  "main": "./cjs/index.js",
  "module": "./esm/index.js",
  "scripts": {
    "bundle": "rollup --config rollup.config.js && npm run cleanup",
    "bundles": "echo '/*! (c) 2017 Andrea Giammarchi (ISC) */ var EventTarget = ' > index.js && asbundle esm/index.js | babel --plugins=$(node -e 'console.log(require(\"./babel-plugins.json\").join(\",\"))') >> index.js",
    "build": "npm run cjs && npm run bundle && npm run min && npm test && npm run size",
    "cleanup": "echo \"/*! (c) 2017 Andrea Giammarchi (ISC) */\n$(cat index.js | sed 's/}({}));/}());/' | sed 's/(exports)/()/' | sed 's/var EventTarget$1 = EventTarget;//' | sed 's/return exports;/return EventTarget;/' | sed -e 's/exports.*;//')\" > index.js",
    "cjs": "ascjs ./esm ./cjs",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "min": "uglifyjs index.js --support-ie8 --comments=/^!/ -c -m -o min.js",
    "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c min.js | wc -c",
    "test": "istanbul cover test/index.js"
  },
  "keywords": [
    "EventTarget",
    "polyfill",
    "universal"
  ],
  "author": "Andrea Giammarchi",
  "devDependencies": {
    "ascjs": "^2.4.0",
    "babel-cli": "^6.26.0",
    "babel-plugin-check-es2015-constants": "^6.22.0",
    "babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
    "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
    "babel-plugin-transform-es2015-block-scoping": "^6.26.0",
    "babel-plugin-transform-es2015-computed-properties": "^6.24.1",
    "babel-plugin-transform-es2015-destructuring": "^6.23.0",
    "babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
    "babel-plugin-transform-es2015-function-name": "^6.24.1",
    "babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
    "babel-plugin-transform-es2015-template-literals": "^6.22.0",
    "basichtml": "^0.10.5",
    "coveralls": "^2.13.1",
    "istanbul": "^0.4.5",
    "rollup": "^0.52.0",
    "rollup-plugin-babel": "^3.0.2",
    "tressa": "^0.3.1",
    "uglify-js": "^2.8.29"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/WebReflection/event-target.git"
  },
  "bugs": {
    "url": "https://github.com/WebReflection/event-target/issues"
  },
  "directories": {
    "test": "test"
  },
  "dependencies": {},
  "license": "ISC"
}
