UNPKG

redirector-cli

Version:

Global CLI tool for managing Redirector backend services with Docker Compose

73 lines (72 loc) 2.08 kB
{ "name": "redirector-cli", "version": "1.0.0", "description": "Global CLI tool for managing Redirector backend services with Docker Compose", "keywords": [ "redirector", "cli", "docker", "backend", "api" ], "author": "Shivaraj Bakale", "license": "MIT", "main": "dist/bin/redirector.js", "bin": { "redirector": "dist/bin/redirector.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" }