-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 876 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "multisyde",
"description": "A WordPress plugin that explores potential improvements for WordPress Multisite.",
"license": "GPL-2.0-or-later",
"author": "Syde",
"keywords": [
"multisite", "network admin", "enhancements", "usability", "admin tools"
],
"devDependencies": {
"@wordpress/env": "^10.29.0"
},
"engines": {
"node": ">=20.19.1",
"npm": ">=10.8.2"
},
"scripts": {
"preinstall": "npx check-node-version --package",
"prewp-env": "npx check-node-version --package",
"wp-env": "wp-env",
"test-php-unit": "wp-env run tests-cli --env-cwd=wp-content/plugins/multisyde vendor/bin/phpunit -c phpunit.xml.dist",
"test-php-integration": "wp-env run tests-cli --env-cwd=wp-content/plugins/multisyde ./vendor/bin/phpunit -c ./integration.xml.dist"
}
}