Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « automation « test - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a7b3c5a560207630d3581988987be7ce6fb5abf (plain)
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
{
  "name": "vscode-automation",
  "version": "1.54.0",
  "description": "VS Code UI automation driver",
  "author": {
    "name": "Microsoft Corporation"
  },
  "license": "MIT",
  "main": "./out/index.js",
  "private": true,
  "scripts": {
    "compile": "npm run copy-driver && npm run copy-driver-definition && node ../../node_modules/typescript/bin/tsc",
    "watch": "npm-run-all -lp watch-driver watch-driver-definition watch-tsc",
    "watch-tsc": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
    "copy-driver": "cpx src/driver.js out/",
    "watch-driver": "cpx src/driver.js out/ -w",
    "copy-driver-definition": "node tools/copy-driver-definition.js",
    "watch-driver-definition": "watch \"node tools/copy-driver-definition.js\" ../../src/vs/platform/driver/node",
    "copy-package-version": "node tools/copy-package-version.js",
    "prepublishOnly": "npm run copy-package-version"
  },
  "dependencies": {
    "mkdirp": "^1.0.4",
    "ncp": "^2.0.0",
    "tmp": "0.2.1",
    "tree-kill": "1.2.2",
    "vscode-uri": "3.0.2"
  },
  "devDependencies": {
    "@types/mkdirp": "^1.0.1",
    "@types/ncp": "2.0.1",
    "@types/node": "16.x",
    "@types/tmp": "0.2.2",
    "cpx2": "3.0.0",
    "npm-run-all": "^4.1.5",
    "watch": "^1.0.2"
  }
}