{
  "$schema": "http://json-schema.org/schema",
  "$id": "ngAdd",
  "title": "Add Essential JS 2 Angular packages",
  "type": "object",
  "properties": {
    "skipPackageJson": {
      "type": "boolean",
      "default": false,
      "description": "Do not add add Essential JS 2 Angular packages dependencies to package.json (e.g., --skipPackageJson)"
    },
    "modules": {
      "type": "string",
      "default": "",
      "description": "Add only specific Essential JS 2 modules to the app.module file (eg: --modules=slider, grid)"
    },
    "modulePath": {
      "type": "string",
      "default": "",
      "description": "Used to specify the path of the module file where the EJ2 module needs to be imported"
    },
    "theme": {
      "enum": [
        "material",
        "fabric",
        "bootstrap",
        "highcontrast"
      ],
      "default": "material",
      "description": "Used to change the theme that needs to be imported"
    }
  },
  "required": []
}
