-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "@nodesandbox/event-bus",
"version": "0.2.1",
"description": "A RabbitMQ-based event management library for Node.js, providing message publishing, subscription, and rerouting of unroutable messages with support for persistence and idempotency.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"build": "tsc",
"version": "npm version"
},
"repository": {
"type": "git",
"url": "https://github.com/nodesandbox/event-bus.git"
},
"keywords": [
"event",
"event-bus",
"nodejs",
"event-driven",
"architecture",
"ampq",
"rabbitmq",
"rabbit",
"bus",
"message-queue",
"queue",
"publish",
"subscribe",
"typescript"
],
"author": "Abdou-Raouf ATARMLA <[email protected]>",
"license": "MIT",
"dependencies": {
"amqplib": "^0.10.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/jest": "^29.5.14",
"@types/uuid": "^9.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"ts-node": "^10.9.2"
}
}