-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
90 lines (90 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "htmltagwrap",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bgashler1/vscode-htmltagwrap"
},
"description": "Wraps selected code with HTML tags",
"categories": [
"Other"
],
"keywords": [
"wrap tags",
"wrap html",
"wrap code",
"wrap text"
],
"version": "1.0.0",
"publisher": "bradgashler",
"engines": {
"vscode": "^1.7.5"
},
"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"
}
],
"configuration": {
"type": "object",
"title": "Htmltagwrap configuration",
"properties": {
"htmltagwrap.tag": {
"type": "string",
"default": "p",
"description": "The default HTML tag to insert when using htmltagwrap."
},
"htmltagwrap.autoDeselectClosingTag": {
"type": "boolean",
"default": true,
"description": "Automatically deselect the closing tag after inserting a space."
}
}
}
},
"activationEvents": ["onCommand:extension.htmlTagWrap"],
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint \"src/**/*.ts\"",
"typings": "typings",
"test:LinuxAndOSX": "node ./out/test/runTests.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^16.11.7",
"@types/mocha": "^10.0.1",
"@types/vscode": "^1.7.5",
"@vscode/test-electron": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"chai": "^4.3.7",
"fs-extra": "^11.1.1",
"glob": "^7.1.1",
"mocha": "^10.2.0",
"eslint": "^8.36.0",
"source-map-support": "0.5.21",
"typescript": "^5.0.2"
},
"icon": "images/htmlTagWrap_icon.png",
"galleryBanner": {
"color": "#596877",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/bgashler1/vscode-htmltagwrap/issues"
},
"homepage": "https://github.com/bgashler1/vscode-htmltagwrap/README.md"
}