SyntaxError: error de JSON Parse: identificador inesperado "objeto" (función anónima)

No entiendo lo que salió mal al analizar el archivo:

{ "t": -9.30, "p": 728.11, "h": 87.10 }

código javascript:

<script type="text/javascript">
function check() {
    $.get("http://....file.json", function(response, status, xhr) {
        if (status == "success") {
            var json = JSON.parse(response);
            $("#temp").html(json.t + "&deg;");
            $("#pressure").html(json.p + " mm hg");
        }
        if (status == "error") {
            $("#temp").html("error");
        }
    });
}

Recibo error:

SyntaxError: JSON Parse error: Unexpected identifier "object"

Respuestas a la pregunta(2)

Su respuesta a la pregunta