forked from mohd-akram/vscode-html-format
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "vscode-html-format",
"displayName": "HTML Format",
"description": "Format HTML documents.",
"version": "0.0.3",
"publisher": "mohd-akram",
"engines": {
"vscode": "^1.25.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 ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"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": "^5.2.4",
"@types/node": "^7.0.67",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"vscode": "^1.1.18"
},
"dependencies": {
"html-format": "^1.0.1"
}
}