-
-
Notifications
You must be signed in to change notification settings - Fork 262
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.47 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.47 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "concurrently",
"type": "module",
"version": "9.2.1",
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd",
"description": "Run commands concurrently",
"author": "Kimmo Brunfeldt",
"license": "MIT",
"funding": "https://github.com/open-cli-tools/concurrently?sponsor=1",
"repository": {
"type": "git",
"url": "https://github.com/open-cli-tools/concurrently.git"
},
"keywords": [
"bash",
"concurrent",
"parallel",
"concurrently",
"command",
"sh"
],
"exports": {
".": "./dist/lib/index.js",
"./package.json": "./package.json"
},
"types": "./dist/lib/index.d.ts",
"bin": {
"concurrently": "./dist/bin/index.js",
"conc": "./dist/bin/index.js"
},
"files": [
"!**/*.spec.d.ts",
"!**/*.spec.js",
"!**/__fixtures__",
"dist",
"dist/tsconfig.tsbuildinfo",
"docs"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc --build",
"postbuild": "chmod +x dist/bin/index.js",
"typecheck": "tsc --noEmit",
"format": "prettier --check '**/*.{json,y?(a)ml,md}'",
"lint": "eslint",
"prepublishOnly": "safe-publish-latest && pnpm run build",
"test": "vitest --project unit",
"test:smoke": "vitest run --project smoke",
"prepare": "husky"
},
"dependencies": {
"chalk": "5.6.2",
"rxjs": "7.8.2",
"shell-quote": "1.8.3",
"supports-color": "10.2.2",
"tree-kill": "1.2.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@hirez_io/observer-spy": "^2.2.0",
"@types/node": "^20.19.39",
"@types/shell-quote": "^1.7.5",
"@types/yargs": "^17.0.35",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.6.15",
"ctrlc-wrapper": "^0.0.5",
"esbuild": "~0.25.12",
"eslint": "^9.39.4",
"eslint-config-flat-gitignore": "^2.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-lite": "^0.3.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"safe-publish-latest": "^2.0.0",
"string-argv": "^0.3.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.58.1",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{json,y?(a)ml,md}": "prettier --write"
}
}