-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (42 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (42 loc) · 1.96 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
{
"name": "@ahegyes/dws-plugin-template",
"private": true,
"description": "DWS WordPress plugin template — wp-env tooling.",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/ahegyes/wordpress-plugin-template.git"
},
"bugs": "https://github.com/ahegyes/wordpress-plugin-template/issues",
"engines": {
"node": ">=26",
"npm": ">=11"
},
"devDependencies": {
"@ahegyes/wordpress-configs": "git+https://github.com/ahegyes/wordpress-configs.git#14544764d73f176b96e5eeb7775fdad40a8674fa",
"@playwright/test": "^1",
"@wordpress/e2e-test-utils-playwright": "^1.50.0",
"@wordpress/env": "^11.10.0",
"@wordpress/scripts": "^32.6.0"
},
"scripts": {
"setup": "npm run packages-install:all && npm run wp-env:start",
"packages-install:all": "composer packages-install && npm run packages-install",
"packages-update:all": "composer packages-update && npm run packages-update && npm run packages-update:wp",
"packages-install": "npm install",
"packages-update": "npm update",
"packages-update:wp": "wp-scripts packages-update",
"wp-env": "wp-env",
"wp-env:start": "wp-env start",
"wp-env:stop": "wp-env stop",
"wp-env:update": "wp-env start --update",
"wp-env:destroy": "wp-env destroy",
"audit": "composer audit && npm audit",
"audit:fix": "npm audit fix",
"check:engines": "wp-scripts check-engines",
"check:licenses": "wp-scripts check-licenses",
"test:integration": "wp-env run cli --env-cwd=wp-content/plugins/dws-plugin-template vendor/bin/phpunit --testsuite=Integration",
"test:requirements": "wp-env --config .wp-env.belowfloor.json run cli --env-cwd=wp-content/plugins/dws-plugin-template vendor/bin/phpunit --testsuite=Requirements",
"test:e2e": "playwright test --config=playwright.config.js"
}
}