forked from webdriverio/expect-webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 843 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 843 Bytes
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
{
"name": "expect-wdio-playground-jest",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"preinstall": "cd ../.. && npm i && npm run compile",
"typecheck": "tsc --noEmit",
"test": "wdio run wdio.conf.ts",
"lint": "eslint .",
"checks:all": "npm run typecheck && npm run lint && npm test",
"snapshots:update": "npm run test -- --spec snapshot.test.ts --updateSnapshots"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.10.5",
"@wdio/cli": "^9.4.0",
"@wdio/globals": "^9.4.0",
"@wdio/local-runner": "^9.4.0",
"@wdio/mocha-framework": "^9.4.0",
"@wdio/spec-reporter": "^9.4.0",
"@wdio/visual-service": "^9.1.2",
"eslint": "^9.39.2",
"expect-webdriverio": "file:../..",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}