package.json 775 B

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