This repository has been archived by the owner on Dec 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
64 lines (64 loc) · 2.14 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
58
59
60
61
62
63
64
{
"name": "webdriver-image-comparison",
"version": "2.0.1",
"description": "An image compare module that can be used for different NodeJS Test automation frameworks that support the webdriver protocol",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"compile": "npm run copy-files && tsc --allowJs true --declaration false && tsc",
"lint": "eslint lib/**/*.ts",
"clean": "rimraf coverage build tmp",
"copy-files": "npx copyfiles -u 1 lib/assets/**/*.png build/",
"pretest": "npm run lint",
"test": "jest",
"release": "release-it --github.release",
"release.ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release.patch": "npm run release -- patch",
"release.minor": "npm run release -- minor",
"release.major": "npm run release -- major",
"test:watch": "npm run test -- --watchAll",
"watch": "npm run compile -- -w",
"precompile": "npm run clean",
"prerelease": "npm run compile",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wswebcreation/webdriver-image-comparison.git"
},
"keywords": [],
"author": "Wim Selles - wswebcreation",
"license": "MIT",
"bugs": {
"url": "https://github.com/wswebcreation/webdriver-image-comparison/issues"
},
"homepage": "https://github.com/wswebcreation/webdriver-image-comparison#readme",
"dependencies": {
"canvas": "^2.11.2",
"fs-extra": "^11.1.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.3",
"@types/jest": "^27.5.2",
"@types/node": "^20.8.8",
"@types/selenium-webdriver": "^4.1.19",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"copyfiles": "^2.4.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^27.5.1",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"rimraf": "^5.0.5",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}