UNPKG

872 BJSONView Raw
1{
2 "name": "eslint-plugin-html",
3 "version": "5.0.2",
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": "^3.10.0"
21 },
22 "devDependencies": {
23 "eslint": "^5.13.0",
24 "eslint-config-benoitz-prettier": "^1.1.0",
25 "jest": "^24.0.0",
26 "prettier": "^1.16.3",
27 "semver": "^5.6.0"
28 },
29 "scripts": {
30 "validate": "npm run lint && npm run test",
31 "test": "jest",
32 "lint": "eslint ."
33 }
34}