too
Version:
Combine multiple processes' Stdout/Stderr/SIGINT to keep them all foreground
47 lines (46 loc) • 1.29 kB
JSON
{
"name": "too",
"version": "3.1.1",
"description": "Combine multiple processes' Stdout/Stderr/SIGINT to keep them all foreground",
"type": "module",
"scripts": {
"build": "tsc",
"validate": "npm run lint && npm run build && npm link && too -c 'echo foo' -c 'sleep 5' -c 'gcloud beta emulators datastore start --project pricealert-jp' -c 'echo bar'",
"lint": "eslint ./src/**/*.ts ./tests/**/*.ts",
"test": "jest",
"test:bin": "npm run build && node ./dist/bin/too.js -c 'echo foo' -c 'sleep 2' -c 'echo bar'"
},
"bin": {
"too": "dist/bin/too.js"
},
"repository": {
"type": "git",
"url": "https://github.com/otiai10/too.js.git"
},
"author": "otiai10",
"license": "MIT",
"keywords": [
"Command",
"Parallel",
"SIGINT",
"ctrl+c"
],
"dependencies": {
"js-yaml": "^4.1.0",
"lookpath": "^1.2.2"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1"
}
}