bower.json 557 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "text-encoding-shim",
  3. "version": "1.0.0",
  4. "main": "index.js",
  5. "authors": ["Till Affeldt <till.affeldt@gmail.com>"],
  6. "description": "Simple lightweight polyfill for the Text Encoding API, supporting UTF-8 only",
  7. "license": "MIT",
  8. "moduleType": [
  9. "globals",
  10. "amd",
  11. "node"
  12. ],
  13. "keywords": [
  14. "encoding",
  15. "decoding",
  16. "w3c",
  17. "utf-8"
  18. ],
  19. "ignore": [
  20. "*.log"
  21. ],
  22. "repository": {
  23. "type": "git",
  24. "url": "https://gitlab.com/PseudoPsycho/text-encoding-shim"
  25. },
  26. "homepage": "https://gitlab.com/PseudoPsycho/text-encoding-shim"
  27. }