-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"publisher": "BalduinLandolt",
"name": "surround-with-tag",
"displayName": "Surround with Tag",
"description": "Surround selection with XML/HTML tag. Wrap a tag around the current selection.",
"repository": {
"type": "git",
"url": "https://github.com/BalduinLandolt/vs-code-surround-with-tag.git"
},
"version": "1.0.0",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.surroundWithTag",
"onLanguage:xml",
"onLanguage:html"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.surroundWithTag",
"title": "Surround with Tag"
}
],
"keybindings": [
{
"command": "extension.surroundWithTag",
"key": "ctrl+i",
"mac": "cmd+i"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.18",
"@types/vscode": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vscode/test-electron": "^1.3.0",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"glob": "^7.1.6",
"mocha": "^9.2.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@vscode/emmet-helper": "^2.8.4",
"emmet": "^2.3.6"
}
}