-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"name": "vscode-html-format",
"displayName": "HTML Format",
"description": "Format HTML documents.",
"version": "0.1.6",
"publisher": "mohd-akram",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:handlebars",
"onLanguage:html"
],
"main": "./out/extension",
"icon": "icon.png",
"capabilities": {
"documentFormattingProvider": "true"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mohd-akram/vscode-html-format.git"
},
"keywords": [
"visual studio code",
"html",
"format"
],
"author": "Mohamed Akram",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohd-akram/vscode-html-format/issues"
},
"homepage": "https://github.com/mohd-akram/vscode-html-format#readme",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"@types/vscode": "^1.85.0",
"@vscode/test-electron": "^2.3.8",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"html-format": "^1.1.6"
}
}