eb43a467c8
This commit cleans up and reorganizes the code base, as well as fixes some issues. The intent of the vNext branch is to make the extension more conducive to an open-source environment.
86 lines
2.0 KiB
JSON
86 lines
2.0 KiB
JSON
{
|
|
"name": "xml",
|
|
"displayName": "XML Tools",
|
|
"description": "XML Formatting and XPath Tools for Visual Studio Code",
|
|
"version": "0.2.1",
|
|
"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/Extension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "xmlTools.formatXml",
|
|
"title": "XML Tools: Format XML"
|
|
},
|
|
{
|
|
"command": "xmlTools.minifyXml",
|
|
"title": "XML Tools: Minify XML"
|
|
},
|
|
{
|
|
"command": "xmlTools.evaluateXPath",
|
|
"title": "XML Tools: Evaluate XPath"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "XML Tools Configuration",
|
|
"type": "object",
|
|
"properties": {
|
|
"xmlTools.persistXPathQuery": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Remember the last XPath query used."
|
|
},
|
|
"xmlTools.removeCommentsOnMinify": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Remove XML comments when XML is minified."
|
|
}
|
|
}
|
|
},
|
|
"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": {
|
|
"xmldom": "^0.1.19",
|
|
"xpath": "^0.0.9"
|
|
}
|
|
} |