-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 960 Bytes
/
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
{
"name": "wdio-ts-docker",
"version": "1.0.0",
"description": "Boilerplate for running selenoid & wdio based test scripts using docker compose",
"main": "index.js",
"scripts": {
"test": "npx wdio run wdio.conf.ts",
"spec": "wdio --spec ./test/specs/$FILE",
"grep": "npm run test -- --mochaOpts.grep",
"report": "allure generate --clean allure-results && allure open"
},
"keywords": [
"wdio",
"selenoid",
"boilerplate",
"typescript",
"docker-compose",
"github-actions",
"allure",
"github-pages"
],
"author": "Madhan",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.37",
"@wdio/allure-reporter": "^7.4.2",
"@wdio/cli": "^7.3.0",
"@wdio/local-runner": "^7.4.6",
"@wdio/mocha-framework": "^7.4.6",
"allure-commandline": "^2.13.8",
"expect-webdriverio": "^2.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webdriverio": "^7.3.0"
}
}