-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (60 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (60 loc) · 2.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@ahegyes/wordpress-configs",
"version": "0.0.0",
"private": true,
"description": "Shared baseline configurations for Node-ecosystem tooling used by DWS WordPress plugins.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ahegyes/wordpress-configs.git"
},
"bugs": "https://github.com/ahegyes/wordpress-configs/issues",
"engines": {
"node": ">=26",
"npm": ">=11"
},
"files": [
"node/",
"LICENSE"
],
"exports": {
"./node/eslint.config.base.mjs": "./node/eslint.config.base.mjs",
"./node/stylelint.config.base.js": "./node/stylelint.config.base.js",
"./node/playwright.config.base.js": "./node/playwright.config.base.js",
"./node/tsconfig.base.json": "./node/tsconfig.base.json",
"./package.json": "./package.json"
},
"peerDependencies": {
"@playwright/test": "^1.58.2",
"@wordpress/scripts": ">=32",
"@wordpress/eslint-plugin": "^25.6.0",
"@wordpress/stylelint-config": "^23.42.0"
},
"dependencies": {
"prettier": "npm:wp-prettier@^3.0.3"
},
"devDependencies": {
"@wordpress/e2e-test-utils-playwright": "^1.50.0",
"@wordpress/eslint-plugin": "^25.6.0",
"@wordpress/scripts": "^32.6.0",
"@wordpress/stylelint-config": "^23.42.0"
},
"scripts": {
"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",
"format:scripts": "wp-scripts format ./node --no-error-on-unmatched-pattern",
"format:all": "composer format:php && npm run format:scripts",
"lint:scripts": "wp-scripts lint-js ./node tests/fixtures/node-config/smoke.mjs --no-error-on-unmatched-pattern",
"lint:config": "node tests/fixtures/node-config/smoke.mjs",
"lint:all": "composer lint:php && npm run lint:scripts && npm run lint:config",
"audit": "composer audit && npm audit",
"audit:fix": "npm audit fix",
"check:engines": "wp-scripts check-engines",
"check:licenses": "wp-scripts check-licenses",
"test:all": "composer test:all",
"quality-check:all": "composer quality-check:all"
}
}