103 lines
2.7 KiB
JSON
103 lines
2.7 KiB
JSON
|
{
|
||
|
"name": "concurrently",
|
||
|
"version": "8.2.2",
|
||
|
"description": "Run commands concurrently",
|
||
|
"main": "index.js",
|
||
|
"types": "dist/src/index.d.ts",
|
||
|
"type": "commonjs",
|
||
|
"bin": {
|
||
|
"concurrently": "./dist/bin/concurrently.js",
|
||
|
"conc": "./dist/bin/concurrently.js"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": "^14.13.0 || >=16.0.0"
|
||
|
},
|
||
|
"exports": {
|
||
|
".": {
|
||
|
"types": "./dist/src/index.d.ts",
|
||
|
"import": "./index.mjs",
|
||
|
"require": "./index.js",
|
||
|
"default": "./index.js"
|
||
|
},
|
||
|
"./package.json": "./package.json"
|
||
|
},
|
||
|
"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",
|
||
|
"date-fns": "^2.30.0",
|
||
|
"lodash": "^4.17.21",
|
||
|
"rxjs": "^7.8.1",
|
||
|
"shell-quote": "^1.8.1",
|
||
|
"spawn-command": "0.0.2",
|
||
|
"supports-color": "^8.1.1",
|
||
|
"tree-kill": "^1.2.2",
|
||
|
"yargs": "^17.7.2"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@hirez_io/observer-spy": "^2.2.0",
|
||
|
"@swc/core": "^1.3.93",
|
||
|
"@swc/jest": "^0.2.29",
|
||
|
"@types/jest": "^29.5.6",
|
||
|
"@types/lodash": "^4.14.200",
|
||
|
"@types/node": "^14.18.62",
|
||
|
"@types/shell-quote": "^1.7.3",
|
||
|
"@types/supports-color": "^8.1.2",
|
||
|
"@types/yargs": "^17.0.29",
|
||
|
"@typescript-eslint/eslint-plugin": "^6.8.0",
|
||
|
"@typescript-eslint/parser": "^6.8.0",
|
||
|
"coveralls-next": "^4.2.0",
|
||
|
"ctrlc-wrapper": "^0.0.4",
|
||
|
"esbuild": "~0.19.5",
|
||
|
"eslint": "^8.51.0",
|
||
|
"eslint-config-prettier": "^9.0.0",
|
||
|
"eslint-plugin-import": "^2.28.1",
|
||
|
"eslint-plugin-jest": "^27.4.2",
|
||
|
"eslint-plugin-prettier": "^5.0.1",
|
||
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
||
|
"husky": "^8.0.3",
|
||
|
"jest": "^29.7.0",
|
||
|
"jest-create-mock-instance": "^2.0.0",
|
||
|
"lint-staged": "^13.3.0",
|
||
|
"prettier": "^3.0.3",
|
||
|
"safe-publish-latest": "^2.0.0",
|
||
|
"string-argv": "^0.3.2",
|
||
|
"typescript": "~5.2.2"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist",
|
||
|
"index.js",
|
||
|
"index.mjs",
|
||
|
"!**/fixtures",
|
||
|
"!**/*.spec.js",
|
||
|
"!**/*.spec.d.ts"
|
||
|
],
|
||
|
"lint-staged": {
|
||
|
"*.?(m){js,ts}": "eslint --fix",
|
||
|
"*.{json,y?(a)ml,md}": "prettier --write"
|
||
|
},
|
||
|
"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",
|
||
|
"report-coverage": "cat coverage/lcov.info | coveralls",
|
||
|
"test": "jest"
|
||
|
}
|
||
|
}
|