package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "pidtree",
  3. "version": "0.6.0",
  4. "description": "Cross platform children list of a PID",
  5. "license": "MIT",
  6. "homepage": "http://github.com/simonepri/pidtree#readme",
  7. "repository": "github:simonepri/pidtree",
  8. "bugs": {
  9. "url": "https://github.com/simonepri/pidtree/issues",
  10. "email": "simonepri@outlook.com"
  11. },
  12. "author": "Simone Primarosa <simonepri@outlook.com> (https://github.com/simonepri)",
  13. "contributors": [
  14. "Simone Primarosa <simonepri@outlook.com> (https://github.com/simonepri)"
  15. ],
  16. "keywords": [
  17. "ps-tree",
  18. "ps",
  19. "tree",
  20. "ppid",
  21. "pid",
  22. "pidtree",
  23. "pgrep",
  24. "list",
  25. "all",
  26. "system",
  27. "process",
  28. "processes"
  29. ],
  30. "main": "index.js",
  31. "types": "index.d.ts",
  32. "bin": {
  33. "pidtree": "./bin/pidtree.js"
  34. },
  35. "files": [
  36. "bin",
  37. "lib",
  38. "index.js",
  39. "index.d.ts"
  40. ],
  41. "engines": {
  42. "node": ">=0.10"
  43. },
  44. "scripts": {
  45. "start": "node ./bin/pidtree.js",
  46. "update": "npm-check -u",
  47. "release": "np",
  48. "lint": "xo",
  49. "test": "nyc ava -m \"!*benchmark*\"",
  50. "test:windows": "ava -m \"!*benchmark*\"",
  51. "types": "tsd",
  52. "bench": "ava -m \"*benchmark*\""
  53. },
  54. "devDependencies": {
  55. "ava": "~0.25.0",
  56. "mockery": "^2.1.0",
  57. "np": "^2.20.1",
  58. "npm-check": "^5.9.2",
  59. "nyc": "^11.6.0",
  60. "pify": "^3.0.0",
  61. "string-to-stream": "^1.1.0",
  62. "through": "^2.3.8",
  63. "time-span": "^2.0.0",
  64. "tree-kill": "^1.1.0",
  65. "tsd": "^0.11.0",
  66. "xo": "~0.20.3"
  67. },
  68. "ava": {
  69. "verbose": true
  70. },
  71. "nyc": {
  72. "reporter": [
  73. "lcovonly",
  74. "text"
  75. ]
  76. },
  77. "xo": {
  78. "prettier": true,
  79. "space": true,
  80. "rules": {
  81. "prefer-destructuring": 0,
  82. "prefer-arrow-callback": 0,
  83. "no-var": 0,
  84. "object-shorthand": 0,
  85. "unicorn/no-for-loop": 0,
  86. "unicorn/prefer-string-slice": 0,
  87. "unicorn/string-content": 0
  88. }
  89. }
  90. }