-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@niur/nestjs-service-bus",
"version": "1.1.0",
"description": "NestJS Azure Service Bus Microservice Transport",
"main": "dist/index",
"types": "dist/index",
"scripts": {
"build": "rimraf dist && tsc",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Niurmiguel/nestjs-service-bus.git"
},
"author": "Niurmiguel Gonzalez",
"license": "MIT",
"bugs": {
"url": "https://github.com/Niurmiguel/nestjs-service-bus/issues"
},
"homepage": "https://github.com/Niurmiguel/nestjs-service-bus#readme",
"peerDependencies": {
"@nestjs/common": "^10.0.4",
"@nestjs/core": "^10.0.4",
"@nestjs/microservices": "^10.0.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@azure/service-bus": "^7.9.4",
"@nestjs/common": "^10.3.7",
"@nestjs/core": "^10.3.7",
"@nestjs/microservices": "^10.3.7",
"@types/node": "^20.0.0",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"typescript": "^5.4.5"
},
"keywords": [
"azure",
"cloud",
"service bus",
"AMQP",
"nestjs",
"microservice"
]
}