-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "testcafe-blink-diff",
"version": "0.5.8",
"description": "Visual regression for Testcafé through BlinkDiff",
"main": "lib/index.js",
"types": "./typings/index.d.ts",
"bin": {
"testcafe-blink-diff": "./bin/cli.js"
},
"files": [
"bin",
"typings",
"lib",
"dist"
],
"scripts": {
"clean": "rimraf dist/",
"dist": "npm run clean && mkdirp dist/ && npm run build",
"build": "bili --format umd-min --module-name reporter --minimal --file-name reporter.umd.js",
"serve": "sirv e2e/public --port 3000",
"prepublish": "npm run dist",
"pretest": "eslint src lib e2e",
"test": "npm run test:e2e -- -a 'npm run serve' e2e/cases",
"test:e2e": "BASE_URL=http://localhost:3000 testcafe ${BROWSER:-chrome:headless} --screenshots-full-page -s e2e/screens -q"
},
"author": "Alvaro Cabrera <[email protected]>",
"license": "MIT",
"dependencies": {
"glob": "^8.0.3",
"global-or-local": "^0.1.7",
"open": "^8.4.0",
"pixelmatch": "^5.3.0",
"pngjs": "^6.0.0",
"testcafe-browser-tools": "^2.0.26",
"wargs": "^0.10.0"
},
"devDependencies": {
"bili": "^5.0.5",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"image-size": "^1.1.1",
"is-svg": ">=4.2.2",
"mkdirp": "^3.0.1",
"rimraf": "^6.0.1",
"sirv-cli": "^1.0.14",
"somedom": "^0.4.20",
"testcafe": "^2.0.1"
},
"peerDependencies": {
"testcafe": "*"
},
"engines": {
"node": ">=18.0.0"
}
}