package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "execa",
  3. "version": "3.4.0",
  4. "description": "Process execution for humans",
  5. "license": "MIT",
  6. "repository": "sindresorhus/execa",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": "^8.12.0 || >=9.7.0"
  14. },
  15. "scripts": {
  16. "test": "xo && nyc ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts",
  21. "lib"
  22. ],
  23. "keywords": [
  24. "exec",
  25. "child",
  26. "process",
  27. "execute",
  28. "fork",
  29. "execfile",
  30. "spawn",
  31. "file",
  32. "shell",
  33. "bin",
  34. "binary",
  35. "binaries",
  36. "npm",
  37. "path",
  38. "local"
  39. ],
  40. "dependencies": {
  41. "cross-spawn": "^7.0.0",
  42. "get-stream": "^5.0.0",
  43. "human-signals": "^1.1.1",
  44. "is-stream": "^2.0.0",
  45. "merge-stream": "^2.0.0",
  46. "npm-run-path": "^4.0.0",
  47. "onetime": "^5.1.0",
  48. "p-finally": "^2.0.0",
  49. "signal-exit": "^3.0.2",
  50. "strip-final-newline": "^2.0.0"
  51. },
  52. "devDependencies": {
  53. "@types/node": "^12.0.7",
  54. "ava": "^2.1.0",
  55. "coveralls": "^3.0.4",
  56. "get-node": "^5.0.0",
  57. "is-running": "^2.1.0",
  58. "nyc": "^14.1.1",
  59. "p-event": "^4.1.0",
  60. "tempfile": "^3.0.0",
  61. "tsd": "^0.7.3",
  62. "xo": "^0.24.0"
  63. },
  64. "nyc": {
  65. "exclude": [
  66. "**/fixtures/**",
  67. "**/test.js",
  68. "**/test/**"
  69. ]
  70. }
  71. }