@o3r/core
Version:
Core of the Otter Framework
16 lines (15 loc) • 406 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"$id": "RunScriptBuilderSchema",
"title": "Run script builder",
"description": "Run a script defined in package.json",
"properties": {
"script": {
"type": "string",
"description": "A script name in the project's `package.json` file."
}
},
"additionalProperties": false,
"required": ["script"]
}