package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "ps-tree",
  3. "version": "1.2.0",
  4. "description": "Get all children of a pid",
  5. "license": "MIT",
  6. "homepage": "http://github.com/indexzero/ps-tree#readme",
  7. "repository": "github:indexzero/ps-tree",
  8. "bugs": {
  9. "url": "https://github.com/indexzero/ps-tree/issues",
  10. "email": "charlie.robbins@gmail.com"
  11. },
  12. "author": "Charlie Robbins <charlie.robbins@gmail.com>",
  13. "contributors": [
  14. "Zhuohuan LI <zixia@zixia.net> (https://github.com/zixia)",
  15. "Simone Primarosa <simonepri@outlook.com> (https://github.com/simonepri)"
  16. ],
  17. "keyboards": [
  18. "ps-tree",
  19. "ps",
  20. "tree",
  21. "ppid",
  22. "pid"
  23. ],
  24. "main": "index.js",
  25. "bin": {
  26. "ps-tree": "./bin/ps-tree.js"
  27. },
  28. "files": [
  29. "bin",
  30. "index.js"
  31. ],
  32. "engines": {
  33. "node": ">= 0.10"
  34. },
  35. "scripts": {
  36. "test": "istanbul cover node_modules/tape/bin/tape test/test.js",
  37. "coverage": "cross-env CODECLIMATE_REPO_TOKEN=84436b4f13c70ace9c62e7f04928bf23c234eb212c0232d39d7fb1535beb2da5 node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info"
  38. },
  39. "dependencies": {
  40. "event-stream": "=3.3.4"
  41. },
  42. "devDependencies": {
  43. "codeclimate-test-reporter": "^0.5.0",
  44. "cross-env": "^2.0.1",
  45. "istanbul": "^0.4.5",
  46. "tape": "^4.9.0",
  47. "tree-kill": "^1.1.0"
  48. }
  49. }