-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "moleculer-amqp",
"version": "0.1.10",
"description": "Work queues for rabbitMQ with amqplib",
"main": "index.js",
"author": "Bulakh Serhii",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Ashhm/moleculer-amqp.git"
},
"engines": {
"node": ">= 8.x.x"
},
"scripts": {
"dev": "nodemon examples",
"eslint": "eslint .",
"ci": "mocha --watch",
"test": "nyc mocha"
},
"dependencies": {
"amqplib": "0.5.3",
"moleculer": "^0.14.7",
"uuid": "^8.1.0"
},
"keywords": [
"amqp",
"microservice",
"moleculer",
"queues",
"rabbitmq"
],
"devDependencies": {
"amqplib-mocks": "^1.3.0",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "5.15.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-mocha": "5.3.0",
"mocha": "6.0.2",
"nodemon": "^1.19.0",
"nyc": "^14.1.0",
"proxyquire": "2.1.0",
"sinon": "7.2.7",
"sinon-chai": "3.3.0"
}
}