{
    "$schema": "http://json-schema.org/schema",
    "$id": "convert-karma-to-jest",
    "title": "Convert an Angular CLI project from Karma to Jest",
    "examples": [
        {
            "command": "g convert-karma-to-jest myapp",
            "description": "Convert the Angular CLI project `myapp` from Karma to Jest"
        }
    ],
    "type": "object",
    "properties": {
        "project": {
            "description": "The name of the project to convert.",
            "type": "string",
            "$default": {
                "$source": "argv",
                "index": 0
            }
        },
        "removeKarmaIfNoMoreKarmaTargets": {
            "type": "boolean",
            "description": "If this operation leaves no more Karma usage in the workspace, it will remove Karma and related dependencies",
            "default": true,
            "x-prompt": "Would you like to remove Karma and its related dependencies if there are no Karma projects remaining after this operation?"
        }
    }
}