lvlup
Version:
A simple version manager solution for packages
38 lines (37 loc) • 817 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"add": {
"type": "object",
"properties": {
"requireGitChanges": {
"type": "boolean",
"default": true
}
},
"description": "Options for the add command.",
"default": {
"requireGitChanges": true
}
},
"commit": {
"type": "object",
"properties": {
"afterAdd": {
"type": "boolean",
"default": false
},
"afterBump": {
"type": "boolean",
"default": false
}
},
"description": "Determines whether to commit the results after the add/bump commands.",
"default": {
"afterAdd": false,
"afterBump": false
}
}
}
}