package.json 939 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "cli-spinners",
  3. "version": "2.9.1",
  4. "description": "Spinners for use in the terminal",
  5. "license": "MIT",
  6. "repository": "sindresorhus/cli-spinners",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=6"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd",
  18. "asciicast": "asciinema rec --command='node example-all.js' --title='cli-spinner' --quiet"
  19. },
  20. "files": [
  21. "index.js",
  22. "index.d.ts",
  23. "spinners.json"
  24. ],
  25. "keywords": [
  26. "cli",
  27. "spinner",
  28. "spinners",
  29. "terminal",
  30. "term",
  31. "console",
  32. "ascii",
  33. "unicode",
  34. "loading",
  35. "indicator",
  36. "progress",
  37. "busy",
  38. "wait",
  39. "idle",
  40. "json"
  41. ],
  42. "devDependencies": {
  43. "@types/node": "^17.0.41",
  44. "ava": "^1.4.1",
  45. "log-update": "^3.2.0",
  46. "string-length": "^4.0.1",
  47. "tsd": "^0.7.2",
  48. "xo": "^0.24.0"
  49. }
  50. }