-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
97 lines (97 loc) · 3.06 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "amqp-connection-manager",
"version": "4.1.14",
"description": "Auto-reconnect and round robin support for amqplib.",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
}
},
"files": [
"dist/**/*"
],
"dependencies": {
"promise-breaker": "^6.0.0"
},
"peerDependencies": {
"amqplib": "*"
},
"devDependencies": {
"@jwalton/semantic-release-config": "^1.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/amqplib": "^0.10.0",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-string": "^1.4.2",
"@types/jest": "^29.2.0",
"@types/node": "^20.0.0",
"@types/whatwg-url": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"amqplib": "^0.10.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-jest": "^1.0.2",
"chai-string": "^1.1.2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-promise": "^6.0.0",
"greenkeeper-lockfile": "^1.14.0",
"husky": "^8.0.1",
"istanbul": "^0.4.0",
"jest": "^29.2.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"promise-tools": "^2.1.0",
"semantic-release": "^21.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.2.1",
"typescript": "^5.0.3"
},
"engines": {
"node": ">=10.0.0",
"npm": ">5.0.0"
},
"scripts": {
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run build",
"build": "tsc && tsc -p tsconfig.cjs.json && tsc -p tsconfig.types.json && ./bin/build-types.sh",
"clean": "rm -rf dist types coverage",
"test": "npm run test:lint && npm run test:unittest",
"test:unittest": "tsc -p test && jest --coverage",
"test:lint": "eslint --ext .ts src test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jwalton/node-amqp-connection-manager"
},
"lint-staged": {
"**/*.ts": [
"eslint --ext .ts"
]
},
"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"
}