SyntaxError: Erreur d'analyse JSON: identificateur inattendu "object" (fonction anonyme)

Je ne comprends pas ce qui s'est passé lors de l'analyse du fichier:

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

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

Je reçois l'erreur:

SyntaxError: JSON Parse error: Unexpected identifier "object"

source d'informationauteur aspire89