emmiter
Version:
dead simple event emitter
64 lines (63 loc) • 1.58 kB
JSON
{
"name": "emmiter",
"version": "0.0.4",
"description": "dead simple event emitter",
"main": "lib/emmiter.js",
"scripts": {
"test": "tape test/*.js",
"jscs": "jscs --esnext lib test",
"jshint": "jshint lib test",
"codestyle": "npm-run-all jshint jscs",
"coverage": "nyc npm test",
"report": "nyc report --reporter=text-lcov | coveralls",
"bundle:base": "browserify -s Emmiter --dg false",
"bundle": "npm run bundle:base -- -r ./lib/emmiter.js:emmiter ./lib/emmiter.js -o dist/emmiter.js",
"minify": "minify dist/emmiter.js > dist/emmiter.min.js",
"build": "npm-run-all bundle minify",
"wisdom": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/antixrist/emmiter.git"
},
"keywords": [
"event",
"emitter",
"namespace",
"ns",
"on",
"one",
"once",
"off",
"bind",
"unbind",
"emit",
"trigger",
"addListener",
"removeListener"
],
"author": "antixrist (https://github.com/antixrist)",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/antixrist/emmiter/issues"
},
"homepage": "https://github.com/antixrist/emmiter",
"devDependencies": {
"browserify": "~12.0.1",
"coveralls": "^2.11.6",
"jscs": "^2.7.0",
"jshint": "^2.8.0",
"minify": "~2.0.2",
"npm-run-all": "^1.4.0",
"nyc": "^5.0.1",
"tape": "^4.4.0"
},
"dependencies": {
"extend": "^3.0.0",
"isarray": "^1.0.0",
"isfunction": "0.0.6",
"isobject": "^2.0.0",
"setasap": "^2.0.0",
"sliced": "^1.0.1"
}
}