UNPKG

observer-ax

Version:
56 lines 1.53 kB
{ "name": "observer-ax", "version": "1.0.1", "description": "Patrón observable, event Bus.", "main": "app.ts", "scripts": { "build": "tsc --build", "clean": "tsc --build --clean", "prebuild": "tslint -c tslint.json -p tsconfig.json --fix", "prestart": "npm run build", "start": "node .", "test": "jest --detectOpenHandles --maxWorkers=50%", "testCoverage": "jest --coverage --maxWorkers=50%", "testOnlyChanged": "jest --listTests --onlyChanged --maxWorkers=50%", "testSilent": "jest test/app.spec.js --silent --maxWorkers=50%", "publish": "npm publish --access public" }, "author": "jose.mejia", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/josmejia2401/observer-ax" }, "keywords": [ "observer-ax", "patrón observable", "event bus", "PromiseAx" ], "bugs": { "url": "https://github.com/josmejia2401/observer-ax/issues" }, "homepage": "https://github.com/josmejia2401/observer-ax#readme", "jest": { "preset": "ts-jest", "testEnvironment": "node", "testMatch": [ "<rootDir>/test/*.spec.ts" ], "collectCoverageFrom": [ "src/**/*.{js,jsx,ts,tsx}", "!<rootDir>/node_modules/" ] }, "dependencies": { "common-ax": "1.0.1", "promise-ax": "2.0.54", "@types/jest": "27.0.3", "@types/node": "16.11.12", "jest": "27.4.3", "node-typescript": "^0.1.3", "ts-jest": "27.1.0", "tslint": "^6.1.3", "typescript": "^4.4.4" } }