package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "author": {
  3. "name": "Jarrett Widman",
  4. "url": "https://github.com/jrit"
  5. },
  6. "name": "web-resource-inliner",
  7. "description": "Inlines img, script and link tags into the same file.",
  8. "version": "6.0.1",
  9. "keywords": [
  10. "inline",
  11. "js",
  12. "css",
  13. "scripts",
  14. "stylesheets",
  15. "html",
  16. "datauri"
  17. ],
  18. "license": "MIT",
  19. "main": "src/inline.js",
  20. "files": [
  21. "src"
  22. ],
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/jrit/web-resource-inliner.git"
  26. },
  27. "engines": {
  28. "node": ">=10.0.0"
  29. },
  30. "devDependencies": {
  31. "faux-jax": "^5.0.6",
  32. "istanbul": "^0.4.5",
  33. "mime-types": "^2.1.25",
  34. "mocha": "^6.2.2"
  35. },
  36. "dependencies": {
  37. "ansi-colors": "^4.1.1",
  38. "escape-goat": "^3.0.0",
  39. "htmlparser2": "^5.0.0",
  40. "mime": "^2.4.6",
  41. "node-fetch": "^2.6.0",
  42. "valid-data-url": "^3.0.0"
  43. },
  44. "scripts": {
  45. "test": "mocha test",
  46. "coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec",
  47. "lint": "eslint . --fix || true",
  48. "format": "jscs . -x"
  49. }
  50. }