-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
67 lines (67 loc) · 2.07 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
{
"name": "angular-template-formatter",
"displayName": "Angular template formatter",
"description": "Auto format Angular html templates",
"version": "0.1.2",
"publisher": "stringham",
"engines": {
"vscode": "^1.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/stringham/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 configuration",
"properties": {
"angular-template-formatter.indentWidth": {
"type": "number",
"default": 4,
"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": false,
"description": "Never place the closing tag '>' on a new line."
}
}
}
},
"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"
}
}