package.json 925 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "base-64",
  3. "version": "1.0.0",
  4. "description": "A robust base64 encoder/decoder that is fully compatible with `atob()` and `btoa()`, written in JavaScript.",
  5. "homepage": "https://mths.be/base64",
  6. "main": "base64.js",
  7. "keywords": [
  8. "codec",
  9. "decoder",
  10. "encoder",
  11. "base64",
  12. "atob",
  13. "btoa"
  14. ],
  15. "license": "MIT",
  16. "author": {
  17. "name": "Mathias Bynens",
  18. "url": "https://mathiasbynens.be/"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/mathiasbynens/base64.git"
  23. },
  24. "bugs": "https://github.com/mathiasbynens/base64/issues",
  25. "files": [
  26. "LICENSE-MIT.txt",
  27. "base64.js"
  28. ],
  29. "scripts": {
  30. "test": "mocha tests/tests.js",
  31. "build": "grunt build"
  32. },
  33. "devDependencies": {
  34. "coveralls": "^2.11.4",
  35. "grunt": "^0.4.5",
  36. "grunt-cli": "^1.3.2",
  37. "grunt-shell": "^1.1.2",
  38. "grunt-template": "^0.2.3",
  39. "istanbul": "^0.4.0",
  40. "mocha": "^6.2.0",
  41. "regenerate": "^1.2.1"
  42. }
  43. }