@schematics/schematics
Version:
Schematics specific to Angular
20 lines (19 loc) • 407 B
JSON
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsSchematicSchema",
"title": "Schematic Options Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The package name for the new schematic."
},
"author": {
"type": "string",
"description": "Author for the new schematic."
}
},
"required": [
"name"
]
}