-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 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
{
"name": "wrappitmq",
"version": "1.1.1",
"description": "Simplified AMQP 0-9-1 es7 library offering a quick start into RabbitMQ based IPC.",
"homepage": "https://github.com/patrickd-/wrappitmq.node/",
"license": "MIT",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:patrickd-/wrappitmq.node.git"
},
"keywords": [
"AMQP",
"AMQP 0-9-1",
"RabbitMQ",
"IPC",
"es7",
"wrap",
"simple",
"async",
"await",
"async-await"
],
"engineStrict": true,
"engines": {
"node": ">=10"
},
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha",
"travis": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"amqplib": "^0.8.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"istanbul-harmony": "^0.3.16",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0"
}
}