-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
45
46
47
48
49
50
{
"name": "bunnymq",
"version": "2.5.0",
"description": "BunnyMq is a RabbitMq wrapper",
"keywords": [
"rabbitmq",
"broker",
"amqp",
"taskQueue",
"message",
"publish",
"subscribe"
],
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"cover": "test -d .nyc_output && nyc report --reporter lcov",
"test": "nyc mocha --recursive --timeout=20000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dial-once/node-bunnymq.git"
},
"author": "Dial Once",
"license": "MIT",
"bugs": {
"url": "https://github.com/dial-once/node-bunnymq/issues"
},
"homepage": "https://github.com/dial-once/node-bunnymq#readme",
"dependencies": {
"amqplib": "^0.5.3",
"deserialize-error": "0.0.3",
"dotenv": "^7.0.0",
"serialize-error": "^3.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"child-process-promise": "^2.2.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"mocha": "^6.0.2",
"nyc": "^13.3.0"
},
"engines": {
"node": ">=6"
}
}