package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "execa",
  3. "version": "1.0.0",
  4. "description": "A better `child_process`",
  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": ">=6"
  14. },
  15. "scripts": {
  16. "test": "xo && nyc ava"
  17. },
  18. "files": [
  19. "index.js",
  20. "lib"
  21. ],
  22. "keywords": [
  23. "exec",
  24. "child",
  25. "process",
  26. "execute",
  27. "fork",
  28. "execfile",
  29. "spawn",
  30. "file",
  31. "shell",
  32. "bin",
  33. "binary",
  34. "binaries",
  35. "npm",
  36. "path",
  37. "local"
  38. ],
  39. "dependencies": {
  40. "cross-spawn": "^6.0.0",
  41. "get-stream": "^4.0.0",
  42. "is-stream": "^1.1.0",
  43. "npm-run-path": "^2.0.0",
  44. "p-finally": "^1.0.0",
  45. "signal-exit": "^3.0.0",
  46. "strip-eof": "^1.0.0"
  47. },
  48. "devDependencies": {
  49. "ava": "*",
  50. "cat-names": "^1.0.2",
  51. "coveralls": "^3.0.1",
  52. "delay": "^3.0.0",
  53. "is-running": "^2.0.0",
  54. "nyc": "^13.0.1",
  55. "tempfile": "^2.0.0",
  56. "xo": "*"
  57. },
  58. "nyc": {
  59. "reporter": [
  60. "text",
  61. "lcov"
  62. ],
  63. "exclude": [
  64. "**/fixtures/**",
  65. "**/test.js",
  66. "**/test/**"
  67. ]
  68. }
  69. }