You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
786 B

  1. {
  2. "name": "brotli",
  3. "version": "1.3.3",
  4. "description": "A port of the Brotli compression algorithm as used in WOFF2",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/devongovett/brotli.js.git"
  9. },
  10. "keywords": [
  11. "compress",
  12. "decompress",
  13. "encode",
  14. "decode"
  15. ],
  16. "author": "Devon Govett <devongovett@gmail.com>",
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/devongovett/brotli.js/issues"
  20. },
  21. "homepage": "https://github.com/devongovett/brotli.js",
  22. "dependencies": {
  23. "base64-js": "^1.1.2"
  24. },
  25. "devDependencies": {
  26. "mocha": "^2.2.1"
  27. },
  28. "browser": {
  29. "./dec/dictionary-data.js": "./dec/dictionary-browser.js"
  30. },
  31. "scripts": {
  32. "test": "mocha",
  33. "prepublish": "make"
  34. }
  35. }