Files
vscode-extension-samples/statusbar-sample/package.json
Matt Bierner e8da8b531a Update tslint version to 5.19
This fixeds a few vulnerabilities listed when running `npm i`
2020-04-14 18:05:51 -07:00

36 lines
762 B
JSON

{
"name": "status-ts",
"displayName": "Selected Line Numbers",
"description": "Shows the number of selected lines in the status bar",
"version": "0.0.1",
"publisher": "vscode-samples",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-extension-samples/issues"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"typescript": "^3.8.3",
"tslint": "^5.19.0",
"@types/vscode": "^1.32.0"
}
}