forked from microsoft/vscode-test-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.12 KB
/
package.json
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
{
"name": "@vscode/test-web",
"version": "0.0.31",
"scripts": {
"install-extensions": "yarn --cwd=fs-provider && yarn --cwd=sample",
"compile": "tsc -p ./ && yarn compile-fs-provider",
"watch": "tsc -w -p ./",
"prepublishOnly": "yarn compile",
"test": "eslint src --ext ts && tsc --noEmit",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"compile-fs-provider": "yarn --cwd=fs-provider compile-web",
"compile-sample": "yarn --cwd=sample compile-web",
"sample": "npm run compile && npm run compile-sample && node . --extensionDevelopmentPath=sample sample/test-workspace",
"sample-tests": "npm run compile && npm run compile-sample && node . --extensionDevelopmentPath=sample --extensionTestsPath=sample/dist/web/test/suite/index.js --headless=true sample/test-workspace",
"empty": "npm run compile && node ."
},
"main": "./out/index.js",
"bin": {
"vscode-test-web": "./out/index.js"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@koa/router": "^12.0.0",
"@koa/cors": "^3.4.2",
"koa": "^2.13.4",
"koa-morgan": "^1.0.1",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"minimist": "^1.2.6",
"playwright": "^1.26.1",
"vscode-uri": "^3.0.6",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.1",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"get-stream": "6.0.1"
},
"devDependencies": {
"@types/koa": "^2.13.5",
"@types/koa-morgan": "^1.0.5",
"@types/koa-mount": "^4.0.1",
"@types/koa-static": "^4.0.2",
"@types/koa__router": "^12.0.0",
"@types/minimist": "^1.2.2",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@types/decompress": "^4.2.4",
"eslint": "^8.24.0",
"eslint-plugin-header": "^3.1.1",
"typescript": "^4.8.4"
},
"license": "MIT",
"author": "Visual Studio Code Team",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-test-web.git"
},
"bugs": {
"url": "https://github.com/microsoft/vscode-test-web/issues"
}
}