-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 791 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 791 Bytes
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
{
"name": "buddypress",
"description": "REST API endpoints for BuddyPress",
"homepage": "https://buddypress.org",
"bugs": {
"url": "https://buddypress.trac.wordpress.org/"
},
"license": "GPL-2.0-or-later",
"author": "BuddyPress Community",
"keywords": [
"bp-rest",
"bp-rest-api",
"buddypress",
"plugin"
],
"devDependencies": {
"@wordpress/env": "^10.35.0"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"scripts": {
"preinstall": "npx check-node-version --package",
"prewp-env": "npx check-node-version --package",
"wp-env": "wp-env",
"test-php": "npm run wp-env run cli -- --env-cwd=wp-content/plugins/BP-REST/ composer test",
"test-php-multisite": "npm run wp-env run cli -- --env-cwd=wp-content/plugins/BP-REST composer test_multi"
}
}