-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.06 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "coc-htmlhint",
"version": "0.6.1",
"description": "Integrates the HTMLHint static analysis tool into coc.nvim",
"author": "yaegassy <yosstools@gmail.com>",
"license": "MIT",
"main": "lib/client/index.js",
"keywords": [
"coc.nvim",
"vim",
"neovim",
"html",
"htmlhint"
],
"engines": {
"coc": "^0.0.80"
},
"repository": {
"type": "git",
"url": "https://github.com/yaegassy/coc-htmlhint"
},
"scripts": {
"lint": "eslint src --ext ts",
"clean": "rimraf lib",
"watch": "node esbuild.js --watch",
"build": "node esbuild.js",
"prepare": "npm-run-all clean build"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"semi": true
},
"activationEvents": [
"onLanguage:html"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-htmlhint configuration",
"properties": {
"htmlhint.enable": {
"type": "boolean",
"default": true,
"description": "Control whether htmlhint is enabled for HTML files or not."
},
"htmlhint.documentSelector": {
"type": "array",
"default": [
"html",
"htm"
],
"description": "The associated document types to be linted."
},
"htmlhint.options": {
"type": "object",
"default": {},
"description": "The htmlhint options object to provide args to the htmlhint command."
}
}
}
},
"devDependencies": {
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"coc.nvim": "^0.0.81-next.22",
"esbuild": "^0.14.28",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
},
"dependencies": {
"fs": "^0.0.2",
"htmlhint": "^1.1.4",
"strip-json-comments": "^3.1.1",
"vscode-languageserver": "^3.4.0"
}
}