forked from jhaynie/node-amqplib-retry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.54 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
51
52
53
54
{
"name": "amqplib-retry",
"version": "1.1.7",
"description": "Retry failed attempts to consume a message, with increasing delays between each attempt.",
"author": "Lanetix <[email protected]> (https://github.com/lanetix/)",
"keywords": [
"amqplib",
"rabbitmq",
"message",
"queue",
"retry"
],
"homepage": "https://github.com/lanetix/node-amqplib-retry/",
"bugs": "https://github.com/lanetix/node-amqplib-retry/issues",
"repository": "git://github.com/lanetix/node-amqplib-retry.git",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"main": "./lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib --source-maps --minified",
"test-coveralls": "istanbul cover _mocha --report lcovonly -- -t 10000 -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"cover": "istanbul cover _mocha -- -t 10000",
"lint": "eslint src test",
"prepublish": "npm run compile",
"test": "mocha -t 10000 && npm run lint"
},
"dependencies": {
"amqplib": "^0.4",
"bluebird": "^3",
"underscore": "^1"
},
"devDependencies": {
"babel-cli": "^6",
"babel-preset-es2015": "^6",
"coveralls": "^2",
"eslint": "^3",
"eslint-config-standard": "^5",
"eslint-plugin-promise": "^2",
"eslint-plugin-standard": "^2",
"istanbul": "^0.4",
"mocha": "^3",
"should": "^10",
"sinon": "^1.12.2"
},
"babel": {
"presets": [
"es2015"
]
}
}