{
  "$schema": "http://json-schema.org/schema",
  "id": "Nx Cypress Project Schematics Schema",
  "title": "Create Cypress Configuration for the workspace",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "The name of the frontend project to test.",
      "$default": {
        "$source": "projectName"
      }
    },
    "name": {
      "type": "string",
      "description": "Name of the E2E Project",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use for the e2e project?"
    },
    "directory": {
      "type": "string",
      "description": "A directory where the project is placed"
    },
    "linter": {
      "description": "The tool to use for running lint checks.",
      "type": "string",
      "enum": ["eslint", "tslint"],
      "default": "tslint"
    }
  },
  "required": ["name"]
}
