-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
56
57
{
"name": "@percy/webdriverio",
"description": "WebdriverIO client library for visual testing with Percy",
"version": "3.3.1",
"license": "MIT",
"author": "Perceptual Inc.",
"repository": "https://github.com/percy/percy-webdriverio",
"keywords": [
"webdriverio",
"percy",
"visual testing"
],
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"index.js",
"types/index.d.ts"
],
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "eslint --ignore-pattern .gitignore .",
"test": "percy exec --testing -- wdio wdio.conf.js",
"test:coverage": "nyc yarn test",
"test:types": "tsd"
},
"dependencies": {
"@percy/sdk-utils": "^1.30.3"
},
"peerDependencies": {
"webdriverio": "~6 || ~7 || ~8 || ~ 9"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@percy/cli": "^1.30.3",
"@wdio/cli": "^9.2.1",
"@wdio/jasmine-framework": "^9.2.1",
"@wdio/local-runner": "^9.2.1",
"@wdio/spec-reporter": "^9.1.3",
"eslint": "^9.13.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-jasmine": "^4.2.2",
"geckodriver": "^3.0.1",
"globals": "^15.11.0",
"jasmine": "^5.4.0",
"nyc": "^17.1.0",
"ts-node": "^10.9.1",
"tsd": "^0.31.2",
"typescript": "^5.6.3",
"webdriverio": "^9.2.1"
}
}