-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1014 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
37
38
39
40
41
{
"name": "cucumber-example",
"version": "1.0.0",
"description": "Minimal cucumber example, intended as template",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"webdriverio",
"cucumber",
"bdd"
],
"author": "Martin Coronel <martincxx@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/martincxx/cucumber-example.git"
},
"dependencies": {
"@wdio/cli": "^7.12.6",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-plugin-ui-testing": "^1.0.4"
},
"eslintConfig": {
"extends": [
"plugin:ui-testing/webdriverio"
]
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"@wdio/cucumber-framework": "^7.12.5",
"@wdio/local-runner": "^7.12.5",
"@wdio/spec-reporter": "^7.12.5",
"chromedriver": "^93.0.1",
"wdio-chromedriver-service": "^7.2.0"
}
}