forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
131 lines (131 loc) · 5.73 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "webdriverio-monorepo",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"create": "tsx ./scripts/generateSubPackage.ts",
"backport": "tsx ./scripts/backport.ts",
"build": "run-s clean:build generate compile:all",
"changelog": "tsx ./scripts/changelog.ts",
"ci": "run-s setup test test:e2e",
"clean": "run-p clean:*",
"clean:build": "rimraf --glob ./packages/*/build",
"clean:pkglock": "rimraf --glob ./packages/*/package-lock.json",
"clean:tgz": "rimraf --glob ./packages/*/*.tgz",
"clean:website": "rimraf --glob website/docs/_*.md website/docs/api/_*.md website/docs/api/**/_*.md website/sidebars.json",
"clean:tests": "rimraf --glob tests/typings/**/node_modules tests/typings/**/dist ./coverage",
"clean:cache": "rimraf --glob .eslintcache",
"clean:protocols": "rimraf --glob packages/wdio-protocols/src/commands",
"clean:cddl": "rimraf --glob scripts/bidi/cddl",
"compile": "pnpm -r --filter=@wdio/compiler run build",
"compile:all": "run-s compile:all:*",
"compile:all:core": "pnpm -r --filter=@wdio/compiler run build -p @wdio/logger -p @wdio/types -p @wdio/globals -p @wdio/protocols -p @wdio/repl",
"compile:all:main": "pnpm -r --filter=@wdio/compiler run build -p @wdio/utils -p @wdio/reporter -p @wdio/config -p webdriver -p webdriverio",
"compile:all:all": "pnpm -r --filter=@wdio/compiler run build",
"generate": "run-s generate:*",
"generate:bidi": "tsx ./scripts/bidi/index.ts",
"pushReleaseTag": "tsx ./scripts/pushTags.ts",
"setup": "run-s clean build",
"docs": "run-s docs:*",
"docs:setup": "cd ./website && pnpm install && cd ..",
"docs:generate": "run-s clean:website generate:bidi && tsx ./scripts/docs-generation/generateDocs.ts",
"docs:build": "cd ./website && pnpm build && cd ..",
"docs:deploy": "tsx ./scripts/updateDocs.ts",
"test": "run-s test:eslint test:ejslint test:typings test:unit:run test:smoke test:component",
"test:depcheck": "tsx ./scripts/depcheck.ts",
"test:eslint": "eslint --cache packages examples scripts tests",
"test:ejslint": "ejslint packages/wdio-cli/src/templates/**/*",
"test:interop": "pnpm -r --filter=@wdio/test-interop-cjs run test",
"test:typings": "pnpm install && run-p test:typings:*",
"test:typings:webdriver": "cd tests/typings/webdriver && npx tsc --skipLibCheck",
"test:typings:webdriverio": "cd tests/typings/webdriverio && npx tsc --skipLibCheck",
"test:typings:mocha": "cd tests/typings/mocha && npx tsc --skipLibCheck",
"test:typings:jasmine": "cd tests/typings/jasmine && npx tsc --skipLibCheck",
"test:typings:cucumber": "cd tests/typings/cucumber && npx tsc --skipLibCheck",
"test:unit": "run-s test:unit:run",
"test:unit:run": "vitest --config vitest.config.ts --run",
"test:unit:watch": "vitest --config vitest.config.ts --watch",
"test:component": "run-s test:component:*",
"test:component:run": "cd e2e && pnpm test:browser",
"test:smoke": "cd ./tests && node ./smoke.runner.js",
"test:e2e:testrunner": "cd ./e2e && npx wdio run ./wdio/wdio.conf.ts",
"test:e2e:multiremote": "cd ./e2e && npx wdio run ./wdio/wdio-multiremote.conf.ts",
"test:e2e:standalone": "vitest --config ./e2e/vitest.config.ts --run standalone",
"test:e2e:webdriver": "cd ./e2e && npx wdio run ./wdio/wdio.local.conf.ts",
"test:e2e:classic": "cd ./e2e && npx wdio run ./wdio/wdio.classic.conf.ts",
"test:e2e:cloud": "cd ./e2e && npx wdio run ./wdio/wdio.sauce.conf.ts",
"test:e2e:launch": "vitest --config ./e2e/vitest.config.ts --run launch",
"test:e2e": "run-s test:e2e:* ",
"dev": "pnpm -r --filter=@wdio/compiler run build --watch",
"watch:docs": "pnpm docs:generate && cd website && pnpm i && pnpm start",
"version": "pnpm changelog && git add CHANGELOG.md",
"postinstall": "run-s postinstall:*",
"postinstall:husky": "husky"
},
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.624.0",
"@aws-sdk/client-device-farm": "^3.693.0",
"@aws-sdk/client-s3": "^3.624.0",
"@aws-sdk/lib-storage": "^3.624.0",
"@octokit/rest": "^21.0.1",
"@preact/preset-vite": "^2.9.0",
"@serenity-js/core": "^3.25.3",
"@stencil/core": "^4.20.0",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/archiver": "^6.0.2",
"@types/cheerio": "^0.22.35",
"@types/inquirer": "^9.0.7",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.zip": "^4.2.9",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^10.0.7",
"@types/node": "^20.12.7",
"@types/recursive-readdir": "^2.2.4",
"@types/shelljs": "^0.8.15",
"@types/split2": "^4.2.3",
"@types/unzipper": "^0.10.9",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vitest/coverage-v8": "^2.0.5",
"@wdio/config": "workspace:*",
"@wdio/eslint": "^0.0.5",
"@wdio/repl": "workspace:*",
"camelcase": "^8.0.0",
"cddl": "^0.8.5",
"cddl2ts": "^0.2.2",
"chalk": "^5.3.0",
"cheerio": "1.0.0",
"cli-highlight": "^2.1.11",
"copyfiles": "^2.4.1",
"depcheck": "^1.4.7",
"dox": "^1.0.0",
"ejs": "^3.1.10",
"ejs-lint": "^2.0.0",
"eta": "^3.4.0",
"glob": "^11.0.0",
"globals": "^15.12.0",
"husky": "^9.1.4",
"inquirer": "^11.0.1",
"jsdom": "^25.0.0",
"lerna": "8.1.9",
"lerna-changelog": "^2.2.0",
"mime-types": "^2.1.35",
"npm-run-all2": "^6.2.2",
"puppeteer-core": "^23.0.2",
"recast": "^0.23.9",
"recursive-readdir": "^2.2.3",
"rimraf": "^6.0.1",
"shelljs": "^0.8.5",
"tempy": "^3.1.0",
"tsd": "^0.31.1",
"tsx": "^4.16.5",
"typescript": "^5.5.4",
"unzipper": "^0.12.3",
"vitest": "^2.0.5"
},
"engines": {
"pnpm": ">=8.15.3"
}
}