-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "advanced-query-loop",
"version": "4.4.0",
"description": "Query loop block variations to create custom queries.",
"main": "index.js",
"scripts": {
"setup": "composer run dev",
"start": "wp-scripts start",
"start:hot": "wp-scripts start --hot",
"build": "wp-scripts build",
"plugin-zip": "wp-scripts plugin-zip",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer run lint",
"format": "wp-scripts format",
"wp-env": "wp-env",
"release": "composer run build && npm run build && npm run plugin-zip",
"test:unit": "./vendor/bin/phpunit",
"test:e2e": "npx playwright test --config=tests/e2e/playwright.config.ts",
"test:e2e:ui": "npx playwright test --ui --config=tests/e2e/playwright.config.ts"
},
"files": [
"build",
"index.php",
"readme.txt",
"includes",
"vendor/autoload.php",
"vendor/composer"
],
"prettier": "@wordpress/prettier-config",
"keywords": [],
"author": "",
"license": "GPLv2 or later",
"devDependencies": {
"@playwright/test": "^1.54.2",
"@wordpress/e2e-test-utils-playwright": "^1.25.0",
"@wordpress/env": "^9.4.0",
"@wordpress/scripts": "^24.6.0",
"@wp-playground/cli": "^1.1.3"
},
"dependencies": {
"uuid": "^9.0.0"
}
}