UNPKG

nestx-schematics

Version:

another schematic collection with different style-set of official nestjs/nest

54 lines (53 loc) 1.36 kB
{ "$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": "" }, "directory": { "type": "string", "description": "Nest application destination directory" }, "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"] }