package.json 511 B

123456789101112131415161718
  1. {
  2. "name": "fast-text-encoding",
  3. "version": "1.0.3",
  4. "description": "Fast polyfill for TextEncoder and TextDecoder, only supports utf-8",
  5. "main": "text.min.js",
  6. "repository": "https://github.com/samthor/fast-text-encoding.git",
  7. "author": "Sam Thorogood <sam.thorogood@gmail.com>",
  8. "license": "Apache-2.0",
  9. "devDependencies": {
  10. "chai": "^4.2.0",
  11. "google-closure-compiler": "^20200406.0.0",
  12. "mocha": "^7.1.0"
  13. },
  14. "scripts": {
  15. "compile": "./compile.sh",
  16. "test": "mocha"
  17. }
  18. }