-
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.
Update package.json with repository and keywords
- Loading branch information
Showing
1 changed file
with
21 additions
and
5 deletions.
There are no files selected for viewing
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,20 +2,32 @@ | |
"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", | ||
"bin": { | ||
"concurrently-await": "./dist/index.js" | ||
}, | ||
"keywords": [ | ||
"concurrent", | ||
"await", | ||
"wait", | ||
"log", | ||
"scripts", | ||
"command", | ||
"sh", | ||
"bash", | ||
"parallel", | ||
"concurrently" | ||
], | ||
"author": "Ben Meyrick <[email protected]>", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=10.0.0" | ||
}, | ||
"bin": { | ||
"concurrently-await": "./dist/index.js" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && tsc -p tsconfig.json", | ||
"lint": "tslint --project tsconfig.json", | ||
"clean": "rimraf dist", | ||
"upgrade-interactive": "npm-check --update" | ||
}, | ||
"author": "Ben Meyrick <[email protected]>", | ||
"license": "MIT", | ||
"lint-staged": { | ||
"*.ts": [ | ||
"prettier --print-width 140 --single-quote --arrow-parens avoid --trailing-comma es5 --parser typescript --write", | ||
|
@@ -30,6 +42,10 @@ | |
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/bameyrick/concurrently-await.git" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^15.6.1", | ||
"@types/yargs": "^17.0.0", | ||
|