angular-crud
Version:
Generate CRUD applications with Angular, the CLI, and Schematics
56 lines (54 loc) • 1.25 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "AngularCRUD",
"title": "Angular CRUD Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"$default": {
"$source": "argv",
"index": 0
}
},
"project": {
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "projectName"
}
},
"path": {
"type": "string",
"format": "path",
"description": "The path to create the component.",
"visible": false
},
"appRoot": {
"type": "string"
},
"sourceDir": {
"type": "string",
"default": "src"
},
"module": {
"type": "string",
"description": "The declaring module.",
"alias": "m"
},
"export": {
"type": "boolean",
"default": false,
"description": "Export component from module?"
},
"model": {
"type": "string",
"default": "model.json",
"description": "Model describing the crud form"
},
"style": {
"type": "string",
"default": "paper-dashboard"
}
}
}