-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@bleech/visual-regression-tests",
"version": "2.0.2",
"description": "Find issues before others do – every time. With automatic screenshots, daily comparisons, and instant tests after WordPress and plugin updates.",
"author": "Bleech <[email protected]>",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"plugin",
"vrts",
"tests",
"visual",
"regression"
],
"homepage": "https://github.com/bleech/visual-regression-tests/",
"repository": "https://github.com/bleech/visual-regression-tests.git",
"bugs": {
"url": "https://github.com/bleech/visual-regression-tests/issues"
},
"engines": {
"node": "20"
},
"files": [
"assets",
"build",
"components",
"editor",
"includes",
"languages",
"readme.txt",
"uninstall.php",
"visual-regression-tests.php"
],
"dependencies": {
"@wordpress/components": "^28.10.0",
"@wordpress/dom-ready": "^4.10.0",
"@wordpress/edit-post": "^8.10.0",
"@wordpress/element": "^6.10.0",
"@wordpress/i18n": "^5.10.0",
"@wordpress/icons": "^10.10.0",
"@wordpress/plugins": "^7.10.0",
"a11y-dialog": "^8.1.1",
"dompurify": "^3.1.7",
"driver.js": "^1.3.1",
"iframe-resizer": "4.3",
"lottie-web": "^5.12.2"
},
"devDependencies": {
"@wordpress/scripts": "^30.2.0",
"eslint-import-resolver-alias": "^1.1.2",
"npm-run-all": "^4.1.5"
},
"scripts": {
"start": "wp-scripts start",
"build": "run-s --silent lint wp:scripts:build",
"wp:scripts:build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint": "run-p --silent lint:*",
"lint:js": "wp-scripts lint-js '**/*.js'",
"lint:css": "wp-scripts lint-style '**/*.scss'",
"lint:php": "./vendor/bin/phpcs",
"lint-fix:js": "npm run lint:js -- --fix",
"lint-fix:css": "npm run lint:css -- --fix",
"lint-fix:php": "./vendor/bin/phpcbf",
"lint-fix": "run-p --silent lint-fix:*",
"lint:md:js": "wp-scripts lint-md-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"makepot": "./vendor/bin/wp i18n make-pot . --skip-audit --exclude=\".github,.wordpress-org,build,node_modules,vendor,svn\" --headers='{\"Last-Translator\":\"[email protected]\",\"Report-Msgid-Bugs-To\":\"https://github.com/visual-regression-tests/issues\"}' languages/visual-regression-tests.pot",
"zip": "run-s build && zip -r visual-regression-tests.zip ./ -x '.*' '__MACOSX' 'node_modules/*' 'vendor/*' 'composer.json' 'composer.lock' 'package.json' 'package-lock.json' 'phpcs.xml' 'webpack.config.js' 'README.md'"
}
}