版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1 год назад
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "execa",
  3. "version": "7.1.1",
  4. "description": "Process execution for humans",
  5. "license": "MIT",
  6. "repository": "sindresorhus/execa",
  7. "funding": "https://github.com/sindresorhus/execa?sponsor=1",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": "./index.js",
  15. "engines": {
  16. "node": "^14.18.0 || ^16.14.0 || >=18.0.0"
  17. },
  18. "scripts": {
  19. "test": "xo && c8 ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts",
  24. "lib"
  25. ],
  26. "keywords": [
  27. "exec",
  28. "child",
  29. "process",
  30. "execute",
  31. "fork",
  32. "execfile",
  33. "spawn",
  34. "file",
  35. "shell",
  36. "bin",
  37. "binary",
  38. "binaries",
  39. "npm",
  40. "path",
  41. "local"
  42. ],
  43. "dependencies": {
  44. "cross-spawn": "^7.0.3",
  45. "get-stream": "^6.0.1",
  46. "human-signals": "^4.3.0",
  47. "is-stream": "^3.0.0",
  48. "merge-stream": "^2.0.0",
  49. "npm-run-path": "^5.1.0",
  50. "onetime": "^6.0.0",
  51. "signal-exit": "^3.0.7",
  52. "strip-final-newline": "^3.0.0"
  53. },
  54. "devDependencies": {
  55. "@types/node": "^18.13.0",
  56. "ava": "^5.2.0",
  57. "c8": "^7.12.0",
  58. "get-node": "^13.5.0",
  59. "is-running": "^2.1.0",
  60. "p-event": "^5.0.1",
  61. "path-key": "^4.0.0",
  62. "tempfile": "^4.0.0",
  63. "tsd": "^0.25.0",
  64. "xo": "^0.53.1"
  65. },
  66. "c8": {
  67. "reporter": [
  68. "text",
  69. "lcov"
  70. ],
  71. "exclude": [
  72. "**/fixtures/**",
  73. "**/test.js",
  74. "**/test/**"
  75. ]
  76. },
  77. "ava": {
  78. "workerThreads": false
  79. },
  80. "xo": {
  81. "rules": {
  82. "unicorn/no-empty-file": "off",
  83. "@typescript-eslint/ban-types": "off"
  84. }
  85. }
  86. }