34 lines
942 B
JSON

{
"name": "init",
"factory": "./src/generators/init/init#initGenerator",
"schema": {
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"$id": "NxExpressInit",
"title": "Init Express Plugin",
"description": "Init Express Plugin.",
"type": "object",
"properties": {
"unitTestRunner": {
"description": "Adds the specified unit test runner.",
"type": "string",
"enum": ["jest", "none"],
"default": "jest"
},
"skipFormat": {
"description": "Skip formatting files.",
"type": "boolean",
"default": false
}
},
"required": [],
"presets": []
},
"description": "Initialize the `@nrwl/express` plugin.",
"aliases": ["ng-add"],
"hidden": true,
"implementation": "/packages/express/src/generators/init/init#initGenerator.ts",
"path": "/packages/express/src/generators/init/schema.json",
"type": "generator"
}