package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "data-uri-to-buffer",
  3. "version": "3.0.1",
  4. "description": "Generate a Buffer instance from a Data URI string",
  5. "main": "dist/src/index.js",
  6. "types": "dist/src/index.d.ts",
  7. "files": [
  8. "dist/src"
  9. ],
  10. "scripts": {
  11. "build": "tsc",
  12. "test": "mocha --reporter spec dist/test/*.js",
  13. "test-lint": "eslint src --ext .js,.ts",
  14. "prepublishOnly": "npm run build"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/TooTallNate/node-data-uri-to-buffer.git"
  19. },
  20. "engines": {
  21. "node": ">= 6"
  22. },
  23. "keywords": [
  24. "data",
  25. "uri",
  26. "datauri",
  27. "data-uri",
  28. "buffer",
  29. "convert",
  30. "rfc2397",
  31. "2397"
  32. ],
  33. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/TooTallNate/node-data-uri-to-buffer/issues"
  37. },
  38. "homepage": "https://github.com/TooTallNate/node-data-uri-to-buffer",
  39. "devDependencies": {
  40. "@types/es6-promisify": "^5.0.0",
  41. "@types/mocha": "^5.2.7",
  42. "@types/node": "^10.5.3",
  43. "@typescript-eslint/eslint-plugin": "1.6.0",
  44. "@typescript-eslint/parser": "1.1.0",
  45. "eslint": "5.16.0",
  46. "eslint-config-airbnb": "17.1.0",
  47. "eslint-config-prettier": "4.1.0",
  48. "eslint-import-resolver-typescript": "1.1.1",
  49. "eslint-plugin-import": "2.16.0",
  50. "eslint-plugin-jsx-a11y": "6.2.1",
  51. "eslint-plugin-react": "7.12.4",
  52. "mocha": "^6.2.0",
  53. "typescript": "^3.5.3"
  54. }
  55. }