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

package.json « smoke « test - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12c113a73966791b42fed0fd7e84828b0ea0f66d (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
{
  "name": "code-oss-dev-smoke-test",
  "version": "0.1.0",
  "license": "MIT",
  "main": "./src/main.js",
  "scripts": {
    "compile": "yarn --cwd ../automation compile && node ../../node_modules/typescript/bin/tsc",
    "watch-automation": "yarn --cwd ../automation watch",
    "watch-smoke": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
    "watch": "npm-run-all -lp watch-automation watch-smoke",
    "mocha": "node ../node_modules/mocha/bin/mocha"
  },
  "dependencies": {
    "@vscode/test-electron": "2.1.0-beta.0",
    "mkdirp": "^1.0.4",
    "ncp": "^2.0.0",
    "node-fetch": "^2.6.7",
    "rimraf": "3.0.2"
  },
  "devDependencies": {
    "@types/mkdirp": "^1.0.1",
    "@types/mocha": "^9.1.1",
    "@types/ncp": "2.0.1",
    "@types/node": "16.x",
    "@types/node-fetch": "^2.5.10",
    "@types/rimraf": "3.0.2",
    "npm-run-all": "^4.1.5",
    "watch": "^1.0.2"
  }
}