product:{short:'p',description:'Name of the product you want to get the solidpkg on',verify: verifyProductName,message:(value)=>`"${value}" is not a valid product name.`},
from:{short:'f',description:'Number of the from release, must be an integer in the range [-1, 999]',verify:(str)=>(str.match(/^(?:-1|0|[1-9][0-9]{0,2})$/)!==null)},
to:{short:'t',description:'Number of the to release, must be an integer in the range [0, 999]',verify:(str)=>(str.match(/^(?:0|[1-9][0-9]{0,2})$/)!==null)},