package.json 807 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "js-base64",
  3. "version": "3.7.5",
  4. "description": "Yet another Base64 transcoder in pure-JS",
  5. "main": "base64.js",
  6. "module": "base64.mjs",
  7. "types": "base64.d.ts",
  8. "sideEffects": false,
  9. "files": [
  10. "base64.js",
  11. "base64.mjs",
  12. "base64.d.ts"
  13. ],
  14. "exports": {
  15. ".": {
  16. "types": "./base64.d.ts",
  17. "import": "./base64.mjs",
  18. "require": "./base64.js"
  19. },
  20. "./package.json": "./package.json"
  21. },
  22. "scripts": {
  23. "test": "make clean && make test"
  24. },
  25. "devDependencies": {
  26. "@types/node": "^14.0.26",
  27. "esm": "^3.2.25",
  28. "mocha": "^8.4.0",
  29. "typescript": "^3.9.7"
  30. },
  31. "repository": "git+https://github.com/dankogai/js-base64.git",
  32. "keywords": [
  33. "base64",
  34. "binary"
  35. ],
  36. "author": "Dan Kogai",
  37. "license": "BSD-3-Clause"
  38. }