Нет описания

package.json 749B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "gzip-size",
  3. "version": "0.2.0",
  4. "description": "Get the gzipped size of a string or buffer",
  5. "license": "MIT",
  6. "repository": "sindresorhus/gzip-size",
  7. "bin": {
  8. "gzip-size": "cli.js"
  9. },
  10. "author": {
  11. "name": "Sindre Sorhus",
  12. "email": "sindresorhus@gmail.com",
  13. "url": "http://sindresorhus.com"
  14. },
  15. "engines": {
  16. "node": ">=0.10.0"
  17. },
  18. "scripts": {
  19. "test": "mocha"
  20. },
  21. "files": [
  22. "index.js",
  23. "cli.js"
  24. ],
  25. "keywords": [
  26. "cli",
  27. "bin",
  28. "app",
  29. "tool",
  30. "zlib",
  31. "gzip",
  32. "compressed",
  33. "size",
  34. "string",
  35. "buffer"
  36. ],
  37. "dependencies": {
  38. "concat-stream": "^1.4.1",
  39. "browserify-zlib": "^0.1.4"
  40. },
  41. "devDependencies": {
  42. "mocha": "*"
  43. }
  44. }