-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
40 lines (40 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "eslint-plugin-html",
"version": "8.1.2",
"description": "A ESLint plugin to lint and fix inline scripts contained in HTML files.",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/BenoitZugmeyer/eslint-plugin-html"
},
"homepage": "https://github.com/BenoitZugmeyer/eslint-plugin-html",
"bugs": "https://github.com/BenoitZugmeyer/eslint-plugin-html/issues",
"keywords": [
"eslint-plugin",
"eslintplugin",
"eslint",
"html"
],
"main": "src/index.js",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"htmlparser2": "^9.1.0"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.27.0",
"@html-eslint/parser": "^0.27.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"markdown-link-check": "^3.10.2",
"prettier": "^3.2.4",
"semver": "^7.3.2"
},
"scripts": {
"validate": "npm run lint && npm run test",
"test": "node --test",
"lint": "eslint .",
"format": "prettier --check ."
}
}