forked from stringham/angular-template-formatter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.21 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
84
85
86
{
"name": "angular-template-formatter",
"displayName": "Angular Template Formatter",
"description": "Auto-Format Angular HTML templates",
"version": "0.0.11",
"publisher": "scottmccaughey",
"engines": {
"vscode": "^1.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/scottmccaughey/angular-template-formatter"
},
"categories": [
"Formatters"
],
"icon": "icon.png",
"activationEvents": [
"onLanguage:html"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"contributes": {
"configuration": {
"type": "object",
"title": "Angular Template Formatter",
"properties": {
"angular-template-formatter.indentWidth": {
"type": "number",
"default": 2,
"description": "Number of spaces to indent."
},
"angular-template-formatter.useSpaces": {
"type": "boolean",
"default": true,
"description": "Use spaces or tabs for indentation (False will ignore indentWidth)."
},
"angular-template-formatter.closeTagSameLine": {
"type": "boolean",
"default": true,
"description": "Never place the closing tag '>' on a new line."
},
"angular-template-formatter.skipContents": {
"type": "array",
"default": [
"p",
"li",
"span",
"em",
"strong",
"i",
"b",
"h1",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"description": "HTML tags whose contents the formatter should ignore."
}
}
}
},
"devDependencies": {
"vscode": "^1.0.0",
"typescript": "^2.0.3",
"mocha": "^2.3.3",
"@types/jasmine": "^2.5.38",
"@types/node": "6.0.46",
"@types/commander": "2.9.0",
"commander": "2.9.0",
"jasmine": "^2.5.2"
},
"dependencies": {
"@angular/compiler": "4.1.1",
"zone.js": "0.8.4",
"rxjs": "^5.0",
"@angular/core": "4.1.1"
}
}