package.json 971 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "base64-arraybuffer",
  3. "description": "Encode/decode base64 data into ArrayBuffers",
  4. "version": "0.1.5",
  5. "homepage": "https://github.com/niklasvh/base64-arraybuffer",
  6. "author": {
  7. "name": "Niklas von Hertzen",
  8. "email": "niklasvh@gmail.com",
  9. "url": "http://hertzen.com"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/niklasvh/base64-arraybuffer"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/niklasvh/base64-arraybuffer/issues"
  17. },
  18. "licenses": [
  19. {
  20. "type": "MIT",
  21. "url": "https://github.com/niklasvh/base64-arraybuffer/blob/master/LICENSE-MIT"
  22. }
  23. ],
  24. "main": "lib/base64-arraybuffer",
  25. "engines": {
  26. "node": ">= 0.6.0"
  27. },
  28. "scripts": {
  29. "test": "grunt nodeunit"
  30. },
  31. "devDependencies": {
  32. "grunt": "^0.4.5",
  33. "grunt-cli": "^0.1.13",
  34. "grunt-contrib-jshint": "^0.11.2",
  35. "grunt-contrib-nodeunit": "^0.4.1",
  36. "grunt-contrib-watch": "^0.6.1"
  37. },
  38. "keywords": []
  39. }