-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 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
48
{
"name": "wdio-visual-regression-tracker-service",
"version": "1.0.0",
"description": "WDIO Service for the Visual Regression Tracker",
"main": "dist/index.js",
"types": "./types/wdio-visual-regression-tracker-service.d.ts",
"type": "module",
"scripts": {
"test": "cd test && yarn test",
"setup": "yarn && yarn link && cd test && yarn && yarn link \"wdio-visual-regression-tracker-service\"",
"lint": "eslint src/**/*.ts",
"updates": "ncu",
"build": "rm -Rf dist && tsc",
"test:build": "tsc --noEmit",
"install:vrt": "curl https://raw.githubusercontent.com/Visual-Regression-Tracker/Visual-Regression-Tracker/master/vrt-install.sh -o vrt-install.sh && chmod a+x vrt-install.sh && ./vrt-install.sh",
"start:vrt": "docker-compose up",
"stop:vrt": "docker-compose down"
},
"keywords": [
"wdio",
"service",
"visual-regression-tracker"
],
"author": "JustSittinHere",
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"@wdio/logger": "8.11.0",
"@wdio/cli": "^8.11.2",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"nock": "13.3.1",
"npm-check-updates": "16.10.12",
"prettier": "2.8.8",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
},
"dependencies": {
"@visual-regression-tracker/sdk-js": "5.6.0",
"html2canvas": "1.4.1"
},
"peerDependencies": {
"@wdio/logger": "~8",
"webdriver": "~8"
}
}