@sdetweil Actualy JSON requires quotation of the key and of the value (if the value is a string)
Example of a JSON file:
{
    "string": "This is a string",
    "bool": true,
    "int", 1,
    "float": 3.14,
    "arrayOfStrings": [
        "string1",
        "string2"
    ],
    "arrayOfInts": [
        1,
        2
    ]
}
The same can be used in a Javascript file, but as an object. You can also throw away the quotation of the keys.