@angular-plugins/stryker
Version:
Stryker Plugin for Angular and Nx Repos
44 lines • 1.18 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"id": "stryker-project",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "argv",
"index": 0
}
},
"mutator": {
"type": "string",
"description": "The mutator plugin you want to use",
"default": "typescript"
},
"packageManager": {
"type": "string",
"description": "The mutator plugin you want to use",
"default": "yarn"
},
"testRunner": {
"type": "string",
"description": "The test runner that Stryker uses to run your tests",
"default": "jest"
},
"coverageAnalysis": {
"type": "string",
"description": "Specify which coverage analysis strategy you want to use",
"default": "off"
},
"reporters": {
"type": "array",
"items": {
"type": "string"
},
"description": "Set the reporters for stryker to use",
"default": ["html"]
}
},
"required": ["project"]
}