forked from anteprimorac/vscode-html-end-tag-labels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.65 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "html-end-tag-labels",
"displayName": "HTML End Tag Labels",
"description": "Labels HTML end tags in VSCode",
"version": "0.6.0",
"author": {
"email": "anteprimorachr@gmail.com",
"name": "Ante Primorac",
"url": "http://anteprimorac.com.hr"
},
"publisher": "anteprimorac",
"license": "MIT",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Other"
],
"keywords": [
"html",
"end tag",
"label"
],
"icon": "images/icon.png",
"activationEvents": [
"onLanguage:html",
"onLanguage:php",
"onLanguage:twig",
"onLanguage:blade",
"onLanguage:vue-html",
"onLanguage:svelte"
],
"repository": {
"type": "git",
"url": "https://github.com/anteprimorac/vscode-html-end-tag-labels.git"
},
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Html End Tag Labels",
"properties": {
"htmlEndTagLabels.labelColor": {
"type": "string",
"default": "",
"pattern": "(^$)|(^#([A-Fa-f0-9]{8}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$)",
"markdownDescription": "Label foreground color (if empty will use `editorCodeLens.foreground` instead)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^12.20.7",
"@types/vscode": "~1.42.0",
"all-contributors-cli": "^6.20.0",
"glob": "^7.1.6",
"mocha": "^8.3.2",
"tslint": "^6.1.3",
"typescript": "^4.2.3",
"vscode-test": "^1.5.2"
},
"dependencies": {
"vscode-html-languageservice": "^4.0.2"
}
}