-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 988 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
{
"name": "polish_rabbit",
"version": "1.0.2",
"description": "Lib for rabbitmq queues implementation in Node Js",
"main": "index.js",
"scripts": {
"rabbitmq": "docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.9-management",
"test": "jest index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/macielandre/polish_rabbit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/macielandre/polish_rabbit/issues"
},
"homepage": "https://github.com/macielandre/polish_rabbit#readme",
"dependencies": {
"amqplib": "^0.10.2",
"dotenv": "^16.3.1",
"log4js": "^6.9.1",
"piscina": "^4.0.0"
},
"directories": {
"lib": "lib"
},
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.8.8"
}
}