-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"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"],
"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": "eslint .",
"clean": "rimraf dist",
"upgrade-interactive": "npm-check --update"
},
"lint-staged": {
"*.ts": [
"prettier --print-width 140 --single-quote --arrow-parens avoid --trailing-comma es5 --parser typescript --write",
"eslint --fix --max-warnings 0"
],
"*.json": ["prettier --print-width 140 --single-quote --trailing-comma es5 --parser json --write"]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/bameyrick/concurrently-await.git"
},
"devDependencies": {
"@types/node": "^18.11.2",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.3.8",
"lint-staged": "^13.0.3",
"npm-check": "^6.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"dependencies": {
"chalk": "^4.1.1",
"strip-ansi": "^5.2.0",
"yargs": "^17.6.0"
}
}