@nam088/nestjs-rabbitmq
Version:
A comprehensive RabbitMQ module for NestJS with decorator-based message handling
91 lines (90 loc) • 2.76 kB
JSON
{
"name": "@nam088/nestjs-rabbitmq",
"version": "1.1.3",
"description": "A comprehensive RabbitMQ module for NestJS with decorator-based message handling",
"author": "Nam088",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nestjs",
"rabbitmq",
"amqp",
"message-queue",
"microservices",
"pub-sub",
"decorator",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/Nam088/nestjs-rabbitmq"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"prerelease": "npm run lint && npm run test && npm run build",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"publish:dry-run": "npm publish --dry-run"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.3",
"reflect-metadata": "^0.1.13 || ^0.2.0",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@nam088/nestjs-eslint": "^2.1.18",
"@nestjs/common": "^11.1.8",
"@nestjs/core": "^11.1.8",
"@nestjs/platform-express": "^11.1.8",
"@nestjs/terminus": "^11.0.0",
"@nestjs/testing": "^11.1.8",
"@types/amqplib": "^0.10.8",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"amqp-connection-manager": "^5.0.0",
"amqplib": "^0.10.3",
"eslint": "^9.39.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s",
"!**/*.spec.ts",
"!**/index.ts"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}