-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.77 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.77 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
75
76
77
78
79
{
"name": "accessibility-checker",
"version": "1.39.0",
"description": "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.",
"author": "Equalize Digital",
"license": "GPL-2.0+",
"main": "index.js",
"scripts": {
"postinstall": "patch-package && ./scripts/prepare.sh",
"build": "npx webpack",
"dev": "npx webpack --watch --mode development",
"dist": "npx webpack --mode production && composer install --no-dev && composer dump-autoload --no-dev -o && ./scripts/dist.sh && composer install",
"dist:dotorg": "npm run dist:keep-build-folder",
"dist:keep-build-folder": "npx webpack --mode production && composer install --no-dev && composer dump-autoload --no-dev -o && ./scripts/dist.sh --keep-build-folder",
"lint": "./vendor/bin/phpcs && npm run lint:js",
"lint-staged-precommit": "lint-staged",
"lint:php": "./vendor/bin/phpcs",
"lint:php:fix": "./vendor/bin/phpcbf",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"test:php": "./scripts/setup-phpunit.sh",
"test:php:run": "docker compose exec phpunit vendor/bin/phpunit",
"test:php:coverage": "docker compose exec phpunit vendor/bin/phpunit --coverage-clover=./coverage/clover.xml --coverage-html=./coverage/html",
"test:php:stop": "docker compose stop",
"test:jest": "jest --config=./tests/jest/jest.config.js --passWithNoTests",
"prepare": "husky",
"phpstan": "./vendor/bin/phpstan"
},
"lint-staged": {
"*.php": "./vendor/bin/phpcs",
"*.js": "wp-scripts lint-js"
},
"files": [
"LICENSE.txt",
"readme.txt",
"changelog.txt",
"accessibility-checker.php",
"uninstall.php",
"assets",
"admin",
"build",
"includes",
"partials",
"vendor",
"languages"
],
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@floating-ui/dom": "^1.2.9",
"@svgr/webpack": "^8.1.0",
"@wordpress/eslint-plugin": "^17.5.0",
"@wordpress/i18n": "^6.10.0",
"@wordpress/icons": "^11.5.0",
"@wordpress/scripts": "^31.0.0",
"axe-core": "^4.8.2",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.0",
"cypress": "^14.5.0",
"eslint-plugin-react": "^7.37.0",
"focus-trap": "^7.4.3",
"husky": "^9.0.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"mini-css-extract-plugin": "^2.7.6",
"notyf": "^3.10.0",
"patch-package": "^8.0.0",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"tabbable": "^6.1.2",
"unique-selector": "^0.5.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.1"
}
}