package.json 563 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "minify-lit-elt-template-literal-loader",
  3. "version": "1.0.0",
  4. "description": "Webpack loader that minifies javascript files that contain lit-html template literals ",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "jest"
  8. },
  9. "keywords": [
  10. "webpack",
  11. "lit-html",
  12. "loader",
  13. "minify"
  14. ],
  15. "author": "Clovis JAQUIN",
  16. "license": "ISC",
  17. "dependencies": {
  18. "clean-css": "^5.1.2",
  19. "html-minifier": "^4.0.0",
  20. "loader-utils": "^2.0.0",
  21. "uglify-js": "^3.13.3"
  22. },
  23. "devDependencies": {
  24. "jest": "^26.6.3"
  25. }
  26. }