UNPKG

steadybit

Version:

Command-line interface to interact with the Steadybit API

80 lines (79 loc) 2.1 kB
{ "name": "steadybit", "version": "4.3.3", "description": "Command-line interface to interact with the Steadybit API", "keywords": [ "steadybit", "cli", "chaos engineering", "resilience engineering", "api", "gitops" ], "files": [ "dist" ], "bin": { "steadybit": "dist/cli/steadybit.js" }, "repository": { "type": "git", "url": "https://github.com/steadybit/cli.git" }, "scripts": { "clean": "rm -rf dist", "verify": "npm run verify:unit-test && npm run verify:lint && npm run prettier-check", "verify:unit-test": "jest", "verify:lint": "eslint src", "prettier-check": "prettier src --check", "prettier-write": "prettier src --write", "build": "npm run clean && npm run build:ts && npm run build:permissions", "build:ts": "tsc", "build:permissions": "chmod 755 dist/cli/*", "ci": "npm run verify && npm run build", "prepublishOnly": "npm run verify && npm run build" }, "engines": { "node": ">=18.0.0" }, "author": "Steadybit GmbH", "license": "MIT", "dependencies": { "archy": "^1.0.0", "colors": "1.4.0", "commander": "^9.0.0", "console-table-printer": "^2.12.1", "eventsource": "^2.0.2", "inquirer": "^8.2.0", "js-yaml": "^4.1.0", "node-fetch": "^2.7.0", "open": "^8.4.0", "ora": "^5.4.1", "rxjs": "^7.5.5", "semver": "^7.3.5", "uuid": "^14.0.0" }, "devDependencies": { "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.4", "@babel/preset-typescript": "^7.24.7", "@eslint/js": "^9.9.1", "@types/archy": "^0.0.32", "@types/eslint__js": "^8.42.3", "@types/eventsource": "^1.1.15", "@types/inquirer": "^8.2.0", "@types/jest": "^29.5.12", "@types/js-yaml": "^4.0.5", "@types/node-fetch": "^2.6.9", "@types/semver": "^7.3.9", "@types/uuid": "^8.3.4", "babel-jest": "^29.7.0", "eslint": "^8.57.0", "globals": "^15.9.0", "jest": "^29.7.0", "msw": "^2.2.14", "prettier": "^3.3.3", "typescript": "^5.5.4", "typescript-eslint": "^8.3.0" } }