package.json 759 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "pretty-bytes",
  3. "version": "5.6.0",
  4. "description": "Convert bytes to a human readable string: 1337 → 1.34 kB",
  5. "license": "MIT",
  6. "repository": "sindresorhus/pretty-bytes",
  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. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "pretty",
  25. "bytes",
  26. "byte",
  27. "filesize",
  28. "size",
  29. "file",
  30. "human",
  31. "humanized",
  32. "readable",
  33. "si",
  34. "data",
  35. "locale",
  36. "localization",
  37. "localized"
  38. ],
  39. "devDependencies": {
  40. "ava": "^1.4.1",
  41. "tsd": "^0.7.2",
  42. "xo": "^0.24.0"
  43. }
  44. }