mili
Version:
Scaffolding with continuous control over the development of the project.
69 lines (68 loc) • 1.26 kB
JSON
{
"type": "object",
"required": [
"engines"
],
"properties": {
"version": {
"type": "string"
},
"engines": {
"type": "array",
"items": {
"type": "string"
}
},
"extends": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"required": [
"template"
],
"properties": {
"template": {
"type": "string"
},
"version": {
"type": "string"
},
"answers": {},
"when": {}
}
}
]
}
},
"loaders": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"options": {
"type": "object",
"additionalProperties": true
}
}
}
]
}
}
}
}