package.json 987 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "text-decoder",
  3. "version": "1.2.3",
  4. "description": "Streaming text decoder that preserves multibyte Unicode characters",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "lib"
  9. ],
  10. "browser": {
  11. "./lib/pass-through-decoder.js": "./lib/browser-decoder.js",
  12. "./lib/utf8-decoder.js": "./lib/browser-decoder.js"
  13. },
  14. "react-native": {
  15. "./lib/pass-through-decoder.js": "./lib/pass-through-decoder.js",
  16. "./lib/utf8-decoder.js": "./lib/utf8-decoder.js"
  17. },
  18. "scripts": {
  19. "test": "standard && brittle test.js"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/holepunchto/text-decoder.git"
  24. },
  25. "author": "Holepunch",
  26. "license": "Apache-2.0",
  27. "bugs": {
  28. "url": "https://github.com/holepunchto/text-decoder/issues"
  29. },
  30. "homepage": "https://github.com/holepunchto/text-decoder#readme",
  31. "dependencies": {
  32. "b4a": "^1.6.4"
  33. },
  34. "devDependencies": {
  35. "brittle": "^3.3.2",
  36. "standard": "^17.0.0"
  37. }
  38. }