package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "pidusage",
  3. "version": "3.0.0",
  4. "description": "Cross-platform process cpu % and memory usage of a PID",
  5. "license": "MIT",
  6. "homepage": "https://github.com/soyuka/pidusage",
  7. "repository": "github:soyuka/pidusage",
  8. "bugs": {
  9. "url": "https://github.com/soyuka/pidusage/issues"
  10. },
  11. "author": "soyuka",
  12. "contributors": [
  13. "Simone Primarosa <simonepri@outlook.com> (https://simoneprimarosa.com)"
  14. ],
  15. "main": "index.js",
  16. "files": [
  17. "lib",
  18. "index.js"
  19. ],
  20. "engines": {
  21. "node": ">=10"
  22. },
  23. "scripts": {
  24. "lint": "standard",
  25. "test": "nyc ava -m \"!*benchmark*\"",
  26. "coverage": "codecov",
  27. "bench": "ava -m \"*benchmark*\""
  28. },
  29. "dependencies": {
  30. "safe-buffer": "^5.2.1"
  31. },
  32. "devDependencies": {
  33. "ava": "^3.10.1",
  34. "codecov": "^3.7.0",
  35. "mockdate": "^2.0.5",
  36. "mockery": "^2.1.0",
  37. "nyc": "^15.1.0",
  38. "pify": "^3.0.0",
  39. "standard": "^16.0.4",
  40. "string-to-stream": "^1.1.1",
  41. "through": "^2.3.8",
  42. "time-span": "^2.0.0"
  43. },
  44. "keywords": [
  45. "pid",
  46. "usage",
  47. "ps",
  48. "cpu",
  49. "memory",
  50. "proc"
  51. ],
  52. "ava": {
  53. "verbose": true
  54. },
  55. "nyc": {
  56. "reporter": [
  57. "lcovonly",
  58. "text"
  59. ]
  60. }
  61. }