-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 979 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
{
"name": "Cucumber_WebDriverIO",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/wdio wdio.conf.js",
"test:regression": "./node_modules/.bin/wdio wdio.conf.js --cucumberOpts.tagExpression='@regression'",
"test:dev": "./node_modules/.bin/wdio wdio.conf.js --cucumberOpts.tagExpression='@dev'",
"test:stage": "./node_modules/.bin/wdio wdio.conf.js --cucumberOpts.tagExpression='@stage'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.1",
"@babel/polyfill": "7.10.4",
"@babel/preset-env": "7.11.0",
"@babel/register": "7.10.5",
"@wdio/cli": "^6.4.0",
"@wdio/cucumber-framework": "^6.4.0",
"@wdio/local-runner": "^6.4.0",
"@wdio/selenium-standalone-service": "^6.4.0",
"@wdio/spec-reporter": "^6.4.0",
"@wdio/sync": "^6.4.0"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}