File size: 1,725 Bytes
6e7eaf3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
  "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"
  }
}