18 lines
315 B
JSON
Executable file
18 lines
315 B
JSON
Executable file
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"required": [
|
|
"brew",
|
|
"brew-cask"
|
|
],
|
|
"properties": {
|
|
"brew": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"brew-cask": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
}
|
|
}
|
|
}
|