package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "npm-run-all2",
  3. "version": "7.0.2",
  4. "description": "A CLI tool to run multiple npm-scripts in parallel or sequential. (Maintainence fork)",
  5. "bin": {
  6. "run-p": "bin/run-p/index.js",
  7. "run-s": "bin/run-s/index.js",
  8. "npm-run-all": "bin/npm-run-all/index.js",
  9. "npm-run-all2": "bin/npm-run-all/index.js"
  10. },
  11. "main": "lib/index.js",
  12. "engines": {
  13. "node": "^18.17.0 || >=20.5.0",
  14. "npm": ">= 9"
  15. },
  16. "scripts": {
  17. "clean": "rm -rf coverage jsdoc \"test-workspace/{build,test.txt}\"",
  18. "docs": "jsdoc -c jsdoc.json",
  19. "check:installed-check": "installed-check --ignore-dev",
  20. "check:eslint": "eslint",
  21. "check:knip": "knip",
  22. "precheck": "node scripts/make-slink.js",
  23. "check": "node ./bin/run-p/index.js check:*",
  24. "pretest-mocha": "node scripts/make-slink.js",
  25. "test-mocha": "c8 mocha --timeout 120000",
  26. "test": "node ./bin/run-s/index.js check test-mocha",
  27. "watch": "mocha --timeout 120000 --watch --growl",
  28. "version": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
  29. "preversion": "npm test",
  30. "postversion": "git push --follow-tags && gh-release -y"
  31. },
  32. "dependencies": {
  33. "ansi-styles": "^6.2.1",
  34. "cross-spawn": "^7.0.6",
  35. "memorystream": "^0.3.1",
  36. "minimatch": "^9.0.0",
  37. "pidtree": "^0.6.0",
  38. "read-package-json-fast": "^4.0.0",
  39. "shell-quote": "^1.7.3",
  40. "which": "^5.0.0"
  41. },
  42. "devDependencies": {
  43. "auto-changelog": "^2.2.0",
  44. "c8": "^10.0.0",
  45. "eslint": "^9.6.0",
  46. "gh-release": "^7.0.0",
  47. "installed-check": "^9.3.0",
  48. "jsdoc": "^4.0.0",
  49. "knip": "^5.23.3",
  50. "mocha": "^11.0.1",
  51. "neostandard": "^0.12.0",
  52. "yarn": "^1.12.3"
  53. },
  54. "repository": {
  55. "type": "git",
  56. "url": "https://github.com/bcomnes/npm-run-all2.git"
  57. },
  58. "keywords": [
  59. "cli",
  60. "command",
  61. "commandline",
  62. "tool",
  63. "npm",
  64. "npm-scripts",
  65. "run",
  66. "sequential",
  67. "serial",
  68. "parallel",
  69. "task"
  70. ],
  71. "author": "Toru Nagashima",
  72. "contributors": [
  73. "Bret Comnes <bcomnes@gmail.com> (https://bret.io)"
  74. ],
  75. "license": "MIT",
  76. "bugs": {
  77. "url": "https://github.com/bcomnes/npm-run-all2/issues"
  78. },
  79. "homepage": "https://github.com/bcomnes/npm-run-all2",
  80. "c8": {
  81. "reporter": [
  82. "html",
  83. "lcovonly",
  84. "text"
  85. ]
  86. }
  87. }