| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "name": "@vscode/test-cli",
- "version": "0.0.12",
- "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.33",
- "@vscode/test-electron": "^2.5.2",
- "@vscode/test-web": ">=0.0.74",
- "prettier": "^3.6.2",
- "typescript": "^5.9.3"
- },
- "prettier": {
- "printWidth": 100,
- "singleQuote": true
- },
- "dependencies": {
- "@types/mocha": "^10.0.10",
- "c8": "^10.1.3",
- "chokidar": "^3.6.0",
- "enhanced-resolve": "^5.18.3",
- "glob": "^10.3.10",
- "minimatch": "^9.0.3",
- "mocha": "^11.7.4",
- "supports-color": "^10.2.2",
- "yargs": "^17.7.2"
- }
- }
|