package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "concurrently",
  3. "version": "9.2.1",
  4. "description": "Run commands concurrently",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "type": "commonjs",
  8. "bin": {
  9. "concurrently": "./dist/bin/concurrently.js",
  10. "conc": "./dist/bin/concurrently.js"
  11. },
  12. "engines": {
  13. "node": ">=18"
  14. },
  15. "exports": {
  16. ".": {
  17. "import": {
  18. "types": "./index.d.mts",
  19. "default": "./index.mjs"
  20. },
  21. "require": {
  22. "types": "./index.d.ts",
  23. "default": "./index.js"
  24. }
  25. },
  26. "./package.json": "./package.json"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/open-cli-tools/concurrently.git"
  31. },
  32. "funding": "https://github.com/open-cli-tools/concurrently?sponsor=1",
  33. "keywords": [
  34. "bash",
  35. "concurrent",
  36. "parallel",
  37. "concurrently",
  38. "command",
  39. "sh"
  40. ],
  41. "author": "Kimmo Brunfeldt",
  42. "license": "MIT",
  43. "dependencies": {
  44. "chalk": "4.1.2",
  45. "rxjs": "7.8.2",
  46. "shell-quote": "1.8.3",
  47. "supports-color": "8.1.1",
  48. "tree-kill": "1.2.2",
  49. "yargs": "17.7.2"
  50. },
  51. "devDependencies": {
  52. "@eslint/js": "^9.33.0",
  53. "@hirez_io/observer-spy": "^2.2.0",
  54. "@types/node": "^18.19.123",
  55. "@types/shell-quote": "^1.7.5",
  56. "@types/supports-color": "^8.1.3",
  57. "@types/yargs": "^17.0.33",
  58. "@vitest/coverage-v8": "^3.2.4",
  59. "@vitest/eslint-plugin": "^1.3.4",
  60. "coveralls-next": "^5.0.0",
  61. "ctrlc-wrapper": "^0.0.5",
  62. "esbuild": "~0.25.9",
  63. "eslint": "^9.33.0",
  64. "eslint-config-flat-gitignore": "^2.1.0",
  65. "eslint-config-prettier": "^10.1.8",
  66. "eslint-plugin-import-lite": "^0.3.0",
  67. "eslint-plugin-prettier": "^5.5.4",
  68. "eslint-plugin-simple-import-sort": "^12.1.1",
  69. "globals": "16.3.0",
  70. "husky": "^9.1.7",
  71. "lint-staged": "^15.5.2",
  72. "prettier": "^3.6.2",
  73. "safe-publish-latest": "^2.0.0",
  74. "string-argv": "^0.3.2",
  75. "typescript": "~5.9.2",
  76. "typescript-eslint": "^8.40.0",
  77. "vitest": "^3.2.4"
  78. },
  79. "files": [
  80. "dist",
  81. "index.js",
  82. "index.d.ts",
  83. "index.mjs",
  84. "index.d.mts",
  85. "!**/fixtures",
  86. "!**/*.spec.js",
  87. "!**/*.spec.d.ts",
  88. "docs"
  89. ],
  90. "lint-staged": {
  91. "*.?(m){js,ts}": "eslint --fix",
  92. "*.{json,y?(a)ml,md}": "prettier --write"
  93. },
  94. "scripts": {
  95. "build": "tsc --build",
  96. "postbuild": "chmod +x dist/bin/concurrently.js",
  97. "clean": "tsc --build --clean",
  98. "format": "prettier --check '**/*.{json,y?(a)ml,md}'",
  99. "format:fix": "pnpm run format --write",
  100. "lint": "eslint",
  101. "lint:fix": "pnpm run lint --fix",
  102. "report-coverage": "cat coverage/lcov.info | coveralls",
  103. "test": "vitest --project unit",
  104. "test:smoke": "vitest run --project smoke"
  105. }
  106. }