-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 975 Bytes
/
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
{
"name": "beatrix",
"version": "3.6.0",
"description": "Opinionated RabbitMQ implementation",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --exit",
"test:docker": "docker run --rm -it $(docker build -q -f Dockerfile.test .)"
},
"publishConfig": {
"registry": "https://registry.npmjs.com"
},
"keywords": [
"rabbit",
"rabbitmq",
"amqp"
],
"author": "Richard Lyon",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/richthegeek/beatrix.git"
},
"bugs": {
"url": "https://github.com/richthegeek/beatrix/issues"
},
"homepage": "https://github.com/richthegeek/beatrix#readme",
"dependencies": {
"amqp-connection-manager": "^3.2.0",
"amqplib": "^0.5.5",
"backoff-strategies": "^1.1.0",
"debug": "^4.1.0",
"eventemitter2": "^6.4.0",
"lodash": "^4.17.15",
"uuid": "^8.0.0"
},
"devDependencies": {
"mocha": "^7.1.2"
}
}