UNPKG

870 BJSONView Raw
1{
2 "name": "eslint-plugin-html",
3 "version": "6.2.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": "^7.1.2"
21 },
22 "devDependencies": {
23 "eslint": "^7.13.0",
24 "eslint-config-benoitz-prettier": "^1.1.0",
25 "jest": "^27.2.0",
26 "prettier": "^2.1.2",
27 "semver": "^7.3.2"
28 },
29 "scripts": {
30 "validate": "npm run lint && npm run test",
31 "test": "jest",
32 "lint": "eslint ."
33 }
34}