-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "@enact/ui-test-utils",
"version": "2.0.0-alpha.2",
"description": "UI Testing for the Enact framework",
"repository": "https://github.com/enactjs/ui-test-utils",
"main": "index.js",
"bin": {
"start-tests": "./start-tests.js"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix"
},
"author": "Roy Sutton <roy.sutton@lge.com>",
"license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@wdio/cli": "^9.10.0",
"@wdio/dot-reporter": "^9.9.0",
"@wdio/local-runner": "9.2.1",
"@wdio/mocha-framework": "^9.9.0",
"@wdio/spec-reporter": "^9.9.0",
"@wdio/static-server-service": "^9.9.0",
"@wdio/visual-service": "^6.3.2",
"chalk": "^5.4.1",
"cross-spawn": "^7.0.6",
"expect-webdriverio": "^5.1.0",
"fs-extra": "^11.3.0",
"minimist": "^1.2.8",
"query-string": "^7.1.3",
"ramda": "^0.30.1",
"readdirp": "^3.6.0",
"wdio-docker-service": "^3.2.1",
"wdio-selenium-standalone-service": "^0.0.12",
"webdriverio": "^9.10.0"
},
"devDependencies": {
"eslint": "^9.21.0",
"eslint-config-enact": "^5.0.0-alpha.5",
"globals": "^15.14.0"
},
"overrides": {
"cross-spawn": "$cross-spawn",
"express": "^4.21.2",
"ws": "^8.18.0"
}
}