package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "gauge",
  3. "version": "3.0.2",
  4. "description": "A terminal based horizontal guage",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "standard && tap test/*.js --coverage"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/iarna/gauge"
  12. },
  13. "keywords": [
  14. "progressbar",
  15. "progress",
  16. "gauge"
  17. ],
  18. "author": "Rebecca Turner <me@re-becca.org>",
  19. "license": "ISC",
  20. "bugs": {
  21. "url": "https://github.com/npm/gauge/issues"
  22. },
  23. "homepage": "https://github.com/npm/gauge",
  24. "dependencies": {
  25. "aproba": "^1.0.3 || ^2.0.0",
  26. "color-support": "^1.1.2",
  27. "console-control-strings": "^1.0.0",
  28. "has-unicode": "^2.0.1",
  29. "object-assign": "^4.1.1",
  30. "signal-exit": "^3.0.0",
  31. "string-width": "^4.2.3",
  32. "strip-ansi": "^6.0.1",
  33. "wide-align": "^1.1.2"
  34. },
  35. "devDependencies": {
  36. "readable-stream": "^2.0.6",
  37. "require-inject": "^1.4.0",
  38. "standard": "^11.0.1",
  39. "tap": "^12.0.1",
  40. "through2": "^2.0.0"
  41. },
  42. "files": [
  43. "base-theme.js",
  44. "CHANGELOG.md",
  45. "error.js",
  46. "has-color.js",
  47. "index.js",
  48. "LICENSE",
  49. "package.json",
  50. "plumbing.js",
  51. "process.js",
  52. "progress-bar.js",
  53. "README.md",
  54. "render-template.js",
  55. "set-immediate.js",
  56. "set-interval.js",
  57. "spin.js",
  58. "template-item.js",
  59. "theme-set.js",
  60. "themes.js",
  61. "wide-truncate.js"
  62. ],
  63. "engines": {
  64. "node": ">=10"
  65. }
  66. }