-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "@washingtonstateuniversity/hrswp-github-updater",
"version": "1.2.1",
"description": "A WSU HRS WordPress plugin to manage updates for GitHub-hosted plugins and themes.",
"author": "Adam Turner",
"contributors": [
{
"name": "washingtonstateuniversity"
}
],
"license": "GPL-3.0-or-later",
"keywords": [
"wordpress",
"plugin",
"GitHub",
"update"
],
"homepage": "https://github.com/washingtonstateuniversity/hrswp-github-updater/blob/stable/README.md",
"repository": {
"type": "git",
"url": "https://github.com/washingtonstateuniversity/hrswp-github-updater"
},
"bugs": {
"url": "https://github.com/washingtonstateuniversity/hrswp-github-updater/issues"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"browserslist": [
"> 1%",
"ie 8-11",
"Firefox ESR"
],
"devDependencies": {
"@wordpress/npm-package-json-lint-config": "^4.39.0",
"npm-package-json-lint": "^7.1.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"lint:pkg": "npmPkgJsonLint .",
"lint:php": "composer lint",
"fix:php": "composer format",
"fix": "run-p 'fix:*'",
"test": "run-p 'lint:*'"
}
}