{"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"keywords":["browser","useragent","user-agent","parser","ua","detection","ender","sniff"],"dist-tags":{"latest":"1.7.1"},"author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"description":"Lightweight browser detector","readme":"## Bowser\nA Browser detector. Because sometimes, there is no other way, and not even good modern browsers always provide good feature detection mechanisms.\n\n[![Build Status](https://travis-ci.org/lancedikson/bowser.svg?branch=master)](https://travis-ci.org/lancedikson/bowser)\n\nSo... it works like this:\n\n``` js\nif (bowser.msie && bowser.version <= 6) {\n  alert('Hello China');\n}\n```\n\n## 1.1.0 breaking changes\nWe don't save built script in the repo anymore. The main file (`src/bowser.js`) is available through NPM or Bower.\nAlso you can download minified file from [the release page](https://github.com/ded/bowser/releases).\n\n## 1.0.0 breaking changes\n`browser = require('bowser').browser;` becomes `bowser = require('bowser');`\n\n---\n\n## API\n\n### bowser`:Object`\nUse it to get object with detected flags of your current browser.\n\n### bowser._detect(ua `:String`)`:Object`\nUse it to get object with detected flags from User Agent string.\n\n### bowser.check(minVersions`:Object`, strictMode`:Boolean`, [ua]`:String`)`:Boolean`\nUse it to check if browser is supported. In default non-strict mode any browser family not present in `minVersions` will pass the check (like Chrome in the third call in the sample bellow). When strict mode is enabled then any not specified browser family in `minVersions` will cause `check` to return `false` (in the sample it is the fourth call, the last one).\n\n``` js\n/**\n * in case of using IE10\n */\nbowser.check({msie: \"11\"});  // true\nbowser.check({msie: \"9.0\"}); // false\n\n/**\n * specific user agent\n */ \nbowser.check({chrome: \"45\"}, window.navigator.userAgent); // true\n\n/**\n * but false in strict mode\n */\nbowser.check({chrome: \"45\"}, true, window.navigator.userAgent); // false\n```\n\n### bowser.compareVersions(versions`:Array<String>`)`:Number`\nUse it to compare two versions.\n\n``` js\nbowser.compareVersions(['9.0', '10']);\n// -1\n```\n\n### bowser.isUnsupportedBrowser(minVersions`:Object`, [strictMode]`:Boolean`, [ua]`:string`)`:Boolean`\nUse it to check if browser is unsupported.\n\n``` js\nbowser.isUnsupportedBrowser({msie: \"10\"}, window.navigator.userAgent);\n// true / false\n```\n\nSee more examples in [tests](test/test.js).\n\n---\n\n## Bowser Flags\nYour mileage may vary, but these flags should be set.  See Contributing below.\n\n``` js\nalert('Hello ' + bowser.name + ' ' + bowser.version);\n```\n\n### All detected browsers\nThese flags are set for all detected browsers:\n\n* `name` - A human readable name for this browser.  E.g. 'Chrome', ''\n* `version` - Version number for the browser.  E.g. '32.0'\n\nFor unknown browsers, Bowser makes a best guess from the UA string.  So, these may not be set.\n\n### Rendering engine flags\nIf detected, one of these flags may be set to true:\n\n  * `webkit` - Chrome 0-27, Android <4.4, iOs, BB, etc.\n  * `blink` - Chrome >=28, Android >=4.4, Opera, etc.\n  * `gecko` - Firefox, etc.\n  * `msie`  - IE <= 11\n  * `msedge` - IE > 11\n\nSafari, Chrome and some other minor browsers will report that they have `webkit` engines.\nFirefox and Seamonkey will report that they have `gecko` engines.\n\n``` js\nif (bowser.webkit) {\n  // do stuff with safari & chrome & opera & android & blackberry & webos & silk\n}\n```\n\n### Device flags\nIf detected, one of these flags may be set to true:\n\n  * `mobile` - All detected mobile OSes are additionally flagged `mobile`, **unless it's a tablet**\n  * `tablet` - If a tablet device is detected, the flag `tablet` is **set instead of `mobile`**.\n\n### Browser flags\nIf detected, one of these flags may be set to true.  The rendering engine flag is shown in []'s:\n\n  * `chrome` - [`webkit`|`blink`]\n  * `firefox` - [`gecko`]\n  * `msie`\n  * `msedge`\n  * `safari` - [`webkit`]\n  * `android` - native browser - [`webkit`|`blink`]\n  * `ios` - native browser - [`webkit`]\n  * `opera` - [`blink` if >=15]\n  * `samsungBrowser` - [`blink`]\n  * `phantom` - [`webkit`]\n  * `blackberry` - native browser - [`webkit`]\n  * `webos` - native browser - [`webkit`]\n  * `silk` - Amazon Kindle browser  - [`webkit`]\n  * `bada` - [`webkit`]\n  * `tizen` - [`webkit`]\n  * `seamonkey` - [`gecko`]\n  * `sailfish` - [`gecko`]\n  * `ucbrowser` — [`webkit`]\n  * `qupzilla` — [`webkit`]\n  * `vivaldi` — [`blink`]\n  * `sleipnir` — [`blink`]\n  * `kMeleon` — [`gecko`]\n\nFor all detected browsers the browser version is set in the `version` field.\n\n### OS Flags\nIf detected, one of these flags may be set to true:\n\n  * `mac`\n  * `windows` - other than Windows Phone\n  * `windowsphone`\n  * `linux` - other than `android`, `chromeos`, `webos`, `tizen`, and `sailfish`\n  * `chromeos`\n  * `android`\n  * `ios` - also sets one of `iphone`/`ipad`/`ipod`\n  * `blackberry`\n  * `firefoxos`\n  * `webos` - may also set `touchpad`\n  * `bada`\n  * `tizen`\n  * `sailfish`\n\n`osversion` may also be set:\n\n  * `osversion` - for Android, iOS, MacOS, Windows, Windows Phone, WebOS, Bada, and Tizen.  If included in UA string.\n\niOS is always reported as `ios` and additionally as `iphone`/`ipad`/`ipod`, whichever one matches best.\nIf WebOS device is an HP TouchPad the flag `touchpad` is additionally set.\n\n### Browser capability grading\nOne of these flags may be set:\n\n  * `a` - This browser has full capabilities\n  * `c` - This browser has degraded capabilities.  Serve simpler version\n  * `x` - This browser has minimal capabilities and is probably not well detected.\n\nThere is no `b`.  For unknown browsers, none of these flags may be set.\n\n### Ender Support\n\n`package.json`\n\n``` json\n\"dependencies\": {\n  \"bowser\": \"x.x.x\"\n}\n```\n\n``` js\nif (require('bowser').chrome) {\n  alert('Hello Silicon Valley')\n}\n```\n\n### Contributing\nIf you'd like to contribute a change to bowser, modify the files in `src/`, then run the following (you'll need node + npm installed):\n\n``` sh\n$ npm install\n$ make test\n```\n\nPlease do not check-in the built files `bowser.js` and `bowser.min.js` in pull requests.\n\n### Adding tests\nSee the list in `src/useragents.js` with example user agents and their expected bowser object.\n\nWhenever you add support for new browsers or notice a bug / mismatch, please update the list and\ncheck if all tests are still passing.\n\n### Similar Projects\n* [Kong](https://github.com/BigBadBleuCheese/Kong) - A C# port of Bowser.\n\n### License\nLicensed as MIT. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.\n","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"users":{"joakin":true,"ajduke":true,"iolo":true,"bret":true,"stephan.hoyer":true,"asmolyakov":true,"filipve":true,"mrdain":true,"takoba":true,"monjer":true,"mryongzhang":true,"satoru":true,"bsara":true,"laomu":true,"zhnoah":true},"bugs":{"url":"https://github.com/ded/bowser/issues"},"license":"MIT","versions":{"0.0.1":{"name":"bowser","description":"a browser detector","version":"0.0.1","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"@ded"},"repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"main":"./bowser.js","_id":"bowser@0.0.1","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"0.3.14","_nodeVersion":"v0.4.1","directories":{},"files":[""],"_defaultsLoaded":true,"dist":{"shasum":"69155a1b2273a8cfef4c030bd4aa43f7c9d03c61","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.0.1.tgz"}},"0.0.2":{"name":"bowser","description":"a browser detector","version":"0.0.2","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"@ded"},"repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"main":"./bowser.js","dependencies":{},"devDependencies":{},"_id":"bowser@0.0.2","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.1rc9","_nodeVersion":"v0.4.1","_defaultsLoaded":true,"dist":{"shasum":"9a14754d0ca6017f286e0c58bbd302ee8a09cb2c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.0.2.tgz"},"directories":{}},"0.0.3":{"name":"bowser","description":"a browser detector","version":"0.0.3","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"@ded"},"repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"main":"./bowser.js","dependencies":{},"devDependencies":{},"_id":"bowser@0.0.3","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.5.0-pre","_defaultsLoaded":true,"dist":{"shasum":"6c6adb2d969365b1058f77b34803561d2ffc22cd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.0.3.tgz"},"scripts":{},"directories":{}},"0.0.4":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.0.4","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"@ded"},"repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"main":"./bowser.js","dependencies":{},"devDependencies":{},"_id":"bowser@0.0.4","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.6","_nodeVersion":"v0.5.0-pre","_defaultsLoaded":true,"dist":{"shasum":"720794fd0f32f3204af946b6ffd9dbf8c90fa3d1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.0.4.tgz"},"scripts":{},"directories":{}},"0.0.5":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.0.5","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"@ded"},"repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"main":"./bowser.js","dependencies":{},"devDependencies":{},"_id":"bowser@0.0.5","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.6","_nodeVersion":"v0.5.0-pre","_defaultsLoaded":true,"dist":{"shasum":"d868f7112cc67a230ed9436b6d93e777e842c654","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.0.5.tgz"},"scripts":{},"directories":{}},"0.0.6":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.0.6","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"_npmJsonOpts":{"file":"/Users/dustin/.npm/bowser/0.0.6/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"bowser@0.0.6","dependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.27","_nodeVersion":"v0.4.11","_defaultsLoaded":true,"dist":{"shasum":"31cde610e746878e7453b1e20cd26cada05d1600","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.0.6.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.0.7":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.0.7","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"_npmJsonOpts":{"file":"/Users/dustin/.npm/bowser/0.0.7/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"bowser@0.0.7","dependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.27","_nodeVersion":"v0.4.11","_defaultsLoaded":true,"dist":{"shasum":"115c146f7c684a9c90b4a0ca9d0ce9a0b951c12c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.0.7.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.0.8":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.0.8","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"_npmJsonOpts":{"file":"/Users/diaz/.npm/bowser/0.0.8/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"bowser@0.0.8","dependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.27","_nodeVersion":"v0.4.11","_defaultsLoaded":true,"dist":{"shasum":"c99caa666e1fb5cdb902f9f4471da9771a2392e0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.0.8.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.0.9":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.0.9","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"_npmUser":{"name":"ded","email":"polvero@gmail.com"},"_id":"bowser@0.0.9","dependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.103","_nodeVersion":"v0.4.12","_defaultsLoaded":true,"dist":{"shasum":"5912ff44f638812d71c7bac7c38a4d72760badae","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.0.9.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.1.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.1.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"_npmUser":{"name":"ded","email":"polvero@gmail.com"},"_id":"bowser@0.1.0","dependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.0-beta-10","_nodeVersion":"v0.6.7","_defaultsLoaded":true,"dist":{"shasum":"f4f1ee1f331fdece9f28be980dceeef73d821131","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.1.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.2.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.2.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"git://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"_npmUser":{"name":"ded","email":"polvero@gmail.com"},"_id":"bowser@0.2.0","dependencies":{},"optionalDependencies":{},"engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.1.12","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"3a7174e8863b5a5ccb8297218764535c4dad54d4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.2.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.0","dist":{"shasum":"5b3eb2e4bb9501bbadfb4e82f7b2e7d991e32849","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.0.tgz"},"_from":".","_npmVersion":"1.2.24","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.1":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.1","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.1","dist":{"shasum":"5a72f0ff75fc5f6f7835a2033d00bab72ff9d279","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.1.tgz"},"_from":".","_npmVersion":"1.2.24","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.2":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.2","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.2","dist":{"shasum":"c2c1bd1d22c7cab9535442a80a61f8f968f61145","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.2.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.3":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.3","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.3","dist":{"shasum":"413a6d1d5e22afda6f1d17710386474a193fd7ef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.3.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.4":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.4","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.4","dist":{"shasum":"de62c5053c7b6edba7201bcfa373a5bb87fad642","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.4.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.5":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.5","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.5","dist":{"shasum":"dee4a156dd3d4944bbf80d6b9199012c0b621516","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.5.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.6":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.6","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.6","dist":{"shasum":"88ccdb18a383f46c9018d7374b268cb840010c1b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.6.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.7":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.7","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.7","dist":{"shasum":"ac5c0dcb1c8dbcf738abebb4eb648eb5aad0652a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.7.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.8":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.8","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.8","dist":{"shasum":"c7037ce50c6ea021d0e81d0b189796a3d0f0ba6a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.8.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.3.9":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.3.9","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.3.9","dist":{"shasum":"55914d3dcdfbd266c236a1f454ac18ddfe4d6c71","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.3.9.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.4.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.4.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.4.0","dist":{"shasum":"a5563e76c032b77325cc62c296e3077815e0aa93","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.4.0.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.5.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.5.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.5.0","dist":{"shasum":"b29c91ef1754ecba2beb54a15d583cf353adf070","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.5.0.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.6.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.6.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.6.0","dist":{"shasum":"613bd75db9c94f9691ec92637642b014a39ae191","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.6.0.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.7.1":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.7.1","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.7.1","dist":{"shasum":"0ad2067720df247617b2fe7b7618fd9628d0e13f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.7.1.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"directories":{}},"0.7.2":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.7.2","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"gitHead":"5a3d3766b9984ae0f03a1968fb929a7d7b942259","bugs":{"url":"https://github.com/ded/bowser/issues"},"_id":"bowser@0.7.2","scripts":{},"_shasum":"32e16783d598b2f85659fca993158af300fa0648","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"dist":{"shasum":"32e16783d598b2f85659fca993158af300fa0648","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.7.2.tgz"},"directories":{}},"0.7.3":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"0.7.3","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"e53c1db9ebfaab0081f35c8b6e23452495a7d813","_id":"bowser@0.7.3","_shasum":"4fc0cb4e0e2bdd9b394df0d2038c32c2cc2712c8","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}],"dist":{"shasum":"4fc0cb4e0e2bdd9b394df0d2038c32c2cc2712c8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-0.7.3.tgz"}},"1.0.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.0.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./bowser.js","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"149bbda9bce57dff35a8d20b2886b67faf4edc7b","_id":"bowser@1.0.0","_shasum":"0290420bfb88013155754e20fa0de5279bcd810a","_from":".","_npmVersion":"2.13.2","_nodeVersion":"0.12.4","_npmUser":{"name":"ded","email":"polvero@gmail.com"},"dist":{"shasum":"0290420bfb88013155754e20fa0de5279bcd810a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.0.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"}]},"1.1.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.1.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"32c86b878e21c286fc467d837abb5478aeab4c6c","_id":"bowser@1.1.0","_shasum":"b04e62f3dafb7682707893f1c9b848af6c72a114","_from":".","_npmVersion":"3.8.0","_nodeVersion":"4.2.4","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"b04e62f3dafb7682707893f1c9b848af6c72a114","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.1.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bowser-1.1.0.tgz_1462561291908_0.43347237072885036"}},"1.1.1":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.1.1","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"f98d32b47267b9b794b3ecd11a72bb33862c1f19","_id":"bowser@1.1.1","_shasum":"35a1646c7d223b289b6546b34c1d81b41907494a","_from":".","_npmVersion":"3.8.0","_nodeVersion":"4.2.4","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"35a1646c7d223b289b6546b34c1d81b41907494a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.1.1.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bowser-1.1.1.tgz_1462626154442_0.3460052842274308"}},"1.2.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.2.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"ca54003f294e2e8335af3b3cd2f3f0961325a058","_id":"bowser@1.2.0","_shasum":"1265a00e6c72fb159e38a353c5ea0a610c5ba60d","_from":".","_npmVersion":"3.8.0","_nodeVersion":"4.2.4","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"1265a00e6c72fb159e38a353c5ea0a610c5ba60d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.2.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bowser-1.2.0.tgz_1462780925884_0.14441232569515705"}},"1.3.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.3.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"14749ca2a0202477599fc220701cfb50d008d863","_id":"bowser@1.3.0","_shasum":"c5ae7f31eacc2aa959ead74baef49c9132333a3e","_from":".","_npmVersion":"3.8.0","_nodeVersion":"4.2.4","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"c5ae7f31eacc2aa959ead74baef49c9132333a3e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.3.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bowser-1.3.0.tgz_1463608914086_0.870342034380883"}},"1.4.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.4.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"b94bd674de8b6d0e4b153ef3315e7e5afabc1e49","_id":"bowser@1.4.0","_shasum":"25dd0839925392a93fa75cd82cb40db1f55f6835","_from":".","_npmVersion":"3.8.0","_nodeVersion":"4.2.4","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"25dd0839925392a93fa75cd82cb40db1f55f6835","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.4.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bowser-1.4.0.tgz_1467310533007_0.6345220622606575"}},"1.4.1":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.4.1","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"f12249c62d7c7a706de919e8c830906ce46b41c3","_id":"bowser@1.4.1","_shasum":"9214600ce4739e5c584fe3c283a4a937dffb77b4","_from":".","_npmVersion":"3.8.0","_nodeVersion":"4.2.4","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"9214600ce4739e5c584fe3c283a4a937dffb77b4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.4.1.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bowser-1.4.1.tgz_1467904725160_0.9836843644734472"}},"1.4.2":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.4.2","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"3cd6a0b81258ed8b76315d7148065f621607732d","_id":"bowser@1.4.2","_shasum":"aac8e58750cd56edb35dc05ee62655cd618097f9","_from":".","_npmVersion":"3.8.0","_nodeVersion":"4.2.4","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"aac8e58750cd56edb35dc05ee62655cd618097f9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.4.2.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bowser-1.4.2.tgz_1469531192425_0.8835226756054908"}},"1.4.3":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.4.3","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"59b9f55bee2662238553c65f3ce77b774be21fc8","_id":"bowser@1.4.3","_shasum":"77b874501a643d3aef525cade8fddad1c4cbbff2","_from":".","_npmVersion":"3.8.0","_nodeVersion":"4.2.4","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"77b874501a643d3aef525cade8fddad1c4cbbff2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.4.3.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bowser-1.4.3.tgz_1469613829406_0.28586852876469493"}},"1.4.4":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.4.4","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"246dedd43ce29072b8ca61a2e7989a94f8225456","_id":"bowser@1.4.4","_shasum":"ecf58f48d60006ffd79f3b51d3da26d65022dbe4","_from":".","_npmVersion":"3.10.5","_nodeVersion":"4.4.7","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"ecf58f48d60006ffd79f3b51d3da26d65022dbe4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.4.4.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bowser-1.4.4.tgz_1470857223879_0.8277182565070689"}},"1.4.5":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.4.5","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"f3b7ac26df7d5321bc02e7de81f8b4c966bbfa45","_id":"bowser@1.4.5","_shasum":"88bd953a4989f4695227b1f266ec635c33fd4b1b","_from":".","_npmVersion":"3.10.6","_nodeVersion":"4.4.7","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"88bd953a4989f4695227b1f266ec635c33fd4b1b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.4.5.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bowser-1.4.5.tgz_1472506035341_0.14405064284801483"}},"1.4.6":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.4.6","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"6f218f1ac736a80b7973b2faae5702319c910630","_id":"bowser@1.4.6","_shasum":"2be801851089a165d504f417ea6ddcacf774af43","_from":".","_npmVersion":"3.10.6","_nodeVersion":"4.4.7","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"2be801851089a165d504f417ea6ddcacf774af43","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.4.6.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bowser-1.4.6.tgz_1474315627291_0.8845490508247167"}},"1.5.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.5.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"2df607d457eff0b7f28c7b36c6ee581e1d111e0c","_id":"bowser@1.5.0","_shasum":"b97414bacbc631f19f1e2e11466566ec19324983","_from":".","_npmVersion":"3.10.9","_nodeVersion":"4.4.7","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"b97414bacbc631f19f1e2e11466566ec19324983","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.5.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bowser-1.5.0.tgz_1477905250072_0.10404467326588929"}},"1.6.0":{"name":"bowser","description":"a browser detector","keywords":["ender","browser","sniff","detection"],"version":"1.6.0","homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"e7df4c137f42dce0d46c3767095e31993098adcf","_id":"bowser@1.6.0","_shasum":"37fc387b616cb6aef370dab4d6bd402b74c5c54d","_from":".","_npmVersion":"3.10.9","_nodeVersion":"4.4.7","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"37fc387b616cb6aef370dab4d6bd402b74c5c54d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.6.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bowser-1.6.0.tgz_1480970734250_0.9638689782004803"}},"1.6.1":{"name":"bowser","version":"1.6.1","description":"Lightweight browser detector","keywords":["browser","useragent","user-agent","parser","ua","detection","ender","sniff"],"homepage":"https://github.com/ded/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"9b87b2f3af3a471a287ac7821a7cee75e562da3c","_id":"bowser@1.6.1","_shasum":"9157e9498f456e937173a2918f3b2161e5353eb3","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"9157e9498f456e937173a2918f3b2161e5353eb3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.6.1.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/bowser-1.6.1.tgz_1491337133637_0.10312988492660224"}},"1.7.0":{"name":"bowser","version":"1.7.0","description":"Lightweight browser detector","keywords":["browser","useragent","user-agent","parser","ua","detection","ender","sniff"],"homepage":"https://github.com/lancedikson/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"b33d7af0b549a63b54f4efb814e83ca2a6bd54bf","_id":"bowser@1.7.0","_shasum":"169de4018711f994242bff9a8009e77a1f35e003","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"169de4018711f994242bff9a8009e77a1f35e003","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.7.0.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bowser-1.7.0.tgz_1495133819993_0.18576633627526462"}},"1.7.1":{"name":"bowser","version":"1.7.1","description":"Lightweight browser detector","keywords":["browser","useragent","user-agent","parser","ua","detection","ender","sniff"],"homepage":"https://github.com/lancedikson/bowser","author":{"name":"Dustin Diaz","email":"dustin@dustindiaz.com","url":"http://dustindiaz.com"},"main":"./src/bowser.js","typings":"./typings.d.ts","repository":{"type":"git","url":"git+https://github.com/ded/bowser.git"},"devDependencies":{"smoosh":"*","mocha":"*"},"bugs":{"url":"https://github.com/ded/bowser/issues"},"directories":{"test":"test"},"scripts":{"test":"make test","prepublish":"make boosh"},"license":"MIT","gitHead":"6eb9ad39bdbd4ba2fe187a321e8dadad70700593","_id":"bowser@1.7.1","_shasum":"a4de8f18a1a0dc9531eb2a92a1521fb6a9ba96a5","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"lancedikson","email":"lancedikson@gmail.com"},"dist":{"shasum":"a4de8f18a1a0dc9531eb2a92a1521fb6a9ba96a5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bowser/-/bowser-1.7.1.tgz"},"maintainers":[{"name":"ded","email":"polvero@gmail.com"},{"name":"lancedikson","email":"lancedikson@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/bowser-1.7.1.tgz_1499934688206_0.22552167670801282"}}},"name":"bowser","time":{"modified":"2017-07-27T02:07:22.879Z","created":"2011-04-27T22:18:03.301Z","0.0.1":"2011-04-27T22:18:03.579Z","0.0.2":"2011-05-02T20:34:40.504Z","0.0.3":"2011-05-10T16:50:52.568Z","0.0.4":"2011-05-17T18:39:52.891Z","0.0.5":"2011-05-19T17:32:37.929Z","0.0.6":"2011-09-26T23:59:35.123Z","0.0.7":"2011-09-27T00:01:12.683Z","0.0.8":"2011-10-11T08:03:24.648Z","0.0.9":"2011-11-05T20:15:56.607Z","0.1.0":"2012-02-07T19:01:06.166Z","0.2.0":"2012-04-17T01:54:32.309Z","0.3.0":"2013-08-16T20:00:10.668Z","0.3.1":"2013-08-16T20:04:21.937Z","0.3.2":"2013-10-29T23:14:56.358Z","0.3.3":"2013-12-03T22:46:17.135Z","0.3.4":"2013-12-11T18:49:13.690Z","0.3.5":"2014-01-27T22:02:38.106Z","0.3.6":"2014-01-27T22:07:40.553Z","0.3.7":"2014-01-27T22:10:43.968Z","0.3.8":"2014-02-19T17:12:47.158Z","0.3.9":"2014-02-19T17:19:11.166Z","0.4.0":"2014-02-21T16:40:47.772Z","0.5.0":"2014-02-22T00:57:39.754Z","0.6.0":"2014-03-01T18:13:53.059Z","0.7.1":"2014-04-07T23:59:33.669Z","0.7.2":"2014-10-06T18:02:07.821Z","0.7.3":"2015-05-21T17:39:14.134Z","1.0.0":"2015-07-26T02:18:57.798Z","1.1.0":"2016-05-06T19:01:33.532Z","1.1.1":"2016-05-07T13:02:36.678Z","1.2.0":"2016-05-09T08:02:08.629Z","1.3.0":"2016-05-18T22:01:56.982Z","1.4.0":"2016-06-30T18:15:34.885Z","1.4.1":"2016-07-07T15:18:47.741Z","1.4.2":"2016-07-26T11:06:34.524Z","1.4.3":"2016-07-27T10:03:51.159Z","1.4.4":"2016-08-10T19:27:04.662Z","1.4.5":"2016-08-29T21:27:16.601Z","1.4.6":"2016-09-19T20:07:09.402Z","1.5.0":"2016-10-31T09:14:11.984Z","1.6.0":"2016-12-05T20:45:34.864Z","1.6.1":"2017-04-04T20:18:54.295Z","1.7.0":"2017-05-18T18:57:02.011Z","1.7.1":"2017-07-13T08:31:29.281Z"},"readmeFilename":"README.md","homepage":"https://github.com/lancedikson/bowser"}