UNPKG

1.09 kBJSONView Raw
1{
2 "name": "eslint-plugin-html",
3 "version": "3.2.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.8.2",
21 "semver": "^5.4.1"
22 },
23 "devDependencies": {
24 "eslint": "^4.7.0",
25 "eslint-config-benoitz": "^1.0.0",
26 "jest": "^21.1.0",
27 "prettier-eslint-cli": "^4.3.2"
28 },
29 "scripts": {
30 "prettier": "git ls-files -- '*.js' | xargs prettier-eslint",
31 "validate": "npm run lint && npm run check-format && npm run test",
32 "test": "jest",
33 "lint": "eslint .",
34 "check-format": "test -z \"$(npm run -s prettier -- --list-different)\"",
35 "format": "npm run -s prettier -- --write"
36 }
37}