-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 987 Bytes
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
{
"name": "rabbit-client",
"version": "1.1.6",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AlexTolmachev/rabbit-client.git"
},
"author": {
"name": "Alexander Tolmachev",
"email": "alextolmachevv@gmail.com"
},
"bugs": {
"url": "https://github.com/AlexTolmachev/rabbit-client/issues"
},
"homepage": "https://github.com/AlexTolmachev/rabbit-client#readme",
"license": "MIT",
"scripts": {
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"test": "mocha --exit",
"manual-test": "node misc/manual-tests/launcher.js"
},
"keywords": [
"message-queue",
"rabbit-mq",
"rabbitmq",
"amqplib",
"amqp"
],
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0",
"mocha": "^6.1.4"
},
"dependencies": {
"amqplib": "^0.5.6",
"node-cleanup": "^2.1.2"
}
}