UNPKG

nx-event-bus

Version:

Simple JavaScript Event Bus Implementation

53 lines (52 loc) 1.2 kB
{ "name": "nx-event-bus", "description": "Simple JavaScript Event Bus Implementation", "version": "1.0.0", "author": { "email": "alex@alexandru-pinca.me", "name": "Alexandru L. Pinca" }, "main": "lib/nx-event-bus.js", "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/pinkahd/nx-event-bus" }, "bugs": { "url": "https://github.com/pinkahd/nx-event-bus/issues" }, "keywords": [ "Event", "Bus", "JavaScript", "publish", "subscribe", "pattern", "dispatch", "listen" ], "engines": { "node": ">=8.0.0" }, "sideEffects": false, "scripts": { "test": "jest", "docs:html": "./node_modules/.bin/jsdoc ./lib/nx-event-bus.js -d ./docs/html", "docs:md": "./node_modules/.bin/jsdoc2md ./lib/nx-event-bus.js > ./docs/documentation.md", "travis:integration": "npm run test" }, "ignore": [ "dist", "docs", "tests" ], "devDependencies": { "babel-core": "^6.26.3", "babel-jest": "^23.4.2", "babel-preset-env": "^1.7.0", "jest": "^23.5.0", "jsdoc": "^3.5.5", "jsdoc-to-markdown": "^4.0.1", "regenerator-runtime": "^0.12.1" } }