UNPKG

ts-event-bus

Version:
81 lines (80 loc) 2.03 kB
{ "name": "ts-event-bus", "version": "4.2.0", "description": "Distributed messaging in Typescript", "main": "build/index.js", "typings": "build/index.d.ts", "files": [ "build" ], "directories": { "example": "examples" }, "repository": { "type": "git", "url": "git@github.com:Dashlane/ts-event-bus.git" }, "keywords": [ "ts-event-bus", "typescript", "event-bus" ], "license": "Apache-2.0", "scripts": { "ci": "run-s validate:* test", "test": "jest", "build": "run-s build:*", "build:clean": "rm -rf ./build", "build:src": "babel src -d ./build --extensions \".ts\"", "build:dec": "tsc -d --emitDeclarationOnly --declarationMap", "validate": "run-p validate:*", "validate:lint": "tslint -t stylish --project .", "validate:format": "tsfmt --verify", "validate:typecheck": "tsc --noEmit", "validate:audit": "node ./meta/audit.js", "lint": "tslint --fix --project .", "format": "tsfmt -r", "prepublishOnly": "run-s validate build" }, "devDependencies": { "@babel/cli": "^7.12.10", "@babel/core": "^7.12.10", "@babel/plugin-proposal-class-properties": "^7.12.1", "@babel/preset-env": "^7.12.11", "@babel/preset-typescript": "^7.12.7", "@types/chrome": "^0.0.155", "@types/jest": "^29.5.12", "@types/node": "^16.18.84", "@types/ws": "^3.2.1", "expect-type": "^0.13.0", "husky": "^4.3.8", "jest": "^29.7.0", "npm-run-all": "^4.1.5", "ts-jest": "^29.1.2", "ts-node": "^10.9.1", "tslint": "^5.6.0", "typescript": "5.3.3", "typescript-formatter": "^7.2.2", "ws": "^3.3.2" }, "husky": { "hooks": { "pre-push": "npm run ci" } }, "contributors": [ { "name": "Loïc Guychard", "email": "l.guychard@gmail.com" }, { "name": "Denis Schneider", "email": "highfivedenis@gmail.com" } ], "resolutions": { "@babel/traverse": "7.24.0", "json5": "2.2.3", "minimatch": "3.0.5" } }