{
  "$schema": "http://json-schema.org/schema",
  "$id": "xplatIonicAngularApp",
  "title": "Create an Ionic Angular app",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the app.",
      "alias": "n",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like for this app?"
    },
    "prefix": {
      "type": "string",
      "description": "The prefix to apply to generated selectors.",
      "alias": "p"
    },
    "directory": {
      "description": "The directory of the new app.",
      "type": "string",
      "x-prompt": "In which directory should the app be generated?"
    },
    "groupByName": {
      "description": "Group by app name (appname-platform) instead of the default (platform-appname)",
      "type": "boolean",
      "default": false
    },
    "npmScope": {
      "type": "string",
      "description": "The npm scope to use.",
      "alias": "wn"
    },
    "useXplat": {
      "description": "Generate xplat supporting architecture",
      "type": "boolean",
      "default": true,
      "x-prompt": "Use xplat supporting architecture?"
    },
    "skipInstall": {
      "type": "boolean",
      "description": "Skip installing dependencies.",
      "default": false
    },
    "skipFormat": {
      "description": "Skip formatting files",
      "type": "boolean",
      "default": false
    }
  },
  "required": []
}
