package.json 806 B

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