forked from microsoft/vscode-htmltagwrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "htmltagwrap",
"license": "MIT",
"repository":
{ "type" : "git",
"url" : "https://github.com/Microsoft/vscode-htmltagwrap"
},
"description": "Wraps selected code with HTML tags",
"version": "0.0.3",
"publisher": "bradgashler",
"engines": {
"vscode": "^1.0.0"
},
"activationEvents": [
"onCommand:extension.htmlTagWrap"
],
"main": "./out/src/extension",
"contributes": {
"commands": [{
"command": "extension.htmlTagWrap",
"title": "Wrap in HTML Tags"
}],
"keybindings": [{
"command": "extension.htmlTagWrap",
"key": "alt+w",
"mac": "alt+w",
"when": "editorTextFocus"
}]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "typings install && node ./node_modules/vscode/bin/install",
"typings": "typings",
"test:LinuxAndOSX": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"chai": "^3.5.0",
"fs-extra": "^0.30.0",
"typescript": "^1.8.5",
"typings": "^1.3.2",
"vscode": "^0.11.17"
},
"icon":"images/htmlTagWrap_icon.svg",
"galleryBanner": {
"color":"#596877",
"theme":"dark"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-htmltagwrap/issues"
},
"homepage": "https://github.com/Microsoft/vscode-htmltagwrap/README.md"
}