{
  "$schema": "http://json-schema.org/schema",
  "id": "BuildCommandOptions",
  "description": "Builds your app and places it into the output path (dist/ by default).",
  "$longDescription": "",

  "$aliases": [ "b" ],
  "$scope": "in",
  "$type": "architect",
  "$impl": "./build-impl#BuildCommand",

  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "The name of the project to build.",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    },
    "configuration": {
      "description": "Specify the configuration to use.",
      "type": "string",
      "aliases": ["c"]
    },
    "prod": {
      "description": "Flag to set configuration to 'production'.",
      "type": "boolean"
    }
  },
  "required": [
  ]
}