vscode-mezzurite/package.json

61 строка
1.4 KiB
JSON

{
"name": "vscode-mezzurite",
"description": "Instrument your application with the Mezzurite SDK quickly and easily with this extension.",
"displayName": "Mezzurite",
"author": "Microsoft Corporation",
"license": "MIT",
"version": "0.0.0",
"repository": {
"url": "https://github.com/Microsoft/vscode-mezzurite",
"type": "git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-mezzurite"
},
"publisher": "vscode-samples",
"categories": [
"Linters",
"Snippets"
],
"keywords": [
"Microsoft",
"Angular",
"React",
"single page application"
],
"engines": {
"vscode": "^1.31.1"
},
"activationEvents": [
"*"
],
"main": "./client/out/extension",
"contributes": {
"views": {
"explorer": [
{
"id": "mezzuriteComponentList",
"name": "Mezzurite Component Tracking"
}
]
}
},
"scripts": {
"compile": "tsc -b",
"lint": "tslint -p ./tslint.json",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "jest",
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^11.9.4",
"jest": "^24.1.0",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"tslint-config-semistandard": "^7.0.0",
"typescript": "^3.3.3333"
}
}