forked from wswebcreation/webdriver-image-comparison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.08 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": "0.22.0",
"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": "tsc --allowJs true --declaration false && tsc",
"lint": "eslint lib/**/*.ts",
"clean": "rimraf coverage build tmp",
"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.9.3",
"chalk": "^4.1.2",
"fs-extra": "^10.0.1"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/selenium-webdriver": "^4.0.18",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"release-it": "^14.14.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}