You can customize the way that JSON is formatted when it's written to files such as server.json and box.json as well as how it displays in the console when using commands such as server show and package show
string
String to use for indenting lines. Defaults to four spaces.
config set JSON.indent=" "string
String to use for line endings. Defaults to CRLF on Windows and LF on *nix. Pass the actual character to use, not a placeholder.
config set JSON.lineEnding=`#chr 10`boolean
Add space after each colon like "value": true instead of "value":true Defaults to false
config set JSON.spaceAfterColon=truestring
Specify a sort type to sort the keys of json objects: text or textnocase
config set JSON.sortKeys=textnocasestruct
A struct of colors to use when displaying JSON in the CLI. You can use any color name from the system-colors command or a direct ANSI escape sequence.
string
The color to use for constant values (true/false/null). Defaults to "red".
config set JSON.ANSIColors.constant=PaleTurquoise1string
The color to use for object key names. Defaults to "blue".
config set JSON.ANSIColors.key=Purple5string
The color to use for numbers. Defaults to "aqua".
config set JSON.ANSIColors.number=SeaGreen3string
The color to use for quoted string values. Defaults to "lime".
config set JSON.ANSIColors.string=MistyRose3