forked from WordPress/site-health-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.69 KB
/
package.json
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
{
"author": "The WordPress Community",
"bugs": {
"url": "https://github.com/WordPress/site-health-tools/issues"
},
"description": "Introduces additional common tools to the Site Health interface.",
"devDependencies": {
"@playwright/test": "^1.45.1",
"@types/node": "^20.14.10",
"@wordpress/dependency-extraction-webpack-plugin": "^6.2.0",
"@wordpress/e2e-test-utils": "^11.3.0",
"@wordpress/e2e-test-utils-playwright": "^1.3.0",
"@wordpress/e2e-tests": "^8.3.0",
"@wordpress/env": "^10.2.0",
"@wordpress/scripts": "^28.2.0",
"@wordpress/stylelint-config": "^22.2.0",
"npm-run-all": "^4.1.5",
"postcss-scss": "^4.0.9",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18"
},
"license": "GPL-2.0+",
"name": "site-health-tools",
"version": "1.0.0",
"scripts": {
"build": "wp-scripts build",
"lint": "npm-run-all lint:css lint:js",
"lint:css": "wp-scripts lint-style './src/styles/**/*.scss'",
"lint:js": "wp-scripts lint-js './src/**/*.js'",
"start": "wp-scripts start",
"wp-env": "wp-env",
"plugin-zip": "wp-scripts plugin-zip",
"test": "npm-run-all lint test:e2e",
"test:e2e": "wp-scripts test-playwright --config ./tests/e2e.config.ts",
"test:e2e:debug": "wp-scripts test-playwright --config ./tests/e2e.config.ts --ui"
},
"stylelint": {
"extends": "@wordpress/stylelint-config",
"customSyntax": "postcss-scss",
"rules": {
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": null
}
},
"files": [
"site-health-tools.php",
"build/**",
"SiteHealthTools/**",
"templates/**",
"uninstall.php",
"changelog.txt",
"readme.txt"
]
}