39 lines
1011 B
JSON
39 lines
1011 B
JSON
|
{
|
||
|
"name": "xml",
|
||
|
"displayName": "XML Tools",
|
||
|
"description": "XML Formatting, XQuery, and XPath Tools for Visual Studio Code",
|
||
|
"version": "0.0.1",
|
||
|
"publisher": "DotJoshJohnson",
|
||
|
"engines": {
|
||
|
"vscode": "^1.19.0"
|
||
|
},
|
||
|
"categories": [
|
||
|
"Other"
|
||
|
],
|
||
|
"activationEvents": [
|
||
|
"onCommand:extension.sayHello"
|
||
|
],
|
||
|
"main": "./out/extension",
|
||
|
"contributes": {
|
||
|
"commands": [
|
||
|
{
|
||
|
"command": "extension.sayHello",
|
||
|
"title": "Hello World"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"scripts": {
|
||
|
"vscode:prepublish": "npm run compile",
|
||
|
"compile": "tsc -p ./",
|
||
|
"watch": "tsc -watch -p ./",
|
||
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
||
|
"test": "npm run compile && node ./node_modules/vscode/bin/test"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"typescript": "^2.6.1",
|
||
|
"vscode": "^1.1.6",
|
||
|
"@types/node": "^7.0.43",
|
||
|
"@types/mocha": "^2.2.42"
|
||
|
}
|
||
|
}
|