UNPKG

sub-events

Version:

Lightweight, strongly-typed events, with monitored subscriptions.

60 lines (59 loc) 1.68 kB
{ "name": "sub-events", "version": "1.10.1", "description": "Lightweight, strongly-typed events, with monitored subscriptions.", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "homepage": "https://github.com/vitaly-t/sub-events", "scripts": { "all": "npm run compile && npm run lint && npm test && npm run build", "build": "browserify dist/src/index.js -s subEvents -o dist/index.js && node extras/deploy.js", "compile": "tsc -p src && tsc -p extras/src && tsc extras/deploy.ts && tsc -p test", "doc": "typedoc ./src/index.ts", "lint": "tslint --fix ./src/**/*.ts ./extras/src/*.ts ./test/**/*.ts", "test": "mocha --timeout 10000 --import=tsx test/**/*.spec.ts --exit" }, "files": [ "dist/src", "dist/index.js", "ext" ], "repository": { "type": "git", "url": "git+https://github.com/vitaly-t/sub-events.git" }, "author": { "name": "Vitaly Tomilov", "email": "vitaly.tomilov@gmail.com" }, "license": "MIT", "engines": { "node": ">=18.0.0" }, "bugs": { "url": "https://github.com/vitaly-t/sub-events/issues" }, "keywords": [ "strongly", "typed", "events", "subscribe", "typescript" ], "devDependencies": { "@types/chai": "5.0.0", "@types/chai-spies": "1.0.6", "@types/mocha": "10.0.9", "@types/node": "22.7.5", "browserify": "17.0.1", "chai": "5.1.1", "chai-spies": "1.1.0", "mocha": "10.7.3", "mocha-lcov-reporter": "1.3.0", "tslib": "2.7.0", "tslint": "6.1.3", "tsx": "4.19.1", "typedoc": "0.26.9", "typescript": "5.6.3" } }