-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (39 loc) · 1.68 KB
/
package.json
File metadata and controls
44 lines (39 loc) · 1.68 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
{
"name": "@ahegyes/wordpress-framework",
"private": true,
"description": "DWS WordPress Framework v2 — monorepo dev tooling.",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/ahegyes/wordpress-framework.git"
},
"bugs": "https://github.com/ahegyes/wordpress-framework/issues",
"engines": {
"node": ">=26",
"npm": ">=11"
},
"devDependencies": {
"@wordpress/env": "^11.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": "npx --yes @wordpress/scripts@latest packages-update",
"format:all": "composer format:php",
"lint:all": "composer lint:php",
"wp-env": "wp-env",
"wp-env:start": "wp-env --config .wp-env.tests.json start",
"wp-env:stop": "wp-env --config .wp-env.tests.json stop",
"wp-env:update": "wp-env --config .wp-env.tests.json start --update",
"wp-env:destroy": "wp-env --config .wp-env.tests.json destroy",
"audit": "composer audit && npm audit",
"audit:fix": "npm audit fix",
"check:engines": "npx --yes @wordpress/scripts@latest check-engines",
"check:licenses": "npx --yes @wordpress/scripts@latest check-licenses",
"test:all": "composer test:all",
"quality-check:all": "composer quality-check:all"
}
}