-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
23 lines (23 loc) · 929 Bytes
/
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
{
"name": "wp-crontrol",
"version": "1.17.0",
"description": "Take control of the cron events on your WordPress website",
"license": "GPL-2.0-or-later",
"private": true,
"author": "John Blackbourn",
"repository": "johnbillion/wp-crontrol",
"homepage": "https://wp-crontrol.com",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@jsdevtools/version-bump-prompt": "6.1.0",
"sharp-cli": "^4.0.0"
},
"scripts": {
"icons": "sharp -i .wordpress-org/icon.svg -o .wordpress-org/icon-128x128.png -f png --palette resize 128 128 && sharp -i .wordpress-org/icon.svg -o .wordpress-org/icon-256x256.png -f png --palette resize 256 256",
"bump:patch": "bump patch --commit 'Version %s.' wp-crontrol.php package.json readme.md",
"bump:minor": "bump minor --commit 'Version %s.' wp-crontrol.php package.json readme.md",
"bump:major": "bump major --commit 'Version %s.' wp-crontrol.php package.json readme.md"
}
}