-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"name": "@fkbender/playwright-vrt-scripts",
"version": "1.0.0-alpha.2",
"description": "Reusable Playwright VRT runners for local environments and CircleCI Pantheon workflows",
"license": "ISC",
"author": "Rodrigo Espinoza",
"type": "commonjs",
"main": "index.js",
"repository": {
"url": "https://github.com/fourkitchens/playwright-vrt-scripts"
},
"bin": {
"playwright-vrt": "scripts/vrt.js",
"playwright-vrt-local": "scripts/vrt.local.js",
"playwright-vrt-ci": "scripts/vrt.ci.js"
},
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"files": [
"scripts",
"index.js",
"README.md"
],
"scripts": {
"check": "node -e \"const pkg = require('./package.json'); console.log(JSON.stringify({ name: pkg.name, version: pkg.version, bin: pkg.bin }, null, 2));\"",
"test": "npm run check"
},
"keywords": [
"playwright",
"visual-regression-testing",
"vrt",
"pantheon",
"circleci"
],
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@playwright/test": ">=1.48.0"
},
"dependencies": {
"dotenv": "^16.4.7"
},
"publishConfig": {
"access": "public"
}
}