package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "tree-kill",
  3. "version": "1.2.2",
  4. "description": "kill trees of processes",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "bin": {
  8. "tree-kill": "cli.js"
  9. },
  10. "scripts": {
  11. "test": "mocha"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/pkrumins/node-tree-kill.git"
  16. },
  17. "homepage": "https://github.com/pkrumins/node-tree-kill",
  18. "keywords": [
  19. "tree",
  20. "trees",
  21. "process",
  22. "processes",
  23. "kill",
  24. "signal"
  25. ],
  26. "author": {
  27. "name": "Peteris Krumins",
  28. "email": "peteris.krumins@gmail.com",
  29. "url": "http://www.catonmat.net"
  30. },
  31. "contributors": [
  32. {
  33. "name": "Todd Wolfson",
  34. "email": "todd@twolfson.com",
  35. "url": "http://twolfson.com/"
  36. },
  37. {
  38. "name": "William Hilton",
  39. "email": "wmhilton@gmail.com",
  40. "url": "http://wmhilton.com/"
  41. },
  42. {
  43. "name": "Fabrício Matté",
  44. "url": "http://ultcombo.js.org/"
  45. }
  46. ],
  47. "license": "MIT",
  48. "devDependencies": {
  49. "mocha": "^2.2.5"
  50. }
  51. }