@rxdi/schematics
Version:
50 lines (49 loc) • 1.25 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsNestApplication",
"title": "Nest Application Options Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the application.",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "What name would you like to use for the new project?"
},
"author": {
"type": "string",
"description": "Nest application author.",
"default": ""
},
"description": {
"type": "string",
"description": "Nest application description.",
"default": ""
},
"version": {
"type": "string",
"description": "Nest application version.",
"default": "0.0.1"
},
"language": {
"type": "string",
"description": "Nest application language."
},
"packageManager": {
"type": "string",
"description": "Nest application package manager."
},
"dependencies": {
"type": "string",
"description": "Nest application dependencies."
},
"devDependencies": {
"type": "string",
"description": "Nest application development dependencies."
}
},
"required": ["name"]
}