-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"name": "wdio-spike",
"version": "1.0.0",
"description": "Spike for webdriverio automation capabilities, alongwith various services",
"main": "",
"scripts": {
"test": "wdio wdio.conf.js"
},
"author": "Himanshu Sharma",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/register": "^7.14.5",
"eslint": "^7.32.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^7.0.1",
"wdio-reportportal-reporter": "^7.0.0",
"wdio-reportportal-service": "^7.0.0"
},
"dependencies": {
"@wdio/cli": "^7.9.0",
"@wdio/devtools-service": "^7.11.0",
"@wdio/local-runner": "^7.9.0",
"@wdio/mocha-framework": "^7.9.0",
"@wdio/spec-reporter": "^7.9.0",
"@wdio/sync": "^7.9.0",
"faker": "5.5.3",
"wdio-image-comparison-service": "^2.3.0",
"webdriverio": "^7.9.0",
"wdio-chromedriver-service": "7.2.0",
"chromedriver": "92.0.1"
},
"resolutions": {
"trim-newlines": "^3.0.1",
"ws": "^5.2.3"
},
"husky": {
"hooks": {
"pre-commit": "eslint . --fix"
}
}
}