package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "execa",
  3. "version": "5.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. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && nyc ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts",
  22. "lib"
  23. ],
  24. "keywords": [
  25. "exec",
  26. "child",
  27. "process",
  28. "execute",
  29. "fork",
  30. "execfile",
  31. "spawn",
  32. "file",
  33. "shell",
  34. "bin",
  35. "binary",
  36. "binaries",
  37. "npm",
  38. "path",
  39. "local"
  40. ],
  41. "dependencies": {
  42. "cross-spawn": "^7.0.3",
  43. "get-stream": "^6.0.0",
  44. "human-signals": "^2.1.0",
  45. "is-stream": "^2.0.0",
  46. "merge-stream": "^2.0.0",
  47. "npm-run-path": "^4.0.1",
  48. "onetime": "^5.1.2",
  49. "signal-exit": "^3.0.3",
  50. "strip-final-newline": "^2.0.0"
  51. },
  52. "devDependencies": {
  53. "@types/node": "^14.14.10",
  54. "ava": "^2.4.0",
  55. "get-node": "^11.0.1",
  56. "is-running": "^2.1.0",
  57. "nyc": "^15.1.0",
  58. "p-event": "^4.2.0",
  59. "tempfile": "^3.0.0",
  60. "tsd": "^0.13.1",
  61. "xo": "^0.35.0"
  62. },
  63. "nyc": {
  64. "reporter": [
  65. "text",
  66. "lcov"
  67. ],
  68. "exclude": [
  69. "**/fixtures/**",
  70. "**/test.js",
  71. "**/test/**"
  72. ]
  73. }
  74. }