mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
61 lines
1.8 KiB
JSON
61 lines
1.8 KiB
JSON
{
|
|
"name": "@vscode/test-web",
|
|
"version": "0.0.8",
|
|
"scripts": {
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -w -p ./",
|
|
"prepublishOnly": "tsc -p ./",
|
|
"test": "eslint src --ext ts && tsc --noEmit",
|
|
"preversion": "npm test",
|
|
"postversion": "git push && git push --tags",
|
|
"compile-sample": "yarn --cwd=sample compile-web",
|
|
"sample": "npm run compile && npm run compile-sample && node . --extensionDevelopmentPath=sample --browserType=chromium",
|
|
"sample-tests": "npm run compile && npm run compile-sample && node . --extensionDevelopmentPath=sample --extensionTestsPath=sample/dist/web/test/suite/index.js --browserType=chromium"
|
|
},
|
|
"main": "./out/index.js",
|
|
"bin": {
|
|
"vscode-test-web": "./out/index.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.9.3"
|
|
},
|
|
"dependencies": {
|
|
"@koa/router": "^10.0.0",
|
|
"koa": "^2.13.1",
|
|
"koa-morgan": "^1.0.1",
|
|
"koa-mount": "^4.0.0",
|
|
"koa-static": "^5.0.0",
|
|
"minimist": "^1.2.5",
|
|
"playwright": "^1.12.2",
|
|
"vscode-uri": "^3.0.2",
|
|
"http-proxy-agent": "^4.0.1",
|
|
"https-proxy-agent": "^5.0.0",
|
|
"decompress": "^4.2.1",
|
|
"decompress-targz": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/koa": "^2.13.1",
|
|
"@types/koa-morgan": "^1.0.4",
|
|
"@types/koa-mount": "^4.0.0",
|
|
"@types/koa-static": "^4.0.1",
|
|
"@types/koa__router": "^8.0.4",
|
|
"@types/minimist": "^1.2.1",
|
|
"@types/node": "^12.19.9",
|
|
"@typescript-eslint/eslint-plugin": "^4.13.0",
|
|
"@typescript-eslint/parser": "^4.13.0",
|
|
"@types/decompress": "^4.2.3",
|
|
"eslint": "^7.17.0",
|
|
"eslint-plugin-header": "^3.1.0",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"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"
|
|
}
|
|
}
|