64 lines
1.5 KiB
JSON
64 lines
1.5 KiB
JSON
{
|
|
"name": "@vscode/test-cli",
|
|
"version": "0.0.4",
|
|
"description": "Command-line runner for VS Code extension tests",
|
|
"scripts": {
|
|
"prepack": "npm run build",
|
|
"build": "npm run clean && tsc",
|
|
"clean": "node -e \"fs.rmSync('out',{force:true,recursive:true})\"",
|
|
"test": "npm run clean && tsc --noEmit",
|
|
"watch": "tsc --watch",
|
|
"prettier": "prettier --write src"
|
|
},
|
|
"type": "module",
|
|
"main": "out/index.cjs",
|
|
"bin": {
|
|
"vscode-test": "./out/bin.mjs"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./out/index.mjs",
|
|
"require": "./out/index.cjs"
|
|
},
|
|
"./fullJsonStream": {
|
|
"require": "./out/fullJsonStreamReporter.cjs"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Microsoft/vscode-test-cli.git"
|
|
},
|
|
"keywords": [
|
|
"vscode",
|
|
"test",
|
|
"cli"
|
|
],
|
|
"author": "Connor Peet <connor@peet.io>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vscode-test-cli/issues"
|
|
},
|
|
"homepage": "https://github.com/Microsoft/vscode-test-cli#readme",
|
|
"devDependencies": {
|
|
"@types/node": "^18.18.4",
|
|
"@types/yargs": "^17.0.28",
|
|
"@vscode/test-electron": ">=2",
|
|
"@vscode/test-web": ">=0.0.46",
|
|
"prettier": "^3.0.3",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"singleQuote": true
|
|
},
|
|
"dependencies": {
|
|
"@types/mocha": "^10.0.2",
|
|
"chokidar": "^3.5.3",
|
|
"glob": "^10.3.10",
|
|
"minimatch": "^9.0.3",
|
|
"mocha": "^10.2.0",
|
|
"supports-color": "^9.4.0",
|
|
"yargs": "^17.7.2"
|
|
}
|
|
}
|