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

66 lines
1.3 KiB
JSON

{
"name": "task-provider-samples",
"displayName": "Task Provider Samples",
"description": "Samples for VSCode's view API",
"version": "0.0.1",
"publisher": "vscode-samples",
"enableProposedApi": "true",
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:workbench.action.tasks.runTask"
],
"main": "./out/extension",
"contributes": {
"taskDefinitions": [
{
"type": "rake",
"required": [
"task"
],
"properties": {
"task": {
"type": "string",
"description": "The Rake task to customize"
},
"file": {
"type": "string",
"description": "The Rake file that provides the task. Can be omitted."
}
}
},
{
"type": "custombuildscript",
"required": [
"flavor"
],
"properties": {
"flavor": {
"type": "string",
"description": "The build flavor. Should be either '32' or '64'."
},
"flags": {
"type": "array",
"description": "Additional build flags."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/node": "^12.12.0",
"tslint": "^5.19.0",
"typescript": "^3.8.3",
"@types/vscode": "^1.39.0"
}
}