package.json 727 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "gzip-size",
  3. "version": "6.0.0",
  4. "description": "Get the gzipped size of a string or buffer",
  5. "license": "MIT",
  6. "repository": "sindresorhus/gzip-size",
  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": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "app",
  25. "tool",
  26. "zlib",
  27. "gzip",
  28. "compressed",
  29. "size",
  30. "string",
  31. "buffer"
  32. ],
  33. "dependencies": {
  34. "duplexer": "^0.1.2"
  35. },
  36. "devDependencies": {
  37. "ava": "^2.4.0",
  38. "p-event": "^4.2.0",
  39. "tsd": "^0.13.1",
  40. "xo": "^0.34.2"
  41. }
  42. }