-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.96 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
72
73
74
75
76
77
78
79
80
{
"name": "@diy0r/nestjs-rabbitmq",
"version": "0.27.6",
"description": "Nestjs rabbitMQ module",
"author": "Sobirov Diyorbek <sabirovdiyorkind@gmail.com>",
"private": false,
"files": [
"./dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "eslint \"{lib,test}/**/*.ts\" --fix",
"prepare": "husky",
"release": "release-it",
"test": "jest"
},
"dependencies": {
"@types/amqplib": "^0.10.5",
"amqplib": "^0.10.4",
"reflect-metadata": "^0.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nestjs/cli": "^10.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"release-it": "^17.4.0",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.5",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.2"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0"
},
"keywords": [
"RMQ",
"Nest.js",
"RabbitMQ",
"amqplib",
"amqplib-nestjs",
"rabbitmq-nestjs",
"nestjs-rmq",
"nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/DIY0R/nestjs-rabbitmq"
},
"homepage": "https://github.com/DIY0R/nestjs-rabbitmq",
"bugs": {
"url": "https://github.com/DIY0R/nestjs-rabbitmq/issues"
},
"npm": {
"publish": true
},
"publishConfig": {
"access": "public"
}
}