package.json 1018 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "eslint-plugin-html",
  3. "version": "7.1.0",
  4. "description": "A ESLint plugin to lint and fix inline scripts contained in HTML files.",
  5. "license": "ISC",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/BenoitZugmeyer/eslint-plugin-html"
  9. },
  10. "homepage": "https://github.com/BenoitZugmeyer/eslint-plugin-html",
  11. "bugs": "https://github.com/BenoitZugmeyer/eslint-plugin-html/issues",
  12. "keywords": [
  13. "eslint-plugin",
  14. "eslintplugin",
  15. "eslint",
  16. "html"
  17. ],
  18. "main": "src/index.js",
  19. "dependencies": {
  20. "htmlparser2": "^8.0.1"
  21. },
  22. "devDependencies": {
  23. "@html-eslint/eslint-plugin": "^0.13.2",
  24. "@html-eslint/parser": "^0.13.2",
  25. "eslint": "^8.5.0",
  26. "eslint-config-prettier": "^8.5.0",
  27. "jest": "^28.1.3",
  28. "markdown-link-check": "^3.10.2",
  29. "prettier": "^2.1.2",
  30. "semver": "^7.3.2"
  31. },
  32. "scripts": {
  33. "validate": "npm run lint && npm run test",
  34. "test": "jest",
  35. "lint": "eslint .",
  36. "format": "prettier --check ."
  37. }
  38. }