schema.json 749 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "$schema": "http://json-schema.org/schema",
  3. "$id": "top-nav",
  4. "title": "Top Navigation Layout",
  5. "type": "object",
  6. "properties": {
  7. "project": {
  8. "type": "string",
  9. "description": "The name of the project.",
  10. "$default": {
  11. "$source": "projectName"
  12. }
  13. },
  14. "style": {
  15. "description": "The file extension or preprocessor to use for style files.",
  16. "type": "string",
  17. "default": "css",
  18. "enum": [
  19. "css",
  20. "scss",
  21. "sass",
  22. "less",
  23. "styl"
  24. ]
  25. },
  26. "prefix": {
  27. "type": "string",
  28. "format": "html-selector",
  29. "description": "A prefix to apply to generated selectors.",
  30. "default": "app",
  31. "alias": "p"
  32. }
  33. }
  34. }