2020-11-19 15:37:31 -08:00
|
|
|
{
|
|
|
|
|
"name": "test-provider-sample",
|
|
|
|
|
"displayName": "test-provider-sample",
|
2021-05-24 10:12:32 -07:00
|
|
|
"description": "Sample showing how to use the test APIs",
|
2020-11-19 15:37:31 -08:00
|
|
|
"version": "0.0.1",
|
|
|
|
|
"publisher": "vscode-samples",
|
|
|
|
|
"repository": "https://github.com/Microsoft/vscode-extension-samples",
|
2021-06-18 12:16:40 -07:00
|
|
|
"enableProposedApi": true,
|
2020-11-19 15:37:31 -08:00
|
|
|
"engines": {
|
|
|
|
|
"vscode": "^1.51.0"
|
|
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
2021-05-24 10:12:32 -07:00
|
|
|
"workspaceContains:*.md"
|
2020-11-19 15:37:31 -08:00
|
|
|
],
|
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
2020-11-20 13:00:08 -08:00
|
|
|
"command": "test-provider-sample.runTests",
|
2021-05-24 10:12:32 -07:00
|
|
|
"title": "Custom Run Tests"
|
2020-11-19 15:37:31 -08:00
|
|
|
}
|
2021-06-23 12:31:16 -07:00
|
|
|
]
|
2020-11-19 15:37:31 -08:00
|
|
|
},
|
|
|
|
|
"prettier": {
|
|
|
|
|
"printWidth": 120,
|
|
|
|
|
"singleQuote": true,
|
|
|
|
|
"arrowParens": "avoid"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
|
"watch": "tsc -watch -p ./",
|
|
|
|
|
"download-api": "vscode-dts dev",
|
2021-02-22 09:58:22 -08:00
|
|
|
"postdownload-api": "vscode-dts main",
|
2020-11-19 15:37:31 -08:00
|
|
|
"postinstall": "npm run download-api"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^12.12.0",
|
2021-03-02 15:59:42 -08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.16.0",
|
|
|
|
|
"@typescript-eslint/parser": "^4.16.0",
|
|
|
|
|
"eslint": "^7.21.0",
|
2021-03-02 15:48:43 -08:00
|
|
|
"typescript": "^4.2.2",
|
2020-11-19 15:37:31 -08:00
|
|
|
"vscode-dts": "^0.3.1"
|
|
|
|
|
}
|
2021-03-04 11:17:05 -08:00
|
|
|
}
|