{
    "name": "@qrvey/health-checker",
    "version": "1.1.1",
    "types": "dist/types/index.d.ts",
    "main": "dist/cjs/index.js",
    "exports": {
        ".": {
            "import": "./dist/esm/index.mjs",
            "require": "./dist/cjs/index.js",
            "default": "./dist/cjs/index.js"
        }
    },
    "scripts": {
        "test": "jest --testPathIgnorePatterns=integration",
        "test:integration": "DOTENV_CONFIG_PATH=../../integration.test.env NODE_ENV=test jest --runInBand --testMatch '**/*.integration.test.ts' --config jest.integration.config.ts",
        "test:cov": "jest --coverage && chmod +x ./coverageReader.sh && sh ./coverageReader.sh",
        "lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
        "lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
        "build:clean": "rm -rf dist",
        "build:compile:original": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
        "build:compile:cjs:original": "tsup --config ./tsup.config.cjs.ts",
        "build:compile:cjs": "tsc -b ./tsconfig.cjs.json",
        "build:compile:esm": "tsup --config ./tsup.config.esm.ts",
        "build:compile:types": "tsup --config ./tsup.config.types.ts",
        "build:compile": "yarn build:compile:cjs && yarn build:compile:esm && yarn build:compile:types",
        "build": "yarn build:clean && yarn build:compile",
        "prepare-publish": "yarn install && yarn build",
        "publish-package": "yarn prepare-publish && npm publish"
    },
    "devDependencies": {
        "dotenv-cli": "8.0.0",
        "eslint": "8.48.0",
        "eslint-import-resolver-typescript": "3.8.0",
        "eslint-plugin-import": "2.31.0",
        "jest": "29.7.0",
        "lcov-parse": "1.0.0",
        "ts-jest": "29.3.2",
        "tsup": "8.0.2",
        "typescript": "5.8.3"
    },
    "keywords": [
        "health",
        "checker",
        "healthcheck",
        "health-checker",
        "qrvey"
    ],
    "files": [
        "dist/*"
    ],
    "author": "Qrvey",
    "license": "ISC",
    "publishConfig": {
        "access": "public",
        "registry": "https://registry.npmjs.org"
    },
    "dependencies": {
        "@qrvey/fetch": "1.1.5",
        "amqplib": "0.10.8",
        "pg": "8.11.4",
        "redis": "5.0.1",
        "winston": "3.17.0"
    }
}
