2018-11-20 00:29:26 +03:00
|
|
|
{
|
|
|
|
"name": "mezzurite",
|
2018-12-11 22:31:26 +03:00
|
|
|
"displayName": "Mezzurite Extension",
|
|
|
|
"description": "Instrument your application with Mezzurite SDK quickly and easily with this extension.",
|
2018-11-20 00:29:26 +03:00
|
|
|
"version": "1.0.0",
|
2018-12-11 22:31:26 +03:00
|
|
|
"publisher": "mezzurite-devs",
|
|
|
|
"author": {
|
2018-12-11 22:25:47 +03:00
|
|
|
"name": "Microsoft Corporation"
|
|
|
|
},
|
2018-11-20 00:29:26 +03:00
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.28.0"
|
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Linters",
|
|
|
|
"Snippets"
|
|
|
|
],
|
|
|
|
"activationEvents": [
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
"main": "./out/extension",
|
|
|
|
"Mezzurite SDK Repository": "https://github.com/Microsoft/Mezzurite",
|
2018-12-11 22:31:26 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Microsoft/vscode-mezzurite"
|
|
|
|
},
|
2018-11-20 00:29:26 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Microsoft/vscode-mezzurite"
|
|
|
|
},
|
2018-12-11 22:31:26 +03:00
|
|
|
"Future Features": "https://github.com/Microsoft/Mezzurite",
|
2018-11-20 00:29:26 +03:00
|
|
|
"license": "SEE LICENSE IN LICENSE",
|
2018-12-11 22:25:47 +03:00
|
|
|
"icon": "icon.png",
|
2018-11-20 00:29:26 +03:00
|
|
|
"keywords": [
|
2018-12-11 22:31:26 +03:00
|
|
|
"Microsoft",
|
|
|
|
"Angular",
|
|
|
|
"React",
|
|
|
|
"SPA",
|
|
|
|
"Single Page Application"
|
|
|
|
],
|
2018-11-20 00:29:26 +03:00
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
|
|
|
"command": "extension.validateMezzurite",
|
|
|
|
"title": "Validate Mezzurite Configuration"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "extension.displayLandingPage",
|
|
|
|
"title": "Mezzurite Extension Guide"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"keybindings": [
|
|
|
|
{
|
|
|
|
"command": "extension.validateMezzurite",
|
|
|
|
"key": "ctrl+alt+m",
|
|
|
|
"mac": "ctrl+alt+m"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2018-12-11 22:31:26 +03:00
|
|
|
"icon": "icon.png",
|
2018-11-20 00:29:26 +03:00
|
|
|
"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.21",
|
|
|
|
"tslint": "^5.8.0",
|
|
|
|
"@types/node": "^8.10.25",
|
|
|
|
"@types/mocha": "^2.2.42"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"eslint": "^5.9.0",
|
|
|
|
"typescript-parser": "^2.6.1"
|
|
|
|
}
|
|
|
|
}
|