package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "gauge",
  3. "version": "5.0.2",
  4. "description": "A terminal based horizontal gauge",
  5. "main": "lib",
  6. "scripts": {
  7. "test": "tap",
  8. "lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
  9. "postlint": "template-oss-check",
  10. "lintfix": "npm run lint -- --fix",
  11. "snap": "tap",
  12. "posttest": "npm run lint",
  13. "template-oss-apply": "template-oss-apply --force"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/npm/gauge.git"
  18. },
  19. "keywords": [
  20. "progressbar",
  21. "progress",
  22. "gauge"
  23. ],
  24. "author": "GitHub Inc.",
  25. "license": "ISC",
  26. "bugs": {
  27. "url": "https://github.com/npm/gauge/issues"
  28. },
  29. "homepage": "https://github.com/npm/gauge",
  30. "dependencies": {
  31. "aproba": "^1.0.3 || ^2.0.0",
  32. "color-support": "^1.1.3",
  33. "console-control-strings": "^1.1.0",
  34. "has-unicode": "^2.0.1",
  35. "signal-exit": "^4.0.1",
  36. "string-width": "^4.2.3",
  37. "strip-ansi": "^6.0.1",
  38. "wide-align": "^1.1.5"
  39. },
  40. "devDependencies": {
  41. "@npmcli/eslint-config": "^4.0.0",
  42. "@npmcli/template-oss": "4.22.0",
  43. "readable-stream": "^4.0.0",
  44. "tap": "^16.0.1"
  45. },
  46. "files": [
  47. "bin/",
  48. "lib/"
  49. ],
  50. "engines": {
  51. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  52. },
  53. "tap": {
  54. "branches": 79,
  55. "statements": 89,
  56. "functions": 92,
  57. "lines": 90,
  58. "nyc-arg": [
  59. "--exclude",
  60. "tap-snapshots/**"
  61. ]
  62. },
  63. "templateOSS": {
  64. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  65. "version": "4.22.0",
  66. "publish": "true"
  67. }
  68. }