-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.78 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
52
53
54
55
56
57
{
"name": "vscode-htmlhint",
"version": "1.0.0",
"private": true,
"description": "VS Code extension to support HTMLHint, an HTML linter.",
"homepage": "https://htmlhint.com",
"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": {
"build": "npm run compile",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write \"**/*.{js,json,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",
"compile:tests": "tsc -p ./test",
"test": "npm run prettier && npm run lint && npm run compile && npm run compile:tests",
"test-local": "node ./test/out/runTest.js",
"package": "cd htmlhint && npm run vscode:prepublish && vsce package"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.17",
"@types/vscode": "1.101.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vscode/test-electron": "^2.5.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"glob": "^13.0.6",
"globals": "^17.6.0",
"mocha": "^12.0.0-beta-10",
"prettier": "3.8.3",
"ts-node": "^10.9.2",
"typescript": "5.9.3"
},
"engines": {
"node": ">= 22.22"
},
"volta": {
"node": "22.22.2"
}
}