-
-
Notifications
You must be signed in to change notification settings - Fork 272
/
package.json
71 lines (71 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@golevelup/nestjs-rabbitmq",
"version": "5.6.1",
"description": "Badass RabbitMQ addons for NestJS",
"author": "Jesse Carter <[email protected]>",
"homepage": "https://github.com/golevelup/nestjs/blob/master/packages/rabbitmq/README.md",
"license": "MIT",
"keywords": [
"NestJS",
"RabbitMQ",
"microservices",
"messaging",
"amqp"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/golevelup/nestjs.git"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"build:watch": "tsc --build tsconfig.build.json --watch",
"test": "jest"
},
"bugs": {
"url": "https://github.com/golevelup/nestjs/issues"
},
"dependencies": {
"@golevelup/nestjs-common": "workspace:^",
"@golevelup/nestjs-discovery": "workspace:^",
"@golevelup/nestjs-modules": "workspace:^",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/amqplib": "^0.10.5"
},
"peerDependencies": {
"@nestjs/common": "^10.x",
"@nestjs/core": "^10.x",
"reflect-metadata": "^0.1.0 || ^0.2.0",
"rxjs": "^7.x"
},
"publishConfig": {
"access": "public"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"gitHead": "6f97aab8ce9d65dc074750a3ee467ec5ff3b9908"
}