Fork of pure JavaScript jsonlinter by Zach Carter where is used callback function instead of .parseError
property.
##Example of usage
var jsonlint = require('jsonlint');
var jsonToParse = '{
iAm: "JSON"
}'
jsonlint.parse(jsonToParse, function(errorMessage, hash) {
//Do whatever you want with returned error
})