package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "name": "concurrently",
  3. "version": "8.2.1",
  4. "description": "Run commands concurrently",
  5. "main": "index.js",
  6. "types": "dist/src/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": "^14.13.0 || >=16.0.0"
  14. },
  15. "exports": {
  16. ".": {
  17. "types": "./dist/src/index.d.ts",
  18. "import": "./index.mjs",
  19. "require": "./index.js",
  20. "default": "./index.js"
  21. },
  22. "./package.json": "./package.json"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/open-cli-tools/concurrently.git"
  27. },
  28. "funding": "https://github.com/open-cli-tools/concurrently?sponsor=1",
  29. "keywords": [
  30. "bash",
  31. "concurrent",
  32. "parallel",
  33. "concurrently",
  34. "command",
  35. "sh"
  36. ],
  37. "author": "Kimmo Brunfeldt",
  38. "license": "MIT",
  39. "dependencies": {
  40. "chalk": "^4.1.2",
  41. "date-fns": "^2.30.0",
  42. "lodash": "^4.17.21",
  43. "rxjs": "^7.8.1",
  44. "shell-quote": "^1.8.1",
  45. "spawn-command": "0.0.2",
  46. "supports-color": "^8.1.1",
  47. "tree-kill": "^1.2.2",
  48. "yargs": "^17.7.2"
  49. },
  50. "devDependencies": {
  51. "@hirez_io/observer-spy": "^2.2.0",
  52. "@swc/core": "^1.3.78",
  53. "@swc/jest": "^0.2.29",
  54. "@types/jest": "^29.5.3",
  55. "@types/lodash": "^4.14.197",
  56. "@types/node": "^14.18.54",
  57. "@types/shell-quote": "^1.7.1",
  58. "@types/supports-color": "^8.1.1",
  59. "@types/yargs": "^17.0.24",
  60. "@typescript-eslint/eslint-plugin": "^6.4.1",
  61. "@typescript-eslint/parser": "^6.4.1",
  62. "coveralls-next": "^4.2.0",
  63. "ctrlc-wrapper": "^0.0.4",
  64. "esbuild": "~0.19.2",
  65. "eslint": "^8.47.0",
  66. "eslint-config-prettier": "^9.0.0",
  67. "eslint-plugin-import": "^2.28.1",
  68. "eslint-plugin-jest": "^27.2.3",
  69. "eslint-plugin-prettier": "^5.0.0",
  70. "eslint-plugin-simple-import-sort": "^10.0.0",
  71. "husky": "^8.0.3",
  72. "jest": "^29.6.3",
  73. "jest-create-mock-instance": "^2.0.0",
  74. "lint-staged": "^13.3.0",
  75. "prettier": "^3.0.2",
  76. "safe-publish-latest": "^2.0.0",
  77. "string-argv": "^0.3.2",
  78. "typescript": "~5.1.6"
  79. },
  80. "files": [
  81. "dist",
  82. "index.js",
  83. "index.mjs",
  84. "!**/fixtures",
  85. "!**/*.spec.js",
  86. "!**/*.spec.d.ts"
  87. ],
  88. "lint-staged": {
  89. "*.?(m){js,ts}": "eslint --fix",
  90. "*.{json,y?(a)ml,md}": "prettier --write"
  91. },
  92. "scripts": {
  93. "build": "tsc --build",
  94. "postbuild": "chmod +x dist/bin/concurrently.js",
  95. "clean": "tsc --build --clean",
  96. "format": "prettier --check '**/*.{json,y?(a)ml,md}'",
  97. "format:fix": "pnpm run format --write",
  98. "lint": "eslint --ignore-path .gitignore --ext mjs,js,ts .",
  99. "lint:fix": "pnpm run lint --fix",
  100. "report-coverage": "cat coverage/lcov.info | coveralls",
  101. "test": "jest"
  102. }
  103. }