-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
124 additions
and
20 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,7 @@ | |
"name": "concurrently-await", | ||
"version": "1.0.0", | ||
"description": "Run commands concurrently with option to wait for a condition to match before moving to next command", | ||
"keywords": [ | ||
"concurrent", | ||
"await", | ||
"wait", | ||
"log", | ||
"scripts", | ||
"command", | ||
"sh", | ||
"bash", | ||
"parallel", | ||
"concurrently" | ||
], | ||
"keywords": ["concurrent", "await", "wait", "log", "scripts", "command", "sh", "bash", "parallel", "concurrently"], | ||
"author": "Ben Meyrick <[email protected]>", | ||
"license": "MIT", | ||
"engines": { | ||
|
@@ -33,9 +22,7 @@ | |
"prettier --print-width 140 --single-quote --arrow-parens avoid --trailing-comma es5 --parser typescript --write", | ||
"npm run lint" | ||
], | ||
"*.json": [ | ||
"prettier --print-width 140 --single-quote --trailing-comma es5 --parser json --write" | ||
] | ||
"*.json": ["prettier --print-width 140 --single-quote --trailing-comma es5 --parser json --write"] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
|
@@ -49,7 +36,7 @@ | |
"devDependencies": { | ||
"@types/node": "^15.6.1", | ||
"@types/yargs": "^17.0.0", | ||
"husky": "^6.0.0", | ||
"husky": "^4.3.8", | ||
"lint-staged": "^11.0.0", | ||
"npm-check": "^5.9.2", | ||
"prettier": "^2.3.0", | ||
|