Files
vscode-extension-samples/progress-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

45 lines
914 B
JSON

{
"name": "progress-ts",
"displayName": "Notification Progress",
"description": "Show a long running operation in the notification area",
"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": [
"*"
],
"contributes": {
"commands": [
{
"command": "extension.startTask",
"title": "Show Progress"
}
]
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"tslint": "^5.19.0",
"typescript": "^3.8.3"
}
}