-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.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
{
"name": "playwright-image-snapshot",
"version": "0.3.0",
"description": "Enhanced screenshot comparisons for @playwright/test",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/florianbepunkt/playwright-image-snapshot.git"
},
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"test": "npx playwright test"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"glur": "1.1.2",
"mkdirp": "1.0.4",
"pixelmatch": "5.2.1",
"pngjs": "6.0.0",
"rimraf": "3.0.2",
"ssim.js": "3.5.0"
},
"peerDependencies": {
"@playwright/test": "^1.*"
},
"devDependencies": {
"@playwright/test": "1.12.3",
"@types/glur": "1.1.1",
"@types/mkdirp": "1.0.2",
"@types/node": "16.3.2",
"@types/node-static": "0.7.7",
"@types/pixelmatch": "5.2.4",
"@types/pngjs": "6.0.1",
"@types/rimraf": "3.0.1",
"node-static": "0.7.11",
"serve": "12.0.0",
"typescript": "4.3.5"
},
"engines": {
"node": ">=12.0.0"
}
}