74 lines
1.5 KiB
JSON
74 lines
1.5 KiB
JSON
{
|
|
"name": "xml",
|
|
"displayName": "XML Tools",
|
|
"description": "XML Formatting and XPath Tools for Visual Studio Code",
|
|
"version": "0.2.0",
|
|
"publisher": "DotJoshJohnson",
|
|
"author": {
|
|
"name": "Josh Johnson",
|
|
"url": "https://github.com/DotJoshJohnson"
|
|
},
|
|
"icon": "resources/icon.png",
|
|
"galleryBanner": {
|
|
"color": "#3B4859",
|
|
"theme": "dark"
|
|
},
|
|
"homepage": "https://github.com/DotJoshJohnson/vscode-xml",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/DotJoshJohnson/vscode-xml.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/DotJoshJohnson/vscode-xml/issues"
|
|
},
|
|
"engines": {
|
|
"vscode": "^0.10.1",
|
|
"node": "*"
|
|
},
|
|
"categories": [
|
|
"Languages", "Other"
|
|
],
|
|
"main": "./src/main",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "xmlTools.formatXml",
|
|
"title": "XML Tools: Format XML"
|
|
},
|
|
{
|
|
"command": "xmltools.linearizeXml",
|
|
"title": "XML Tools: Linearize XML"
|
|
},
|
|
{
|
|
"command": "xmltools.evaluateXPath",
|
|
"title": "XML Tools: Evaluate XPath"
|
|
}
|
|
],
|
|
"keybindings": [
|
|
{
|
|
"key": "ctrl+shift+alt+b",
|
|
"command": "xmltools.formatXml"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+alt+x",
|
|
"command": "xmltools.evaluateXPath"
|
|
}
|
|
]
|
|
},
|
|
"activationEvents": [
|
|
"onLanguage:xml"
|
|
],
|
|
"devDependencies": {
|
|
"vscode": "^0.10.4",
|
|
"typescript": "^1.6.2"
|
|
},
|
|
"dependencies": {
|
|
"semver": "^5.1.0",
|
|
"request": "^2.67.0",
|
|
"xmldom": "^0.1.19",
|
|
"xpath": "^0.0.9"
|
|
},
|
|
"scripts": {
|
|
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
|
|
}
|
|
} |