-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.83 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.83 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
{
"name": "koha-plugin-openfifth-crontab",
"version": "1.3.6",
"previous_version": "1.3.5",
"plugin": {
"module": "Koha::Plugin::Com::OpenFifth::Crontab",
"pm_path": "Koha/Plugin/Com/OpenFifth/Crontab.pm"
},
"scripts": {
"version:patch": "node increment_version.js patch | cat",
"version:minor": "node increment_version.js minor | cat",
"version:major": "node increment_version.js major | cat",
"release:patch": "node increment_version.js patch | cat && PLUGIN_FILE=$(node -p 'require(\"./package.json\").plugin.pm_path') && git add package.json \"$PLUGIN_FILE\" && git commit -m 'chore: bump version' && VERSION=$(node -p 'require(\"./package.json\").version') && git tag -a v$VERSION -m \"Release v$VERSION\" && git push origin main --follow-tags",
"release:minor": "node increment_version.js minor | cat && PLUGIN_FILE=$(node -p 'require(\"./package.json\").plugin.pm_path') && git add package.json \"$PLUGIN_FILE\" && git commit -m 'chore: bump version' && VERSION=$(node -p 'require(\"./package.json\").version') && git tag -a v$VERSION -m \"Release v$VERSION\" && git push origin main --follow-tags",
"release:major": "node increment_version.js major | cat && PLUGIN_FILE=$(node -p 'require(\"./package.json\").plugin.pm_path') && git add package.json \"$PLUGIN_FILE\" && git commit -m 'chore: bump version' && VERSION=$(node -p 'require(\"./package.json\").version') && git tag -a v$VERSION -m \"Release v$VERSION\" && git push origin main --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openfifth/koha-plugin-crontab.git"
},
"author": "Open Fifth",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/openfifth/koha-plugin-crontab/issues"
},
"homepage": "https://github.com/openfifth/koha-plugin-crontab#readme",
"keywords": [
"koha",
"plugin"
]
}