Skip to content

Commit

Permalink
Update package.json with repository and keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
bameyrick committed May 26, 2021
1 parent 8d8804f commit 7627ffc
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 7627ffc

Please sign in to comment.