@jokio/ts-events
Version:
Various EventEmitter event replacements with synchronous, a-synchronous, and queued events. Made in TypeScript so usable with JavaScript and TypeScript.
79 lines (78 loc) • 2.8 kB
JSON
{
"name": "@jokio/ts-events",
"version": "3.2.6",
"description": "Various EventEmitter event replacements with synchronous, a-synchronous, and queued events. Made in TypeScript so usable with JavaScript and TypeScript.",
"homepage": "https://github.com/rogierschouten/ts-events",
"bugs": {
"url": "https://github.com/rogierschouten/ts-events/issues",
"email": "github@workingcode.ninja"
},
"repository": {
"type": "git",
"url": "https://github.com/rogierschouten/ts-events.git"
},
"main": "./dist/lib/index.js",
"typings": "./dist/lib/index.d.ts",
"scripts": {
"clean": "./node_modules/.bin/rimraf ./dist ./temp ./examples/browser-amd-requirejs/ts-events.js",
"lint": "./node_modules/.bin/tslint -c ./tslint.json ./src/**/*.ts",
"tsc": "./node_modules/.bin/tsc",
"umd": "node browserify-umd.js",
"minify": "node minify-umd.js",
"build": "npm run lint && npm run tsc && npm run umd && npm run minify",
"test": "./node_modules/.bin/mocha ./dist/test/test-*.js",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- ./dist/test/*.js",
"bundle_tests": "node browserify-karma.js",
"exec_karma": "./node_modules/.bin/karma start --single-run",
"karma": "npm run bundle_tests && npm run exec_karma",
"all": "npm run clean && npm run build && npm run test && npm run karma"
},
"keywords": [
"Event",
"Events",
"Signal",
"Signals",
"EventEmitter",
"event loop",
"eventloop",
"event queue",
"synchronous",
"a-synchronous",
"asynchronous",
"TypeScript",
"Callback"
],
"author": {
"name": "Rogier Schouten",
"url": "https://github.com/rogierschouten/",
"email": "github@workingcode.ninja"
},
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/assert": "0.0.31",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"@types/node": "^7.0.0",
"@types/source-map-support": "^0.2.28",
"assert": "^1.4.1",
"browserify": "^14.1.0",
"browserify-umdify": "^1.0.3",
"chai": "^3.5.0",
"glob": "^7.1.1",
"istanbul": "^0.4.5",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"source-map-support": "^0.4.6",
"tslint": "^5.0.0",
"typescript": "^2.0.10",
"uglify-js": "^2.7.4",
"util": "^0.10.3"
}
}