mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
84 lines
2.0 KiB
JSON
84 lines
2.0 KiB
JSON
{
|
|
"name": "schema-compare",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.2.0",
|
|
"publisher": "Microsoft",
|
|
"preview": false,
|
|
"engines": {
|
|
"vscode": "^1.25.0",
|
|
"azdata": ">=1.13.0"
|
|
},
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
|
"icon": "images/sqlserver.png",
|
|
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
|
|
"activationEvents": [
|
|
"onCommand:schemaCompare.start"
|
|
],
|
|
"main": "./out/main",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "schemaCompare.start",
|
|
"title": "%schemaCompare.start%",
|
|
"icon": {
|
|
"light": "./images/light_icon.svg",
|
|
"dark": "./images/dark_icon.svg"
|
|
}
|
|
}
|
|
],
|
|
"languages": [
|
|
{
|
|
"id": "scmp",
|
|
"filenames": [
|
|
"Schema Compare"
|
|
],
|
|
"extensions": [
|
|
".scmp"
|
|
],
|
|
"aliases": [
|
|
"scmp"
|
|
]
|
|
}
|
|
],
|
|
"menus": {
|
|
"objectExplorer/item/context": [
|
|
{
|
|
"command": "schemaCompare.start",
|
|
"when": "connectionProvider == MSSQL && nodeType && nodeType == Database && mssql:engineedition != 11",
|
|
"group": "export"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"ads-extension-telemetry": "github:Charles-Gagnon/ads-extension-telemetry#0.1.0",
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.5",
|
|
"@types/node": "^12.11.7",
|
|
"mocha": "^5.2.0",
|
|
"mocha-junit-reporter": "^1.17.0",
|
|
"mocha-multi-reporters": "^1.1.7",
|
|
"should": "^13.2.1",
|
|
"typemoq": "^2.1.0",
|
|
"vscodetestcover": "github:corivera/vscodetestcover#1.0.4"
|
|
},
|
|
"resolutions": {
|
|
"esprima": "^4.0.0"
|
|
},
|
|
"__metadata": {
|
|
"id": "37",
|
|
"publisherDisplayName": "Microsoft",
|
|
"publisherId": "Microsoft"
|
|
}
|
|
}
|