{"maintainers":[{"email":"buryak.ivan@yandex.ru","name":"11bit"},{"email":"andrey@sitnik.ru","name":"ai"}],"keywords":["caniuse","browsers"],"dist-tags":{"latest":"2.3.2"},"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","readme":"# Browserslist\n\n<img align=\"right\" width=\"100\" height=\"100\"\n     src=\"http://ai.github.io/browserslist/logo.svg\"\n     title=\"Browserslist logo by Anton Lovchikov\">\n\nLibrary to share supported browsers list between different front-end tools.\nIt is used in:\n\n* [Autoprefixer]\n* [babel-preset-env] (no config support, only tool option)\n* [eslint-plugin-compat]\n* [stylelint-no-unsupported-browser-features]\n* [postcss-normalize]\n\nAll tools that rely on Browserslist will find its config automatically,\nwhen you add the following to `package.json`:\n\n```json\n{\n  \"browserslist\": [\n    \"> 1%\",\n    \"last 2 versions\"\n  ]\n}\n```\n\nOr in `.browserslistrc` config:\n\n```yaml\n# Browsers that we support\n\n> 1%\nLast 2 versions\nIE 10 # sorry\n```\n\nDevelopers set browsers list in queries like `last 2 version`\nto be free from updating browser versions manually.\nBrowserslist will use [Can I Use] data for this queries.\n\nBrowserslist will take browsers queries from tool option,\n`browserslist` config, `.browserslistrc` config,\n`browserslist` section in `package.json` or environment variables.\n\nYou can test Browserslist queries in [online demo].\n\n<a href=\"https://evilmartians.com/?utm_source=browserslist\">\n  <img src=\"https://evilmartians.com/badges/sponsored-by-evil-martians.svg\"\n    alt=\"Sponsored by Evil Martians\"\n    width=\"236\"\n    height=\"54\"\n  \\>\n</a>\n\n[stylelint-no-unsupported-browser-features]: https://github.com/ismay/stylelint-no-unsupported-browser-features\n[eslint-plugin-compat]:                      https://github.com/amilajack/eslint-plugin-compat\n[babel-preset-env]:                          https://github.com/babel/babel-preset-env\n[postcss-normalize]:                         https://github.com/jonathantneal/postcss-normalize\n[Autoprefixer]:                              https://github.com/postcss/autoprefixer\n[online demo]:                               http://browserl.ist/\n[Can I Use]:                                 http://caniuse.com/\n\n## Queries\n\nBrowserslist will use browsers query from one of this sources:\n\n1. Tool options. For example `browsers` option in Autoprefixer.\n2. `BROWSERSLIST` environment variable.\n3. `browserslist` config file in current or parent directories.\n3. `.browserslistrc` config file in current or parent directories.\n4. `browserslist` key in `package.json` file in current or parent directories.\n5. If the above methods did not produce a valid result\n   Browserslist will use defaults: `> 1%, last 2 versions, Firefox ESR`.\n\nWe recommend to write queries in `package.json`.\n\nYou can specify the versions by queries (case insensitive):\n\n* `last 2 versions`: the last 2 versions for each browser.\n* `last 2 Chrome versions`: the last 2 versions of Chrome browser.\n* `> 5%` or `>= 5%`: versions selected by global usage statistics.\n* `> 5% in US`: uses USA usage statistics. It accepts [two-letter country code].\n* `> 5% in alt-AS`: uses Asia region usage statistics. List of all region codes\n  can be found at [`caniuse-lite/data/regions`].\n* `> 5% in my stats`: uses [custom usage data].\n* `ie 6-8`: selects an inclusive range of versions.\n* `Firefox > 20`: versions of Firefox newer than 20.\n* `Firefox >= 20`: versions of Firefox newer than or equal to 20.\n* `Firefox < 20`: versions of Firefox less than 20.\n* `Firefox <= 20`: versions of Firefox less than or equal to 20.\n* `Firefox ESR`: the latest [Firefox ESR] version.\n* `iOS 7`: the iOS browser version 7 directly.\n* `unreleased versions`: alpha and beta versions of each browser.\n* `unreleased Chrome versions`: alpha and beta versions of Chrome browser.\n* `not ie <= 8`: exclude browsers selected before by previous queries.\n  You can add `not ` to any query.\n\nBrowserslist works with separated versions of browsers.\nYou should avoid queries like `Firefox > 0`.\n\nMultiple criteria are combined as a boolean `OR`. A browser version must match\nat least one of the criteria to be selected.\n\nAll queries are based on the [Can I Use] support table,\ne.g. `last 3 iOS versions` might select `8.4, 9.2, 9.3` (mixed major and minor),\nwhereas `last 3 Chrome versions` might select `50, 49, 48` (major only).\n\n[`caniuse-lite/data/regions`]: https://github.com/ben-eb/caniuse-lite/tree/master/data/regions\n[two-letter country code]:     http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements\n[custom usage data]:           #custom-usage-data\n[Can I Use]:                   http://caniuse.com/\n\n## Browsers\n\nNames are case insensitive:\n\n* `Android` for Android WebView.\n* `BlackBerry` or `bb` for Blackberry browser.\n* `Chrome` for Google Chrome.\n* `ChromeAndroid` or `and_chr` for Chrome for Android\n* `Edge` for Microsoft Edge.\n* `Electron` for Electron framework. It will be converted to Chrome version.\n* `Explorer` or `ie` for Internet Explorer.\n* `ExplorerMobile` or `ie_mob` for Internet Explorer Mobile.\n* `Firefox` or `ff` for Mozilla Firefox.\n* `FirefoxAndroid` or `and_ff` for Firefox for Android.\n* `iOS` or `ios_saf` for iOS Safari.\n* `Opera` for Opera.\n* `OperaMini` or `op_mini` for Opera Mini.\n* `OperaMobile` or `op_mob` for Opera Mobile.\n* `QQAndroid` or `and_qq` for QQ Browser for Android.\n* `Safari` for desktop Safari.\n* `Samsung` for Samsung Internet.\n* `UCAndroid` or `and_uc` for UC Browser for Android.\n\n### Electron\n\n[`electron-to-chromium`](https://www.npmjs.com/package/electron-to-chromium)\ncould return a compatible Browserslist query for your (major) Electron version:\n\n```js\nconst e2c = require('electron-to-chromium')\nautoprefixer({\n    browsers: e2c.electronToBrowserList('1.4') //=> \"Chrome >= 53\"\n})\n```\n\n## `package.json`\n\nIf you want to reduce config files in project root, you can specify\nbrowsers in `package.json` with `browserslist` key:\n\n```js\n{\n  \"private\": true,\n  \"dependencies\": {\n    \"autoprefixer\": \"^6.5.4\"\n  },\n  \"browserslist\": [\n    \"> 1%\",\n    \"last 2 versions\"\n  ]\n}\n```\n\n## Config File\n\nBrowserslist config should be named `.browserslistrc` or `browserslist`\nand have browsers queries split by a new line. Comments starts with `#` symbol:\n\n```yaml\n# Browsers that we support\n\n> 1%\nLast 2 versions\nIE 8 # sorry\n```\n\nBrowserslist will check config in every directory in `path`.\nSo, if tool process `app/styles/main.css`, you can put config to root,\n`app/` or `app/styles`.\n\nYou can specify direct path in `BROWSERSLIST_CONFIG` environment variables.\n\n## Environments\n\nYou can also specify different browser queries for various environments.\nBrowserslist will choose query according to `BROWSERSLIST_ENV` or `NODE_ENV`\nvariables. If none of them is declared, Browserslist will firstly look\nfor `development` queries and then use defaults.\n\nIn `package.json`:\n\n```js\n{\n  …\n  \"browserslist\": {\n    \"production\": [\n      \"last 2 version\",\n      \"ie 9\"\n    ],\n    \"development\": [\n      \"last 1 version\"\n    ]\n  }\n}\n```\n\nIn `.browserslistrc` config:\n\n```ini\n[production]\nlast 2 version\nie 9\n\n[development]\nlast 1 version\n```\n\n## Environment Variables\n\nIf some tool use Browserslist inside, you can change browsers settings\nby [environment variables]:\n\n* `BROWSERSLIST` with browsers queries.\n\n   ```sh\n  BROWSERSLIST=\"> 5%\" gulp css\n   ```\n\n* `BROWSERSLIST_CONFIG` with path to config file.\n\n   ```sh\n  BROWSERSLIST_CONFIG=./config/browserslist gulp css\n   ```\n\n* `BROWSERSLIST_ENV` with environments string.\n\n   ```sh\n  BROWSERSLIST_ENV=\"development\" gulp css\n   ```\n\n* `BROWSERSLIST_STATS` with path to the custom usage data\n  for `> 1% in my stats` query.\n\n   ```sh\n  BROWSERSLIST_STATS=./config/usage_data.json gulp css\n   ```\n\n* `BROWSERSLIST_DISABLE_CACHE` if you want to disable config reading cache.\n\n   ```sh\n  BROWSERSLIST_DISABLE_CACHE=1 gulp css\n   ```\n\n[environment variables]: https://en.wikipedia.org/wiki/Environment_variable\n\n## Custom Usage Data\n\nIf you have a website, you can query against the usage statistics of your site:\n\n1. Import your Google Analytics data into [Can I Use].\n   Press `Import…` button in Settings page.\n2. Open browser DevTools on [Can I Use] and paste this snippet\n   into the browser console:\n\n    ```js\n   var e=document.createElement('a');e.setAttribute('href', 'data:text/plain;charset=utf-8,'+encodeURIComponent(JSON.stringify(JSON.parse(localStorage['usage-data-by-id'])[localStorage['config-primary_usage']])));e.setAttribute('download','stats.json');document.body.appendChild(e);e.click();document.body.removeChild(e);\n    ```\n3. Save the data to a `browserslist-stats.json` file in your project.\n\nOf course, you can generate usage statistics file by any other method.\nFile format should be like:\n\n```js\n{\n  \"ie\": {\n    \"6\": 0.01,\n    \"7\": 0.4,\n    \"8\": 1.5\n  },\n  \"chrome\": {\n    …\n  },\n  …\n}\n```\n\nNote that you can query against your custom usage data\nwhile also querying against global or regional data.\nFor example, the query `> 1% in my stats, > 5% in US, 10%` is permitted.\n\n[Can I Use]: http://caniuse.com/\n\n## Webpack\n\nIf you plan to use Browserslist on client-side (e. g., tools like CodePen)\nBrowserslist could take big part of your bundle — about 150 KB.\n\nBut the biggest part of this size will be region usage statistics, which could\nbe useless for you. You can use `IgnorePlugin` in webpack to cut it:\n\n```js\nconst webpackConfig = {\n  …\n  plugins: [\n    new webpack.IgnorePlugin(/caniuse-lite\\/data\\/regions/)\n  ]\n}\n```\n\nThis plugin will reduce Browserslist size from 150 KB to 6 KB. But you loose\n`> 1% in US` queries support.\n\n## JS API\n\n```js\nvar browserslist = require('browserslist');\n\n// Your CSS/JS build tool code\nvar process = function (source, opts) {\n    var browsers = browserslist(opts.browsers, {\n        stats: opts.stats,\n        path:  opts.file,\n        env:   opts.env\n    });\n    // Your code to add features for selected browsers\n}\n```\n\nQueries can be a string `\"> 5%, last 1 version\"`\nor an array `['> 5%', 'last 1 version']`.\n\nIf a query is missing, Browserslist will look for a config file.\nYou can provide a `path` option (that can be a file) to find the config file\nrelatively to it.\n\nFor non-JS environment and debug purpose you can use CLI tool:\n\n```sh\nbrowserslist \"> 1%, last 2 versions\"\n```\n\n## Coverage\n\nYou can get total users coverage for selected browsers by JS API:\n\n```js\nbrowserslist.coverage(browserslist('> 1%')) //=> 81.4\n```\n\n```js\nbrowserslist.coverage(browserslist('> 1% in US'), 'US') //=> 83.1\n```\n\nOr by CLI:\n\n```sh\n$ browserslist --coverage \"> 1%\"\nThese browsers account for 81.4% of all users globally\n```\n\n```sh\n$ browserslist --coverage=US \"> 1% in US\"\nThese browsers account for 83.1% of all users in the US\n```\n\n## Internal caches\n\nBrowserslist caches the configuration it reads from `package.json` and\n`browserslist` files, as well as knowledge about the existence of files,\nfor the duration of the hosting process.\n\nTo clear these caches, use:\n\n```js\nbrowserslist.clearCaches();\n```\n\nTo disable the caching altogether, set the `BROWSERSLIST_DISABLE_CACHE`\nenvironment variable.\n","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"users":{"monolithed":true,"octetstream":true,"shanewholloway":true,"broxmgs":true,"staydan":true,"fabrianibrahim":true,"tdreitz":true,"monkeykode":true,"eshinn":true,"alexxnica":true,"oleg_tsyba":true},"bugs":{"url":"https://github.com/ai/browserslist/issues"},"license":"MIT","versions":{"0.1.0":{"name":"browserslist","version":"0.1.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000032 "},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.0","gulp-mocha":"2.0.0","mocha":"2.0.1","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"768d5b84659e8c9d27ac48d94c554ec89914667e","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist","_id":"browserslist@0.1.0","_shasum":"b566254ca06832bd3326f1559a2361fed92bd691","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"b566254ca06832bd3326f1559a2361fed92bd691","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.1.0.tgz"},"directories":{}},"0.1.1":{"name":"browserslist","version":"0.1.1","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000043"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.0","gulp-mocha":"2.0.0","mocha":"2.1.0","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"a31977718ec08024c87ead8f4cfae694ca0179d5","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist","_id":"browserslist@0.1.1","_shasum":"279e955e6e00afcfc4dcc6160d79aea44db0645c","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.33","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"279e955e6e00afcfc4dcc6160d79aea44db0645c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.1.1.tgz"},"directories":{}},"0.1.2":{"name":"browserslist","version":"0.1.2","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000048"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.0","gulp-mocha":"2.0.0","mocha":"2.1.0","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"da97ec2e9fb1f984f94460f704fb439212bac6b0","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist","_id":"browserslist@0.1.2","_shasum":"e27e20730dd426149bab8051073a41fc9d3cf238","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.33","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"e27e20730dd426149bab8051073a41fc9d3cf238","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.1.2.tgz"},"directories":{}},"0.1.3":{"name":"browserslist","version":"0.1.3","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000054"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.0","gulp-mocha":"2.0.0","mocha":"2.1.0","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"0a1378994059af5fef338c473ded1bd69925c9e1","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist","_id":"browserslist@0.1.3","_shasum":"2f67975c24bb357b6b48b4bc46e7c39a1f0b3b5b","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.33","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"2f67975c24bb357b6b48b4bc46e7c39a1f0b3b5b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.1.3.tgz"},"directories":{}},"0.2.0":{"name":"browserslist","version":"0.2.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000054"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.0","gulp-mocha":"2.0.0","mocha":"2.1.0","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"c6b2e8770f7dace8e2ba0642bcd85aa5c923579e","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist","_id":"browserslist@0.2.0","_shasum":"e5b7cf311cccb70772cd22d4f61c7bb80523ecd2","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.33","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"e5b7cf311cccb70772cd22d4f61c7bb80523ecd2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.2.0.tgz"},"directories":{}},"0.3.0":{"name":"browserslist","version":"0.3.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000078"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.2","gulp-mocha":"2.0.0","mocha":"2.1.0","chai":"2.0.0","gulp":"3.8.11"},"scripts":{"test":"gulp"},"gitHead":"30c72632962409e532a9edc2fe698b9442ad8f4a","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist","_id":"browserslist@0.3.0","_shasum":"f4429e509b25e00c43d77bb60cc0be37292613f6","_from":".","_npmVersion":"2.5.0","_nodeVersion":"1.3.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"f4429e509b25e00c43d77bb60cc0be37292613f6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.3.0.tgz"},"directories":{}},"0.3.1":{"name":"browserslist","version":"0.3.1","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000081"},"devDependencies":{"jshint-stylish":"1.0.1","gulp-jshint":"1.9.2","gulp-mocha":"2.0.0","mocha":"2.1.0","chai":"2.1.0","gulp":"3.8.11"},"scripts":{"test":"gulp"},"gitHead":"54bb8ede1de4e654d40a8b0c9f3831366e64ee1a","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist","_id":"browserslist@0.3.1","_shasum":"d60dd16f4aa10087f18b4b19d6432f9f79bdc833","_from":".","_npmVersion":"2.6.0","_nodeVersion":"1.3.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"d60dd16f4aa10087f18b4b19d6432f9f79bdc833","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.3.1.tgz"},"directories":{}},"0.3.2":{"name":"browserslist","version":"0.3.2","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000113"},"devDependencies":{"gulp-eslint":"0.6.0","gulp-mocha":"2.0.1","mocha":"2.2.1","chai":"2.2.0","gulp":"3.8.11"},"scripts":{"test":"gulp"},"gitHead":"c901c0080dbb871a70408fbdc6070a2bb3602ad6","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist","_id":"browserslist@0.3.2","_shasum":"4e516ed1882086ff2479bab80cd164b3ae463545","_from":".","_npmVersion":"2.7.4","_nodeVersion":"1.6.3","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"4e516ed1882086ff2479bab80cd164b3ae463545","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.3.2.tgz"},"directories":{}},"0.3.3":{"name":"browserslist","version":"0.3.3","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000127"},"devDependencies":{"gulp-eslint":"0.9.0","gulp-mocha":"2.0.1","mocha":"2.2.4","chai":"2.2.0","gulp":"3.8.11"},"scripts":{"test":"gulp"},"gitHead":"611612d7edd1c3d545df9b713da71605219b698d","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist","_id":"browserslist@0.3.3","_shasum":"c21beb6b3d3c2492404084781113f39fc133f2c0","_from":".","_npmVersion":"2.7.4","_nodeVersion":"1.6.3","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"c21beb6b3d3c2492404084781113f39fc133f2c0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.3.3.tgz"},"directories":{}},"0.4.0":{"name":"browserslist","version":"0.4.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000153"},"devDependencies":{"gulp-eslint":"0.11.1","gulp-mocha":"2.0.1","mocha":"2.2.4","chai":"2.3.0","gulp":"3.8.11"},"scripts":{"test":"gulp"},"gitHead":"5c246dd5819a4eb0e1ef4a64cffe119d746fcfed","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@0.4.0","_shasum":"3bd4ab9199dc1b9150d4d6dba4d9d3aabbc86dd4","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"3bd4ab9199dc1b9150d4d6dba4d9d3aabbc86dd4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.4.0.tgz"},"directories":{}},"0.5.0":{"name":"browserslist","version":"0.5.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000214"},"devDependencies":{"gulp-eslint":"0.14.0","gulp-mocha":"2.1.2","mocha":"2.2.5","chai":"3.0.0","gulp":"3.9.0"},"scripts":{"test":"gulp"},"gitHead":"8335dfeb4aa229e555e5d569c9a32deb65c3a49f","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@0.5.0","_shasum":"b82882493637c342b66ad3182c919e1dac6d1724","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.3.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"b82882493637c342b66ad3182c919e1dac6d1724","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-0.5.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"directories":{}},"1.0.0":{"name":"browserslist","version":"1.0.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000281"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"gulp-eslint":"1.0.0","gulp-mocha":"2.1.3","mocha":"2.3.0","chai":"3.2.0","gulp":"3.9.0"},"scripts":{"test":"gulp"},"gitHead":"c621a34c8f636af583b984e91337e9f148fc8da1","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.0.0","_shasum":"678336f890f2b5bd3cdf2093150533dcbab3e185","_from":".","_npmVersion":"2.13.0","_nodeVersion":"2.4.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"678336f890f2b5bd3cdf2093150533dcbab3e185","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.0.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"directories":{}},"1.0.1":{"name":"browserslist","version":"1.0.1","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000335"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"gulp-eslint":"1.0.0","gulp-mocha":"2.1.3","mocha":"2.3.3","chai":"3.3.0","gulp":"3.9.0"},"scripts":{"test":"gulp"},"gitHead":"b277fc5ae313dff6d08c6249178066e49024018c","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.0.1","_shasum":"ef0dd708318cdf74325faeea59efec84d9464717","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"ef0dd708318cdf74325faeea59efec84d9464717","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.0.1.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"directories":{}},"1.1.0":{"name":"browserslist","version":"1.1.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000384"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"1.10.3","ava":"0.9.1"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"8dbdb047cd6e7747dc4bf65c8accc4cdbed3e8f7","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.1.0","_shasum":"a9ef42c2a51b51becefb3ce525ebee908a578bc5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"a9ef42c2a51b51becefb3ce525ebee908a578bc5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.1.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"directories":{}},"1.1.1":{"name":"browserslist","version":"1.1.1","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000387"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"1.10.3","ava":"0.9.1"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"32fab4c67ac100efd3a627b85a649b2fe8b9d65f","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.1.1","_shasum":"a333af8331160e1db14219ec1cc9b2da20cd4d37","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"a333af8331160e1db14219ec1cc9b2da20cd4d37","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.1.1.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"directories":{}},"1.1.2":{"name":"browserslist","version":"1.1.2","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000409"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"^1.0.0","eslint":"1.10.3","ava":"0.11.0"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"fb1b398e643023311106ee338c794fd2cf68a13a","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.1.2","_shasum":"ee71ae31fc87764da23816fc4f09d2346a31879b","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"ee71ae31fc87764da23816fc4f09d2346a31879b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.1.2.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/browserslist-1.1.2.tgz_1454918261800_0.5636692675761878"},"directories":{}},"1.1.3":{"name":"browserslist","version":"1.1.3","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000409"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"1.0.0","eslint":"1.10.3","ava":"0.11.0"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"8bdbb78615ddce86f8da61cbdc74bf7269d75c12","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.1.3","_shasum":"63e0f1fd68545a56eccafca55b7b722918ebfff5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"63e0f1fd68545a56eccafca55b7b722918ebfff5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.1.3.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/browserslist-1.1.3.tgz_1455136558288_0.13295826967805624"},"directories":{}},"1.2.0":{"name":"browserslist","version":"1.2.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000430"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"2.4.0","ava":"0.13.0"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"1ecc5d83b98e29d380e6bd082293f2c7ba35a14d","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.2.0","_shasum":"ef1b039b4cdd75f43382fa13a24f2a8d5da536d0","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"ef1b039b4cdd75f43382fa13a24f2a8d5da536d0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.2.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-1.2.0.tgz_1458109924612_0.1236549224704504"},"directories":{}},"1.3.0":{"name":"browserslist","version":"1.3.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000431"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"2.4.0","ava":"0.13.0"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"db9e839f743381a14202b4e7e134ac8ea745ca26","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.3.0","_shasum":"517bca7192a3b47fd1d71a92366bb2b30b50eed2","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"517bca7192a3b47fd1d71a92366bb2b30b50eed2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.3.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/browserslist-1.3.0.tgz_1458207500496_0.7776470873504877"},"directories":{}},"1.3.1":{"name":"browserslist","version":"1.3.1","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000444"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"2.6.0","ava":"0.13.0"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"19731d0c75b24e90968693bad92847320083b11d","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.3.1","_shasum":"6198006485d3a350732408dca74165b69abfa718","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"6198006485d3a350732408dca74165b69abfa718","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.3.1.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-1.3.1.tgz_1459618838216_0.3273699916899204"},"directories":{}},"1.3.2":{"name":"browserslist","version":"1.3.2","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000471"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"2.11.1","ava":"0.15.1"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"97c3760c0dcfc142a5b675dcd5ed20ecfb65a1aa","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.3.2","_shasum":"afb4309174edae938d3042ab0f55dcc2fd88806a","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"afb4309174edae938d3042ab0f55dcc2fd88806a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.3.2.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/browserslist-1.3.2.tgz_1464688421667_0.30801152950152755"},"directories":{}},"1.3.3":{"name":"browserslist","version":"1.3.3","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000484"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"2.13.0","ava":"0.15.2"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"55a8e97387a637c4c9840565f4c14bab65dc27d4","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.3.3","_shasum":"2fc1e896ed3636e2649651f74907b53254ddad6a","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"2fc1e896ed3636e2649651f74907b53254ddad6a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.3.3.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/browserslist-1.3.3.tgz_1466420358892_0.10346992826089263"},"directories":{}},"1.3.4":{"name":"browserslist","version":"1.3.4","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000488"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"2.13.1","ava":"0.15.2"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"6565ecdd247a59429a3c92960a3ad9fc30482ac6","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.3.4","_shasum":"97bba1a98f011f976333a053706d089ffc9b30fa","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"97bba1a98f011f976333a053706d089ffc9b30fa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.3.4.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/browserslist-1.3.4.tgz_1466973026856_0.44341876078397036"},"directories":{}},"1.3.5":{"name":"browserslist","version":"1.3.5","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000506"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"3.0.1","ava":"0.15.2"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"7c43fbe90ede981c43902959cfe1338432dc2b70","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.3.5","_shasum":"2a1daf9b82b654186337ec13de4684b8f78450d7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"2a1daf9b82b654186337ec13de4684b8f78450d7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.3.5.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-1.3.5.tgz_1468425554002_0.617509757867083"},"directories":{}},"1.3.6":{"name":"browserslist","version":"1.3.6","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000525"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"3.3.1","ava":"0.16.0"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"ce6d3b7ab8d9bce76ef10b8e6fcccbec1b6d10e8","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.3.6","_shasum":"952ff48d56463d3b538f85ef2f8eaddfd284b133","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"952ff48d56463d3b538f85ef2f8eaddfd284b133","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.3.6.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/browserslist-1.3.6.tgz_1471892279258_0.7457300880923867"},"directories":{}},"1.4.0":{"name":"browserslist","version":"1.4.0","description":"Get browsers versions that matches given criterias like in Autoprefixer","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000539"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"3.6.0","ava":"0.16.0"},"scripts":{"test":"ava && eslint *.js test/*.js"},"gitHead":"899cfa8240c879c7544f20c52eaf2d3f2e7e2be9","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.4.0","_shasum":"9cfdcf5384d9158f5b70da2aa00b30e8ff019049","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"9cfdcf5384d9158f5b70da2aa00b30e8ff019049","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.4.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-1.4.0.tgz_1474894616062_0.6606198253575712"},"directories":{}},"1.5.0":{"name":"browserslist","version":"1.5.0","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000601"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.11.1","eslint-config-postcss":"^2.0.2","jest":"^18.0.0","lint-staged":"^3.2.2","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"f616cbdb5e13bd6619032db765b55d356c271dc1","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.5.0","_shasum":"b9a1f3880dcc7afdf07baf48c8385200530eb126","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"b9a1f3880dcc7afdf07baf48c8385200530eb126","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.5.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-1.5.0.tgz_1482314413621_0.9649838341865689"},"directories":{}},"1.5.1":{"name":"browserslist","version":"1.5.1","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000601"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.11.1","eslint-config-postcss":"^2.0.2","jest":"^18.0.0","lint-staged":"^3.2.2","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"cfd734213f17531b00bd1704f03bbd2812d02195","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.5.1","_shasum":"67c3f2a1a6ad174cd01d25d2362e6e6083b26986","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.2.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"67c3f2a1a6ad174cd01d25d2362e6e6083b26986","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.5.1.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-1.5.1.tgz_1482332113390_0.10992924682796001"},"directories":{}},"1.5.2":{"name":"browserslist","version":"1.5.2","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000604"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.11.1","eslint-config-postcss":"^2.0.2","jest":"^18.1.0","lint-staged":"^3.2.5","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.md":"yaspeller","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"d308d94c455f70f9064837f71baa2df8b00f8777","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.5.2","_shasum":"1c82fde0ee8693e6d15c49b7bff209dc06298c56","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"1c82fde0ee8693e6d15c49b7bff209dc06298c56","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.5.2.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-1.5.2.tgz_1483644880335_0.8407113710418344"},"directories":{}},"1.6.0":{"name":"browserslist","version":"1.6.0","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000613","electron-to-chromium":"^1.2.0"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.14.0","eslint-config-postcss":"^2.0.2","jest":"^18.1.0","lint-staged":"^3.2.7","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.md":"yaspeller","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"eab00e040d81e0c62571c558fe7389b6fe1c3948","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.6.0","_shasum":"85fb7c993540d3fda31c282baf7f5aee698ac9ee","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"85fb7c993540d3fda31c282baf7f5aee698ac9ee","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.6.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-1.6.0.tgz_1484995209311_0.2333301743492484"},"directories":{}},"1.7.0":{"name":"browserslist","version":"1.7.0","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000617","electron-to-chromium":"^1.2.1"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.14.1","eslint-config-postcss":"^2.0.2","jest":"^18.1.0","lint-staged":"^3.2.8","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.md":"yaspeller","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"8f9e25dae760d6cc4f2ff800c69060307e0b3628","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.7.0","_shasum":"738df5b2971354d198b2fbd5a22c560d2d896084","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"738df5b2971354d198b2fbd5a22c560d2d896084","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.7.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-1.7.0.tgz_1485451354211_0.1417903562542051"},"directories":{}},"1.7.1":{"name":"browserslist","version":"1.7.1","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000617","electron-to-chromium":"^1.2.1"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.14.1","eslint-config-postcss":"^2.0.2","jest":"^18.1.0","lint-staged":"^3.2.9","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.md":"yaspeller","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"4ce9586c07efb296fb2b1af5b99608300e71b456","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.7.1","_shasum":"cc9bd193979a2a4b09fdb3df6003fefe48ccefe1","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"cc9bd193979a2a4b09fdb3df6003fefe48ccefe1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.7.1.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-1.7.1.tgz_1485779879344_0.5621440196409822"},"directories":{}},"1.7.2":{"name":"browserslist","version":"1.7.2","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000622","electron-to-chromium":"^1.2.2"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.15.0","eslint-config-postcss":"^2.0.2","jest":"^18.1.0","lint-staged":"^3.3.0","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.md":"yaspeller","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"3169e27634bc268aa3115af29a8436ab8807f159","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.7.2","_shasum":"cf4977283c3e692d6dcc241192e9de91504ff331","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"cf4977283c3e692d6dcc241192e9de91504ff331","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.7.2.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-1.7.2.tgz_1486911561085_0.9044420605059713"},"directories":{}},"1.7.3":{"name":"browserslist","version":"1.7.3","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000623","electron-to-chromium":"^1.2.2"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.15.0","eslint-config-postcss":"^2.0.2","jest":"^18.1.0","lint-staged":"^3.3.0","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.md":"yaspeller","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"19b36104a26e9fffd0336a895e174d0914c438fa","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.7.3","_shasum":"25ead9c917b278ad668b83f39c8025697797b2ab","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"25ead9c917b278ad668b83f39c8025697797b2ab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.7.3.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-1.7.3.tgz_1487170040986_0.22193627362139523"},"directories":{}},"1.7.4":{"name":"browserslist","version":"1.7.4","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000624","electron-to-chromium":"^1.2.2"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.15.0","eslint-config-postcss":"^2.0.2","jest":"^18.1.0","lint-staged":"^3.3.0","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.md":"yaspeller","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"9be5ebd1db72a9560ee0ba743fc8f4f875424dbd","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.7.4","_shasum":"56a12da876f787223743a866224ccd8f97014628","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"56a12da876f787223743a866224ccd8f97014628","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.7.4.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-1.7.4.tgz_1487418109689_0.7844476129394025"},"directories":{}},"1.7.5":{"name":"browserslist","version":"1.7.5","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000624","electron-to-chromium":"^1.2.3"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.16.0","eslint-config-postcss":"^2.0.2","jest":"^19.0.1","lint-staged":"^3.3.1","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.md":"yaspeller","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"1263f56baeeebc5167148f86c9aac2f73b19699c","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.7.5","_shasum":"eca4713897b51e444283241facf3985de49a9e2b","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"eca4713897b51e444283241facf3985de49a9e2b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.7.5.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-1.7.5.tgz_1487764084480_0.19115748698823154"},"directories":{}},"1.7.6":{"name":"browserslist","version":"1.7.6","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000631","electron-to-chromium":"^1.2.5"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.16.1","eslint-config-postcss":"^2.0.2","jest":"^19.0.2","lint-staged":"^3.3.1","pre-commit":"^1.1.3","yaspeller":"^3.0.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller *.md"},"lint-staged":{"*.md":"yaspeller","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"12ce238c326bdebe35e3abb8dcce234860398c07","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.7.6","_shasum":"af98589ce6e7ab09618d29451faacb81220bd3ba","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"af98589ce6e7ab09618d29451faacb81220bd3ba","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.7.6.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-1.7.6.tgz_1488540120238_0.8586142971180379"},"directories":{}},"1.7.7":{"name":"browserslist","version":"1.7.7","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-db":"^1.0.30000639","electron-to-chromium":"^1.2.7"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"eslint":"^3.18.0","eslint-config-postcss":"^2.0.2","jest":"^19.0.2","lint-staged":"^3.4.0","pre-commit":"^1.1.3","yaspeller-ci":"^0.3.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","test":"jest --coverage && eslint *.js test/*.js && yaspeller-ci *.md"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"0875962ca176f3c130c071caba6ebd69454e374d","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@1.7.7","_shasum":"0bd76704258be829b2398bb50e4b62d1a166b0b9","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.3","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"0bd76704258be829b2398bb50e4b62d1a166b0b9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-1.7.7.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-1.7.7.tgz_1490083993394_0.4517449587583542"},"directories":{}},"2.0.0":{"name":"browserslist","version":"2.0.0","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000657","electron-to-chromium":"^1.3.6"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^3.19.0","eslint-config-postcss":"^2.0.2","jest":"^19.0.2","lint-staged":"^3.4.0","pre-commit":"^1.1.3","yaspeller-ci":"^0.4.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","test":"jest --coverage && eslint *.js test/*.js && yarn run spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"81b727dac0562ec1761efcb6aa60290bce71e2a9","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.0.0","_shasum":"f9251e5c728eb7f18020b6743c2ef03feaff2a27","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"f9251e5c728eb7f18020b6743c2ef03feaff2a27","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.0.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-2.0.0.tgz_1492788977814_0.9041779851540923"},"directories":{}},"2.1.0":{"name":"browserslist","version":"2.1.0","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000659","electron-to-chromium":"^1.3.8"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^3.19.0","eslint-config-postcss":"^2.0.2","jest":"^19.0.2","lint-staged":"^3.4.0","pre-commit":"^1.1.3","yaspeller-ci":"^0.4.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","test":"jest --coverage && eslint *.js test/*.js && yarn run spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"a69344d4d1e725827dc52dd8299526be6fc39a73","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.1.0","_shasum":"2590d3de07c7129a7bd05ce3c3cb2a3fc56e78fa","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"2590d3de07c7129a7bd05ce3c3cb2a3fc56e78fa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.1.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-2.1.0.tgz_1493046592682_0.3902660463936627"},"directories":{}},"2.1.1":{"name":"browserslist","version":"2.1.1","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000664","electron-to-chromium":"^1.3.8"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^3.19.0","eslint-config-postcss":"^2.0.2","jest":"^19.0.2","lint-staged":"^3.4.1","pre-commit":"^1.1.3","yaspeller-ci":"^0.4.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","test":"jest --coverage && eslint *.js test/*.js && yarn run spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"pre-commit":["lint-staged"],"gitHead":"41e603e52e06aea769307fe5aa581dff8c873a73","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.1.1","_shasum":"d0da26318d86352be7693d407977b8523cc78b11","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"d0da26318d86352be7693d407977b8523cc78b11","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.1.1.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/browserslist-2.1.1.tgz_1493467803130_0.22347319684922695"},"directories":{}},"2.1.2":{"name":"browserslist","version":"2.1.2","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000665","electron-to-chromium":"^1.3.9"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^3.19.0","eslint-config-postcss":"^2.0.2","jest":"^19.0.2","lint-staged":"^3.4.1","pre-commit":"^1.1.3","yaspeller-ci":"^0.4.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","test":"jest --coverage && eslint *.js test/*.js && yarn run spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"fs":false},"pre-commit":["lint-staged"],"gitHead":"f798a281c4ef17d8598de571e02faafb3f3db331","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.1.2","_shasum":"a9dd0791342dab019861c2dd1cd0fd5d83230d39","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"a9dd0791342dab019861c2dd1cd0fd5d83230d39","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.1.2.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-2.1.2.tgz_1494074679783_0.5241656748112291"},"directories":{}},"2.1.3":{"name":"browserslist","version":"2.1.3","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000670","electron-to-chromium":"^1.3.11"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^3.19.0","eslint-config-postcss":"^2.0.2","jest":"^20.0.3","lint-staged":"^3.4.2","pre-commit":"^1.1.3","yaspeller-ci":"^0.4.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","test":"jest --coverage && eslint *.js test/*.js && yarn run spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"fs":false},"pre-commit":["lint-staged"],"gitHead":"1e13838ffa451e774979e4ac60465a8a682cb7d0","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.1.3","_shasum":"302dc8e5e44f3d5937850868aab13e11cac3dbc7","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"302dc8e5e44f3d5937850868aab13e11cac3dbc7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.1.3.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/browserslist-2.1.3.tgz_1495114121803_0.8221165277063847"},"directories":{}},"2.1.4":{"name":"browserslist","version":"2.1.4","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000670","electron-to-chromium":"^1.3.11"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^3.19.0","eslint-config-postcss":"^2.0.2","jest":"^20.0.3","lint-staged":"^3.4.2","pre-commit":"^1.1.3","yaspeller-ci":"^0.4.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","test":"jest --coverage && eslint *.js test/*.js && yarn run spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"fs":false},"pre-commit":["lint-staged"],"gitHead":"0d5fb417168d126dafbc54a08f08bff8397d6a08","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.1.4","_shasum":"cc526af4a1312b7d2e05653e56d0c8ab70c0e053","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"cc526af4a1312b7d2e05653e56d0c8ab70c0e053","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.1.4.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/browserslist-2.1.4.tgz_1495388099839_0.8967401522677392"},"directories":{}},"2.1.5":{"name":"browserslist","version":"2.1.5","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000684","electron-to-chromium":"^1.3.14"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^4.0.0","eslint-config-postcss":"^2.0.2","jest":"^20.0.4","lint-staged":"^3.6.1","pre-commit":"^1.1.3","yaspeller-ci":"^0.4.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","test":"jest --coverage && eslint *.js test/*.js && yarn run spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"fs":false},"pre-commit":["lint-staged"],"gitHead":"f8ffca47e78a90f59e9113226754bf4bc23f2c67","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.1.5","_shasum":"e882550df3d1cd6d481c1a3e0038f2baf13a4711","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"e882550df3d1cd6d481c1a3e0038f2baf13a4711","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.1.5.tgz"},"maintainers":[{"email":"buryak.ivan@yandex.ru","name":"11bit"},{"email":"andrey@sitnik.ru","name":"ai"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/browserslist-2.1.5.tgz_1497364911678_0.20470671239309013"},"directories":{}},"2.2.0":{"name":"browserslist","version":"2.2.0","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000701","electron-to-chromium":"^1.3.15"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^4.2.0","eslint-config-postcss":"^2.0.2","jest":"^20.0.4","lint-staged":"^4.0.2","pre-commit":"^1.1.3","yaspeller-ci":"^0.6.0"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true},"rules":{"consistent-return":"off","no-process-exit":"off","valid-jsdoc":"error"}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","test":"jest --coverage && eslint *.js test/*.js && yarn run spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"fs":false},"pre-commit":["lint-staged"],"gitHead":"05447f15956e958cec90d5cd920d8e80817d6cb4","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.2.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"integrity":"sha512-t09UuOv/4/hrL1y4wZ871+kKE6E2bkdMD6duZtV7FZIHFpsmdQfW63BH3bAjkfpkbP/eFKyenUbDUKigV/VmRw==","shasum":"5e35ec993e467c6464b8cb708447386891de9f50","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.2.0.tgz"},"maintainers":[{"email":"buryak.ivan@yandex.ru","name":"11bit"},{"email":"andrey@sitnik.ru","name":"ai"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/browserslist-2.2.0.tgz_1500306633583_0.6157042440026999"},"directories":{}},"2.2.1":{"name":"browserslist","version":"2.2.1","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000704","electron-to-chromium":"^1.3.16"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^4.3.0","eslint-config-logux":"^16.0.0","eslint-config-standard":"^10.2.1","eslint-plugin-es5":"^1.1.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-node":"^5.1.1","eslint-plugin-promise":"^3.5.0","eslint-plugin-security":"^1.4.0","eslint-plugin-standard":"^3.0.1","jest":"^20.0.4","lint-staged":"^4.0.2","pre-commit":"^1.1.3","yaspeller-ci":"^0.6.0"},"eslintConfig":{"extends":"eslint-config-logux/browser","rules":{"global-require":"off"},"overrides":{"files":["*.test.js"],"rules":{"es5/no-arrow-functions":"off"}}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","lint":"eslint *.js test/*.js","test":"jest --coverage && yarn lint && yarn spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"fs":false},"pre-commit":["lint-staged"],"gitHead":"a81ebc972b6e7ca0d791cf0b1794166440b2ac1f","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.2.1","_npmVersion":"5.0.3","_nodeVersion":"8.1.4","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"integrity":"sha512-q9NH7wY49FzqqsYHBv2kA/A5XUaaEvWShX3OGLugthdeqnCEaSEmU/TffiIDlcrb5XISYGCNyLvxtnHgOu1qVA==","shasum":"709048c57bf3bf9b382105c396a737ad525d948e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.2.1.tgz"},"maintainers":[{"email":"buryak.ivan@yandex.ru","name":"11bit"},{"email":"andrey@sitnik.ru","name":"ai"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/browserslist-2.2.1.tgz_1500705326564_0.20192127558402717"},"directories":{}},"2.2.2":{"name":"browserslist","version":"2.2.2","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000704","electron-to-chromium":"^1.3.16"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^4.3.0","eslint-config-logux":"^16.0.0","eslint-config-standard":"^10.2.1","eslint-plugin-es5":"^1.1.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-node":"^5.1.1","eslint-plugin-promise":"^3.5.0","eslint-plugin-security":"^1.4.0","eslint-plugin-standard":"^3.0.1","jest":"^20.0.4","lint-staged":"^4.0.2","pre-commit":"^1.1.3","yaspeller-ci":"^0.6.0"},"eslintConfig":{"extends":"eslint-config-logux/browser","rules":{"global-require":"off"},"overrides":{"files":["*.test.js"],"rules":{"es5/no-arrow-functions":"off"}}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","lint":"eslint *.js test/*.js","test":"jest --coverage && yarn lint && yarn spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"fs":false},"pre-commit":["lint-staged"],"gitHead":"4472b537ef2c85ba47e5766430b5036a6f960b91","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.2.2","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"integrity":"sha512-MejxGMNIeIqzgaMKVYfFTWHinrwZOnWMXteN9VlHinTd13/0aDmXY9uyRqNsCTnVxqRmrjQFcXI7cy0q9K1IYg==","shasum":"e9b4618b8a01c193f9786beea09f6fd10dbe31c3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.2.2.tgz"},"maintainers":[{"email":"buryak.ivan@yandex.ru","name":"11bit"},{"email":"andrey@sitnik.ru","name":"ai"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/browserslist-2.2.2.tgz_1500742545141_0.3140640235505998"},"directories":{}},"2.3.0":{"name":"browserslist","version":"2.3.0","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000710","electron-to-chromium":"^1.3.17"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^4.3.0","eslint-config-logux":"^16.0.0","eslint-config-standard":"^10.2.1","eslint-plugin-es5":"^1.1.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-node":"^5.1.1","eslint-plugin-promise":"^3.5.0","eslint-plugin-security":"^1.4.0","eslint-plugin-standard":"^3.0.1","jest":"^20.0.4","lint-staged":"^4.0.2","pre-commit":"^1.1.3","yaspeller-ci":"^0.6.0"},"eslintConfig":{"extends":"eslint-config-logux/browser","rules":{"global-require":"off"},"overrides":{"files":["*.test.js"],"rules":{"es5/no-arrow-functions":"off"}}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","lint":"eslint *.js test/*.js","test":"jest --coverage && yarn lint && yarn spellcheck"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"fs":false},"pre-commit":["lint-staged"],"gitHead":"c59af690687fcdaca818434d4ee1827753d655f4","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.3.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"integrity":"sha512-jDr9Mea+n+FwI+kR0ce7rXCFBoM7hbL80G/th7oPxuNSK4V5J3LPMHB5vykjeI2h7fgSihBbSdoJPmzUC0606Q==","shasum":"b2aa76415c71643fe2368f6243b43bbbb4211752","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.3.0.tgz"},"maintainers":[{"email":"buryak.ivan@yandex.ru","name":"11bit"},{"email":"andrey@sitnik.ru","name":"ai"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/browserslist-2.3.0.tgz_1501895553756_0.827542930142954"},"directories":{}},"2.3.1":{"name":"browserslist","version":"2.3.1","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000712","electron-to-chromium":"^1.3.17"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^4.4.1","eslint-config-logux":"^16.0.0","eslint-config-standard":"^10.2.1","eslint-plugin-es5":"^1.1.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-node":"^5.1.1","eslint-plugin-promise":"^3.5.0","eslint-plugin-security":"^1.4.0","eslint-plugin-standard":"^3.0.1","jest":"^20.0.4","lint-staged":"^4.0.3","pre-commit":"^1.1.3","size-limit":"^0.8.1","yaspeller-ci":"^0.6.0"},"eslintConfig":{"extends":"eslint-config-logux/browser","rules":{"global-require":"off"},"overrides":{"files":["*.test.js"],"rules":{"es5/no-arrow-functions":"off"}}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"size-limit":[{"path":"index.js","limit":"152 KB"}],"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","lint":"eslint *.js test/*.js","test":"jest --coverage && yarn lint && yarn spellcheck && size-limit"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"path":false,"fs":false},"pre-commit":["lint-staged"],"gitHead":"9881f60072a99b22291c7f7a4bca47e915d899fe","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.3.1","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"integrity":"sha512-YSRvpyaxDBBAPkwYO0THouUmA+cvYbyBHZrP/byJEUGDT9r/6TQcDASBtrAj4S45Le6JZbV8oeUAPR9wT8tisg==","shasum":"39500a2090330b2a090120ea6c7fc78b6e091c5e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.3.1.tgz"},"maintainers":[{"email":"buryak.ivan@yandex.ru","name":"11bit"},{"email":"andrey@sitnik.ru","name":"ai"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/browserslist-2.3.1.tgz_1502259229622_0.32559517165645957"},"directories":{}},"2.3.2":{"name":"browserslist","version":"2.3.2","description":"Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset","keywords":["caniuse","browsers"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/ai/browserslist.git"},"dependencies":{"caniuse-lite":"^1.0.30000715","electron-to-chromium":"^1.3.18"},"bin":{"browserslist":"./cli.js"},"devDependencies":{"cross-spawn":"^5.1.0","eslint":"^4.4.1","eslint-config-logux":"^16.0.0","eslint-config-standard":"^10.2.1","eslint-plugin-es5":"^1.1.0","eslint-plugin-import":"^2.7.0","eslint-plugin-jest":"^20.0.3","eslint-plugin-node":"^5.1.1","eslint-plugin-promise":"^3.5.0","eslint-plugin-security":"^1.4.0","eslint-plugin-standard":"^3.0.1","jest":"^20.0.4","lint-staged":"^4.0.3","pre-commit":"^1.1.3","size-limit":"^0.8.4","yaspeller-ci":"^0.6.0"},"eslintConfig":{"extends":"eslint-config-logux/browser","rules":{"global-require":"off"},"overrides":{"files":["*.test.js"],"rules":{"es5/no-arrow-functions":"off"}}},"jest":{"coverageThreshold":{"global":{"statements":100}}},"size-limit":[{"path":"index.js","limit":"152 KB"}],"scripts":{"lint-staged":"lint-staged","spellcheck":"yaspeller-ci README.md CHANGELOG.md","lint":"eslint *.js test/*.js","test":"jest --coverage && yarn lint && yarn spellcheck && size-limit"},"lint-staged":{"*.md":"yaspeller-ci","*.js":"eslint"},"browser":{"path":false,"fs":false},"pre-commit":["lint-staged"],"gitHead":"7490bc6f19e8e40d926e294e9bcef73f9a2d72e0","bugs":{"url":"https://github.com/ai/browserslist/issues"},"homepage":"https://github.com/ai/browserslist#readme","_id":"browserslist@2.3.2","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"integrity":"sha512-arvLUwBTsmpfmyMfoBQH8WWICiyaVkMxJsft73/rTRU80rAPSXsi3M0uYBcUH22w7MG475eET31F4M0+31w81g==","shasum":"343ff101cce799d5eaf0b742e17d0d21efc2d379","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/browserslist/-/browserslist-2.3.2.tgz"},"maintainers":[{"email":"buryak.ivan@yandex.ru","name":"11bit"},{"email":"andrey@sitnik.ru","name":"ai"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/browserslist-2.3.2.tgz_1502484242479_0.33569093933328986"},"directories":{}}},"name":"browserslist","time":{"modified":"2017-08-11T20:44:03.121Z","created":"2014-12-15T08:26:19.552Z","0.1.0":"2014-12-15T08:26:19.552Z","0.1.1":"2015-01-11T18:25:03.306Z","0.1.2":"2015-01-19T17:46:00.725Z","0.1.3":"2015-01-27T23:34:03.817Z","0.2.0":"2015-01-28T14:49:45.732Z","0.3.0":"2015-02-21T12:27:39.771Z","0.3.1":"2015-02-26T22:56:57.745Z","0.3.2":"2015-04-02T15:11:53.188Z","0.3.3":"2015-04-13T12:20:22.650Z","0.4.0":"2015-05-02T13:38:16.754Z","0.5.0":"2015-06-22T14:41:19.193Z","1.0.0":"2015-08-31T16:05:39.795Z","1.0.1":"2015-10-07T14:07:52.566Z","1.1.0":"2016-01-06T11:28:27.530Z","1.1.1":"2016-01-14T19:26:18.208Z","1.1.2":"2016-02-08T07:57:44.444Z","1.1.3":"2016-02-10T20:35:59.980Z","1.2.0":"2016-03-16T06:32:06.867Z","1.3.0":"2016-03-17T09:38:22.603Z","1.3.1":"2016-04-02T17:40:38.769Z","1.3.2":"2016-05-31T09:53:43.784Z","1.3.3":"2016-06-20T10:59:20.200Z","1.3.4":"2016-06-26T20:30:29.262Z","1.3.5":"2016-07-13T15:59:16.689Z","1.3.6":"2016-08-22T18:58:02.241Z","1.4.0":"2016-09-26T12:56:57.898Z","1.5.0":"2016-12-21T10:00:13.854Z","1.5.1":"2016-12-21T14:55:15.322Z","1.5.2":"2017-01-05T19:34:42.224Z","1.6.0":"2017-01-21T10:40:11.038Z","1.7.0":"2017-01-26T17:22:36.108Z","1.7.1":"2017-01-30T12:37:59.586Z","1.7.2":"2017-02-12T14:59:22.890Z","1.7.3":"2017-02-15T14:47:21.795Z","1.7.4":"2017-02-18T11:41:51.548Z","1.7.5":"2017-02-22T11:48:05.148Z","1.7.6":"2017-03-03T11:22:02.426Z","1.7.7":"2017-03-21T08:13:14.090Z","2.0.0":"2017-04-21T15:36:18.698Z","2.1.0":"2017-04-24T15:09:54.559Z","2.1.1":"2017-04-29T12:10:03.784Z","2.1.2":"2017-05-06T12:44:42.371Z","2.1.3":"2017-05-18T13:28:43.925Z","2.1.4":"2017-05-21T17:35:00.790Z","2.1.5":"2017-06-13T14:41:51.905Z","2.2.0":"2017-07-17T15:50:34.522Z","2.2.1":"2017-07-22T06:35:27.691Z","2.2.2":"2017-07-22T16:55:46.196Z","2.3.0":"2017-08-05T01:12:34.783Z","2.3.1":"2017-08-09T06:13:49.780Z","2.3.2":"2017-08-11T20:44:03.121Z"},"readmeFilename":"README.md","homepage":"https://github.com/ai/browserslist#readme"}