SyntaxError: JSON Erro de análise: identificador inesperado “objeto” (função anônima)

Eu não entendo o que deu errado ao analisar o arquivo:

{ "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");
        }
    });
}

Eu recebo erro:

SyntaxError: JSON Parse error: Unexpected identifier "object"

questionAnswers(2)

yourAnswerToTheQuestion