{
    "name": "mockey-patcher-cli",
    "version": "1.1.1",
    "description": "Global CLI tool for managing Mockey Patcher backend services with Docker Compose - API mocking and request redirection made simple",
    "keywords": [
        "mockey",
        "patcher",
        "mock",
        "api",
        "cli",
        "docker",
        "backend",
        "testing",
        "redirect"
    ],
    "author": "Shivaraj Bakale",
    "license": "MIT",
    "main": "dist/bin/mockey-patcher.js",
    "bin": {
        "mockey-patcher": "dist/bin/mockey-patcher.js"
    },
    "files": [
        "dist/**/*",
        "README.md"
    ],
    "engines": {
        "node": ">=16.0.0"
    },
    "scripts": {
        "build": "tsc",
        "build:watch": "tsc --watch",
        "clean": "rm -rf dist",
        "dev": "npm run build:watch",
        "test": "jest",
        "test:watch": "jest --watch",
        "test:coverage": "jest --coverage",
        "lint": "eslint src/**/*.ts",
        "lint:fix": "eslint src/**/*.ts --fix",
        "prepublishOnly": "npm run clean && npm run build",
        "prepare": "npm run build"
    },
    "dependencies": {
        "chalk": "^4.1.2",
        "commander": "^11.1.0",
        "dotenv": "^16.3.1",
        "fs-extra": "^11.1.1",
        "inquirer": "^8.2.6",
        "ora": "^5.4.1",
        "semver": "^7.5.4"
    },
    "devDependencies": {
        "@types/fs-extra": "^11.0.4",
        "@types/inquirer": "^9.0.7",
        "@types/jest": "^29.5.8",
        "@types/jsonfile": "^6.1.4",
        "@types/node": "^20.10.4",
        "@types/semver": "^7.5.6",
        "@types/through": "^0.0.33",
        "@typescript-eslint/eslint-plugin": "^6.13.1",
        "@typescript-eslint/parser": "^6.13.1",
        "eslint": "^8.54.0",
        "jest": "^29.7.0",
        "ts-jest": "^29.1.1",
        "ts-node": "^10.9.2",
        "typescript": "^5.3.3"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/shivarajbakale/redirector-app.git",
        "directory": "packages/backend/cli"
    },
    "bugs": {
        "url": "https://github.com/shivarajbakale/redirector-app/issues"
    },
    "homepage": "https://github.com/shivarajbakale/redirector-app#readme"
}