forked from jwalton/node-amqp-connection-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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": "amqp-connection-manager",
"version": "1.3.1",
"description": "Auto-reconnect and round robin support for amqplib.",
"main": "lib/index.js",
"dependencies": {
"es6-promise": "^3.0.2",
"lodash": "^3.10.1",
"promise-breaker": "^2.0.3",
"when": "^3.7.3"
},
"peerDependencies": {
"amqplib": "*"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"chai-string": "^1.1.2",
"coffee-coverage": "^1.0.1",
"coffee-script": "^1.9.3",
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"mocha": "^2.2.5",
"proxyquire": "^1.7.0",
"sinon": "^1.16.1"
},
"scripts": {
"prepublish": "npm run build && npm test",
"build": "coffee -c -o lib src",
"clean": "rm -rf lib coverage",
"distclean": "npm run clean && rm -rf node_modules",
"test": "mocha && istanbul report text-summary lcov"
},
"repository": {
"type": "git",
"url": "https://github.com/benbria/node-amqp-connection-manager"
},
"keywords": [
"amqp",
"rabbitmq",
"cluster",
"amqplib"
],
"author": "Jason Walton <[email protected]> (https://github.com/jwalton)",
"license": "MIT",
"bugs": {
"url": "https://github.com/benbria/node-amqp-connection-manager/issues"
},
"homepage": "https://github.com/benbria/node-amqp-connection-manager"
}