piliguori's picture
Upload 3316 files
6e7eaf3 verified
raw
history blame
1.73 kB
{
"name": "@vscode/test-cli",
"version": "0.0.9",
"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",
"fmt": "prettier --write \"src/**/*.{mts,cts}\" \"*.md\"",
"watch": "tsc --watch",
"prettier": "prettier --write src"
},
"engines": {
"node": ">=18"
},
"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.4.0-beta"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"dependencies": {
"@types/mocha": "^10.0.2",
"c8": "^9.1.0",
"chokidar": "^3.5.3",
"enhanced-resolve": "^5.15.0",
"glob": "^10.3.10",
"minimatch": "^9.0.3",
"mocha": "^10.2.0",
"supports-color": "^9.4.0",
"yargs": "^17.7.2"
}
}