-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 1000 Bytes
/
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
{
"name": "vscode-htmlhint",
"version": "1.0.0",
"private": true,
"description": "VS Code extension to support HTMLHint, an HTML linter.",
"homepage": "https://github.com/htmlhint/vscode-htmlhint#readme",
"bugs": {
"url": "https://github.com/htmlhint/vscode-htmlhint/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htmlhint/vscode-htmlhint.git"
},
"funding": "https://opencollective.com/htmlhint",
"license": "MIT",
"author": "HTMLHint",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts .",
"prettier": "prettier --write \"**/*.{js,md,ts,yml}\"",
"test": "npm run prettier && npm run lint && cd htmlhint && npm i && cd ../htmlhint-server && npm i && npm run compile"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"prettier": "3.3.3"
},
"engines": {
"node": ">= 18"
}
}