-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 KB
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
{
"name": "@wdio/image-comparison-core",
"version": "1.2.1",
"author": "Wim Selles - wswebcreation",
"description": "Image comparison core module for @wdio/visual-service - WebdriverIO visual testing framework",
"keywords": [
"webdriverio",
"wdio",
"visual-testing",
"image-comparison",
"screenshot",
"visual-regression",
"testing",
"automation"
],
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"homepage": "https://webdriver.io/docs/visual-testing",
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/visual-testing.git"
},
"bugs": {
"url": "https://github.com/webdriverio/visual-testing/issues"
},
"scripts": {
"build": "run-s clean:build build:*",
"build:tsc": "tsc --project ./tsconfig.json",
"clean:build": "rimraf coverage dist .tmp",
"clean:watch": "rimraf coverage .tmp",
"watch": "run-s clean:watch watch:tsc",
"watch:tsc": "pnpm run build:tsc -w"
},
"dependencies": {
"jimp": "^1.6.0",
"@wdio/logger": "^9.18.0",
"@wdio/types": "^9.25.0"
},
"devDependencies": {
"webdriverio": "^9.25.0"
},
"publishConfig": {
"access": "public"
}
}