@nestjstools/messaging-google-pubsub-extension
Version:
Extension to handle messages and dispatch them over Google PubSub
111 lines (110 loc) • 3 kB
JSON
{
"name": "@nestjstools/messaging-google-pubsub-extension",
"version": "1.3.1",
"description": "Extension to handle messages and dispatch them over Google PubSub",
"author": "Sebastian Iwanczyszyn",
"private": false,
"publishConfig": {
"access": "public"
},
"license": "MIT",
"main": "lib/index.js",
"bugs": {
"url": "https://github.com/nestjstools/messaging-google-pubsub-extension/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjstools/messaging-google-pubsub-extension"
},
"keywords": [
"nestjs-tools",
"nestjs",
"distributed",
"messaging",
"nestjs-messaging",
"message-bus",
"service-bus",
"microservices",
"google-pubsub",
"pubsub",
"nestjs-google-pubsub"
],
"files": [
"lib",
"LICENSE",
"package.json"
],
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"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",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@google-cloud/pubsub": "^5.0.0"
},
"peerDependencies": {
"@nestjs/common": "^10.x||^11.x",
"@nestjs/core": "^10.x||^11.x",
"@nestjstools/messaging": "^2.X",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.x"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/common": "^11.x",
"@nestjs/core": "^11.x",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@nestjstools/messaging": "^2.11.0",
"@semantic-release/github": "^11.0.2",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.7",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/supertest": "^6.0.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.3",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}