-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@percy/playwright",
"description": "Playwright client library for visual testing with Percy",
"version": "1.1.2",
"license": "MIT",
"author": "Perceptual Inc.",
"repository": "https://github.com/percy/percy-playwright",
"keywords": [
"playwright",
"percy",
"visual testing"
],
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"index.js",
"utils.js",
"cache.js",
"dropin",
"commands",
"types/index.d.ts"
],
"@percy/cli": {
"commands": [
"commands/setup-baseline.mjs"
],
"baselineProvider": "dropin/baseline/provider.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "cross-env NODE_ENV=test percy exec --testing -- playwright test --workers=1",
"test:coverage": "nyc yarn test",
"test:types": "tsd"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"dependencies": {
"@percy/sdk-utils": "^1.32.0"
},
"peerDependencies": {
"playwright-core": ">=1",
"@playwright/test": ">=1.49.0",
"@percy/cli": ">=1.32.3"
},
"peerDependenciesMeta": {
"@playwright/test": {
"optional": true
},
"@percy/cli": {
"optional": true
}
},
"devDependencies": {
"@percy/cli": "^1.32.0",
"@playwright/test": "^1.60.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"nyc": "^15.1.0",
"playwright": "^1.60.0",
"sinon": "^18.0.1",
"tsd": "^0.25.0"
}
}