run-in-all
Version:
A CLI tool to run the same npm-script in multiple directories in parallel or sequential.
69 lines (68 loc) • 1.58 kB
JSON
{
"name": "run-in-all",
"version": "1.2.0",
"description": "A CLI tool to run the same npm-script in multiple directories in parallel or sequential.",
"main": "./bin/index.js",
"bin": {
"run-in-all": "./bin/index.js"
},
"files": [
"bin"
],
"author": {
"name": "Nasreddine Bac ALi",
"email": "nasreddine.bacali95@gmail.com",
"url": "https://nasreddinebacali.info"
},
"homepage": "https://github.com/bacali95/run-in-all",
"bugs": {
"url": "https://github.com/bacali95/run-in-all/issues"
},
"repository": {
"url": "https://github.com/bacali95/run-in-all",
"type": "git"
},
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"start:prod": "node .",
"test": "jest",
"pretest": "yarn build",
"prepublish": "yarn test"
},
"dependencies": {
"chalk": "^4.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^12.19.15",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.0.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.1",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
},
"keywords": [
"cli",
"command",
"commandline",
"tool",
"npm",
"npm-scripts",
"yarn",
"yarn-scripts",
"run",
"sequential",
"serial",
"parallel"
]
}