{
  "$schema": "http://json-schema.org/schema",
  "id": "SchematicsApplication",
  "title": "Application Options Schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the application.",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use for the new project?"
    },
    "author": {
      "type": "string",
      "description": "application author.",
      "default": ""
    },
    "description": {
      "type": "string",
      "description": "application description.",
      "default": ""
    },
    "directory": {
      "type": "string",
      "description": "application destination directory"
    },
    "version": {
      "type": "string",
      "description": "application version.",
      "default": "0.0.1"
    },
    "language": {
      "type": "string",
      "description": "application language."
    },
    "packageManager": {
      "type": "string",
      "description": "application package manager."
    },
    "dependencies": {
      "type": "string",
      "description": "application dependencies."
    },
    "devDependencies": {
      "type": "string",
      "description": "application development dependencies."
    }
  },
  "required": ["name"]
}
