-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 999 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 999 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
29
{
"name": "wdio-sample",
"version": "1.0.0",
"description": "WebdriverIO Sample",
"main": "index.js",
"scripts": {
"test": "wdio ./conf/local.conf.js",
"browserstack-single": "wdio ./conf/browserstack_single.conf.js",
"browserstack-parallel": "wdio ./conf/browserstack_parallel.conf.js",
"browserstack-mobile": "wdio ./conf/browserstack_mobile.conf.js",
"browserstack-local": "wdio ./conf/browserstack_local.conf.js",
"browserstack-local-parallel": "wdio ./conf/browserstack_local_parallel.conf.js",
"jenkins-report": "wdio ./conf/jenkins.report.conf.js"
},
"author": "Ashwin G",
"license": "ISC",
"dependencies": {
"@wdio/cli": "^6.1.12"
},
"devDependencies": {
"@wdio/browserstack-service": "^6.1.10",
"@wdio/junit-reporter": "^6.4.0",
"@wdio/local-runner": "^6.1.12",
"@wdio/mocha-framework": "^6.1.8",
"@wdio/selenium-standalone-service": "^6.0.16",
"@wdio/spec-reporter": "^6.1.12",
"@wdio/sync": "^6.1.8"
}
}