package.json 629 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "pstree.remy",
  3. "version": "1.1.8",
  4. "main": "lib/index.js",
  5. "prettier": {
  6. "trailingComma": "es5",
  7. "semi": true,
  8. "singleQuote": true
  9. },
  10. "scripts": {
  11. "test": "tap tests/*.test.js",
  12. "_prepublish": "npm test"
  13. },
  14. "keywords": [
  15. "ps",
  16. "pstree",
  17. "ps tree"
  18. ],
  19. "author": "Remy Sharp",
  20. "license": "MIT",
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/remy/pstree.git"
  24. },
  25. "devDependencies": {
  26. "tap": "^11.0.0"
  27. },
  28. "directories": {
  29. "test": "tests"
  30. },
  31. "dependencies": {},
  32. "description": "Collects the full tree of processes from /proc"
  33. }