-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.36 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.36 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
{
"name": "webdriver-image-comparison",
"version": "7.3.1",
"author": "Wim Selles - wswebcreation",
"description": "An image compare module that can be used for different NodeJS Test automation frameworks that support the webdriver protocol",
"keywords": [],
"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 copy-js build:*",
"build:tsc": "tsc --project ./tsconfig.json",
"clean:build": "rimraf coverage dist .tmp",
"clean:watch": "rimraf coverage .tmp",
"copy-js": "copyfiles -u 1 src/resemble/resemble.jimp.cjs dist/",
"watch": "run-s clean:watch copy-js watch:*",
"watch:tsc": "pnpm run build:tsc -w",
"watch:js": "node -e \"require('fs').watchFile('src/resemble/resemble.jimp.cjs', () => { require('child_process').exec('npm run copy-js'); });\""
},
"dependencies": {
"fs-extra": "^11.3.0",
"jimp": "^1.6.0",
"@wdio/logger": "^9.4.4"
},
"devDependencies": {
"@types/copyfiles": "~2.4.4",
"@types/fs-extra": "^11.0.4",
"copyfiles": "^2.4.1",
"webdriverio": "^9.7.1"
}
}