-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
60 lines (60 loc) · 1.48 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
57
58
59
60
{
"author": "The WordPress Community",
"bugs": {
"url": "https://github.com/WordPress/health-check/issues"
},
"description": "WordPress site health tester, and troubleshooting tools for end users and anyone providing support",
"devDependencies": {
"@wordpress/env": "~8.2.0",
"@wordpress/scripts": "~26.6.0",
"@wordpress/stylelint-config": "~21.19.0",
"postcss-scss": "~4.0.6"
},
"dependencies": {
"clipboard": "~2.0.11",
"html2canvas": "^1.4.1"
},
"engines": {
"node": ">=18"
},
"keywords": [
"support",
"wordpress"
],
"homepage": "https://github.com/WordPress/health-check",
"license": "GPL-2.0+",
"name": "health-check",
"repository": {
"type": "git",
"url": "https://github.com/WordPress/health-check"
},
"version": "0.1.0",
"scripts": {
"build": "wp-scripts build",
"lint:css": "wp-scripts lint-style './src/styles/**/*.scss'",
"lint:js": "wp-scripts lint-js ./src/javascript/**/*.js",
"watch": "wp-scripts start",
"wp-env": "wp-env",
"plugin-zip": "wp-scripts plugin-zip"
},
"stylelint": {
"extends": "@wordpress/stylelint-config",
"customSyntax": "postcss-scss",
"rules": {
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": null
}
},
"files": [
"mu-plugin/**",
"HealthCheck/**",
"modals/**",
"pages/**",
"build/**",
"compat.php",
"health-check.php",
"uninstall.php",
"changelog.txt",
"readme.txt"
]
}