forked from jwalton/node-amqp-connection-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "amqp-connection-manager",
"version": "3.2.1",
"description": "Auto-reconnect and round robin support for amqplib.",
"main": "lib/index.js",
"dependencies": {
"promise-breaker": "^5.0.0"
},
"peerDependencies": {
"amqplib": "*"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@jwalton/semantic-release-config": "^1.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"amqplib": "^0.6.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.1.2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-config-benbria": "^4.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-promise": "^4.2.1",
"greenkeeper-lockfile": "^1.14.0",
"husky": "^4.3.0",
"istanbul": "^0.4.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"promise-tools": "^2.1.0",
"proxyquire": "^2.1.3",
"semantic-release": "^17.1.1",
"sinon": "^9.0.3"
},
"engines": {
"node": ">=6.0.0",
"npm": ">5.0.0"
},
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test",
"build": "babel -s -d lib src",
"clean": "rm -rf lib coverage",
"test": "npm run test:lint && npm run test:unittest",
"test:unittest": "cross-env NODE_ENV=test nyc mocha",
"test:lint": "eslint src test",
"precommit:unittest": "cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:lint && npm run precommit:unittest"
}
},
"repository": {
"type": "git",
"url": "https://github.com/jwalton/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/jwalton/node-amqp-connection-manager/issues"
},
"homepage": "https://github.com/jwalton/node-amqp-connection-manager"
}