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.
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.
boolean
Add space after each colon like "value": true
instead of "value":true
Defaults to false
string
Specify a sort type to sort the keys of json objects: text
or textnocase
struct
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".
string
The color to use for object key names. Defaults to "blue".
string
The color to use for numbers. Defaults to "aqua".
string
The color to use for quoted string values. Defaults to "lime".