-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.14 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
{
"name": "multi-author-posts",
"version": "1.0.0",
"description": "Allow multiple authors to edit a single WordPress post via shareable invite links.",
"license": "GPL-2.0-or-later",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"test:unit": "wp-scripts test-unit-js --testPathPattern=tests/js",
"test:php": "wp-env run cli --env-cwd=wp-content/plugins/multi-author-posts -- vendor/bin/phpunit",
"test": "npm run test:unit && npm run test:php",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"lint:js": "wp-scripts lint-js",
"lint:style": "wp-scripts lint-style"
},
"devDependencies": {
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.0.0",
"@wordpress/api-fetch": "*",
"@wordpress/components": "*",
"@wordpress/core-data": "*",
"@wordpress/data": "*",
"@wordpress/editor": "*",
"@wordpress/element": "*",
"@wordpress/env": "^11.0.0",
"@wordpress/i18n": "*",
"@wordpress/plugins": "*",
"@wordpress/scripts": "^30.0.0"
}
}