UNPKG

scripts-orchestrator

Version:

A powerful script orchestrator for running parallel commands with dependency management, background processes, and health checks

59 lines (58 loc) 1.48 kB
{ "name": "scripts-orchestrator", "version": "2.10.0", "description": "A powerful script orchestrator for running parallel commands with dependency management, background processes, and health checks", "main": "lib/index.js", "type": "module", "bin": { "scripts-orchestrator": "index.js" }, "scripts": { "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --detectOpenHandles --runInBand", "start": "node index.js", "lint": "eslint .", "prepare": "npm run lint" }, "keywords": [ "orchestrator", "script", "parallel", "process", "health-check", "dependency", "background", "automation", "ci", "testing" ], "author": "vivekkodira@gmail.com", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Pratishthan/scripts-orchestrator.git" }, "bugs": { "url": "https://github.com/Pratishthan/scripts-orchestrator/issues" }, "homepage": "https://github.com/Pratishthan/scripts-orchestrator#readme", "engines": { "node": ">=14.0.0" }, "dependencies": { "chalk": "^4.1.2", "yargs": "^17.7.2" }, "devDependencies": { "@types/jest": "^29.5.14", "eslint": "^8.0.0", "jest": "^29.7.0", "ts-jest": "^29.3.3" }, "files": [ "lib/", "index.js", "scripts-orchestrator.config.js", "README.md" ] }