vscode-smoketest-check/package.json

54 строки
1.4 KiB
JSON

{
"name": "vscode-smoketest-check",
"publisher": "ms-vscode",
"displayName": "vscode-smoketest-check",
"description": "A test extension used for smoke testing VS Code Extensions UI ",
"version": "0.0.1",
"engines": {
"vscode": "^1.57.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vscode-smoketest-check.smoketestCheck"
],
"main": "./dist/extension.js",
"browser": "./dist/extension.js",
"repository": "https://github.com/microsoft/vscode-smoketest-check",
"contributes": {
"commands": [
{
"command": "vscode-smoketest-check.smoketestCheck",
"title": "Smoke Test Check"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "yarn run test-compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.57.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"eslint": "^7.27.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2",
"ts-loader": "^9.2.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
}
}