-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
54
55
56
{
"name": "dumb-xml-prettifier",
"displayName": "dumb-xml-prettifier",
"description": "An unopinionated XML prettifier. It will only format your XML text, it won't attempt to \"improve\" or edit the content of the text, only the whitespace.",
"publisher": "Gestalte",
"version": "1.0.2",
"engines": {
"vscode": "^1.70.0"
},
"icon": "images/icon.png",
"keywords": [
"xml",
"prettifier",
"formatters",
"extension"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Gestalte/dumb-xml-prettifier.git"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onCommand:dumb-xml-prettifier.prettify"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "dumb-xml-prettifier.prettify",
"title": "dumb-xml-prettifier: Prettify XML"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"package": "vsce package",
"deploy": "vsce publish -p"
},
"devDependencies": {
"@types/vscode": "^1.70.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"eslint": "^8.20.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.7.4",
"@vscode/test-electron": "^2.1.5",
"vsce": "^2.15.0"
}
}