UNPKG

@squareboat/nest-events

Version:

The event listener package for your NestJS Applications

48 lines 1.64 kB
{ "name": "@squareboat/nest-events", "version": "0.1.1", "description": " The event listener package for your NestJS Applications", "main": "dist/index.js", "types": "dist/index.d.ts", "keywords": [ "nestjs", "nestjs-events", "event-listeners" ], "repository": { "type": "git", "url": "https://github.com/squareboat/nest-events.git" }, "bugs": { "url": "https://github.com/squareboat/nest-events/issues" }, "homepage": "https://github.com/squareboat/nest-events", "author": "Vinayak Sarawagi <vinayaksarawagi25@gmail.com>", "private": false, "license": "MIT", "scripts": { "build": "rm -rf dist && tsc -p tsconfig.json", "format": "prettier --write \"**/*.ts\"", "lint": "eslint 'lib/**/*.ts' --fix", "readme:npm": "mv README.md README.git.md && mv README.npm.md README.md", "readme:git": "mv README.md README.npm.md && mv README.git.md README.md", "prepublish:npm": "npm run readme:npm && npm run build", "publish:npm": "npm publish --access public", "postpublish:npm": "npm run readme:git", "prepublish:next": "npm run build", "publish:next": "npm publish --access public --tag next", "test:e2e": "jest --config ./tests/jest-e2e.json --runInBand", "test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch" }, "devDependencies": { "@nestjs/common": "^9.0.3", "@nestjs/core": "^9.0.3", "@types/node": "^18.0.5", "reflect-metadata": "^0.1.13", "typescript": "^4.7.4" }, "peerDependencies": { "@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0", "reflect-metadata": "^0.1.13" } }