-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "rabbit-communications",
"version": "0.13.0",
"description": "Configure two-way communication between microservices via RabbitMQ 📥 📤",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "NODE_ENV=test mocha --exit",
"eslint": "eslint src",
"eslint:fix": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexTolmachev/node-rabbit-communications.git"
},
"keywords": [
"message-queue",
"microservices",
"rabbit-mq",
"rabbitmq",
"rabbit",
"amqp"
],
"author": {
"name": "Alexander Tolmachev",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexTolmachev/node-rabbit-communications/issues"
},
"homepage": "https://github.com/AlexTolmachev/node-rabbit-communications#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "5.13.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.16.0",
"mocha": "^6.1.4"
},
"dependencies": {
"nanoid": "^2.0.3",
"rabbit-client": "^1.1.5"
}
}