2023-05-09 12:28:52 -04:00

39 lines
1.1 KiB
JSON

{
"name": "init",
"factory": "./src/generators/init/init#detoxInitGenerator",
"schema": {
"$schema": "http://json-schema.org/schema",
"title": "Add Detox Schematics",
"description": "Add Detox Schematics.",
"type": "object",
"properties": {
"skipFormat": {
"description": "Skip formatting files.",
"type": "boolean",
"default": false,
"x-priority": "internal"
},
"skipPackageJson": {
"type": "boolean",
"default": false,
"description": "Do not add dependencies to `package.json`.",
"x-priority": "internal"
},
"framework": {
"type": "string",
"description": "App framework to test",
"enum": ["react-native", "expo"],
"default": "react-native"
}
},
"required": [],
"presets": []
},
"description": "Initialize the `@nrwl/detox` plugin.",
"hidden": true,
"implementation": "/packages/detox/src/generators/init/init#detoxInitGenerator.ts",
"aliases": [],
"path": "/packages/detox/src/generators/init/schema.json",
"type": "generator"
}