-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 KB
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": "bunnybus",
"version": "7.0.0",
"description": "RabbitMQ driver for pub/sub with error queue / retry management",
"keywords": [
"bunnybus",
"rabbitmq",
"broker",
"bus",
"queue",
"pubsub",
"publish",
"subscribe"
],
"main": "lib/index.js",
"scripts": {
"test": "lab",
"start-docker": "docker run -d --name=rabbitmq -p 5671:5671 -p 15672:15672 -p 5672:5672 rabbitmq:3-management",
"waitfor-docker": ". docker/wait-on-resource.sh",
"stop-docker": "docker rm -f rabbitmq",
"doctoc": "doctoc API.md Example.md Diagram.md",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"lint-fix-dry-run": "eslint --fix-dry-run ./",
"benchmark-publish": "node benchmark/publish.js",
"benchmark-subscribe": "node benchmark/subscribe.js"
},
"author": "Lam Chan",
"license": "BSD-3-Clause",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/xogroup/bunnybus"
},
"dependencies": {
"amqplib": "^0.10.0",
"set-interval-async": "^2.0.3"
},
"devDependencies": {
"@hapi/code": "^9.0.1",
"@hapi/eslint-plugin": "^6.0.0",
"@hapi/lab": "^25.0.1",
"doctoc": "^2.2.0",
"eslint": "^8.18.0"
}
}