is this a JSON-based media type (rfc6838)?
npm install is-json-media-typeis this a JSON-based media type (rfc6838)?
useful when checking whether or not to JSON.parse for a given Content-Type header.
tested with iana/media-types, (updated: October 2015)
with npm, run
```
npm install --save is-json-media-type
`
var isJsonMediaType = require('is-json-media-type')
isJsonMediaType('text/plain') // false
isJsonMediaType('application/json') // true
isJsonMediaType('application/ld+json') // true
``