-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.58 KB
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
41
42
43
44
45
46
47
48
49
50
51
{
"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}\"",
"spellcheck": "npx cspell \"**/*.{html,js,json,md,ts,yml}\"",
"postinstall": "cd htmlhint && npm i && cd ../htmlhint-server && npm i",
"compile": "cd htmlhint-server && npm run compile && cd ../htmlhint && npm run compile",
"test": "npm run prettier && npm run lint && npm run compile",
"package": "cd htmlhint && npm run vscode:prepublish && vsce package"
},
"dependencies": {
"vscode-languageclient": "^3.5.1"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.52",
"@types/vscode": "^1.100.0",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.5",
"glob": "^11.0.2",
"mocha": "^11.6.0",
"prettier": "3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vscode-test": "^1.6.1"
},
"engines": {
"node": ">= 20"
},
"volta": {
"node": "20.19.2"
}
}