package.json 752 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "data-uri-to-buffer",
  3. "version": "1.2.0",
  4. "description": "Generate a Buffer instance from a Data URI string",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/TooTallNate/node-data-uri-to-buffer.git"
  12. },
  13. "keywords": [
  14. "data",
  15. "uri",
  16. "datauri",
  17. "data-uri",
  18. "buffer",
  19. "convert",
  20. "rfc2397",
  21. "2397"
  22. ],
  23. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/TooTallNate/node-data-uri-to-buffer/issues"
  27. },
  28. "homepage": "https://github.com/TooTallNate/node-data-uri-to-buffer",
  29. "devDependencies": {
  30. "mocha": "^3.4.2"
  31. }
  32. }