Alan Agius f6e1fd84a2 refactor(@angular-devkit/schematics-cli): move @schematics/schematics into this package
This change removes the need for the `@schematics/schematics` package and moves it inside `@angular-devkit/schematics-cli`.
2021-04-02 08:09:07 +02:00

22 lines
468 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.",
"$default": {
"$source": "argv",
"index": 0
}
},
"author": {
"type": "string",
"description": "Author for the new schematic."
}
},
"required": []
}