-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.28 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
{
"name": "@swissspidy/wp-performance-action",
"private": true,
"description": "Example repository demonstrating how to set up performance testing in a WordPress project.",
"repository": {
"type": "git",
"url": "git+https://github.com/swissspidy/wp-performance-testing"
},
"author": "swissspidy",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/swissspidy/wp-performance-action/issues"
},
"homepage": "https://github.com/swissspidy/wp-performance-action#readme",
"dependencies": {
"@playwright/test": "^1.56.0",
"@wordpress/e2e-test-utils-playwright": "^1.32.0",
"@wp-playground/cli": "^2.0.20",
"kill-port": "^2.0.1",
"tablemark": "^4.1.0"
},
"devDependencies": {
"@wordpress/scripts": "^30.25.0",
"eslint-plugin-playwright": "^2.2.2",
"prettier": "npm:wp-prettier@^3.0.3"
},
"scripts": {
"lint": "wp-scripts lint-js",
"format": "wp-scripts format",
"test:performance": "wp-scripts test-playwright --config tests/performance/playwright.config.ts",
"test:performance:merge-reports": "playwright merge-reports --reporter tests/performance/config/performance-reporter.ts",
"test:performance:results": "node tests/performance/cli/results.js",
"playground": "./node_modules/@wp-playground/cli/wp-playground.js",
"stop-server": "kill-port 9400"
}
}