-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 946 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 946 Bytes
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
{
"name": "@wdio/visual-service",
"author": "Wim Selles - wswebcreation",
"description": "Image comparison / visual regression testing for WebdriverIO",
"version": "6.3.1",
"license": "MIT",
"homepage": "https://webdriver.io/docs/visual-testing",
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/visual-testing.git"
},
"keywords": [
"webdriverio",
"visual",
"regression",
"image",
"comparison"
],
"exports": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"scripts": {
"build": "run-s clean build:*",
"build:tsc": "tsc --project ./tsconfig.json",
"clean": "rimraf coverage dist .tmp",
"watch": "pnpm run build:tsc -w"
},
"dependencies": {
"@wdio/globals": "^9.7.1",
"@wdio/logger": "^9.4.4",
"@wdio/types": "^9.6.3",
"node-fetch": "^3.3.2",
"webdriver-image-comparison": "^7.3.1"
},
"devDependencies": {}
}