-
-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathpackage.json
113 lines (113 loc) · 3.04 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "concurrently",
"version": "9.1.2",
"description": "Run commands concurrently",
"packageManager": "[email protected]+sha256.daa27a0b541bc635323ff96c2ded995467ff9fe6d69ff67021558aa9ad9dcc36",
"main": "index.js",
"types": "index.d.ts",
"type": "commonjs",
"bin": {
"concurrently": "./dist/bin/concurrently.js",
"conc": "./dist/bin/concurrently.js"
},
"engines": {
"node": ">=18"
},
"exports": {
".": {
"import": {
"types": "./index.d.mts",
"default": "./index.mjs"
},
"require": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc --build",
"postbuild": "chmod +x dist/bin/concurrently.js",
"clean": "tsc --build --clean",
"format": "prettier --check '**/*.{json,y?(a)ml,md}'",
"format:fix": "pnpm run format --write",
"lint": "eslint --ignore-path .gitignore --ext mjs,js,ts .",
"lint:fix": "pnpm run lint --fix",
"prepublishOnly": "safe-publish-latest && pnpm run build",
"report-coverage": "cat coverage/lcov.info | coveralls",
"test": "jest --selectProjects unit",
"test:smoke": "jest --selectProjects smoke",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/open-cli-tools/concurrently.git"
},
"funding": "https://github.com/open-cli-tools/concurrently?sponsor=1",
"keywords": [
"bash",
"concurrent",
"parallel",
"concurrently",
"command",
"sh"
],
"author": "Kimmo Brunfeldt",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"rxjs": "^7.8.1",
"shell-quote": "^1.8.1",
"supports-color": "^8.1.1",
"tree-kill": "^1.2.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@hirez_io/observer-spy": "^2.2.0",
"@jest/types": "^29.6.3",
"@swc/core": "^1.7.23",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.6",
"@types/lodash": "^4.17.7",
"@types/node": "^18.19.50",
"@types/shell-quote": "^1.7.5",
"@types/supports-color": "^8.1.3",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"coveralls-next": "^4.2.1",
"ctrlc-wrapper": "^0.0.4",
"esbuild": "~0.23.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-create-mock-instance": "^2.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.0.3",
"safe-publish-latest": "^2.0.0",
"string-argv": "^0.3.2",
"typescript": "~5.2.2"
},
"files": [
"dist",
"index.js",
"index.d.ts",
"index.mjs",
"index.d.mts",
"!**/fixtures",
"!**/*.spec.js",
"!**/*.spec.d.ts",
"docs"
],
"lint-staged": {
"*.?(m){js,ts}": "eslint --fix",
"*.{json,y?(a)ml,md}": "prettier --write"
}
}