vscode-basex/package.json

86 lines
2.0 KiB
JSON
Raw Normal View History

2015-11-22 05:47:45 +00:00
{
"name": "xml",
"displayName": "XML Tools",
2015-11-22 08:16:05 +00:00
"description": "XML Formatting and XPath Tools for Visual Studio Code",
2016-01-06 21:21:18 +00:00
"version": "1.0.0",
2015-11-22 05:47:45 +00:00
"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": {
2016-01-06 22:22:17 +00:00
"vscode": "^0.10.6",
2015-11-22 05:47:45 +00:00
"node": "*"
},
"categories": [
"Languages",
"Other"
2015-11-22 05:47:45 +00:00
],
"main": "./src/Extension",
2015-11-22 06:45:50 +00:00
"contributes": {
"commands": [
{
"command": "xmlTools.formatXml",
"title": "XML Tools: Format XML"
},
2015-11-22 07:37:00 +00:00
{
"command": "xmlTools.minifyXml",
"title": "XML Tools: Minify XML"
2015-11-22 08:13:11 +00:00
},
{
"command": "xmlTools.evaluateXPath",
2015-11-22 08:13:11 +00:00
"title": "XML Tools: Evaluate XPath"
2015-11-22 06:45:50 +00:00
}
2015-11-24 17:43:25 +00:00
],
2016-01-04 16:07:36 +00:00
"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."
2016-01-04 16:07:36 +00:00
}
}
},
2015-11-24 17:43:25 +00:00
"keybindings": [
{
"key": "ctrl+shift+alt+b",
"command": "xmlTools.formatXml"
2015-11-24 17:43:25 +00:00
},
{
"key": "ctrl+shift+alt+x",
"command": "xmlTools.evaluateXPath"
2015-11-24 17:43:25 +00:00
}
2015-11-22 06:45:50 +00:00
]
},
2015-11-22 05:47:45 +00:00
"activationEvents": [
"onLanguage:xml"
],
"devDependencies": {
2016-01-06 22:22:39 +00:00
"vscode": "^0.10.7",
2015-11-22 05:47:45 +00:00
"typescript": "^1.6.2"
},
"dependencies": {
2015-11-22 08:13:11 +00:00
"xmldom": "^0.1.19",
"xpath": "^0.0.9"
2015-11-22 05:47:45 +00:00
}
}