-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathpackage.json
48 lines (48 loc) · 1.83 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
{
"name": "@theia/playwright",
"version": "1.46.0",
"description": "System tests for Theia",
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-theia/theia.git"
},
"bugs": {
"url": "https://github.com/eclipse-theia/theia/issues"
},
"homepage": "https://github.com/eclipse-theia/theia",
"scripts": {
"clean": "rimraf lib *.tsbuildinfo .eslintcache",
"build": "yarn && yarn clean && tsc --incremental && yarn lint && yarn playwright:install",
"watch": "tsc -w --incremental",
"theia:start": "rimraf .tmp.cfg && THEIA_CONFIG_DIR=$PWD/.tmp.cfg yarn --cwd ../browser start",
"lint": "eslint -c ./.eslintrc.js --ext .ts ./src",
"lint:fix": "eslint -c ./.eslintrc.js --ext .ts ./src --fix",
"playwright:install": "playwright install chromium",
"ui-tests": "yarn build && playwright test --config=./configs/playwright.config.ts",
"ui-tests-electron": "yarn build && USE_ELECTRON=true playwright test --config=./configs/playwright.config.ts",
"ui-tests-ci": "yarn build && playwright test --config=./configs/playwright.ci.config.ts",
"ui-tests-headful": "yarn build && playwright test --config=./configs/playwright.headful.config.ts",
"ui-tests-report-generate": "allure generate ./allure-results --clean -o allure-results/allure-report",
"ui-tests-report": "yarn ui-tests-report-generate && allure open allure-results/allure-report"
},
"files": [
"lib",
"src"
],
"dependencies": {
"@playwright/test": "^1.37.1",
"fs-extra": "^9.0.8"
},
"devDependencies": {
"@types/fs-extra": "^9.0.8",
"allure-commandline": "^2.23.1",
"allure-playwright": "^2.5.0",
"rimraf": "^2.6.1",
"typescript": "~4.5.5"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index"
}