package.json 998 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "foreground-child",
  3. "version": "2.0.0",
  4. "description": "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.",
  5. "main": "index.js",
  6. "engines": {
  7. "node": ">=8.0.0"
  8. },
  9. "dependencies": {
  10. "cross-spawn": "^7.0.0",
  11. "signal-exit": "^3.0.2"
  12. },
  13. "devDependencies": {
  14. "tap": "^14.6.1"
  15. },
  16. "scripts": {
  17. "test": "tap",
  18. "changelog": "bash changelog.sh",
  19. "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}"
  20. },
  21. "tap": {
  22. "jobs": 1
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/tapjs/foreground-child.git"
  27. },
  28. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  29. "license": "ISC",
  30. "bugs": {
  31. "url": "https://github.com/tapjs/foreground-child/issues"
  32. },
  33. "homepage": "https://github.com/tapjs/foreground-child#readme",
  34. "directories": {
  35. "test": "test"
  36. },
  37. "files": [
  38. "index.js"
  39. ]
  40. }