{"maintainers":[{"email":"jonathanrichardong@gmail.com","name":"jongleberry"},{"email":"doug@somethingdoug.com","name":"dougwilson"}],"keywords":["content","type","checking"],"dist-tags":{"latest":"1.6.15"},"description":"Infer the content-type of a request.","readme":"# type-is\n\n[![NPM Version][npm-image]][npm-url]\n[![NPM Downloads][downloads-image]][downloads-url]\n[![Node.js Version][node-version-image]][node-version-url]\n[![Build Status][travis-image]][travis-url]\n[![Test Coverage][coveralls-image]][coveralls-url]\n\nInfer the content-type of a request.\n\n### Install\n\nThis is a [Node.js](https://nodejs.org/en/) module available through the\n[npm registry](https://www.npmjs.com/). Installation is done using the\n[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):\n\n```sh\n$ npm install type-is\n```\n\n## API\n\n```js\nvar http = require('http')\nvar typeis = require('type-is')\n\nhttp.createServer(function (req, res) {\n  var istext = typeis(req, ['text/*'])\n  res.end('you ' + (istext ? 'sent' : 'did not send') + ' me text')\n})\n```\n\n### type = typeis(request, types)\n\n`request` is the node HTTP request. `types` is an array of types.\n\n<!-- eslint-disable no-undef -->\n\n```js\n// req.headers.content-type = 'application/json'\n\ntypeis(req, ['json'])             // 'json'\ntypeis(req, ['html', 'json'])     // 'json'\ntypeis(req, ['application/*'])    // 'application/json'\ntypeis(req, ['application/json']) // 'application/json'\n\ntypeis(req, ['html']) // false\n```\n\n### typeis.hasBody(request)\n\nReturns a Boolean if the given `request` has a body, regardless of the\n`Content-Type` header.\n\nHaving a body has no relation to how large the body is (it may be 0 bytes).\nThis is similar to how file existence works. If a body does exist, then this\nindicates that there is data to read from the Node.js request stream.\n\n<!-- eslint-disable no-undef -->\n\n```js\nif (typeis.hasBody(req)) {\n  // read the body, since there is one\n\n  req.on('data', function (chunk) {\n    // ...\n  })\n}\n```\n\n### type = typeis.is(mediaType, types)\n\n`mediaType` is the [media type](https://tools.ietf.org/html/rfc6838) string. `types` is an array of types.\n\n<!-- eslint-disable no-undef -->\n\n```js\nvar mediaType = 'application/json'\n\ntypeis.is(mediaType, ['json'])             // 'json'\ntypeis.is(mediaType, ['html', 'json'])     // 'json'\ntypeis.is(mediaType, ['application/*'])    // 'application/json'\ntypeis.is(mediaType, ['application/json']) // 'application/json'\n\ntypeis.is(mediaType, ['html']) // false\n```\n\n### Each type can be:\n\n- An extension name such as `json`. This name will be returned if matched.\n- A mime type such as `application/json`.\n- A mime type with a wildcard such as `*/*` or `*/json` or `application/*`. The full mime type will be returned if matched.\n- A suffix such as `+json`. This can be combined with a wildcard such as `*/vnd+json` or `application/*+json`. The full mime type will be returned if matched.\n\n`false` will be returned if no type matches or the content type is invalid.\n\n`null` will be returned if the request does not have a body.\n\n## Examples\n\n### Example body parser\n\n```js\nvar express = require('express')\nvar typeis = require('type-is')\n\nvar app = express()\n\napp.use(function bodyParser (req, res, next) {\n  if (!typeis.hasBody(req)) {\n    return next()\n  }\n\n  switch (typeis(req, ['urlencoded', 'json', 'multipart'])) {\n    case 'urlencoded':\n      // parse urlencoded body\n      throw new Error('implement urlencoded body parsing')\n    case 'json':\n      // parse json body\n      throw new Error('implement json body parsing')\n    case 'multipart':\n      // parse multipart body\n      throw new Error('implement multipart body parsing')\n    default:\n      // 415 error code\n      res.statusCode = 415\n      res.end()\n      break\n  }\n})\n```\n\n## License\n\n[MIT](LICENSE)\n\n[npm-image]: https://img.shields.io/npm/v/type-is.svg\n[npm-url]: https://npmjs.org/package/type-is\n[node-version-image]: https://img.shields.io/node/v/type-is.svg\n[node-version-url]: https://nodejs.org/en/download/\n[travis-image]: https://img.shields.io/travis/jshttp/type-is/master.svg\n[travis-url]: https://travis-ci.org/jshttp/type-is\n[coveralls-image]: https://img.shields.io/coveralls/jshttp/type-is/master.svg\n[coveralls-url]: https://coveralls.io/r/jshttp/type-is?branch=master\n[downloads-image]: https://img.shields.io/npm/dm/type-is.svg\n[downloads-url]: https://npmjs.org/package/type-is\n","repository":{"type":"git","url":"git+https://github.com/jshttp/type-is.git"},"users":{"parroit":true,"iwill":true,"goodseller":true,"simplyianm":true,"flyslow":true,"jamescostian":true,"kparkov":true,"yash3492":true,"moimikey":true,"thiagoh":true,"konamgil":true,"ubi":true,"x4devs":true,"snowdream":true,"mojaray2k":true,"makediff":true,"shanewholloway":true,"rbecheras":true},"bugs":{"url":"https://github.com/jshttp/type-is/issues"},"license":"MIT","versions":{"1.0.0":{"name":"type-is","description":"Infer the content type if a request","version":"1.0.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/expressjs/type-is.git"},"bugs":{"url":"https://github.com/expressjs/type-is/issues"},"dependencies":{"mime":"~1.2.11"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"make test"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.0.0","dist":{"shasum":"4ff424e97349a1ee1910b4bfc488595ecdc443fc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.0.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"directories":{}},"1.0.1":{"name":"type-is","description":"Infer the content type if a request","version":"1.0.1","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/type-is"},"dependencies":{"mime":"~1.2.11"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha --require should --reporter spec"},"bugs":{"url":"https://github.com/expressjs/type-is/issues"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.0.1","dist":{"shasum":"ae09d93953c7846f5c083192837575ab363408f1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.0.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"}],"directories":{}},"1.1.0":{"name":"type-is","description":"Infer the content type if a request","version":"1.1.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/type-is"},"dependencies":{"mime":"~1.2.11"},"devDependencies":{"mocha":"*","should":"*"},"scripts":{"test":"mocha --require should --reporter spec --bail"},"bugs":{"url":"https://github.com/expressjs/type-is/issues"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.1.0","dist":{"shasum":"d0245ec8b2676668d59dd0cf3255060676a57db6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.1.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"}],"directories":{}},"1.2.0":{"name":"type-is","description":"Infer the content type if a request","version":"1.2.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/type-is"},"dependencies":{"mime":"1.2.11"},"devDependencies":{"mocha":"*","should":"*"},"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --require should --reporter spec --bail"},"bugs":{"url":"https://github.com/expressjs/type-is/issues"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.2.0","dist":{"shasum":"a9aaa3f2014850d4813663f6c714cf6318195138","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.2.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"directories":{}},"1.2.1":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.2.1","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/type-is"},"dependencies":{"mime-types":"1.0.0"},"devDependencies":{"mocha":"*","should":"*"},"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --require should --reporter spec --bail"},"bugs":{"url":"https://github.com/expressjs/type-is/issues"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.2.1","_shasum":"73d448080a4f1dd18acb1eefff62968c5b5d54a2","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"73d448080a4f1dd18acb1eefff62968c5b5d54a2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.2.1.tgz"},"directories":{}},"1.2.2":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.2.2","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/type-is"},"dependencies":{"mime-types":"1.0.0"},"devDependencies":{"mocha":"*","should":"*"},"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --require should --reporter spec --bail"},"bugs":{"url":"https://github.com/expressjs/type-is/issues"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.2.2","dist":{"shasum":"dfdbf7cffa57cea0f9b1b55b96f629454e0eee97","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.2.2.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"directories":{}},"1.3.0":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.3.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/type-is"},"dependencies":{"media-typer":"0.2.0","mime-types":"1.0.0"},"devDependencies":{"istanbul":"0.2.10","mocha":"*","should":"*"},"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --require should --reporter spec --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/"},"bugs":{"url":"https://github.com/expressjs/type-is/issues"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.3.0","dist":{"shasum":"131df06aca1476419f95de3e38f2efef8b249c20","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.3.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"directories":{}},"1.3.1":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.3.1","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/expressjs/type-is"},"dependencies":{"media-typer":"0.2.0","mime-types":"1.0.0"},"devDependencies":{"istanbul":"0.2.10","mocha":"*","should":"*"},"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --require should --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"bugs":{"url":"https://github.com/expressjs/type-is/issues"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.3.1","dist":{"shasum":"a6789b5a52138289ade1ef8f6d9f2874ffd70b6b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.3.1.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"directories":{}},"1.3.2":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.3.2","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/expressjs/type-is"},"dependencies":{"media-typer":"0.2.0","mime-types":"~1.0.1"},"devDependencies":{"istanbul":"0.2.11","mocha":"*","should":"*"},"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --require should --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"gitHead":"d76790909638d4cf1785e09858db5576f91f710f","bugs":{"url":"https://github.com/expressjs/type-is/issues"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.3.2","_shasum":"4f2a5dc58775ca1630250afc7186f8b36309d1bb","_from":".","_npmVersion":"1.4.16","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"4f2a5dc58775ca1630250afc7186f8b36309d1bb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.3.2.tgz"},"directories":{}},"1.4.0":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.4.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/expressjs/type-is"},"dependencies":{"media-typer":"0.2.0","mime-types":"~2.0.0"},"devDependencies":{"istanbul":"~0.3.0","mocha":"1","should":"4"},"engines":{"node":">= 0.8"},"scripts":{"test":"mocha --require should --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"files":["index.js"],"keywords":["content","type","checking"],"gitHead":"f0483c28a704eaef3da9c0f8d9a2fc9dc6d50d3f","bugs":{"url":"https://github.com/expressjs/type-is/issues"},"homepage":"https://github.com/expressjs/type-is","_id":"type-is@1.4.0","_shasum":"de51d78a2ccb19a8fa2e137b06784f6b39a88059","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"de51d78a2ccb19a8fa2e137b06784f6b39a88059","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.4.0.tgz"},"directories":{}},"1.5.0":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.5.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.2.0","mime-types":"~2.0.0"},"devDependencies":{"istanbul":"~0.3.0","mocha":"1","should":"4"},"engines":{"node":">= 0.8"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --require should --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"1cff718285478905d97bbf6cf666e0ce1c0284e3","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.5.0","_shasum":"e3539711529c5ee4e7cd9f5bed27487cb819f823","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"e3539711529c5ee4e7cd9f5bed27487cb819f823","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.5.0.tgz"},"directories":{}},"1.5.1":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.5.1","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.1"},"devDependencies":{"istanbul":"~0.3.0","mocha":"1"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"74d33287453bf7c166f6410fc608c1c7588070ae","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.5.1","_shasum":"5c1e62d874f79199fb16b34d16972dba376ccbed","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"5c1e62d874f79199fb16b34d16972dba376ccbed","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.5.1.tgz"},"directories":{}},"1.5.2":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.5.2","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.2"},"devDependencies":{"istanbul":"~0.3.0","mocha":"1"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"53b2d3f2c0177ac89576055d327d543291d36879","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.5.2","_shasum":"8291bbe845a904acfaffd05a41fdeb234bfa9e5f","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"8291bbe845a904acfaffd05a41fdeb234bfa9e5f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.5.2.tgz"},"directories":{}},"1.5.3":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.5.3","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.3"},"devDependencies":{"istanbul":"~0.3.0","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"202b4823bcc0aeda3595c14a03fdcb2c60cb0ebf","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.5.3","_shasum":"b7fb92d0abc628393f10dd260932cca65fe9ff68","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"b7fb92d0abc628393f10dd260932cca65fe9ff68","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.5.3.tgz"},"directories":{}},"1.5.4":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.5.4","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.4"},"devDependencies":{"istanbul":"~0.3.2","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"d604e7a69ce986692e9f241e21b9abe6d4f77eb0","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.5.4","_shasum":"f2afe8635dcf2d159096202be6e120423fa19837","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"f2afe8635dcf2d159096202be6e120423fa19837","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.5.4.tgz"},"directories":{}},"1.5.5":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.5.5","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.7"},"devDependencies":{"istanbul":"0.3.5","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"b13dc3fa142ad60bea775181ba5f50364042691f","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.5.5","_shasum":"45248af57f96366d0326ea0868f6bc8607dc4b21","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"45248af57f96366d0326ea0868f6bc8607dc4b21","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.5.5.tgz"},"directories":{}},"1.5.6":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.5.6","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.8"},"devDependencies":{"istanbul":"0.3.5","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"18f74f0f51c066c1485344c2e8d88c86c00d3bea","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.5.6","_shasum":"5be39670ac699b4d0f59df84264cb05be1c9998b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"5be39670ac699b4d0f59df84264cb05be1c9998b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.5.6.tgz"},"directories":{}},"1.5.7":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.5.7","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.9"},"devDependencies":{"istanbul":"0.3.5","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"f4335cc563a98ee80366f04f67c50cef089ae803","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.5.7","_shasum":"b9368a593cc6ef7d0645e78b2f4c64cbecd05e90","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"b9368a593cc6ef7d0645e78b2f4c64cbecd05e90","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.5.7.tgz"},"directories":{}},"1.6.0":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.0","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.9"},"devDependencies":{"istanbul":"0.3.5","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"8386837f91cfbf9f21f02758dee36655a901e1c4","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.0","_shasum":"efcb9223fafad5a03be14d8f6c9e1785f2c0e7c3","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"efcb9223fafad5a03be14d8f6c9e1785f2c0e7c3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.0.tgz"},"directories":{}},"1.6.1":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.1","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.10"},"devDependencies":{"istanbul":"0.3.7","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"339a7df4d8fed268b0f12d0fdab91d39f88d6f4e","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.1","_shasum":"49addecb0f6831cbc1d34ba929f0f3a4f21b0f2e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"dist":{"shasum":"49addecb0f6831cbc1d34ba929f0f3a4f21b0f2e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.1.tgz"},"directories":{}},"1.6.2":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.2","author":{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"},"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.0.11"},"devDependencies":{"istanbul":"0.3.9","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"4e33e2fbb1f0daa6ec8c5444dbb60e44292ae314","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.2","_shasum":"694e83e5d110417e681cea278227f264ae406e33","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"694e83e5d110417e681cea278227f264ae406e33","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.2.tgz"},"directories":{}},"1.6.3":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.3","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.1"},"devDependencies":{"istanbul":"0.3.14","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"294dff1c93d2ccb9a56191d37e390a8d2ad02e6f","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.3","_shasum":"d87d201777f76dfc526ac202679715d41a28c580","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"d87d201777f76dfc526ac202679715d41a28c580","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.3.tgz"},"directories":{}},"1.6.4":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.4","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.2"},"devDependencies":{"istanbul":"0.3.17","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"0edac23cef38f02ded0e072af65a078865af5b66","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.4","_shasum":"d76fe92f0bcf7b0cf16b64d095e248f71079c318","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"d76fe92f0bcf7b0cf16b64d095e248f71079c318","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.4.tgz"},"directories":{}},"1.6.5":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.5","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.3"},"devDependencies":{"istanbul":"0.3.17","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"b5fd0918ecc05113d32dbb97b02bb18cb635b059","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.5","_shasum":"92129495c7b7563eaf923b447382c6c471f95de4","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"92129495c7b7563eaf923b447382c6c471f95de4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.5.tgz"},"directories":{}},"1.6.6":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.6","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.4"},"devDependencies":{"istanbul":"0.3.17","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"f2b12fce6172bf91f771d8898055d6efa0e30422","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.6","_shasum":"398799519b62360f55c3cd6c486294531975926c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"398799519b62360f55c3cd6c486294531975926c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.6.tgz"},"directories":{}},"1.6.7":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.7","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.5"},"devDependencies":{"istanbul":"0.3.18","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"f162e9e971c19d28c348bb9b9ef660d17fcf1ba0","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.7","_shasum":"5ec2bc7c7debc37f586d518c0747ab901f76bcec","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"5ec2bc7c7debc37f586d518c0747ab901f76bcec","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.7.tgz"},"directories":{}},"1.6.8":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.8","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.6"},"devDependencies":{"istanbul":"0.3.19","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"6c93143cead7c596072133491b84f03a05403d3e","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.8","_shasum":"3bac8c0c852754c855143e206d4a16e908bf0315","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"3bac8c0c852754c855143e206d4a16e908bf0315","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.8.tgz"},"directories":{}},"1.6.9":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.9","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.7"},"devDependencies":{"istanbul":"0.3.21","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"2f5999d6f2d88f2f36eeb1e8db78c2ec43fdbf13","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.9","_shasum":"87f3e88b92ff5ac30fbc1acf9a9d00cbc38b3d7a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"87f3e88b92ff5ac30fbc1acf9a9d00cbc38b3d7a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.9.tgz"},"directories":{}},"1.6.10":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.10","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.8"},"devDependencies":{"istanbul":"0.4.1","mocha":"~1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"072de04e5c6bd4a3dd089dbd70ec2b1d505625a9","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.10","_shasum":"d27e995b20d8c2a543f3420573f690a3929fd75a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"mscdex","email":"mscdex@mscdex.net"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"d27e995b20d8c2a543f3420573f690a3929fd75a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.10.tgz"},"directories":{}},"1.6.11":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.11","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.9"},"devDependencies":{"istanbul":"0.4.2","mocha":"1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"8e60e3e78aef84928e0e6c09da950f6950adcdd2","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.11","_shasum":"42ecde7970f2363738b986c0351efba5aa531648","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"ritch","email":"skawful@gmail.com"}],"dist":{"shasum":"42ecde7970f2363738b986c0351efba5aa531648","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.11.tgz"},"directories":{}},"1.6.12":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.12","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.10"},"devDependencies":{"istanbul":"0.4.2","mocha":"1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"7ba49c0ccc8e34f4321768c0b13c2ebcccaae28c","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.12","_shasum":"0352a9dfbfff040fe668cc153cc95829c354173e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"dist":{"shasum":"0352a9dfbfff040fe668cc153cc95829c354173e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.12.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/type-is-1.6.12.tgz_1456726142464_0.8247741810046136"},"directories":{}},"1.6.13":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.13","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jshttp/type-is.git"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.11"},"devDependencies":{"eslint":"2.10.2","eslint-config-standard":"5.3.1","eslint-plugin-promise":"1.1.0","eslint-plugin-standard":"1.3.2","istanbul":"0.4.3","mocha":"1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"lint":"eslint **/*.js","test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"88c47523fff910343b3ca7d4928dad40f21ea6cd","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is#readme","_id":"type-is@1.6.13","_shasum":"6e83ba7bc30cd33a7bb0b7fb00737a2085bf9d08","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"dist":{"shasum":"6e83ba7bc30cd33a7bb0b7fb00737a2085bf9d08","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.13.tgz"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/type-is-1.6.13.tgz_1463622049206_0.9134831207338721"},"directories":{}},"1.6.14":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.14","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"https://github.com/jshttp/type-is"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.13"},"devDependencies":{"eslint":"2.10.2","eslint-config-standard":"5.3.1","eslint-plugin-promise":"1.1.0","eslint-plugin-standard":"1.3.2","istanbul":"0.4.5","mocha":"1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"lint":"eslint .","test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"f88151e69d91c5ed42e29dea78f5566403a5a7ad","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is","_id":"type-is@1.6.14","_shasum":"e219639c17ded1ca0789092dd54a03826b817cb2","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"dist":{"shasum":"e219639c17ded1ca0789092dd54a03826b817cb2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.14.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/type-is-1.6.14.tgz_1479517858770_0.4908413903322071"},"directories":{}},"1.6.15":{"name":"type-is","description":"Infer the content-type of a request.","version":"1.6.15","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/jshttp/type-is.git"},"dependencies":{"media-typer":"0.3.0","mime-types":"~2.1.15"},"devDependencies":{"eslint":"3.19.0","eslint-config-standard":"7.1.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-promise":"3.5.0","eslint-plugin-standard":"2.1.1","istanbul":"0.4.5","mocha":"1.21.5"},"engines":{"node":">= 0.6"},"files":["LICENSE","HISTORY.md","index.js"],"scripts":{"lint":"eslint --plugin markdown --ext js,md .","test":"mocha --reporter spec --check-leaks --bail test/","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"},"keywords":["content","type","checking"],"gitHead":"9e88be851cc628364ad8842433dce32437ea4e73","bugs":{"url":"https://github.com/jshttp/type-is/issues"},"homepage":"https://github.com/jshttp/type-is#readme","_id":"type-is@1.6.15","_shasum":"cab10fb4909e441c82842eafe1ad646c81804410","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.7.3","_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"dist":{"shasum":"cab10fb4909e441c82842eafe1ad646c81804410","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/type-is/-/type-is-1.6.15.tgz"},"maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/type-is-1.6.15.tgz_1491016789014_0.6958203655667603"},"directories":{}}},"name":"type-is","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"time":{"modified":"2017-07-25T10:23:12.664Z","created":"2013-12-28T00:06:19.362Z","1.0.0":"2013-12-28T00:06:19.362Z","1.0.1":"2014-03-30T07:59:36.618Z","1.1.0":"2014-04-13T00:23:29.651Z","1.2.0":"2014-05-12T03:30:58.338Z","1.2.1":"2014-06-04T04:37:46.796Z","1.2.2":"2014-06-20T01:21:35.783Z","1.3.0":"2014-06-20T02:04:10.178Z","1.3.1":"2014-06-20T03:04:57.712Z","1.3.2":"2014-06-25T01:04:21.979Z","1.4.0":"2014-09-02T08:46:55.515Z","1.5.0":"2014-09-05T19:49:01.787Z","1.5.1":"2014-09-08T06:33:30.713Z","1.5.2":"2014-09-29T05:30:21.355Z","1.5.3":"2014-11-09T22:46:49.093Z","1.5.4":"2014-12-11T02:42:44.888Z","1.5.5":"2014-12-31T05:26:13.133Z","1.5.6":"2015-01-30T05:31:55.125Z","1.5.7":"2015-02-10T05:35:50.380Z","1.6.0":"2015-02-13T03:55:36.313Z","1.6.1":"2015-03-14T04:20:19.211Z","1.6.2":"2015-05-11T05:52:18.626Z","1.6.3":"2015-06-08T18:58:33.938Z","1.6.4":"2015-07-02T01:22:52.689Z","1.6.5":"2015-07-17T03:36:46.181Z","1.6.6":"2015-07-31T17:12:11.577Z","1.6.7":"2015-08-20T18:16:35.954Z","1.6.8":"2015-09-04T14:57:13.431Z","1.6.9":"2015-09-28T04:16:01.110Z","1.6.10":"2015-12-01T19:07:05.618Z","1.6.11":"2016-01-30T05:09:52.834Z","1.6.12":"2016-02-29T06:09:05.369Z","1.6.13":"2016-05-19T01:40:52.083Z","1.6.14":"2016-11-19T01:11:00.743Z","1.6.15":"2017-04-01T03:19:49.693Z"},"readmeFilename":"README.md","homepage":"https://github.com/jshttp/type-is#readme"}