export async function precondition({readPkg, assert}) {
    const pkgjson = await readPkg();
    const homepage = pkgjson.homepage;
    assert(homepage && homepage.startsWith('http:'));
}