{
    "name": "amqp-connection-manager",
    "version": "5.0.0",
    "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": "^22.18.6",
        "@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",
        "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 <dev@lucid.thedreaming.org> (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"
}
