-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "webdriverio-boilerplate",
"version": "0.0.1",
"description": "webdriver.io v5 boilerplate project",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/wdio ./config/wdio.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sethuster/WebdriverIO-boilerplate.git"
},
"keywords": [
"webdriver.io",
"boilerplate",
"mocha",
"test",
"automation"
],
"author": "Seth Urban",
"license": "ISC",
"bugs": {
"url": "https://github.com/sethuster/WebdriverIO-boilerplate/issues"
},
"homepage": "https://github.com/sethuster/WebdriverIO-boilerplate#readme",
"dependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/preset-env": "7.12.1",
"@babel/register": "7.12.1",
"@wdio/cli": "7.5.7",
"@wdio/local-runner": "7.5.7",
"@wdio/mocha-framework": "7.5.3",
"@wdio/selenium-standalone-service": "7.5.7",
"@wdio/spec-reporter": "7.5.7",
"@wdio/sync": "7.5.7",
"webdriverio": "7.5.7"
},
"devDependencies": {},
"engines": {
"node": ">=12.18.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 12
}
}
]
]
}
}