Skip to main content
Module

x/evt/package.json

💧EventEmitter's typesafe replacement
Go to Latest
File
{ "name": "evt", "version": "1.7.11", "description": "Type safe replacement for node's EventEmitter", "repository": { "type": "git", "url": "git://github.com/garronej/evt" }, "main": "./dist/lib/index.js", "types": "./dist/lib/index.d.ts", "scripts": { "test:node": "node ./dist/test", "test:deno": "deno run ./deno_dist/test/mod.ts", "test": "npm run test:node && npm run test:deno", "tsc": "npx tsc", "denoify": "npx denoify", "cdn:.js": "simplifyify dist/lib/index.js -s evt -o dist/bundle.js --debug --bundle", "cdn:.min.js": "terser dist/bundle.js -cmo dist/bundle.min.js", "cdn": "npm run cdn:.js && npm run cdn:.min.js", "build": "npm run tsc && npm run denoify && npm run cdn", "enable_short_import_path:npm": "npm run build && npx denoify_enable_short_npm_import_path", "enable_short_import_path:deno": "npm run build && npx denoify_enable_short_deno_import_path", "clean": "rm -rf dist deno_dist node_modules mod.ts" }, "author": "Joseph Garrone", "license": "MIT", "dependencies": { "minimal-polyfills": "^2.1.2", "run-exclusive": "^2.2.7" }, "files": [ "/dist/lib/", "/dist/tools/", "/dist/bundle.{js,min.js,js.map}", "/src/lib/", "/src/tools/" ], "keywords": [ "deno", "EventEmitter", "typescript", "functional programming", "qt signal", "events", "ts-evt", "async-await", "promise", "rxjs" ], "homepage": "https://evt.land", "devDependencies": { "denoify": "^0.2.15", "simplifyify": "8.0.1", "terser": "4.6.13", "@types/node": "^10.0.0", "rxjs": "^6.5.4", "typescript": "3.9.2" }}