├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .github ├── CODE_OF_CONDUCT.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ └── retina.test.js ├── bower.json ├── dist ├── _retina.sass ├── _retina.scss ├── retina.js ├── retina.js.map ├── retina.less ├── retina.min.js ├── retina.min.js.map └── retina.styl ├── jest.config.json ├── package.json ├── rollup.config.js ├── src ├── _retina.sass ├── _retina.scss ├── retina.js ├── retina.less └── retina.styl └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"], 3 | "plugins": ["transform-flow-strip-types"] 4 | } 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | 7 | # Set default charset 8 | [*] 9 | charset = utf-8 10 | indent_size = 2 11 | indent_style = space 12 | trim_trailing_whitespace = true 13 | 14 | # JavaScript, JSON, JSX 15 | [*.{js,json,jsx}] 16 | indent_size = 2 17 | indent_style = space 18 | trim_trailing_whitespace = true 19 | insert_final_newline = true 20 | 21 | # CSS 22 | # SASS 23 | # https://sass-guidelin.es/#syntax--formatting 24 | # https://google.github.io/styleguide/htmlcssguide.xml#General_Formatting_Rules 25 | # http://cssguidelin.es/#syntax-and-formatting 26 | [*.{css,sass,scss,less,styl}] 27 | indent_size = 2 28 | indent_style = space 29 | trim_trailing_whitespace = true 30 | 31 | 32 | [*.md] 33 | trim_trailing_whitespace=false 34 | 35 | # YAML 36 | # http://yaml.org/spec/1.2/2009-07-21/spec.html#id2576668 37 | [*.{yaml,yml}] 38 | indent_size = 2 39 | indent_style = space 40 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | test/* 2 | dist/* 3 | es/ 4 | dev/ 5 | flow-typed 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["boldr"] 3 | } 4 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | .*/node_modules/.* 3 | .*/dev/.* 4 | .*/es/.* 5 | .*/dist/.* 6 | .*/__tests__/.* 7 | .*/.idea/.* 8 | .*/.vscode/.* 9 | .*/coverage/.* 10 | 11 | [libs] 12 | flow-typed/npm 13 | 14 | [options] 15 | emoji=true 16 | module.system=node 17 | 18 | 19 | esproposal.decorators=ignore 20 | esproposal.export_star_as=ignore 21 | module.system.node.resolve_dirname=node_modules 22 | module.ignore_non_literal_requires=true 23 | munge_underscores=false 24 | 25 | 26 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue 27 | suppress_comment= \\(.\\|\n\\)*\\$FlowIgnore 28 | 29 | [version] 30 | 0.48.0 31 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | ### Conduct 4 | 5 | * We are committed to providing a friendly, safe and welcoming 6 | environment for all, regardless of level of experience, gender 7 | identity and expression, sexual orientation, disability, 8 | personal appearance, body size, race, ethnicity, age, religion, 9 | nationality, or other similar characteristic. 10 | * Please avoid using overtly sexual nicknames or other nicknames that 11 | might detract from a friendly, safe and welcoming environment for 12 | all. 13 | * Please be kind and courteous. There's no need to be mean or rude. 14 | * Respect that some individuals and cultures consider the casual use of 15 | profanity offensive and off-putting. 16 | * Respect that people have differences of opinion and that every 17 | design or implementation choice carries a trade-off and numerous 18 | costs. There is seldom a right answer. 19 | * Please keep unstructured critique to a minimum. If you have solid 20 | ideas you want to experiment with, make a fork and see how it works. 21 | * We will exclude you from interaction if you insult, demean or harass 22 | anyone. That is not welcome behavior. We interpret the term 23 | "harassment" as including the definition in the [Citizen Code of 24 | Conduct](http://citizencodeofconduct.org/); if you have any lack of 25 | clarity about what might be included in that concept, please read 26 | their definition. In particular, we don't tolerate behavior that 27 | excludes people in socially marginalized groups. 28 | * Private harassment is also unacceptable. No matter who you are, if 29 | you feel you have been or are being harassed or made uncomfortable 30 | by a community member, please contact one of the channel ops or any 31 | of the TSC members immediately with a capture (log, photo, email) of 32 | the harassment if possible. Whether you're a regular contributor or 33 | a newcomer, we care about making this community a safe place for you 34 | and we've got your back. 35 | * Likewise any spamming, trolling, flaming, baiting or other 36 | attention-stealing behavior is not welcome. 37 | * Avoid the use of personal pronouns in code comments or 38 | documentation. There is no need to address persons when explaining 39 | code (e.g. "When the developer"). 40 | 41 | ### Contact 42 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 43 | reported by: 44 | 45 | * Emailing [steven@strues.io](mailto:steven@strues.io) 46 | 47 | 48 | ### Attribution 49 | 50 | This Code of Conduct is adapted from 51 | [Contributor Covenant v1.3.0](http://contributor-covenant.org/version/1/3/0/). 52 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Retina.js Issue Template 2 | 3 | Before opening a new issue, please take a moment and explore [already closed issues](https://github.com/strues/retinajs/issues?q=is%3Aissue+is%3Aclosed). You might find the answer you're looking for. 4 | 5 | Can't find the answer? Use this template as a reference when creating an issue. 6 | 7 | 8 | ### Description of issue 9 | 10 | Screenshots are great here. 11 | 12 | 13 | ### Steps to reproduce 14 | 15 | Use a live example or a [CodePen](https://codepen.io) if you can. 16 | 17 | 18 | 19 | ### What were you expecting to happen vs what actually happened? 20 | 21 | 22 | ### Version/Browser/OS 23 | - Retina.js: 2.1.2 24 | - Node/NPM: v8.1.2 Yarn 0.24.6 25 | - MacOS Sierra / Chrome latest 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | pkg 3 | tmp 4 | .DS_Store 5 | test/functional/retina.* 6 | test/functional/public/retina.* 7 | node_modules 8 | es/ 9 | flow-typed 10 | dev 11 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | __tests__ 3 | .github 4 | dev 5 | flow-typed 6 | node_modules 7 | .babelrc 8 | .eslintrc 9 | .editorconfig 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 6 4 | - 7 5 | - 8 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to Retina.js 2 | 3 | Thanks for thinking about contributing to Retina.js. 4 | 5 | #### **Did You Find a Bug?** 6 | 7 | * **Ensure the bug was not already reported** by searching on GitHub under [Issues](issues). 8 | * If you're unable to find an open issue addressing the problem, [open a new one](new-issue). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring. 9 | 10 | #### **Did You Write a Patch That Fixes a Bug?** 11 | 12 | * Open a new GitHub pull request with the patch. 13 | 1. Fork this project 14 | 1. Create your feature branch: `git checkout -b my-new-feature` 15 | 1. Commit your changes: `git commit -am 'Add some feature'` 16 | 1. Push to the branch: `git push origin my-new-feature` 17 | 1. Submit a pull request :tada: 18 | * Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable. 19 | 20 | #### **Do You Intend to Add a New Feature or Change an Existing One?** 21 | 22 | * Suggest your change as a new [issue](new-issue) using the label `enhancement` **BEFORE** you start writing code. 23 | 24 | Thanks for contributing! :heart: 25 | 26 | [issues]: https://github.com/strues/retinajs/issues 27 | [new-issue]: https://github.com/strues/retinajs/issues/new 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013-2017 Steven Truesdell, John Newman, Ben Atkin, and other contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # retina.js 2 | 3 | [![npm version](https://badge.fury.io/js/retinajs.png)](https://badge.fury.io/js/retinajs) [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier) [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/strues/retinajs/master/LICENSE) 4 | 5 | 6 | ### JavaScript, Sass, Less, and Stylus helpers for rendering high-resolution image variants 7 | 8 | `retina.js` makes it easy to serve high-resolution images to devices with displays that support them. You can prepare images for as many levels of pixel density as you want and let `retina.js` dynamically serve the right image to the user. 9 | 10 | ## How it works 11 | 12 | There are 4 ways to use `retina.js`: 13 | 14 | 1. Automatically swapping out `src` paths on `img` tags. 15 | 2. Automatically swapping out background image URLs in inline styles. 16 | 3. Manually specifying the location of a high-res image variant (works for `src` attributes and inline styles). 17 | 4. Automatically creating media queries for CSS background images. 18 | 19 | #### Img Tags 20 | 21 | `retina.js` assumes you are using Apple's prescribed high-resolution modifiers (@2x, @3x, etc) to denote high-res image variants on your server. It also assumes that if you have prepared a variant for a given high-res environment, that you have also prepared variants for each environment below it. For example, if you have prepared 3x variants, `retina.js` will assume that you have also prepared 2x variants. 22 | 23 | With this in mind, you'll specify your highest environment level with the `data-rjs` attribute and let `retina.js` take it from there. 24 | 25 | Let's say you have an image on your page that looks like this: 26 | 27 | ```html 28 | 29 | ``` 30 | 31 | In this case, we've set our resolution cap at "3", denoting that we've prepared 3x and 2x image variants. When the page loads, `retina.js` will check the actual resolution of the device environment to decide whether it should really serve up a 3x image. If the user happens to be in a 2x environment, `retina.js` will serve up the 2x image instead, assuming it will find the image at `/images/my_image@2x.png`. 32 | 33 | If the environment does have 3x capabilities, `retina.js` will serve up the 3x image. It will expect that url to be `/images/my_image@3x.png`. If the environment has the ability to display images at higher densities than 3x, `retina.js` will serve up the image of the highest resolution that you've provided, in this case 3x. 34 | 35 | #### Inline Styles 36 | 37 | Previous versions of `retina.js` were unable to target background images set via inline styles. Now, if you apply a `data-rjs` attribute to any kind of element other than an `img`, the script will target inline background images instead of `src` attributes. 38 | 39 | So if you created an element like this: 40 | 41 | ```html 42 |
43 | ``` 44 | 45 | `retina.js` would convert it to something like this: 46 | 47 | ```html 48 |
49 | ``` 50 | 51 | The logic behind image swapping is exactly the same when dealing with background images as it is when dealing with `src` attributes. If the user's environment only supports 2x variants, `retina.js` will load the 2x variant instead of the 3x. 52 | 53 | _Note that it is up to you in a case like this to correctly apply background sizing and any other necessary background-related styles to the element. retina.js will not affect these._ 54 | 55 | #### Manually Specifying a High-Res URL 56 | 57 | In previous versions, you could tell the script where to find your high-res file by using the `data-at2x` attribute. Now, if you pass a URL to the `data-rjs` attribute, `retina.js` will use the image at the path you specify for all high-resolution environments instead of trying to dynamically serve an auto-suffixed image path based on the environment's capabilities. This will work for both `src` attributes on `img` tags and inline background images on all other tags. 58 | 59 | For example, you might write something like this: 60 | 61 | ```html 62 | 65 | 66 | 67 | 68 |
71 |
72 | ``` 73 | 74 | If the user then loads the page in any kind of high-resolution environment, they'll get the following: 75 | 76 | ```html 77 | 80 | 81 | 82 | 83 |
86 |
87 | ``` 88 | 89 | #### Media Queries 90 | 91 | `retina.js` comes with mixins for SCSS, Sass, Less, and Stylus. These mixins work similarly to the JavaScript version in that they will dynamically serve images for as many high-res environments as you've prepared image variants for. Previously, these mixins were named "at2x" but because they now serve images for multiple environments, they have been renamed "retina". 92 | 93 | In each language, the retina mixin allows 4 parameters: 94 | 95 | 1. `path` - The path to your standard resolution image. 96 | 2. `cap` - _Optional._ The highest resolution level for which you have prepared images. Defaults to 2. 97 | 3. `size`- _Optional._ A value to be applied to the `background-size` property. Defaults to `auto auto`. 98 | 4. `extras`- _Optional._ Any other values to be added to the background property. Defaults to nothing. 99 | 100 | Here is an example wherein we are specifying that we have prepared images for both 2x and 3x environments: 101 | 102 | **SCSS** 103 | 104 | ```scss 105 | #item { 106 | @include retina('/images/my_image.png', 3, cover, center center no-repeat); 107 | } 108 | ``` 109 | 110 | **Sass** 111 | 112 | ```sass 113 | #item 114 | +retina('/images/my_image.png', 3, cover, center center no-repeat) 115 | ``` 116 | 117 | **Less** 118 | 119 | ```less 120 | #item { 121 | .retina('/images/my_image.png', 3, cover, center center no-repeat); 122 | } 123 | ``` 124 | 125 | **Stylus** 126 | 127 | ```stylus 128 | #item 129 | retina('/images/my_image.png', 3, cover, center center no-repeat) 130 | ``` 131 | 132 | Regardless of the dialect, the output is effectively the same: 133 | 134 | ```css 135 | #item { 136 | background: url("/images/my_image.png") center center no-repeat; 137 | background-size: cover; 138 | } 139 | 140 | @media all and (-webkit-min-device-pixel-ratio: 1.5), 141 | all and (-o-min-device-pixel-ratio: 3 / 2), 142 | all and (min--moz-device-pixel-ratio: 1.5), 143 | all and (min-device-pixel-ratio: 1.5) { 144 | #item { 145 | background: url("/images/my_image@2x.png") center center no-repeat; 146 | background-size: cover; 147 | } 148 | } 149 | 150 | @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 151 | #item { 152 | background: url("/images/my_image@2x.png") center center no-repeat; 153 | background-size: cover; 154 | } 155 | } 156 | 157 | @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) { 158 | #item { 159 | background: url("/images/my_image@3x.png") center center no-repeat; 160 | background-size: cover; 161 | } 162 | } 163 | ``` 164 | 165 | ## Compatibility 166 | 167 | `retina.js` is compatible with all modern browsers and __should__ not throw errors in old browsers all the way back through IE6. 168 | 169 | ## Installing & Launching 170 | 171 | ### JavaScript 172 | 173 | There are 2 ways to use the JavaScript version of `retina.js`: 174 | 175 | 1. The old-school way (manually dropping the script into an html file). 176 | 2. The new-school way (importing it into a larger JavaScript build process). 177 | 178 | #### Old-School 179 | 180 | To use retina.js the old-school way, download **retina.min.js** and put it on your server. Then, include the script in your html file at the bottom of your template, before your closing \ tag. 181 | 182 | ``` html 183 | 184 | ``` 185 | 186 | Using this technique, `retina.js` will run automatically on page load. It will also create a globally available function called `retinajs`. Whenever you'd like to manually re-initialize the script, simply call `window.retinajs()`. 187 | 188 | If you don't pass any arguments to the `retinajs` function, it will only attempt to process images that have not previously been processed by the script. Optionally, you can pass a collection of HTML elements to the script, in which case it will only attempt to process elements in that collection, specifically the ones that have not been processed before. Your collection may take the form of an Array, NodeList, or jQuery selection. 189 | 190 | ```javascript 191 | retinajs(); 192 | // Finds all images not previously processed and processes them. 193 | 194 | retinajs( [img, img, img] ); 195 | // Only attempts to process the images in the collection. 196 | 197 | retinajs( $('img') ); 198 | // Same. 199 | 200 | retinajs( document.querySelectorAll('img') ); 201 | // Same. 202 | ``` 203 | 204 | #### New-School 205 | 206 | To use retina.js the new-school way, you'll want to `require` it (or `import` it if you're using ES6) into your Gulp/Webpack/Grunt/CommonJS/etc application. In this case, the script won't run automatically. Instead, it'll let you determine when you'd like it to run. 207 | 208 | ```JavaScript 209 | import retina from 'retina'; 210 | 211 | window.addEventListener('load', retina); 212 | ``` 213 | 214 | Notice that the `retina` function can be called as often as you need in order to re-initialize the image swapping. 215 | 216 | If you don't pass any arguments to the `retina` function, it will only attempt to process images that have not previously been processed by the script. Optionally, you can pass a collection of HTML elements to the script, in which case it will only attempt to process elements in that collection, specifically the ones that have not been processed before. Your collection may take the form of an Array, NodeList, or jQuery selection. 217 | 218 | ```javascript 219 | retina(); 220 | // Finds all images not previously processed and processes them. 221 | 222 | retina( [img, img, img] ); 223 | // Only attempts to process the images in the collection. 224 | 225 | retina( $('img') ); 226 | // Same. 227 | 228 | retina( document.querySelectorAll('img') ); 229 | // Same. 230 | ``` 231 | 232 | ### CSS Preprocessors 233 | 234 | The process for including the CSS mixins is relatively straightforward. Here is a breakdown for each: 235 | 236 | #### SCSS 237 | 238 | Add the `@mixin retina( ... )` mixin from \_retina.scss to your SCSS stylesheet (or reference it in an `@import`). In your stylesheet, call the mixin using `@include retina( ... )` anywhere instead of using `background` or `background-image`. 239 | 240 | #### Sass 241 | 242 | Add the `=retina( ... )` mixin from \_retina.sass to your Sass stylesheet (or reference it in an `@import`). In your stylesheet, call the mixin using `+retina( ... )` anywhere instead of using `background` or `background-image`. 243 | 244 | #### Less 245 | 246 | Add the `.retina( ... )` mixin from retina.less to your Less stylesheet (or reference it in an `@import`). In your stylesheet, call the mixin using `.retina( ... )` anywhere instead of using `background` or `background-image`. 247 | 248 | #### Stylus 249 | 250 | Add the `retina( ... )` mixin from retina.styl to your Stylus stylesheet (or reference it in an `@import`). In your stylesheet, call the mixin using `retina( ... )` anywhere instead of using `background` or `background-image`. 251 | 252 | 253 | ## Considerations for Ruby on Rails 3+ 254 | 255 | ...or any framework that embeds some digest/hash to the asset URLs based on the contents, e.g. `/images/image-{hash1}.jpg`. 256 | 257 | The problem with this is that the high-resolution version would have a different hash, and would not conform to the usual pattern, i.e. `/images/image@2x-{hash2}.jpg`. So automatic detection would fail because retina.js would check the existence of `/images/image-{hash1}@2x.jpg`. 258 | 259 | There's no way for retina.js to know beforehand what the high-resolution image's hash would be without some sort of help from the server side. So in this case, there are a couple of options for handling it: 260 | 261 | #### Bypass Digesting 262 | 263 | One potential method is to bypass digesting altogether by implementing a process like [team-umlaut's asset compile rake file](https://github.com/team-umlaut/umlaut/blob/5edcc609389edf833a79caa6f3ef92982312f0c5/lib/tasks/umlaut_asset_compile.rake) which will generate non-digested asset files as necessary. 264 | 265 | #### Use Manual Paths 266 | 267 | Although it's not quite as fancy as dynamically serving up files based on the resolution of the user's environment, this may be a good time to pass a URL string to the `data-rjs` attribute so that you can manually tell retina.js exactly where to look for a high-resolution variant of your image. 268 | -------------------------------------------------------------------------------- /__tests__/retina.test.js: -------------------------------------------------------------------------------- 1 | import retina from '../src/retina'; 2 | 3 | describe('RetinaJS Environment', () => { 4 | it('should exist as a function on window', () => { 5 | const result = window.retinajs; 6 | expect(typeof result === 'function').toBe(true); 7 | }); 8 | }); 9 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "retinajs", 3 | "version": "2.1.2", 4 | "homepage": "http://retinajs.com", 5 | "authors": [ 6 | "Axial " 7 | ], 8 | "description": "JavaScript, Less and Sass helpers for rendering high-resolution image variants", 9 | "main": "dist/retina.js", 10 | "module": "es/retina.js", 11 | "jsnext:main": "es/retina.js", 12 | "license": "MIT", 13 | "ignore": [ 14 | "**/.*", 15 | "node_modules", 16 | "bower_components", 17 | "__tests__", 18 | "flow_typed", 19 | "dev" 20 | ], 21 | "moduleType": [ 22 | "amd", 23 | "es", 24 | "globals", 25 | "umd", 26 | "yui" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /dist/_retina.sass: -------------------------------------------------------------------------------- 1 | // retina.sass 2 | // A helper mixin for applying high-resolution background images (http://www.retinajs.com) 3 | 4 | // Submitted by Nathan Crank 5 | // nathancrank.com 6 | 7 | // Updated by John Newman 8 | // github.com/jgnewman 9 | // http://axial.agency 10 | 11 | /** 12 | * Allows you to use retina images at various pixel densities. 13 | * Examples: 14 | * 15 | * +retina(/images/mypic.jpg, 2); 16 | * +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent); 17 | * 18 | * @param {Value} $path The path to the file name minus extension. 19 | * @param {Number} $cap: 2 The highest pixel density level images exist for. 20 | * @param {Value} $size: auto auto The intended width of the rendered image. 21 | * @param {Value} $extras: null Any other `background` values to be added. 22 | */ 23 | =retina($path, $cap: 2, $size: auto auto, $extras: null) 24 | 25 | // Set a counter and get the length of the image path. 26 | $position: -1 27 | $strpath: '#{$path}' 28 | $length: str-length($strpath) 29 | 30 | // Loop ver the image path and figure out the 31 | // position of the dot where the extension begins. 32 | @for $i from $length through $length - 10 33 | @if $position == -1 34 | $char: str-slice($strpath, $i,$i) 35 | @if str-index($char, ".") == 1 36 | $position: $i 37 | 38 | // If we were able to figure out where the extension is, 39 | // slice the path into a base and an extension. Use that to 40 | // calculate urls for different density environments. Set 41 | // values for different environments. 42 | @if $position != -1 43 | $ext: str-slice($strpath, $position + 1, $length) 44 | $base: str-slice($strpath, 1 ,$position - 1) 45 | $at1x_path: "#{$base}.#{$ext}" 46 | $at2x_path: "#{$base}@2x.#{$ext}" 47 | 48 | // Set a base background for 1x environments. 49 | background: url("#{$at1x_path}") $extras 50 | background-size: $size 51 | 52 | // Create an @2x-ish media query. 53 | @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) 54 | background: url("#{$at2x_path}") $extras 55 | background-size: $size 56 | 57 | // Create media queries for all environments that the user has 58 | // provided images for. 59 | @if $cap >= 2 60 | @for $env from 2 through $cap 61 | $suffix: "@#{$env}x" 62 | @media (-webkit-min-device-pixel-ratio: $env), (min-resolution: $env * 96dpi) 63 | background: url("#{$base}#{$suffix}.#{$ext}") $extras 64 | background-size: $size 65 | 66 | @else 67 | background: url("#{$path}") $extras 68 | background-size: $size 69 | -------------------------------------------------------------------------------- /dist/_retina.scss: -------------------------------------------------------------------------------- 1 | // retina.scss 2 | // A helper mixin for applying high-resolution background images (http://www.retinajs.com) 3 | 4 | // Submitted by Nathan Crank 5 | // nathancrank.com 6 | 7 | // Updated by Gabriel R. Sezefredo 8 | // gabriel.sezefredo.com.br 9 | 10 | // Updated by John Newman 11 | // github.com/jgnewman 12 | // http://axial.agency 13 | 14 | 15 | /** 16 | * Allows you to use retina images at various pixel densities. 17 | * Examples: 18 | * 19 | * @include retina(/images/mypic.jpg, 2); 20 | * @include retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent); 21 | * 22 | * @param {Value} $path The path to the file name minus extension. 23 | * @param {Number} $cap: 2 The highest pixel density level images exist for. 24 | * @param {Value} $size: auto auto The intended width of the rendered image. 25 | * @param {Value} $extras: null Any other `background` values to be added. 26 | */ 27 | @mixin retina($path, $cap: 2, $size: auto auto, $extras: null) { 28 | 29 | /* 30 | * Set a counter and get the length of the image path. 31 | */ 32 | $position: -1; 33 | $strpath: '#{$path}'; 34 | $length: str-length($strpath); 35 | 36 | /* 37 | * Loop ver the image path and figure out the 38 | * position of the dot where the extension begins. 39 | */ 40 | @for $i from $length through $length - 10{ 41 | @if $position == -1 { 42 | $char : str-slice($strpath, $i, $i); 43 | @if str-index($char, ".") == 1 { 44 | $position: $i; 45 | } 46 | } 47 | } 48 | 49 | /* 50 | * If we were able to figure out where the extension is, 51 | * slice the path into a base and an extension. Use that to 52 | * calculate urls for different density environments. Set 53 | * values for different environments. 54 | */ 55 | @if $position != -1 { 56 | $ext: str-slice($strpath, $position + 1, $length); 57 | $base: str-slice($strpath, 1, $position - 1); 58 | $at1x_path: "#{$base}.#{$ext}"; 59 | $at2x_path: "#{$base}@2x.#{$ext}"; 60 | 61 | /* 62 | * Set a base background for 1x environments. 63 | */ 64 | background: url("#{$at1x_path}") $extras; 65 | background-size: $size; 66 | 67 | /* 68 | * Create an @2x-ish media query. 69 | */ 70 | @media all and (-webkit-min-device-pixel-ratio : 1.5), 71 | all and (-o-min-device-pixel-ratio: 3/2), 72 | all and (min--moz-device-pixel-ratio: 1.5), 73 | all and (min-device-pixel-ratio: 1.5) { 74 | background : url("#{$at2x_path}") $extras; 75 | background-size : $size; 76 | } 77 | 78 | /* 79 | * Create media queries for all environments that the user has 80 | * provided images for. 81 | */ 82 | @if $cap >= 2 { 83 | @for $env from 2 through $cap { 84 | $suffix: "@#{$env}x"; 85 | @media (-webkit-min-device-pixel-ratio: $env), 86 | (min-resolution: $env * 96dpi) { 87 | background : url("#{$base}#{$suffix}.#{$ext}") $extras; 88 | background-size : $size; 89 | } 90 | } 91 | } 92 | 93 | /* 94 | * If anything went wrong trying to separate the file from its 95 | * extension, set a background value without doing anything to it. 96 | */ 97 | } @else { 98 | background: url("#{$path}") $extras; 99 | background-size: $size; 100 | } 101 | 102 | } 103 | -------------------------------------------------------------------------------- /dist/retina.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global.retinajs = factory()); 5 | }(this, (function () { 'use strict'; 6 | 7 | var hasWindow = typeof window !== 'undefined'; 8 | var environment = Math.round(hasWindow ? window.devicePixelRatio || 1 : 1); 9 | var srcReplace = /(\.[A-z]{3,4}\/?(\?.*)?)$/; 10 | var inlineReplace = /url\(('|")?([^)'"]+)('|")?\)/i; 11 | var selector = '[data-rjs]'; 12 | var processedAttr = 'data-rjs-processed'; 13 | function arrayify(object) { 14 | return Array.prototype.slice.call(object); 15 | } 16 | function chooseCap(cap) { 17 | var numericCap = parseInt(cap, 10); 18 | if (environment < numericCap) { 19 | return environment; 20 | } else { 21 | return numericCap; 22 | } 23 | } 24 | function forceOriginalDimensions(image) { 25 | if (!image.hasAttribute('data-no-resize')) { 26 | if (image.offsetWidth === 0 && image.offsetHeight === 0) { 27 | image.setAttribute('width', image.naturalWidth); 28 | image.setAttribute('height', image.naturalHeight); 29 | } else { 30 | image.setAttribute('width', image.offsetWidth); 31 | image.setAttribute('height', image.offsetHeight); 32 | } 33 | } 34 | return image; 35 | } 36 | function setSourceIfAvailable(image, retinaURL) { 37 | var imgType = image.nodeName.toLowerCase(); 38 | var testImage = document.createElement('img'); 39 | testImage.addEventListener('load', function () { 40 | if (imgType === 'img') { 41 | forceOriginalDimensions(image).setAttribute('src', retinaURL); 42 | } else { 43 | image.style.backgroundImage = 'url(' + retinaURL + ')'; 44 | } 45 | }); 46 | testImage.setAttribute('src', retinaURL); 47 | image.setAttribute(processedAttr, true); 48 | } 49 | function dynamicSwapImage(image, src) { 50 | var rjs = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1; 51 | var cap = chooseCap(rjs); 52 | if (src && cap > 1) { 53 | var newSrc = src.replace(srcReplace, '@' + cap + 'x$1'); 54 | setSourceIfAvailable(image, newSrc); 55 | } 56 | } 57 | function manualSwapImage(image, src, hdsrc) { 58 | if (environment > 1) { 59 | setSourceIfAvailable(image, hdsrc); 60 | } 61 | } 62 | function getImages(images) { 63 | if (!images) { 64 | return typeof document !== 'undefined' ? arrayify(document.querySelectorAll(selector)) : []; 65 | } else { 66 | return typeof images.forEach === 'function' ? images : arrayify(images); 67 | } 68 | } 69 | function cleanBgImg(img) { 70 | return img.style.backgroundImage.replace(inlineReplace, '$2'); 71 | } 72 | function retina(images) { 73 | getImages(images).forEach(function (img) { 74 | if (!img.getAttribute(processedAttr)) { 75 | var isImg = img.nodeName.toLowerCase() === 'img'; 76 | var src = isImg ? img.getAttribute('src') : cleanBgImg(img); 77 | var rjs = img.getAttribute('data-rjs'); 78 | var rjsIsNumber = !isNaN(parseInt(rjs, 10)); 79 | if (rjs === null) { 80 | return; 81 | } 82 | if (rjsIsNumber) { 83 | dynamicSwapImage(img, src, rjs); 84 | } else { 85 | manualSwapImage(img, src, rjs); 86 | } 87 | } 88 | }); 89 | } 90 | if (hasWindow) { 91 | window.addEventListener('load', function () { 92 | retina(); 93 | }); 94 | window.retinajs = retina; 95 | } 96 | 97 | return retina; 98 | 99 | }))); 100 | //# sourceMappingURL=retina.js.map 101 | -------------------------------------------------------------------------------- /dist/retina.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"retina.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"} -------------------------------------------------------------------------------- /dist/retina.less: -------------------------------------------------------------------------------- 1 | // retina.less 2 | // A helper mixin for applying high-resolution background images (http://www.retinajs.com) 3 | 4 | // Updated by John Newman 5 | // github.com/jgnewman 6 | // http://axial.agency 7 | 8 | /** 9 | * Allows you to use retina images at various pixel densities. 10 | * Examples: 11 | * 12 | * .retina(/images/mypic.jpg, 2); 13 | * .retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent); 14 | * 15 | * @param {String} $path The path to the file name minus extension. 16 | * @param {Number} $cap: 2 The highest pixel density level images exist for. 17 | * @param {Value} $size: auto auto The intended width of the rendered image. 18 | * @param {Value} $extras: null Any other `background` values to be added. 19 | */ 20 | .retina(@path, @cap: 2, @size: auto auto, @extras: ~'') { 21 | @lowretina: ~"(-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx)"; 22 | @2xpath: ~`@{path}.replace(/\.\w+$/, function(match) { return "@2x" + match; })`; 23 | 24 | /* 25 | * Set a base background for 1x environments. 26 | */ 27 | background: url(@path) @extras; 28 | background-size: @size; 29 | 30 | /* 31 | * Create an @2x-ish media query. 32 | */ 33 | @media @lowretina { 34 | background : url(@2xpath) @extras; 35 | background-size : @size; 36 | } 37 | 38 | /* 39 | * Create media queries for all environments that the user has 40 | * provided images for. 41 | */ 42 | .create-queries() when (@cap >= 2) { 43 | .loop(@env) when (@env <= @cap) { 44 | @retinapath: ~`@{path}.replace(/\.\w+$/, function(match) { return "@@{env}x" + match; })`; 45 | @media (-webkit-min-device-pixel-ratio: @env), 46 | (min-resolution: @env * 96dpi) { 47 | background : url(@retinapath) @extras; 48 | background-size : @size; 49 | } 50 | .loop((@env + 1)); // next iteration 51 | } 52 | .loop(2); 53 | } 54 | .create-queries(); 55 | 56 | } 57 | -------------------------------------------------------------------------------- /dist/retina.min.js: -------------------------------------------------------------------------------- 1 | (function(a,b){'object'==typeof exports&&'undefined'!=typeof module?module.exports=b():'function'==typeof define&&define.amd?define(b):a.retinajs=b()})(this,function(){'use strict';function a(a){return Array.prototype.slice.call(a)}function b(a){var b=parseInt(a,10);return k= 2 44 | for $env in (2..$cap) 45 | $newpath = pathjoin($dirname, replace('\.', '@' + $env + 'x.', $filename)) 46 | @media (-webkit-min-device-pixel-ratio: $env), (min-resolution: $env * 96dpi) 47 | background: url($newpath) $extras 48 | background-size: $size 49 | 50 | /* 51 | * If anything went wrong trying to separate the file from its 52 | * extension, set a background value without doing anything to it. 53 | */ 54 | else 55 | background: url($path) $extras 56 | background-size: $size 57 | -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "bail": true, 3 | "testEnvironment": "jsdom", 4 | "testPathIgnorePatterns": ["/flow-typed/"], 5 | "collectCoverageFrom": [ 6 | "src/*.js" 7 | ], 8 | "coverageThreshold": { 9 | "global": { 10 | "branches": 20, 11 | "functions": 20, 12 | "lines": 20, 13 | "statements": 20 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "retinajs", 3 | "version": "2.1.2", 4 | "license": "MIT", 5 | "homepage": "https://github.com/strues/retinajs", 6 | "bugs": "https://github.com/strues/retinajs/issues", 7 | "repository": { 8 | "type": "git", 9 | "url": "git+https://github.com/strues/retinajs.git" 10 | }, 11 | "keywords": [ 12 | "retina", 13 | "images", 14 | "@2x", 15 | "@3x", 16 | "retina.js" 17 | ], 18 | "main": "dist/retina.js", 19 | "module": "es/retina.js", 20 | "jsnext:main": "es/retina.js", 21 | "files": [ 22 | "dist", 23 | "es", 24 | "LICENSE" 25 | ], 26 | "lint-staged": { 27 | "*.js": [ 28 | "yarn format", 29 | "git add" 30 | ] 31 | }, 32 | "devDependencies": { 33 | "babel-jest": "^20.0.3", 34 | "babel-plugin-transform-flow-strip-types": "^6.22.0", 35 | "babel-preset-env": "^1.5.2", 36 | "cross-env": "^5.0.1", 37 | "cz-conventional-changelog-emoji": "^0.1.0", 38 | "eslint": "^4.0.0", 39 | "eslint-config-boldr": "^0.10.3", 40 | "flow-bin": "^0.48.0", 41 | "husky": "^0.13.4", 42 | "jest": "^20.0.4", 43 | "less": "^2.7.2", 44 | "lint-staged": "^4.0.0", 45 | "node-sass": "^4.5.3", 46 | "prettier": "^1.4.4", 47 | "rimraf": "^2.6.1", 48 | "rollup": "^0.43.0", 49 | "rollup-plugin-babel": "^2.7.1", 50 | "rollup-plugin-babili": "^3.1.0", 51 | "rollup-plugin-cleanup": "^1.0.1", 52 | "rollup-plugin-flow": "^1.1.1", 53 | "rollup-plugin-multi-dest": "^1.0.2", 54 | "rollup-watch": "^4.0.0", 55 | "sinon": "^2.3.5" 56 | }, 57 | "scripts": { 58 | "dev": "rollup -c -w -m inline", 59 | "format": "prettier --single-quote=true --print-width=100 --jsx-bracket-same-line=false --trailing-comma=all --write \"src/**/*.js\"", 60 | "build": "rimraf es && rimraf dist && npm run build:js && npm run build:styles", 61 | "build:js": "cross-env NODE_ENV=producion rollup -c", 62 | "build:styles": "npm run build:styles:es && npm run build:styles:dist", 63 | "build:styles:es": "cp src/_retina.sass es && cp src/_retina.scss es && cp src/retina.less es && cp src/retina.styl es", 64 | "build:styles:dist": "cp src/_retina.sass dist && cp src/_retina.scss dist && cp src/retina.less dist && cp src/retina.styl dist", 65 | "precommit": "lint-staged", 66 | "test-watch": "npm run test -- --watch", 67 | "test": "jest" 68 | }, 69 | "config": { 70 | "commitizen": { 71 | "path": "./node_modules/cz-conventional-changelog-emoji" 72 | } 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import babel from 'rollup-plugin-babel'; 2 | import babili from 'rollup-plugin-babili'; 3 | import cleanup from 'rollup-plugin-cleanup'; 4 | import flow from 'rollup-plugin-flow'; 5 | import multidest from 'rollup-plugin-multi-dest'; 6 | 7 | // Environment Check. 8 | const isProd = process.env.NODE_ENV === 'production'; 9 | // Plugin options objects. 10 | const opts = { 11 | babel: { 12 | exclude: 'node_modules/**', 13 | babelrc: false, 14 | presets: [ 15 | [ 16 | 'env', 17 | { 18 | loose: true, 19 | comments: true, 20 | modules: false, 21 | targets: { 22 | browserslist: ['> 5%', 'last 3 versions'], 23 | }, 24 | }, 25 | ], 26 | ], 27 | }, 28 | flow: { pretty: true }, 29 | }; 30 | 31 | export default { 32 | entry: 'src/retina.js', 33 | moduleName: 'retinajs', 34 | format: 'es', 35 | sourceMap: true, 36 | dest: 'es/retina.js', 37 | plugins: [ 38 | flow(opts.flow), 39 | multidest([ 40 | { 41 | format: 'umd', 42 | dest: 'dist/retina.js', 43 | plugins: [flow(opts.flow), babel(opts.babel)], 44 | }, 45 | { 46 | format: 'umd', 47 | dest: 'dev/retina.js', 48 | plugins: [flow(opts.flow), babel(opts.babel)], 49 | }, 50 | { 51 | format: 'umd', 52 | dest: 'dist/retina.min.js', 53 | plugins: [flow(opts.flow), babel(opts.babel), babili()], 54 | }, 55 | ]), 56 | cleanup(), 57 | ], 58 | }; 59 | -------------------------------------------------------------------------------- /src/_retina.sass: -------------------------------------------------------------------------------- 1 | // retina.sass 2 | // A helper mixin for applying high-resolution background images (http://www.retinajs.com) 3 | 4 | // Submitted by Nathan Crank 5 | // nathancrank.com 6 | 7 | // Updated by John Newman 8 | // github.com/jgnewman 9 | // http://axial.agency 10 | 11 | /** 12 | * Allows you to use retina images at various pixel densities. 13 | * Examples: 14 | * 15 | * +retina(/images/mypic.jpg, 2); 16 | * +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent); 17 | * 18 | * @param {Value} $path The path to the file name minus extension. 19 | * @param {Number} $cap: 2 The highest pixel density level images exist for. 20 | * @param {Value} $size: auto auto The intended width of the rendered image. 21 | * @param {Value} $extras: null Any other `background` values to be added. 22 | */ 23 | =retina($path, $cap: 2, $size: auto auto, $extras: null) 24 | 25 | // Set a counter and get the length of the image path. 26 | $position: -1 27 | $strpath: '#{$path}' 28 | $length: str-length($strpath) 29 | 30 | // Loop ver the image path and figure out the 31 | // position of the dot where the extension begins. 32 | @for $i from $length through $length - 10 33 | @if $position == -1 34 | $char: str-slice($strpath, $i,$i) 35 | @if str-index($char, ".") == 1 36 | $position: $i 37 | 38 | // If we were able to figure out where the extension is, 39 | // slice the path into a base and an extension. Use that to 40 | // calculate urls for different density environments. Set 41 | // values for different environments. 42 | @if $position != -1 43 | $ext: str-slice($strpath, $position + 1, $length) 44 | $base: str-slice($strpath, 1 ,$position - 1) 45 | $at1x_path: "#{$base}.#{$ext}" 46 | $at2x_path: "#{$base}@2x.#{$ext}" 47 | 48 | // Set a base background for 1x environments. 49 | background: url("#{$at1x_path}") $extras 50 | background-size: $size 51 | 52 | // Create an @2x-ish media query. 53 | @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) 54 | background: url("#{$at2x_path}") $extras 55 | background-size: $size 56 | 57 | // Create media queries for all environments that the user has 58 | // provided images for. 59 | @if $cap >= 2 60 | @for $env from 2 through $cap 61 | $suffix: "@#{$env}x" 62 | @media (-webkit-min-device-pixel-ratio: $env), (min-resolution: $env * 96dpi) 63 | background: url("#{$base}#{$suffix}.#{$ext}") $extras 64 | background-size: $size 65 | 66 | @else 67 | background: url("#{$path}") $extras 68 | background-size: $size 69 | -------------------------------------------------------------------------------- /src/_retina.scss: -------------------------------------------------------------------------------- 1 | // retina.scss 2 | // A helper mixin for applying high-resolution background images (http://www.retinajs.com) 3 | 4 | // Submitted by Nathan Crank 5 | // nathancrank.com 6 | 7 | // Updated by Gabriel R. Sezefredo 8 | // gabriel.sezefredo.com.br 9 | 10 | // Updated by John Newman 11 | // github.com/jgnewman 12 | // http://axial.agency 13 | 14 | 15 | /** 16 | * Allows you to use retina images at various pixel densities. 17 | * Examples: 18 | * 19 | * @include retina(/images/mypic.jpg, 2); 20 | * @include retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent); 21 | * 22 | * @param {Value} $path The path to the file name minus extension. 23 | * @param {Number} $cap: 2 The highest pixel density level images exist for. 24 | * @param {Value} $size: auto auto The intended width of the rendered image. 25 | * @param {Value} $extras: null Any other `background` values to be added. 26 | */ 27 | @mixin retina($path, $cap: 2, $size: auto auto, $extras: null) { 28 | 29 | /* 30 | * Set a counter and get the length of the image path. 31 | */ 32 | $position: -1; 33 | $strpath: '#{$path}'; 34 | $length: str-length($strpath); 35 | 36 | /* 37 | * Loop ver the image path and figure out the 38 | * position of the dot where the extension begins. 39 | */ 40 | @for $i from $length through $length - 10{ 41 | @if $position == -1 { 42 | $char : str-slice($strpath, $i, $i); 43 | @if str-index($char, ".") == 1 { 44 | $position: $i; 45 | } 46 | } 47 | } 48 | 49 | /* 50 | * If we were able to figure out where the extension is, 51 | * slice the path into a base and an extension. Use that to 52 | * calculate urls for different density environments. Set 53 | * values for different environments. 54 | */ 55 | @if $position != -1 { 56 | $ext: str-slice($strpath, $position + 1, $length); 57 | $base: str-slice($strpath, 1, $position - 1); 58 | $at1x_path: "#{$base}.#{$ext}"; 59 | $at2x_path: "#{$base}@2x.#{$ext}"; 60 | 61 | /* 62 | * Set a base background for 1x environments. 63 | */ 64 | background: url("#{$at1x_path}") $extras; 65 | background-size: $size; 66 | 67 | /* 68 | * Create an @2x-ish media query. 69 | */ 70 | @media all and (-webkit-min-device-pixel-ratio : 1.5), 71 | all and (-o-min-device-pixel-ratio: 3/2), 72 | all and (min--moz-device-pixel-ratio: 1.5), 73 | all and (min-device-pixel-ratio: 1.5) { 74 | background : url("#{$at2x_path}") $extras; 75 | background-size : $size; 76 | } 77 | 78 | /* 79 | * Create media queries for all environments that the user has 80 | * provided images for. 81 | */ 82 | @if $cap >= 2 { 83 | @for $env from 2 through $cap { 84 | $suffix: "@#{$env}x"; 85 | @media (-webkit-min-device-pixel-ratio: $env), 86 | (min-resolution: $env * 96dpi) { 87 | background : url("#{$base}#{$suffix}.#{$ext}") $extras; 88 | background-size : $size; 89 | } 90 | } 91 | } 92 | 93 | /* 94 | * If anything went wrong trying to separate the file from its 95 | * extension, set a background value without doing anything to it. 96 | */ 97 | } @else { 98 | background: url("#{$path}") $extras; 99 | background-size: $size; 100 | } 101 | 102 | } 103 | -------------------------------------------------------------------------------- /src/retina.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | /** 4 | * -------------------------------------------------------------------------- 5 | * Retina.js 6 | * Licensed under MIT (https://github.com/strues/retinajs/blob/master/LICENSE) 7 | * 8 | * Retina.js is an open source script that makes it easy to serve high-resolution 9 | * images to devices with retina displays. 10 | * -------------------------------------------------------------------------- 11 | */ 12 | 13 | /* 14 | * Determine whether or not `window` is available. 15 | */ 16 | const hasWindow: boolean = typeof window !== 'undefined'; 17 | 18 | /* 19 | * Get the device pixel ratio per our environment. 20 | * Default to 1. 21 | */ 22 | const environment: number = Math.round(hasWindow ? window.devicePixelRatio || 1 : 1); 23 | 24 | /* 25 | * Define a pattern for capturing src url suffixes. 26 | */ 27 | const srcReplace = /(\.[A-z]{3,4}\/?(\?.*)?)$/; 28 | const inlineReplace = /url\(('|")?([^)'"]+)('|")?\)/i; 29 | 30 | /* 31 | * Define our selectors for elements to target. 32 | */ 33 | const selector: string = '[data-rjs]'; 34 | 35 | /* 36 | * Define the attribute we'll use to mark an image as having been processed. 37 | */ 38 | const processedAttr: string = 'data-rjs-processed'; 39 | 40 | /** 41 | * Shortcut for turning some iterable object into an array. 42 | * 43 | * @param {Iterable} object Any iterable object. 44 | * 45 | * @return {Array} 46 | */ 47 | function arrayify(object) { 48 | return Array.prototype.slice.call(object); 49 | } 50 | 51 | /** 52 | * Chooses the actual image size to fetch, (for example 2 or 3) that 53 | * will be used to create a suffix like "@2x" or "@3x". 54 | * 55 | * @param {String|Number} cap The number the user provided indicating that 56 | * they have prepared images up to this size. 57 | * 58 | * @return {Number} The number we'll be using to create a suffix. 59 | */ 60 | function chooseCap(cap: number | string) { 61 | const numericCap: number = parseInt(cap, 10); 62 | 63 | /* 64 | * If the environment's device pixel ratio is less than what the user 65 | * provided, we'll only grab images at that size. 66 | */ 67 | if (environment < numericCap) { 68 | return environment; 69 | 70 | /* 71 | * If the device pixel ratio is greater than or equal to what the 72 | * user provided, we'll use what the user provided. 73 | */ 74 | } else { 75 | return numericCap; 76 | } 77 | } 78 | 79 | /** 80 | * Makes sure that, since we are going to swap out the source of an image, 81 | * the image does not change size on the page. 82 | * 83 | * @param {Element} image An image element in the DOM. 84 | * 85 | * @return {Element} The same element that was passed in. 86 | */ 87 | function forceOriginalDimensions(image: HTMLImageElement) { 88 | if (!image.hasAttribute('data-no-resize')) { 89 | if (image.offsetWidth === 0 && image.offsetHeight === 0) { 90 | image.setAttribute('width', image.naturalWidth); 91 | image.setAttribute('height', image.naturalHeight); 92 | } else { 93 | image.setAttribute('width', image.offsetWidth); 94 | image.setAttribute('height', image.offsetHeight); 95 | } 96 | } 97 | return image; 98 | } 99 | 100 | /** 101 | * Determines whether the retina image actually exists on the server. 102 | * If so, swaps out the retina image for the standard one. If not, 103 | * leaves the original image alone. 104 | * 105 | * @param {Element} image An image element in the DOM. 106 | * @param {String} newSrc The url to the retina image. 107 | * 108 | * @return {undefined} 109 | */ 110 | function setSourceIfAvailable(image, retinaURL) { 111 | const imgType = image.nodeName.toLowerCase(); 112 | 113 | /* 114 | * Create a new image element and give it a load listener. When the 115 | * load listener fires, it means the URL is correct and we will then 116 | * attach it to the user's image. 117 | */ 118 | const testImage = document.createElement('img'); 119 | testImage.addEventListener('load', () => { 120 | /* 121 | * If we're dealing with an image tag, force it's dimensions 122 | * and set the source attribute. If not, go after the background-image 123 | * inline style. 124 | */ 125 | if (imgType === 'img') { 126 | forceOriginalDimensions(image).setAttribute('src', retinaURL); 127 | } else { 128 | image.style.backgroundImage = `url(${retinaURL})`; 129 | } 130 | }); 131 | 132 | /* 133 | * Attach the retina URL to our proxy image to load in the new 134 | * image resource. 135 | */ 136 | testImage.setAttribute('src', retinaURL); 137 | 138 | /* 139 | * Mark our image as processed so that it won't be processed again. 140 | */ 141 | image.setAttribute(processedAttr, true); 142 | } 143 | 144 | /** 145 | * Attempts to do an image url swap on a given image. 146 | * 147 | * @param {Element} image An image in the DOM. 148 | * @param {String} src The original image source attribute. 149 | * @param {String|Number} rjs The pixel density cap for images provided. 150 | * 151 | * @return {undefined} 152 | */ 153 | function dynamicSwapImage(image, src, rjs = 1) { 154 | const cap = chooseCap(rjs); 155 | 156 | /* 157 | * Don't do anything if the cap is less than 2 or there is no src. 158 | */ 159 | if (src && cap > 1) { 160 | const newSrc: string = src.replace(srcReplace, `@${cap}x$1`); 161 | setSourceIfAvailable(image, newSrc); 162 | } 163 | } 164 | 165 | /** 166 | * Performs an image url swap on a given image with a provided url. 167 | * 168 | * @param {Element} image An image in the DOM. 169 | * @param {String} src The original image source attribute. 170 | * @param {String} hdsrc The path for a 2x image. 171 | * 172 | * @return {undefined} 173 | */ 174 | function manualSwapImage(image: HTMLImageElement, src: string, hdsrc: string): void { 175 | if (environment > 1) { 176 | setSourceIfAvailable(image, hdsrc); 177 | } 178 | } 179 | 180 | /** 181 | * Collects all images matching our selector, and converts our 182 | * NodeList into an Array so that Array methods will be available to it. 183 | * 184 | * @param {Iterable} images Optional. An Array, jQuery selection, or NodeList 185 | * of elements to affect with retina.js. 186 | * 187 | * @return {Iterable} Contains all elements matching our selector. 188 | */ 189 | function getImages(images) { 190 | if (!images) { 191 | return typeof document !== 'undefined' ? arrayify(document.querySelectorAll(selector)) : []; 192 | } else { 193 | return typeof images.forEach === 'function' ? images : arrayify(images); 194 | } 195 | } 196 | 197 | /** 198 | * Converts a string like "url(hello.png)" into "hello.png". 199 | * 200 | * @param {Element} img An HTML element with a background image. 201 | * 202 | * @return {String} 203 | */ 204 | function cleanBgImg(img: HTMLImageElement): string { 205 | return img.style.backgroundImage.replace(inlineReplace, '$2'); 206 | } 207 | 208 | /** 209 | * Gets all participating images and dynamically swaps out each one for its 210 | * retina equivalent taking into account the environment capabilities and 211 | * the densities for which the user has provided images. 212 | * 213 | * @param {Iterable} images Optional. An Array, jQuery selection, or NodeList 214 | * of elements to affect with retina.js. If not 215 | * provided, retina.js will grab all images on the 216 | * page. 217 | * 218 | * @return {undefined} 219 | */ 220 | function retina(images: Array) { 221 | getImages(images).forEach(img => { 222 | if (!img.getAttribute(processedAttr)) { 223 | const isImg: boolean = img.nodeName.toLowerCase() === 'img'; 224 | const src = isImg ? img.getAttribute('src') : cleanBgImg(img); 225 | const rjs = img.getAttribute('data-rjs'); 226 | const rjsIsNumber: boolean = !isNaN(parseInt(rjs, 10)); 227 | 228 | // do not try to load /null image! 229 | if (rjs === null) { 230 | return; 231 | } 232 | 233 | /* 234 | * If the user provided a number, dynamically swap out the image. 235 | * If the user provided a url, do it manually. 236 | */ 237 | if (rjsIsNumber) { 238 | dynamicSwapImage(img, src, rjs); 239 | } else { 240 | manualSwapImage(img, src, rjs); 241 | } 242 | } 243 | }); 244 | } 245 | 246 | /* 247 | * If this environment has `window`, activate the plugin. 248 | */ 249 | if (hasWindow) { 250 | window.addEventListener('load', () => { 251 | retina(); 252 | }); 253 | window.retinajs = retina; 254 | } 255 | 256 | export default retina; 257 | -------------------------------------------------------------------------------- /src/retina.less: -------------------------------------------------------------------------------- 1 | // retina.less 2 | // A helper mixin for applying high-resolution background images (http://www.retinajs.com) 3 | 4 | // Updated by John Newman 5 | // github.com/jgnewman 6 | // http://axial.agency 7 | 8 | /** 9 | * Allows you to use retina images at various pixel densities. 10 | * Examples: 11 | * 12 | * .retina(/images/mypic.jpg, 2); 13 | * .retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent); 14 | * 15 | * @param {String} $path The path to the file name minus extension. 16 | * @param {Number} $cap: 2 The highest pixel density level images exist for. 17 | * @param {Value} $size: auto auto The intended width of the rendered image. 18 | * @param {Value} $extras: null Any other `background` values to be added. 19 | */ 20 | .retina(@path, @cap: 2, @size: auto auto, @extras: ~'') { 21 | @lowretina: ~"(-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx)"; 22 | @2xpath: ~`@{path}.replace(/\.\w+$/, function(match) { return "@2x" + match; })`; 23 | 24 | /* 25 | * Set a base background for 1x environments. 26 | */ 27 | background: url(@path) @extras; 28 | background-size: @size; 29 | 30 | /* 31 | * Create an @2x-ish media query. 32 | */ 33 | @media @lowretina { 34 | background : url(@2xpath) @extras; 35 | background-size : @size; 36 | } 37 | 38 | /* 39 | * Create media queries for all environments that the user has 40 | * provided images for. 41 | */ 42 | .create-queries() when (@cap >= 2) { 43 | .loop(@env) when (@env <= @cap) { 44 | @retinapath: ~`@{path}.replace(/\.\w+$/, function(match) { return "@@{env}x" + match; })`; 45 | @media (-webkit-min-device-pixel-ratio: @env), 46 | (min-resolution: @env * 96dpi) { 47 | background : url(@retinapath) @extras; 48 | background-size : @size; 49 | } 50 | .loop((@env + 1)); // next iteration 51 | } 52 | .loop(2); 53 | } 54 | .create-queries(); 55 | 56 | } 57 | -------------------------------------------------------------------------------- /src/retina.styl: -------------------------------------------------------------------------------- 1 | // retina.styl 2 | // A helper mixin for applying high-resolution background images (http://www.retinajs.com) 3 | 4 | // Created by John Newman 5 | // github.com/jgnewman 6 | // http://axial.agency 7 | 8 | 9 | /** 10 | * Allows you to use retina images at various pixel densities. 11 | * Examples: 12 | * 13 | * retina(/images/mypic.jpg, 2) 14 | * retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent) 15 | * 16 | * @param {Value} $path The path to the file name minus extension. 17 | * @param {Number} $cap: 2 The highest pixel density level images exist for. 18 | * @param {Value} $size: auto auto The intended width of the rendered image. 19 | * @param {Value} $extras: null Any other `background` values to be added. 20 | */ 21 | retina($path, $cap = 2, $size = auto auto, $extras = null) 22 | $dirname = dirname($path) 23 | $filename = basename($path) 24 | $at2xpath = pathjoin($dirname, replace('\.', '@2x.', $filename)) 25 | 26 | /* 27 | * Set a base background for 1x environments. 28 | */ 29 | background: url($path) $extras 30 | background-size: $size 31 | 32 | /* 33 | * Create an @2x-ish media query. 34 | */ 35 | @media all and (-webkit-min-device-pixel-ratio : 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) 36 | background: url($at2xpath) $extras 37 | background-size: $size 38 | 39 | /* 40 | * Create media queries for all environments that the user has 41 | * provided images for. 42 | */ 43 | if $cap >= 2 44 | for $env in (2..$cap) 45 | $newpath = pathjoin($dirname, replace('\.', '@' + $env + 'x.', $filename)) 46 | @media (-webkit-min-device-pixel-ratio: $env), (min-resolution: $env * 96dpi) 47 | background: url($newpath) $extras 48 | background-size: $size 49 | 50 | /* 51 | * If anything went wrong trying to separate the file from its 52 | * extension, set a background value without doing anything to it. 53 | */ 54 | else 55 | background: url($path) $extras 56 | background-size: $size 57 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@comandeer/babel-plugin-banner@^1.0.0": 6 | version "1.0.0" 7 | resolved "https://registry.yarnpkg.com/@comandeer/babel-plugin-banner/-/babel-plugin-banner-1.0.0.tgz#40bcce0bbee084b5b02545a33635d053c248356f" 8 | 9 | abab@^1.0.3: 10 | version "1.0.3" 11 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 12 | 13 | abbrev@1: 14 | version "1.1.0" 15 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 16 | 17 | acorn-globals@^3.1.0: 18 | version "3.1.0" 19 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 20 | dependencies: 21 | acorn "^4.0.4" 22 | 23 | acorn-jsx@^3.0.0: 24 | version "3.0.1" 25 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 26 | dependencies: 27 | acorn "^3.0.4" 28 | 29 | acorn@4.x, acorn@^4.0.4: 30 | version "4.0.13" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 32 | 33 | acorn@^3.0.4: 34 | version "3.3.0" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 36 | 37 | acorn@^5.0.1: 38 | version "5.0.3" 39 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 40 | 41 | ajv-keywords@^1.0.0: 42 | version "1.5.1" 43 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 44 | 45 | ajv@^4.7.0, ajv@^4.9.1: 46 | version "4.11.8" 47 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 48 | dependencies: 49 | co "^4.6.0" 50 | json-stable-stringify "^1.0.1" 51 | 52 | align-text@^0.1.1, align-text@^0.1.3: 53 | version "0.1.4" 54 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 55 | dependencies: 56 | kind-of "^3.0.2" 57 | longest "^1.0.1" 58 | repeat-string "^1.5.2" 59 | 60 | amdefine@>=0.0.4: 61 | version "1.0.1" 62 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 63 | 64 | ansi-escapes@^1.0.0, ansi-escapes@^1.4.0: 65 | version "1.4.0" 66 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 67 | 68 | ansi-escapes@^2.0.0: 69 | version "2.0.0" 70 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 71 | 72 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 73 | version "2.1.1" 74 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 75 | 76 | ansi-styles@^2.2.1: 77 | version "2.2.1" 78 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 79 | 80 | ansi-styles@^3.0.0: 81 | version "3.1.0" 82 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 83 | dependencies: 84 | color-convert "^1.0.0" 85 | 86 | anymatch@^1.3.0: 87 | version "1.3.0" 88 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 89 | dependencies: 90 | arrify "^1.0.0" 91 | micromatch "^2.1.5" 92 | 93 | app-root-path@^2.0.0: 94 | version "2.0.1" 95 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 96 | 97 | append-transform@^0.4.0: 98 | version "0.4.0" 99 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 100 | dependencies: 101 | default-require-extensions "^1.0.0" 102 | 103 | aproba@^1.0.3: 104 | version "1.1.2" 105 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 106 | 107 | are-we-there-yet@~1.1.2: 108 | version "1.1.4" 109 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 110 | dependencies: 111 | delegates "^1.0.0" 112 | readable-stream "^2.0.6" 113 | 114 | argparse@^1.0.7: 115 | version "1.0.9" 116 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 117 | dependencies: 118 | sprintf-js "~1.0.2" 119 | 120 | aria-query@^0.5.0: 121 | version "0.5.0" 122 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.5.0.tgz#85e3152cd8cc5bab18dbed61cd9c4fce54fa79c3" 123 | dependencies: 124 | ast-types-flow "0.0.7" 125 | 126 | arr-diff@^2.0.0: 127 | version "2.0.0" 128 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 129 | dependencies: 130 | arr-flatten "^1.0.1" 131 | 132 | arr-flatten@^1.0.1: 133 | version "1.0.3" 134 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 135 | 136 | array-equal@^1.0.0: 137 | version "1.0.0" 138 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 139 | 140 | array-find-index@^1.0.1: 141 | version "1.0.2" 142 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 143 | 144 | array-includes@^3.0.3: 145 | version "3.0.3" 146 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" 147 | dependencies: 148 | define-properties "^1.1.2" 149 | es-abstract "^1.7.0" 150 | 151 | array-union@^1.0.1: 152 | version "1.0.2" 153 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 154 | dependencies: 155 | array-uniq "^1.0.1" 156 | 157 | array-uniq@^1.0.1: 158 | version "1.0.3" 159 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 160 | 161 | array-unique@^0.2.1: 162 | version "0.2.1" 163 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 164 | 165 | arrify@^1.0.0, arrify@^1.0.1: 166 | version "1.0.1" 167 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 168 | 169 | asap@~2.0.3: 170 | version "2.0.5" 171 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 172 | 173 | asn1@~0.2.3: 174 | version "0.2.3" 175 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 176 | 177 | assert-plus@1.0.0, assert-plus@^1.0.0: 178 | version "1.0.0" 179 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 180 | 181 | assert-plus@^0.2.0: 182 | version "0.2.0" 183 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 184 | 185 | ast-types-flow@0.0.7: 186 | version "0.0.7" 187 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 188 | 189 | async-each@^1.0.0: 190 | version "1.0.1" 191 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 192 | 193 | async-foreach@^0.1.3: 194 | version "0.1.3" 195 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" 196 | 197 | async@^1.4.0: 198 | version "1.5.2" 199 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 200 | 201 | async@^2.1.4: 202 | version "2.4.1" 203 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7" 204 | dependencies: 205 | lodash "^4.14.0" 206 | 207 | asynckit@^0.4.0: 208 | version "0.4.0" 209 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 210 | 211 | aws-sign2@~0.6.0: 212 | version "0.6.0" 213 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 214 | 215 | aws4@^1.2.1: 216 | version "1.6.0" 217 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 218 | 219 | axobject-query@^0.1.0: 220 | version "0.1.0" 221 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0" 222 | dependencies: 223 | ast-types-flow "0.0.7" 224 | 225 | babel-code-frame@^6.22.0: 226 | version "6.22.0" 227 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 228 | dependencies: 229 | chalk "^1.1.0" 230 | esutils "^2.0.2" 231 | js-tokens "^3.0.0" 232 | 233 | babel-core@6, babel-core@^6.0.0, babel-core@^6.21.0, babel-core@^6.24.1: 234 | version "6.25.0" 235 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" 236 | dependencies: 237 | babel-code-frame "^6.22.0" 238 | babel-generator "^6.25.0" 239 | babel-helpers "^6.24.1" 240 | babel-messages "^6.23.0" 241 | babel-register "^6.24.1" 242 | babel-runtime "^6.22.0" 243 | babel-template "^6.25.0" 244 | babel-traverse "^6.25.0" 245 | babel-types "^6.25.0" 246 | babylon "^6.17.2" 247 | convert-source-map "^1.1.0" 248 | debug "^2.1.1" 249 | json5 "^0.5.0" 250 | lodash "^4.2.0" 251 | minimatch "^3.0.2" 252 | path-is-absolute "^1.0.0" 253 | private "^0.1.6" 254 | slash "^1.0.0" 255 | source-map "^0.5.0" 256 | 257 | babel-eslint@^7.2.3: 258 | version "7.2.3" 259 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827" 260 | dependencies: 261 | babel-code-frame "^6.22.0" 262 | babel-traverse "^6.23.1" 263 | babel-types "^6.23.0" 264 | babylon "^6.17.0" 265 | 266 | babel-generator@^6.18.0, babel-generator@^6.25.0: 267 | version "6.25.0" 268 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" 269 | dependencies: 270 | babel-messages "^6.23.0" 271 | babel-runtime "^6.22.0" 272 | babel-types "^6.25.0" 273 | detect-indent "^4.0.0" 274 | jsesc "^1.3.0" 275 | lodash "^4.2.0" 276 | source-map "^0.5.0" 277 | trim-right "^1.0.1" 278 | 279 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 282 | dependencies: 283 | babel-helper-explode-assignable-expression "^6.24.1" 284 | babel-runtime "^6.22.0" 285 | babel-types "^6.24.1" 286 | 287 | babel-helper-call-delegate@^6.24.1: 288 | version "6.24.1" 289 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 290 | dependencies: 291 | babel-helper-hoist-variables "^6.24.1" 292 | babel-runtime "^6.22.0" 293 | babel-traverse "^6.24.1" 294 | babel-types "^6.24.1" 295 | 296 | babel-helper-define-map@^6.24.1: 297 | version "6.24.1" 298 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 299 | dependencies: 300 | babel-helper-function-name "^6.24.1" 301 | babel-runtime "^6.22.0" 302 | babel-types "^6.24.1" 303 | lodash "^4.2.0" 304 | 305 | babel-helper-evaluate-path@^0.1.0: 306 | version "0.1.0" 307 | resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.1.0.tgz#95d98c4ea36150483db2e7d3ec9e1954a72629cb" 308 | 309 | babel-helper-explode-assignable-expression@^6.24.1: 310 | version "6.24.1" 311 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 312 | dependencies: 313 | babel-runtime "^6.22.0" 314 | babel-traverse "^6.24.1" 315 | babel-types "^6.24.1" 316 | 317 | babel-helper-flip-expressions@^0.1.2: 318 | version "0.1.2" 319 | resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.1.2.tgz#77f6652f9de9c42401d827bd46ebd2109e3ef18a" 320 | 321 | babel-helper-function-name@^6.24.1: 322 | version "6.24.1" 323 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 324 | dependencies: 325 | babel-helper-get-function-arity "^6.24.1" 326 | babel-runtime "^6.22.0" 327 | babel-template "^6.24.1" 328 | babel-traverse "^6.24.1" 329 | babel-types "^6.24.1" 330 | 331 | babel-helper-get-function-arity@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | babel-types "^6.24.1" 337 | 338 | babel-helper-hoist-variables@^6.24.1: 339 | version "6.24.1" 340 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 341 | dependencies: 342 | babel-runtime "^6.22.0" 343 | babel-types "^6.24.1" 344 | 345 | babel-helper-is-nodes-equiv@^0.0.1: 346 | version "0.0.1" 347 | resolved "https://registry.yarnpkg.com/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684" 348 | 349 | babel-helper-is-void-0@^0.1.1: 350 | version "0.1.1" 351 | resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.1.1.tgz#72f21a3abba0bef3837f9174fca731aed9a02888" 352 | 353 | babel-helper-mark-eval-scopes@^0.1.1: 354 | version "0.1.1" 355 | resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.1.1.tgz#4554345edf9f2549427bd2098e530253f8af2992" 356 | 357 | babel-helper-optimise-call-expression@^6.24.1: 358 | version "6.24.1" 359 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 360 | dependencies: 361 | babel-runtime "^6.22.0" 362 | babel-types "^6.24.1" 363 | 364 | babel-helper-regex@^6.24.1: 365 | version "6.24.1" 366 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 367 | dependencies: 368 | babel-runtime "^6.22.0" 369 | babel-types "^6.24.1" 370 | lodash "^4.2.0" 371 | 372 | babel-helper-remap-async-to-generator@^6.24.1: 373 | version "6.24.1" 374 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 375 | dependencies: 376 | babel-helper-function-name "^6.24.1" 377 | babel-runtime "^6.22.0" 378 | babel-template "^6.24.1" 379 | babel-traverse "^6.24.1" 380 | babel-types "^6.24.1" 381 | 382 | babel-helper-remove-or-void@^0.1.1: 383 | version "0.1.1" 384 | resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.1.1.tgz#9d7e1856dc6fafcb41b283a416730dc1844f66d7" 385 | 386 | babel-helper-replace-supers@^6.24.1: 387 | version "6.24.1" 388 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 389 | dependencies: 390 | babel-helper-optimise-call-expression "^6.24.1" 391 | babel-messages "^6.23.0" 392 | babel-runtime "^6.22.0" 393 | babel-template "^6.24.1" 394 | babel-traverse "^6.24.1" 395 | babel-types "^6.24.1" 396 | 397 | babel-helper-to-multiple-sequence-expressions@^0.1.1: 398 | version "0.1.1" 399 | resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.1.1.tgz#5f1b832b39e4acf954e9137f0251395c71196b35" 400 | 401 | babel-helpers@^6.24.1: 402 | version "6.24.1" 403 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 404 | dependencies: 405 | babel-runtime "^6.22.0" 406 | babel-template "^6.24.1" 407 | 408 | babel-jest@^20.0.3: 409 | version "20.0.3" 410 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 411 | dependencies: 412 | babel-core "^6.0.0" 413 | babel-plugin-istanbul "^4.0.0" 414 | babel-preset-jest "^20.0.3" 415 | 416 | babel-messages@^6.23.0: 417 | version "6.23.0" 418 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 419 | dependencies: 420 | babel-runtime "^6.22.0" 421 | 422 | babel-plugin-check-es2015-constants@^6.22.0: 423 | version "6.22.0" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 425 | dependencies: 426 | babel-runtime "^6.22.0" 427 | 428 | babel-plugin-istanbul@^4.0.0: 429 | version "4.1.4" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 431 | dependencies: 432 | find-up "^2.1.0" 433 | istanbul-lib-instrument "^1.7.2" 434 | test-exclude "^4.1.1" 435 | 436 | babel-plugin-jest-hoist@^20.0.3: 437 | version "20.0.3" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 439 | 440 | babel-plugin-minify-builtins@^0.1.3: 441 | version "0.1.3" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.1.3.tgz#4f21a7dcb51f91a04ea71d47ff0e8e3b05fec021" 443 | dependencies: 444 | babel-helper-evaluate-path "^0.1.0" 445 | 446 | babel-plugin-minify-constant-folding@^0.1.3: 447 | version "0.1.3" 448 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.1.3.tgz#57bd172adf8b8d74ad7c99612eb950414ebea3ca" 449 | dependencies: 450 | babel-helper-evaluate-path "^0.1.0" 451 | 452 | babel-plugin-minify-dead-code-elimination@^0.1.7: 453 | version "0.1.7" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.1.7.tgz#774f536f347b98393a27baa717872968813c342c" 455 | dependencies: 456 | babel-helper-mark-eval-scopes "^0.1.1" 457 | babel-helper-remove-or-void "^0.1.1" 458 | lodash.some "^4.6.0" 459 | 460 | babel-plugin-minify-flip-comparisons@^0.1.2: 461 | version "0.1.2" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.1.2.tgz#e286b40b7599b18dfea195071e4279465cfc1884" 463 | dependencies: 464 | babel-helper-is-void-0 "^0.1.1" 465 | 466 | babel-plugin-minify-guarded-expressions@^0.1.2: 467 | version "0.1.2" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.1.2.tgz#dfc3d473b0362d9605d3ce0ac1e22328c60d1007" 469 | dependencies: 470 | babel-helper-flip-expressions "^0.1.2" 471 | 472 | babel-plugin-minify-infinity@^0.1.2: 473 | version "0.1.2" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.1.2.tgz#5f1cf67ddedcba13c8a00da832542df0091a1cd4" 475 | 476 | babel-plugin-minify-mangle-names@^0.1.3: 477 | version "0.1.3" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.1.3.tgz#bfa24661a6794fb03833587e55828b65449e06fe" 479 | dependencies: 480 | babel-helper-mark-eval-scopes "^0.1.1" 481 | 482 | babel-plugin-minify-numeric-literals@^0.1.1: 483 | version "0.1.1" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.1.1.tgz#d4b8b0c925f874714ee33ee4b26678583d7ce7fb" 485 | 486 | babel-plugin-minify-replace@^0.1.2: 487 | version "0.1.2" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.1.2.tgz#b90b9e71ab4d3b36325629a91beabe13b0b16ac1" 489 | 490 | babel-plugin-minify-simplify@^0.1.2: 491 | version "0.1.2" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.1.2.tgz#a968f1658fdeb2fc759e81fe331d89829df0f6b9" 493 | dependencies: 494 | babel-helper-flip-expressions "^0.1.2" 495 | babel-helper-is-nodes-equiv "^0.0.1" 496 | babel-helper-to-multiple-sequence-expressions "^0.1.1" 497 | 498 | babel-plugin-minify-type-constructors@^0.1.2: 499 | version "0.1.2" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.1.2.tgz#db53c5b76cb8e2fcd45d862f17104c78761337ee" 501 | dependencies: 502 | babel-helper-is-void-0 "^0.1.1" 503 | 504 | babel-plugin-syntax-async-functions@^6.8.0: 505 | version "6.13.0" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 507 | 508 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 509 | version "6.13.0" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 511 | 512 | babel-plugin-syntax-flow@^6.18.0: 513 | version "6.18.0" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 515 | 516 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 517 | version "6.22.0" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 519 | 520 | babel-plugin-transform-async-to-generator@^6.22.0: 521 | version "6.24.1" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 523 | dependencies: 524 | babel-helper-remap-async-to-generator "^6.24.1" 525 | babel-plugin-syntax-async-functions "^6.8.0" 526 | babel-runtime "^6.22.0" 527 | 528 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 529 | version "6.22.0" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 531 | dependencies: 532 | babel-runtime "^6.22.0" 533 | 534 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 535 | version "6.22.0" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 537 | dependencies: 538 | babel-runtime "^6.22.0" 539 | 540 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 541 | version "6.24.1" 542 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 543 | dependencies: 544 | babel-runtime "^6.22.0" 545 | babel-template "^6.24.1" 546 | babel-traverse "^6.24.1" 547 | babel-types "^6.24.1" 548 | lodash "^4.2.0" 549 | 550 | babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.9.0: 551 | version "6.24.1" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 553 | dependencies: 554 | babel-helper-define-map "^6.24.1" 555 | babel-helper-function-name "^6.24.1" 556 | babel-helper-optimise-call-expression "^6.24.1" 557 | babel-helper-replace-supers "^6.24.1" 558 | babel-messages "^6.23.0" 559 | babel-runtime "^6.22.0" 560 | babel-template "^6.24.1" 561 | babel-traverse "^6.24.1" 562 | babel-types "^6.24.1" 563 | 564 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 565 | version "6.24.1" 566 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 567 | dependencies: 568 | babel-runtime "^6.22.0" 569 | babel-template "^6.24.1" 570 | 571 | babel-plugin-transform-es2015-destructuring@^6.23.0: 572 | version "6.23.0" 573 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 574 | dependencies: 575 | babel-runtime "^6.22.0" 576 | 577 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 578 | version "6.24.1" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 580 | dependencies: 581 | babel-runtime "^6.22.0" 582 | babel-types "^6.24.1" 583 | 584 | babel-plugin-transform-es2015-for-of@^6.23.0: 585 | version "6.23.0" 586 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 587 | dependencies: 588 | babel-runtime "^6.22.0" 589 | 590 | babel-plugin-transform-es2015-function-name@^6.22.0: 591 | version "6.24.1" 592 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 593 | dependencies: 594 | babel-helper-function-name "^6.24.1" 595 | babel-runtime "^6.22.0" 596 | babel-types "^6.24.1" 597 | 598 | babel-plugin-transform-es2015-literals@^6.22.0: 599 | version "6.22.0" 600 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 601 | dependencies: 602 | babel-runtime "^6.22.0" 603 | 604 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 605 | version "6.24.1" 606 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 607 | dependencies: 608 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 609 | babel-runtime "^6.22.0" 610 | babel-template "^6.24.1" 611 | 612 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 613 | version "6.24.1" 614 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 615 | dependencies: 616 | babel-plugin-transform-strict-mode "^6.24.1" 617 | babel-runtime "^6.22.0" 618 | babel-template "^6.24.1" 619 | babel-types "^6.24.1" 620 | 621 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 622 | version "6.24.1" 623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 624 | dependencies: 625 | babel-helper-hoist-variables "^6.24.1" 626 | babel-runtime "^6.22.0" 627 | babel-template "^6.24.1" 628 | 629 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 630 | version "6.24.1" 631 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 632 | dependencies: 633 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 634 | babel-runtime "^6.22.0" 635 | babel-template "^6.24.1" 636 | 637 | babel-plugin-transform-es2015-object-super@^6.22.0: 638 | version "6.24.1" 639 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 640 | dependencies: 641 | babel-helper-replace-supers "^6.24.1" 642 | babel-runtime "^6.22.0" 643 | 644 | babel-plugin-transform-es2015-parameters@^6.23.0: 645 | version "6.24.1" 646 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 647 | dependencies: 648 | babel-helper-call-delegate "^6.24.1" 649 | babel-helper-get-function-arity "^6.24.1" 650 | babel-runtime "^6.22.0" 651 | babel-template "^6.24.1" 652 | babel-traverse "^6.24.1" 653 | babel-types "^6.24.1" 654 | 655 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 656 | version "6.24.1" 657 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 658 | dependencies: 659 | babel-runtime "^6.22.0" 660 | babel-types "^6.24.1" 661 | 662 | babel-plugin-transform-es2015-spread@^6.22.0: 663 | version "6.22.0" 664 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 665 | dependencies: 666 | babel-runtime "^6.22.0" 667 | 668 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 669 | version "6.24.1" 670 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 671 | dependencies: 672 | babel-helper-regex "^6.24.1" 673 | babel-runtime "^6.22.0" 674 | babel-types "^6.24.1" 675 | 676 | babel-plugin-transform-es2015-template-literals@^6.22.0: 677 | version "6.22.0" 678 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 679 | dependencies: 680 | babel-runtime "^6.22.0" 681 | 682 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 683 | version "6.23.0" 684 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 685 | dependencies: 686 | babel-runtime "^6.22.0" 687 | 688 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 689 | version "6.24.1" 690 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 691 | dependencies: 692 | babel-helper-regex "^6.24.1" 693 | babel-runtime "^6.22.0" 694 | regexpu-core "^2.0.0" 695 | 696 | babel-plugin-transform-exponentiation-operator@^6.22.0: 697 | version "6.24.1" 698 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 699 | dependencies: 700 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 701 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 702 | babel-runtime "^6.22.0" 703 | 704 | babel-plugin-transform-flow-strip-types@^6.22.0: 705 | version "6.22.0" 706 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 707 | dependencies: 708 | babel-plugin-syntax-flow "^6.18.0" 709 | babel-runtime "^6.22.0" 710 | 711 | babel-plugin-transform-inline-consecutive-adds@^0.1.2: 712 | version "0.1.2" 713 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.1.2.tgz#5442e9f1c19c78a7899f8a4dee6fd481f61001f5" 714 | 715 | babel-plugin-transform-member-expression-literals@^6.8.4: 716 | version "6.8.4" 717 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.8.4.tgz#05679bc40596b91293401959aa1620ab1b2be437" 718 | 719 | babel-plugin-transform-merge-sibling-variables@^6.8.5: 720 | version "6.8.5" 721 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.8.5.tgz#03abdf107c61241913eb268ddede6d5bc541862c" 722 | 723 | babel-plugin-transform-minify-booleans@^6.8.2: 724 | version "6.8.2" 725 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.8.2.tgz#8451579f706e702c1e1ab2756de5c8ea369cf07c" 726 | 727 | babel-plugin-transform-property-literals@^6.8.4: 728 | version "6.8.4" 729 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.8.4.tgz#6ad311110b80a192a56efb5ddf4fe3ca6f7a61da" 730 | dependencies: 731 | esutils "^2.0.2" 732 | 733 | babel-plugin-transform-regenerator@^6.22.0: 734 | version "6.24.1" 735 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 736 | dependencies: 737 | regenerator-transform "0.9.11" 738 | 739 | babel-plugin-transform-regexp-constructors@^0.1.1: 740 | version "0.1.1" 741 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.1.1.tgz#312ab7487cc88a1c62ee25ea1b6087e89b87799c" 742 | 743 | babel-plugin-transform-remove-console@^6.8.4: 744 | version "6.8.4" 745 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.8.4.tgz#41fddac19a729a4c3dd7ef2964eac07b096f9a8f" 746 | 747 | babel-plugin-transform-remove-debugger@^6.8.4: 748 | version "6.8.4" 749 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.8.4.tgz#f85704a08adaa71b55d77005b5b94e9b9df21f6e" 750 | 751 | babel-plugin-transform-remove-undefined@^0.1.2: 752 | version "0.1.2" 753 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.1.2.tgz#e1ebf51110f6b1e0665f28382ef73f95e5023652" 754 | 755 | babel-plugin-transform-simplify-comparison-operators@^6.8.4: 756 | version "6.8.4" 757 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.8.4.tgz#2aa24a262d664c8cb3e125a306c798d7a2de08d5" 758 | 759 | babel-plugin-transform-strict-mode@^6.24.1: 760 | version "6.24.1" 761 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 762 | dependencies: 763 | babel-runtime "^6.22.0" 764 | babel-types "^6.24.1" 765 | 766 | babel-plugin-transform-undefined-to-void@^6.8.2: 767 | version "6.8.2" 768 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.8.2.tgz#fe2b1d294eb05e87524eb93724dea6e2c3d66fa1" 769 | 770 | babel-preset-babili@^0.1.2: 771 | version "0.1.4" 772 | resolved "https://registry.yarnpkg.com/babel-preset-babili/-/babel-preset-babili-0.1.4.tgz#ad9d6651002f5bc3f07cab300781167f54724bf2" 773 | dependencies: 774 | babel-plugin-minify-builtins "^0.1.3" 775 | babel-plugin-minify-constant-folding "^0.1.3" 776 | babel-plugin-minify-dead-code-elimination "^0.1.7" 777 | babel-plugin-minify-flip-comparisons "^0.1.2" 778 | babel-plugin-minify-guarded-expressions "^0.1.2" 779 | babel-plugin-minify-infinity "^0.1.2" 780 | babel-plugin-minify-mangle-names "^0.1.3" 781 | babel-plugin-minify-numeric-literals "^0.1.1" 782 | babel-plugin-minify-replace "^0.1.2" 783 | babel-plugin-minify-simplify "^0.1.2" 784 | babel-plugin-minify-type-constructors "^0.1.2" 785 | babel-plugin-transform-inline-consecutive-adds "^0.1.2" 786 | babel-plugin-transform-member-expression-literals "^6.8.4" 787 | babel-plugin-transform-merge-sibling-variables "^6.8.5" 788 | babel-plugin-transform-minify-booleans "^6.8.2" 789 | babel-plugin-transform-property-literals "^6.8.4" 790 | babel-plugin-transform-regexp-constructors "^0.1.1" 791 | babel-plugin-transform-remove-console "^6.8.4" 792 | babel-plugin-transform-remove-debugger "^6.8.4" 793 | babel-plugin-transform-remove-undefined "^0.1.2" 794 | babel-plugin-transform-simplify-comparison-operators "^6.8.4" 795 | babel-plugin-transform-undefined-to-void "^6.8.2" 796 | lodash.isplainobject "^4.0.6" 797 | 798 | babel-preset-env@^1.5.2: 799 | version "1.5.2" 800 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.5.2.tgz#cd4ae90a6e94b709f97374b33e5f8b983556adef" 801 | dependencies: 802 | babel-plugin-check-es2015-constants "^6.22.0" 803 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 804 | babel-plugin-transform-async-to-generator "^6.22.0" 805 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 806 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 807 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 808 | babel-plugin-transform-es2015-classes "^6.23.0" 809 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 810 | babel-plugin-transform-es2015-destructuring "^6.23.0" 811 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 812 | babel-plugin-transform-es2015-for-of "^6.23.0" 813 | babel-plugin-transform-es2015-function-name "^6.22.0" 814 | babel-plugin-transform-es2015-literals "^6.22.0" 815 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 816 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 817 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 818 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 819 | babel-plugin-transform-es2015-object-super "^6.22.0" 820 | babel-plugin-transform-es2015-parameters "^6.23.0" 821 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 822 | babel-plugin-transform-es2015-spread "^6.22.0" 823 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 824 | babel-plugin-transform-es2015-template-literals "^6.22.0" 825 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 826 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 827 | babel-plugin-transform-exponentiation-operator "^6.22.0" 828 | babel-plugin-transform-regenerator "^6.22.0" 829 | browserslist "^2.1.2" 830 | invariant "^2.2.2" 831 | semver "^5.3.0" 832 | 833 | babel-preset-jest@^20.0.3: 834 | version "20.0.3" 835 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 836 | dependencies: 837 | babel-plugin-jest-hoist "^20.0.3" 838 | 839 | babel-register@^6.24.1: 840 | version "6.24.1" 841 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 842 | dependencies: 843 | babel-core "^6.24.1" 844 | babel-runtime "^6.22.0" 845 | core-js "^2.4.0" 846 | home-or-tmp "^2.0.0" 847 | lodash "^4.2.0" 848 | mkdirp "^0.5.1" 849 | source-map-support "^0.4.2" 850 | 851 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 852 | version "6.23.0" 853 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 854 | dependencies: 855 | core-js "^2.4.0" 856 | regenerator-runtime "^0.10.0" 857 | 858 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.25.0: 859 | version "6.25.0" 860 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 861 | dependencies: 862 | babel-runtime "^6.22.0" 863 | babel-traverse "^6.25.0" 864 | babel-types "^6.25.0" 865 | babylon "^6.17.2" 866 | lodash "^4.2.0" 867 | 868 | babel-traverse@^6.18.0, babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.25.0: 869 | version "6.25.0" 870 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 871 | dependencies: 872 | babel-code-frame "^6.22.0" 873 | babel-messages "^6.23.0" 874 | babel-runtime "^6.22.0" 875 | babel-types "^6.25.0" 876 | babylon "^6.17.2" 877 | debug "^2.2.0" 878 | globals "^9.0.0" 879 | invariant "^2.2.0" 880 | lodash "^4.2.0" 881 | 882 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.25.0: 883 | version "6.25.0" 884 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 885 | dependencies: 886 | babel-runtime "^6.22.0" 887 | esutils "^2.0.2" 888 | lodash "^4.2.0" 889 | to-fast-properties "^1.0.1" 890 | 891 | babylon@^6.13.0, babylon@^6.15.0, babylon@^6.17.0, babylon@^6.17.2: 892 | version "6.17.4" 893 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 894 | 895 | balanced-match@^1.0.0: 896 | version "1.0.0" 897 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 898 | 899 | bcrypt-pbkdf@^1.0.0: 900 | version "1.0.1" 901 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 902 | dependencies: 903 | tweetnacl "^0.14.3" 904 | 905 | binary-extensions@^1.0.0: 906 | version "1.8.0" 907 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 908 | 909 | block-stream@*: 910 | version "0.0.9" 911 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 912 | dependencies: 913 | inherits "~2.0.0" 914 | 915 | boom@2.x.x: 916 | version "2.10.1" 917 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 918 | dependencies: 919 | hoek "2.x.x" 920 | 921 | brace-expansion@^1.1.7: 922 | version "1.1.8" 923 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 924 | dependencies: 925 | balanced-match "^1.0.0" 926 | concat-map "0.0.1" 927 | 928 | braces@^1.8.2: 929 | version "1.8.5" 930 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 931 | dependencies: 932 | expand-range "^1.8.1" 933 | preserve "^0.2.0" 934 | repeat-element "^1.1.2" 935 | 936 | browser-resolve@^1.11.2: 937 | version "1.11.2" 938 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 939 | dependencies: 940 | resolve "1.1.7" 941 | 942 | browserslist@^2.1.2: 943 | version "2.1.5" 944 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.1.5.tgz#e882550df3d1cd6d481c1a3e0038f2baf13a4711" 945 | dependencies: 946 | caniuse-lite "^1.0.30000684" 947 | electron-to-chromium "^1.3.14" 948 | 949 | bser@1.0.2: 950 | version "1.0.2" 951 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 952 | dependencies: 953 | node-int64 "^0.4.0" 954 | 955 | bser@^2.0.0: 956 | version "2.0.0" 957 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 958 | dependencies: 959 | node-int64 "^0.4.0" 960 | 961 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 962 | version "1.1.1" 963 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 964 | 965 | caller-path@^0.1.0: 966 | version "0.1.0" 967 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 968 | dependencies: 969 | callsites "^0.2.0" 970 | 971 | callsites@^0.2.0: 972 | version "0.2.0" 973 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 974 | 975 | callsites@^2.0.0: 976 | version "2.0.0" 977 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 978 | 979 | camelcase-keys@^2.0.0: 980 | version "2.1.0" 981 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 982 | dependencies: 983 | camelcase "^2.0.0" 984 | map-obj "^1.0.0" 985 | 986 | camelcase@^1.0.2: 987 | version "1.2.1" 988 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 989 | 990 | camelcase@^2.0.0: 991 | version "2.1.1" 992 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 993 | 994 | camelcase@^3.0.0: 995 | version "3.0.0" 996 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 997 | 998 | caniuse-lite@^1.0.30000684: 999 | version "1.0.30000692" 1000 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000692.tgz#34600fd7152352d85a47f4662a3b51b02d8b646f" 1001 | 1002 | caseless@~0.12.0: 1003 | version "0.12.0" 1004 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1005 | 1006 | center-align@^0.1.1: 1007 | version "0.1.3" 1008 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1009 | dependencies: 1010 | align-text "^0.1.3" 1011 | lazy-cache "^1.0.3" 1012 | 1013 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 1014 | version "1.1.3" 1015 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1016 | dependencies: 1017 | ansi-styles "^2.2.1" 1018 | escape-string-regexp "^1.0.2" 1019 | has-ansi "^2.0.0" 1020 | strip-ansi "^3.0.0" 1021 | supports-color "^2.0.0" 1022 | 1023 | chokidar@^1.7.0: 1024 | version "1.7.0" 1025 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 1026 | dependencies: 1027 | anymatch "^1.3.0" 1028 | async-each "^1.0.0" 1029 | glob-parent "^2.0.0" 1030 | inherits "^2.0.1" 1031 | is-binary-path "^1.0.0" 1032 | is-glob "^2.0.0" 1033 | path-is-absolute "^1.0.0" 1034 | readdirp "^2.0.0" 1035 | optionalDependencies: 1036 | fsevents "^1.0.0" 1037 | 1038 | ci-info@^1.0.0: 1039 | version "1.0.0" 1040 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 1041 | 1042 | circular-json@^0.3.1: 1043 | version "0.3.1" 1044 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1045 | 1046 | cli-cursor@^1.0.2: 1047 | version "1.0.2" 1048 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1049 | dependencies: 1050 | restore-cursor "^1.0.1" 1051 | 1052 | cli-cursor@^2.1.0: 1053 | version "2.1.0" 1054 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1055 | dependencies: 1056 | restore-cursor "^2.0.0" 1057 | 1058 | cli-spinners@^0.1.2: 1059 | version "0.1.2" 1060 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 1061 | 1062 | cli-truncate@^0.2.1: 1063 | version "0.2.1" 1064 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 1065 | dependencies: 1066 | slice-ansi "0.0.4" 1067 | string-width "^1.0.1" 1068 | 1069 | cli-width@^2.0.0: 1070 | version "2.1.0" 1071 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1072 | 1073 | cliui@^2.1.0: 1074 | version "2.1.0" 1075 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1076 | dependencies: 1077 | center-align "^0.1.1" 1078 | right-align "^0.1.1" 1079 | wordwrap "0.0.2" 1080 | 1081 | cliui@^3.2.0: 1082 | version "3.2.0" 1083 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1084 | dependencies: 1085 | string-width "^1.0.1" 1086 | strip-ansi "^3.0.1" 1087 | wrap-ansi "^2.0.0" 1088 | 1089 | co@^4.6.0: 1090 | version "4.6.0" 1091 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1092 | 1093 | code-point-at@^1.0.0: 1094 | version "1.1.0" 1095 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1096 | 1097 | color-convert@^1.0.0: 1098 | version "1.9.0" 1099 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 1100 | dependencies: 1101 | color-name "^1.1.1" 1102 | 1103 | color-name@^1.1.1: 1104 | version "1.1.2" 1105 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 1106 | 1107 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1108 | version "1.0.5" 1109 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1110 | dependencies: 1111 | delayed-stream "~1.0.0" 1112 | 1113 | commander@^2.9.0: 1114 | version "2.9.0" 1115 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1116 | dependencies: 1117 | graceful-readlink ">= 1.0.0" 1118 | 1119 | concat-map@0.0.1: 1120 | version "0.0.1" 1121 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1122 | 1123 | concat-stream@^1.6.0: 1124 | version "1.6.0" 1125 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1126 | dependencies: 1127 | inherits "^2.0.3" 1128 | readable-stream "^2.2.2" 1129 | typedarray "^0.0.6" 1130 | 1131 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1132 | version "1.1.0" 1133 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1134 | 1135 | contains-path@^0.1.0: 1136 | version "0.1.0" 1137 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1138 | 1139 | content-type-parser@^1.0.1: 1140 | version "1.0.1" 1141 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1142 | 1143 | conventional-commit-types-emoji@^0.1.0: 1144 | version "0.1.0" 1145 | resolved "https://registry.yarnpkg.com/conventional-commit-types-emoji/-/conventional-commit-types-emoji-0.1.0.tgz#f3193a5f9e66dbc6dee5a380d111d8391a4809f6" 1146 | 1147 | convert-source-map@^1.1.0, convert-source-map@^1.4.0: 1148 | version "1.5.0" 1149 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1150 | 1151 | core-js@^2.4.0: 1152 | version "2.4.1" 1153 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1154 | 1155 | core-util-is@~1.0.0: 1156 | version "1.0.2" 1157 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1158 | 1159 | cosmiconfig@^1.1.0: 1160 | version "1.1.0" 1161 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 1162 | dependencies: 1163 | graceful-fs "^4.1.2" 1164 | js-yaml "^3.4.3" 1165 | minimist "^1.2.0" 1166 | object-assign "^4.0.1" 1167 | os-homedir "^1.0.1" 1168 | parse-json "^2.2.0" 1169 | pinkie-promise "^2.0.0" 1170 | require-from-string "^1.1.0" 1171 | 1172 | cross-env@^5.0.1: 1173 | version "5.0.1" 1174 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.0.1.tgz#ff4e72ea43b47da2486b43a7f2043b2609e44913" 1175 | dependencies: 1176 | cross-spawn "^5.1.0" 1177 | is-windows "^1.0.0" 1178 | 1179 | cross-spawn@^3.0.0: 1180 | version "3.0.1" 1181 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" 1182 | dependencies: 1183 | lru-cache "^4.0.1" 1184 | which "^1.2.9" 1185 | 1186 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1187 | version "5.1.0" 1188 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1189 | dependencies: 1190 | lru-cache "^4.0.1" 1191 | shebang-command "^1.2.0" 1192 | which "^1.2.9" 1193 | 1194 | cryptiles@2.x.x: 1195 | version "2.0.5" 1196 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1197 | dependencies: 1198 | boom "2.x.x" 1199 | 1200 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1201 | version "0.3.2" 1202 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1203 | 1204 | "cssstyle@>= 0.2.37 < 0.3.0": 1205 | version "0.2.37" 1206 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1207 | dependencies: 1208 | cssom "0.3.x" 1209 | 1210 | currently-unhandled@^0.4.1: 1211 | version "0.4.1" 1212 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1213 | dependencies: 1214 | array-find-index "^1.0.1" 1215 | 1216 | cz-conventional-changelog-emoji@^0.1.0: 1217 | version "0.1.0" 1218 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog-emoji/-/cz-conventional-changelog-emoji-0.1.0.tgz#8eadd1798b8e3e1bd1568de8577107988c97efff" 1219 | dependencies: 1220 | conventional-commit-types-emoji "^0.1.0" 1221 | lodash.map "^4.6.0" 1222 | longest "^1.0.1" 1223 | pad-right "^0.2.2" 1224 | right-pad "^1.0.1" 1225 | word-wrap "^1.1.0" 1226 | 1227 | damerau-levenshtein@^1.0.0: 1228 | version "1.0.4" 1229 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" 1230 | 1231 | dashdash@^1.12.0: 1232 | version "1.14.1" 1233 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1234 | dependencies: 1235 | assert-plus "^1.0.0" 1236 | 1237 | date-fns@^1.27.2: 1238 | version "1.28.5" 1239 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 1240 | 1241 | debug@2.2.0: 1242 | version "2.2.0" 1243 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1244 | dependencies: 1245 | ms "0.7.1" 1246 | 1247 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.3, debug@^2.6.8: 1248 | version "2.6.8" 1249 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1250 | dependencies: 1251 | ms "2.0.0" 1252 | 1253 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1254 | version "1.2.0" 1255 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1256 | 1257 | deep-extend@~0.4.0: 1258 | version "0.4.2" 1259 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1260 | 1261 | deep-is@~0.1.3: 1262 | version "0.1.3" 1263 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1264 | 1265 | deepmerge@^1.3.2: 1266 | version "1.4.4" 1267 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-1.4.4.tgz#40ef393c91af09d16a887e755337844230ad14c9" 1268 | 1269 | default-require-extensions@^1.0.0: 1270 | version "1.0.0" 1271 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1272 | dependencies: 1273 | strip-bom "^2.0.0" 1274 | 1275 | define-properties@^1.1.2: 1276 | version "1.1.2" 1277 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1278 | dependencies: 1279 | foreach "^2.0.5" 1280 | object-keys "^1.0.8" 1281 | 1282 | del@^2.0.2: 1283 | version "2.2.2" 1284 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1285 | dependencies: 1286 | globby "^5.0.0" 1287 | is-path-cwd "^1.0.0" 1288 | is-path-in-cwd "^1.0.0" 1289 | object-assign "^4.0.1" 1290 | pify "^2.0.0" 1291 | pinkie-promise "^2.0.0" 1292 | rimraf "^2.2.8" 1293 | 1294 | delayed-stream@~1.0.0: 1295 | version "1.0.0" 1296 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1297 | 1298 | delegates@^1.0.0: 1299 | version "1.0.0" 1300 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1301 | 1302 | detect-indent@^4.0.0: 1303 | version "4.0.0" 1304 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1305 | dependencies: 1306 | repeating "^2.0.0" 1307 | 1308 | diff@^3.1.0, diff@^3.2.0: 1309 | version "3.2.0" 1310 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1311 | 1312 | doctrine@1.5.0: 1313 | version "1.5.0" 1314 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1315 | dependencies: 1316 | esutils "^2.0.2" 1317 | isarray "^1.0.0" 1318 | 1319 | doctrine@^2.0.0: 1320 | version "2.0.0" 1321 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1322 | dependencies: 1323 | esutils "^2.0.2" 1324 | isarray "^1.0.0" 1325 | 1326 | ecc-jsbn@~0.1.1: 1327 | version "0.1.1" 1328 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1329 | dependencies: 1330 | jsbn "~0.1.0" 1331 | 1332 | electron-to-chromium@^1.3.14: 1333 | version "1.3.14" 1334 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.14.tgz#64af0f9efd3c3c6acd57d71f83b49ca7ee9c4b43" 1335 | 1336 | elegant-spinner@^1.0.1: 1337 | version "1.0.1" 1338 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1339 | 1340 | emoji-regex@^6.1.0: 1341 | version "6.4.2" 1342 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.4.2.tgz#a30b6fee353d406d96cfb9fa765bdc82897eff6e" 1343 | 1344 | "errno@>=0.1.1 <0.2.0-0", errno@^0.1.1: 1345 | version "0.1.4" 1346 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1347 | dependencies: 1348 | prr "~0.0.0" 1349 | 1350 | error-ex@^1.2.0: 1351 | version "1.3.1" 1352 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1353 | dependencies: 1354 | is-arrayish "^0.2.1" 1355 | 1356 | es-abstract@^1.7.0: 1357 | version "1.7.0" 1358 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1359 | dependencies: 1360 | es-to-primitive "^1.1.1" 1361 | function-bind "^1.1.0" 1362 | is-callable "^1.1.3" 1363 | is-regex "^1.0.3" 1364 | 1365 | es-to-primitive@^1.1.1: 1366 | version "1.1.1" 1367 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1368 | dependencies: 1369 | is-callable "^1.1.1" 1370 | is-date-object "^1.0.1" 1371 | is-symbol "^1.0.1" 1372 | 1373 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1374 | version "1.0.5" 1375 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1376 | 1377 | escodegen@^1.6.1: 1378 | version "1.8.1" 1379 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1380 | dependencies: 1381 | esprima "^2.7.1" 1382 | estraverse "^1.9.1" 1383 | esutils "^2.0.2" 1384 | optionator "^0.8.1" 1385 | optionalDependencies: 1386 | source-map "~0.2.0" 1387 | 1388 | eslint-config-boldr@^0.10.3: 1389 | version "0.10.3" 1390 | resolved "https://registry.yarnpkg.com/eslint-config-boldr/-/eslint-config-boldr-0.10.3.tgz#344f70f2570c777b0c605944787f80052b3b157f" 1391 | dependencies: 1392 | babel-eslint "^7.2.3" 1393 | eslint-plugin-babel "^4.1.1" 1394 | eslint-plugin-flowtype "^2.34.0" 1395 | eslint-plugin-import "^2.3.0" 1396 | eslint-plugin-jsx-a11y "^5.0.3" 1397 | eslint-plugin-prettier "^2.1.2" 1398 | eslint-plugin-promise "^3.5.0" 1399 | eslint-plugin-react "^7.1.0" 1400 | 1401 | eslint-import-resolver-node@^0.2.0: 1402 | version "0.2.3" 1403 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1404 | dependencies: 1405 | debug "^2.2.0" 1406 | object-assign "^4.0.1" 1407 | resolve "^1.1.6" 1408 | 1409 | eslint-module-utils@^2.0.0: 1410 | version "2.0.0" 1411 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1412 | dependencies: 1413 | debug "2.2.0" 1414 | pkg-dir "^1.0.0" 1415 | 1416 | eslint-plugin-babel@^4.1.1: 1417 | version "4.1.1" 1418 | resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-4.1.1.tgz#ef285c87039b67beb3bbd227f5b0eed4fb376b87" 1419 | 1420 | eslint-plugin-flowtype@^2.34.0: 1421 | version "2.34.0" 1422 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.34.0.tgz#b9875f314652e5081623c9d2b18a346bbb759c09" 1423 | dependencies: 1424 | lodash "^4.15.0" 1425 | 1426 | eslint-plugin-import@^2.3.0: 1427 | version "2.3.0" 1428 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.3.0.tgz#37c801e0ada0e296cbdf20c3f393acb5b52af36b" 1429 | dependencies: 1430 | builtin-modules "^1.1.1" 1431 | contains-path "^0.1.0" 1432 | debug "^2.2.0" 1433 | doctrine "1.5.0" 1434 | eslint-import-resolver-node "^0.2.0" 1435 | eslint-module-utils "^2.0.0" 1436 | has "^1.0.1" 1437 | lodash.cond "^4.3.0" 1438 | minimatch "^3.0.3" 1439 | read-pkg-up "^2.0.0" 1440 | 1441 | eslint-plugin-jsx-a11y@^5.0.3: 1442 | version "5.0.3" 1443 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.0.3.tgz#4a939f76ec125010528823331bf948cc573380b6" 1444 | dependencies: 1445 | aria-query "^0.5.0" 1446 | array-includes "^3.0.3" 1447 | ast-types-flow "0.0.7" 1448 | axobject-query "^0.1.0" 1449 | damerau-levenshtein "^1.0.0" 1450 | emoji-regex "^6.1.0" 1451 | jsx-ast-utils "^1.4.0" 1452 | 1453 | eslint-plugin-prettier@^2.1.2: 1454 | version "2.1.2" 1455 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.1.2.tgz#4b90f4ee7f92bfbe2e926017e1ca40eb628965ea" 1456 | dependencies: 1457 | fast-diff "^1.1.1" 1458 | jest-docblock "^20.0.1" 1459 | 1460 | eslint-plugin-promise@^3.5.0: 1461 | version "3.5.0" 1462 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 1463 | 1464 | eslint-plugin-react@^7.1.0: 1465 | version "7.1.0" 1466 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.1.0.tgz#27770acf39f5fd49cd0af4083ce58104eb390d4c" 1467 | dependencies: 1468 | doctrine "^2.0.0" 1469 | has "^1.0.1" 1470 | jsx-ast-utils "^1.4.1" 1471 | 1472 | eslint-scope@^3.7.1: 1473 | version "3.7.1" 1474 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1475 | dependencies: 1476 | esrecurse "^4.1.0" 1477 | estraverse "^4.1.1" 1478 | 1479 | eslint@^4.0.0: 1480 | version "4.0.0" 1481 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.0.0.tgz#7277c01437fdf41dccd168d5aa0e49b75ca1f260" 1482 | dependencies: 1483 | babel-code-frame "^6.22.0" 1484 | chalk "^1.1.3" 1485 | concat-stream "^1.6.0" 1486 | debug "^2.6.8" 1487 | doctrine "^2.0.0" 1488 | eslint-scope "^3.7.1" 1489 | espree "^3.4.3" 1490 | esquery "^1.0.0" 1491 | estraverse "^4.2.0" 1492 | esutils "^2.0.2" 1493 | file-entry-cache "^2.0.0" 1494 | glob "^7.1.2" 1495 | globals "^9.17.0" 1496 | ignore "^3.3.3" 1497 | imurmurhash "^0.1.4" 1498 | inquirer "^3.0.6" 1499 | is-my-json-valid "^2.16.0" 1500 | is-resolvable "^1.0.0" 1501 | js-yaml "^3.8.4" 1502 | json-stable-stringify "^1.0.1" 1503 | levn "^0.3.0" 1504 | lodash "^4.17.4" 1505 | mkdirp "^0.5.1" 1506 | natural-compare "^1.4.0" 1507 | optionator "^0.8.2" 1508 | path-is-inside "^1.0.2" 1509 | pluralize "^4.0.0" 1510 | progress "^2.0.0" 1511 | require-uncached "^1.0.3" 1512 | strip-json-comments "~2.0.1" 1513 | table "^4.0.1" 1514 | text-table "~0.2.0" 1515 | 1516 | espree@^3.4.3: 1517 | version "3.4.3" 1518 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.3.tgz#2910b5ccd49ce893c2ffffaab4fd8b3a31b82374" 1519 | dependencies: 1520 | acorn "^5.0.1" 1521 | acorn-jsx "^3.0.0" 1522 | 1523 | esprima@^2.7.1: 1524 | version "2.7.3" 1525 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1526 | 1527 | esprima@^3.1.1: 1528 | version "3.1.3" 1529 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1530 | 1531 | esquery@^1.0.0: 1532 | version "1.0.0" 1533 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1534 | dependencies: 1535 | estraverse "^4.0.0" 1536 | 1537 | esrecurse@^4.1.0: 1538 | version "4.2.0" 1539 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1540 | dependencies: 1541 | estraverse "^4.1.0" 1542 | object-assign "^4.0.1" 1543 | 1544 | estraverse@^1.9.1: 1545 | version "1.9.3" 1546 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1547 | 1548 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1549 | version "4.2.0" 1550 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1551 | 1552 | estree-walker@^0.2.1: 1553 | version "0.2.1" 1554 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 1555 | 1556 | esutils@^2.0.2: 1557 | version "2.0.2" 1558 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1559 | 1560 | exec-sh@^0.2.0: 1561 | version "0.2.0" 1562 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1563 | dependencies: 1564 | merge "^1.1.3" 1565 | 1566 | execa@^0.7.0: 1567 | version "0.7.0" 1568 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1569 | dependencies: 1570 | cross-spawn "^5.0.1" 1571 | get-stream "^3.0.0" 1572 | is-stream "^1.1.0" 1573 | npm-run-path "^2.0.0" 1574 | p-finally "^1.0.0" 1575 | signal-exit "^3.0.0" 1576 | strip-eof "^1.0.0" 1577 | 1578 | exit-hook@^1.0.0: 1579 | version "1.1.1" 1580 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1581 | 1582 | expand-brackets@^0.1.4: 1583 | version "0.1.5" 1584 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1585 | dependencies: 1586 | is-posix-bracket "^0.1.0" 1587 | 1588 | expand-range@^1.8.1: 1589 | version "1.8.2" 1590 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1591 | dependencies: 1592 | fill-range "^2.1.0" 1593 | 1594 | extend@~3.0.0: 1595 | version "3.0.1" 1596 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1597 | 1598 | external-editor@^2.0.4: 1599 | version "2.0.4" 1600 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1601 | dependencies: 1602 | iconv-lite "^0.4.17" 1603 | jschardet "^1.4.2" 1604 | tmp "^0.0.31" 1605 | 1606 | extglob@^0.3.1: 1607 | version "0.3.2" 1608 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1609 | dependencies: 1610 | is-extglob "^1.0.0" 1611 | 1612 | extsprintf@1.0.2: 1613 | version "1.0.2" 1614 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1615 | 1616 | fast-diff@^1.1.1: 1617 | version "1.1.1" 1618 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.1.tgz#0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b" 1619 | 1620 | fast-levenshtein@~2.0.4: 1621 | version "2.0.6" 1622 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1623 | 1624 | fb-watchman@^1.8.0: 1625 | version "1.9.2" 1626 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1627 | dependencies: 1628 | bser "1.0.2" 1629 | 1630 | fb-watchman@^2.0.0: 1631 | version "2.0.0" 1632 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1633 | dependencies: 1634 | bser "^2.0.0" 1635 | 1636 | figures@^1.7.0: 1637 | version "1.7.0" 1638 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1639 | dependencies: 1640 | escape-string-regexp "^1.0.5" 1641 | object-assign "^4.1.0" 1642 | 1643 | figures@^2.0.0: 1644 | version "2.0.0" 1645 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1646 | dependencies: 1647 | escape-string-regexp "^1.0.5" 1648 | 1649 | file-entry-cache@^2.0.0: 1650 | version "2.0.0" 1651 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1652 | dependencies: 1653 | flat-cache "^1.2.1" 1654 | object-assign "^4.0.1" 1655 | 1656 | filename-regex@^2.0.0: 1657 | version "2.0.1" 1658 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1659 | 1660 | fileset@^2.0.2: 1661 | version "2.0.3" 1662 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1663 | dependencies: 1664 | glob "^7.0.3" 1665 | minimatch "^3.0.3" 1666 | 1667 | fill-range@^2.1.0: 1668 | version "2.2.3" 1669 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1670 | dependencies: 1671 | is-number "^2.1.0" 1672 | isobject "^2.0.0" 1673 | randomatic "^1.1.3" 1674 | repeat-element "^1.1.2" 1675 | repeat-string "^1.5.2" 1676 | 1677 | find-parent-dir@^0.3.0: 1678 | version "0.3.0" 1679 | resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" 1680 | 1681 | find-up@^1.0.0: 1682 | version "1.1.2" 1683 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1684 | dependencies: 1685 | path-exists "^2.0.0" 1686 | pinkie-promise "^2.0.0" 1687 | 1688 | find-up@^2.0.0, find-up@^2.1.0: 1689 | version "2.1.0" 1690 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1691 | dependencies: 1692 | locate-path "^2.0.0" 1693 | 1694 | flat-cache@^1.2.1: 1695 | version "1.2.2" 1696 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1697 | dependencies: 1698 | circular-json "^0.3.1" 1699 | del "^2.0.2" 1700 | graceful-fs "^4.1.2" 1701 | write "^0.2.1" 1702 | 1703 | flow-bin@^0.48.0: 1704 | version "0.48.0" 1705 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.48.0.tgz#72d075143524358db8901525e3c784dc13a7c7ee" 1706 | 1707 | flow-remove-types@^1.1.0: 1708 | version "1.2.1" 1709 | resolved "https://registry.yarnpkg.com/flow-remove-types/-/flow-remove-types-1.2.1.tgz#58e261bf8b842bd234c86cafb982a1213aff0edb" 1710 | dependencies: 1711 | babylon "^6.15.0" 1712 | vlq "^0.2.1" 1713 | 1714 | for-in@^1.0.1: 1715 | version "1.0.2" 1716 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1717 | 1718 | for-own@^0.1.4: 1719 | version "0.1.5" 1720 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1721 | dependencies: 1722 | for-in "^1.0.1" 1723 | 1724 | foreach@^2.0.5: 1725 | version "2.0.5" 1726 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1727 | 1728 | forever-agent@~0.6.1: 1729 | version "0.6.1" 1730 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1731 | 1732 | form-data@~2.1.1: 1733 | version "2.1.4" 1734 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1735 | dependencies: 1736 | asynckit "^0.4.0" 1737 | combined-stream "^1.0.5" 1738 | mime-types "^2.1.12" 1739 | 1740 | formatio@1.2.0: 1741 | version "1.2.0" 1742 | resolved "https://registry.yarnpkg.com/formatio/-/formatio-1.2.0.tgz#f3b2167d9068c4698a8d51f4f760a39a54d818eb" 1743 | dependencies: 1744 | samsam "1.x" 1745 | 1746 | fs.realpath@^1.0.0: 1747 | version "1.0.0" 1748 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1749 | 1750 | fsevents@^1.0.0: 1751 | version "1.1.2" 1752 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1753 | dependencies: 1754 | nan "^2.3.0" 1755 | node-pre-gyp "^0.6.36" 1756 | 1757 | fstream-ignore@^1.0.5: 1758 | version "1.0.5" 1759 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1760 | dependencies: 1761 | fstream "^1.0.0" 1762 | inherits "2" 1763 | minimatch "^3.0.0" 1764 | 1765 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1766 | version "1.0.11" 1767 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1768 | dependencies: 1769 | graceful-fs "^4.1.2" 1770 | inherits "~2.0.0" 1771 | mkdirp ">=0.5 0" 1772 | rimraf "2" 1773 | 1774 | function-bind@^1.0.2, function-bind@^1.1.0: 1775 | version "1.1.0" 1776 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1777 | 1778 | gauge@~2.7.3: 1779 | version "2.7.4" 1780 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1781 | dependencies: 1782 | aproba "^1.0.3" 1783 | console-control-strings "^1.0.0" 1784 | has-unicode "^2.0.0" 1785 | object-assign "^4.1.0" 1786 | signal-exit "^3.0.0" 1787 | string-width "^1.0.1" 1788 | strip-ansi "^3.0.1" 1789 | wide-align "^1.1.0" 1790 | 1791 | gaze@^1.0.0: 1792 | version "1.1.2" 1793 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" 1794 | dependencies: 1795 | globule "^1.0.0" 1796 | 1797 | generate-function@^2.0.0: 1798 | version "2.0.0" 1799 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1800 | 1801 | generate-object-property@^1.1.0: 1802 | version "1.2.0" 1803 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1804 | dependencies: 1805 | is-property "^1.0.0" 1806 | 1807 | get-caller-file@^1.0.1: 1808 | version "1.0.2" 1809 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1810 | 1811 | get-stdin@^4.0.1: 1812 | version "4.0.1" 1813 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1814 | 1815 | get-stream@^3.0.0: 1816 | version "3.0.0" 1817 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1818 | 1819 | getpass@^0.1.1: 1820 | version "0.1.7" 1821 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1822 | dependencies: 1823 | assert-plus "^1.0.0" 1824 | 1825 | glob-base@^0.3.0: 1826 | version "0.3.0" 1827 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1828 | dependencies: 1829 | glob-parent "^2.0.0" 1830 | is-glob "^2.0.0" 1831 | 1832 | glob-parent@^2.0.0: 1833 | version "2.0.0" 1834 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1835 | dependencies: 1836 | is-glob "^2.0.0" 1837 | 1838 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@~7.1.1: 1839 | version "7.1.2" 1840 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1841 | dependencies: 1842 | fs.realpath "^1.0.0" 1843 | inflight "^1.0.4" 1844 | inherits "2" 1845 | minimatch "^3.0.4" 1846 | once "^1.3.0" 1847 | path-is-absolute "^1.0.0" 1848 | 1849 | globals@^9.0.0, globals@^9.17.0: 1850 | version "9.18.0" 1851 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1852 | 1853 | globby@^5.0.0: 1854 | version "5.0.0" 1855 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1856 | dependencies: 1857 | array-union "^1.0.1" 1858 | arrify "^1.0.0" 1859 | glob "^7.0.3" 1860 | object-assign "^4.0.1" 1861 | pify "^2.0.0" 1862 | pinkie-promise "^2.0.0" 1863 | 1864 | globule@^1.0.0: 1865 | version "1.2.0" 1866 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.0.tgz#1dc49c6822dd9e8a2fa00ba2a295006e8664bd09" 1867 | dependencies: 1868 | glob "~7.1.1" 1869 | lodash "~4.17.4" 1870 | minimatch "~3.0.2" 1871 | 1872 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1873 | version "4.1.11" 1874 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1875 | 1876 | "graceful-readlink@>= 1.0.0": 1877 | version "1.0.1" 1878 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1879 | 1880 | growly@^1.3.0: 1881 | version "1.3.0" 1882 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1883 | 1884 | handlebars@^4.0.3: 1885 | version "4.0.10" 1886 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1887 | dependencies: 1888 | async "^1.4.0" 1889 | optimist "^0.6.1" 1890 | source-map "^0.4.4" 1891 | optionalDependencies: 1892 | uglify-js "^2.6" 1893 | 1894 | har-schema@^1.0.5: 1895 | version "1.0.5" 1896 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1897 | 1898 | har-validator@~4.2.1: 1899 | version "4.2.1" 1900 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1901 | dependencies: 1902 | ajv "^4.9.1" 1903 | har-schema "^1.0.5" 1904 | 1905 | has-ansi@^2.0.0: 1906 | version "2.0.0" 1907 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1908 | dependencies: 1909 | ansi-regex "^2.0.0" 1910 | 1911 | has-flag@^1.0.0: 1912 | version "1.0.0" 1913 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1914 | 1915 | has-unicode@^2.0.0: 1916 | version "2.0.1" 1917 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1918 | 1919 | has@^1.0.1: 1920 | version "1.0.1" 1921 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1922 | dependencies: 1923 | function-bind "^1.0.2" 1924 | 1925 | hawk@~3.1.3: 1926 | version "3.1.3" 1927 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1928 | dependencies: 1929 | boom "2.x.x" 1930 | cryptiles "2.x.x" 1931 | hoek "2.x.x" 1932 | sntp "1.x.x" 1933 | 1934 | hoek@2.x.x: 1935 | version "2.16.3" 1936 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1937 | 1938 | home-or-tmp@^2.0.0: 1939 | version "2.0.0" 1940 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1941 | dependencies: 1942 | os-homedir "^1.0.0" 1943 | os-tmpdir "^1.0.1" 1944 | 1945 | hosted-git-info@^2.1.4: 1946 | version "2.4.2" 1947 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1948 | 1949 | html-encoding-sniffer@^1.0.1: 1950 | version "1.0.1" 1951 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1952 | dependencies: 1953 | whatwg-encoding "^1.0.1" 1954 | 1955 | http-signature@~1.1.0: 1956 | version "1.1.1" 1957 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1958 | dependencies: 1959 | assert-plus "^0.2.0" 1960 | jsprim "^1.2.2" 1961 | sshpk "^1.7.0" 1962 | 1963 | husky@^0.13.4: 1964 | version "0.13.4" 1965 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.13.4.tgz#48785c5028de3452a51c48c12c4f94b2124a1407" 1966 | dependencies: 1967 | chalk "^1.1.3" 1968 | find-parent-dir "^0.3.0" 1969 | is-ci "^1.0.9" 1970 | normalize-path "^1.0.0" 1971 | 1972 | iconv-lite@0.4.13: 1973 | version "0.4.13" 1974 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1975 | 1976 | iconv-lite@^0.4.17: 1977 | version "0.4.18" 1978 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1979 | 1980 | ignore@^3.3.3: 1981 | version "3.3.3" 1982 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1983 | 1984 | image-size@~0.5.0: 1985 | version "0.5.5" 1986 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" 1987 | 1988 | imurmurhash@^0.1.4: 1989 | version "0.1.4" 1990 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1991 | 1992 | in-publish@^2.0.0: 1993 | version "2.0.0" 1994 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" 1995 | 1996 | indent-string@^2.1.0: 1997 | version "2.1.0" 1998 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1999 | dependencies: 2000 | repeating "^2.0.0" 2001 | 2002 | indent-string@^3.0.0: 2003 | version "3.1.0" 2004 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" 2005 | 2006 | inflight@^1.0.4: 2007 | version "1.0.6" 2008 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2009 | dependencies: 2010 | once "^1.3.0" 2011 | wrappy "1" 2012 | 2013 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 2014 | version "2.0.3" 2015 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2016 | 2017 | ini@~1.3.0: 2018 | version "1.3.4" 2019 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2020 | 2021 | inquirer@^3.0.6: 2022 | version "3.1.1" 2023 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.1.1.tgz#87621c4fba4072f48a8dd71c9f9df6f100b2d534" 2024 | dependencies: 2025 | ansi-escapes "^2.0.0" 2026 | chalk "^1.0.0" 2027 | cli-cursor "^2.1.0" 2028 | cli-width "^2.0.0" 2029 | external-editor "^2.0.4" 2030 | figures "^2.0.0" 2031 | lodash "^4.3.0" 2032 | mute-stream "0.0.7" 2033 | run-async "^2.2.0" 2034 | rx-lite "^4.0.8" 2035 | rx-lite-aggregates "^4.0.8" 2036 | string-width "^2.0.0" 2037 | strip-ansi "^3.0.0" 2038 | through "^2.3.6" 2039 | 2040 | invariant@^2.2.0, invariant@^2.2.2: 2041 | version "2.2.2" 2042 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2043 | dependencies: 2044 | loose-envify "^1.0.0" 2045 | 2046 | invert-kv@^1.0.0: 2047 | version "1.0.0" 2048 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2049 | 2050 | is-arrayish@^0.2.1: 2051 | version "0.2.1" 2052 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2053 | 2054 | is-binary-path@^1.0.0: 2055 | version "1.0.1" 2056 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2057 | dependencies: 2058 | binary-extensions "^1.0.0" 2059 | 2060 | is-buffer@^1.1.5: 2061 | version "1.1.5" 2062 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2063 | 2064 | is-builtin-module@^1.0.0: 2065 | version "1.0.0" 2066 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2067 | dependencies: 2068 | builtin-modules "^1.0.0" 2069 | 2070 | is-callable@^1.1.1, is-callable@^1.1.3: 2071 | version "1.1.3" 2072 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 2073 | 2074 | is-ci@^1.0.10, is-ci@^1.0.9: 2075 | version "1.0.10" 2076 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2077 | dependencies: 2078 | ci-info "^1.0.0" 2079 | 2080 | is-date-object@^1.0.1: 2081 | version "1.0.1" 2082 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 2083 | 2084 | is-dotfile@^1.0.0: 2085 | version "1.0.3" 2086 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 2087 | 2088 | is-equal-shallow@^0.1.3: 2089 | version "0.1.3" 2090 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2091 | dependencies: 2092 | is-primitive "^2.0.0" 2093 | 2094 | is-extendable@^0.1.1: 2095 | version "0.1.1" 2096 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2097 | 2098 | is-extglob@^1.0.0: 2099 | version "1.0.0" 2100 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2101 | 2102 | is-finite@^1.0.0: 2103 | version "1.0.2" 2104 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2105 | dependencies: 2106 | number-is-nan "^1.0.0" 2107 | 2108 | is-fullwidth-code-point@^1.0.0: 2109 | version "1.0.0" 2110 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2111 | dependencies: 2112 | number-is-nan "^1.0.0" 2113 | 2114 | is-fullwidth-code-point@^2.0.0: 2115 | version "2.0.0" 2116 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2117 | 2118 | is-glob@^2.0.0, is-glob@^2.0.1: 2119 | version "2.0.1" 2120 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2121 | dependencies: 2122 | is-extglob "^1.0.0" 2123 | 2124 | is-my-json-valid@^2.16.0: 2125 | version "2.16.0" 2126 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2127 | dependencies: 2128 | generate-function "^2.0.0" 2129 | generate-object-property "^1.1.0" 2130 | jsonpointer "^4.0.0" 2131 | xtend "^4.0.0" 2132 | 2133 | is-number@^2.1.0: 2134 | version "2.1.0" 2135 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2136 | dependencies: 2137 | kind-of "^3.0.2" 2138 | 2139 | is-number@^3.0.0: 2140 | version "3.0.0" 2141 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2142 | dependencies: 2143 | kind-of "^3.0.2" 2144 | 2145 | is-path-cwd@^1.0.0: 2146 | version "1.0.0" 2147 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2148 | 2149 | is-path-in-cwd@^1.0.0: 2150 | version "1.0.0" 2151 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2152 | dependencies: 2153 | is-path-inside "^1.0.0" 2154 | 2155 | is-path-inside@^1.0.0: 2156 | version "1.0.0" 2157 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2158 | dependencies: 2159 | path-is-inside "^1.0.1" 2160 | 2161 | is-posix-bracket@^0.1.0: 2162 | version "0.1.1" 2163 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2164 | 2165 | is-primitive@^2.0.0: 2166 | version "2.0.0" 2167 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2168 | 2169 | is-promise@^2.1.0: 2170 | version "2.1.0" 2171 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2172 | 2173 | is-property@^1.0.0: 2174 | version "1.0.2" 2175 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2176 | 2177 | is-regex@^1.0.3: 2178 | version "1.0.4" 2179 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 2180 | dependencies: 2181 | has "^1.0.1" 2182 | 2183 | is-resolvable@^1.0.0: 2184 | version "1.0.0" 2185 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2186 | dependencies: 2187 | tryit "^1.0.1" 2188 | 2189 | is-stream@^1.1.0: 2190 | version "1.1.0" 2191 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2192 | 2193 | is-symbol@^1.0.1: 2194 | version "1.0.1" 2195 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2196 | 2197 | is-typedarray@~1.0.0: 2198 | version "1.0.0" 2199 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2200 | 2201 | is-utf8@^0.2.0: 2202 | version "0.2.1" 2203 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2204 | 2205 | is-windows@^1.0.0: 2206 | version "1.0.1" 2207 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.1.tgz#310db70f742d259a16a369202b51af84233310d9" 2208 | 2209 | isarray@0.0.1: 2210 | version "0.0.1" 2211 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2212 | 2213 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2214 | version "1.0.0" 2215 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2216 | 2217 | isexe@^2.0.0: 2218 | version "2.0.0" 2219 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2220 | 2221 | isobject@^2.0.0: 2222 | version "2.1.0" 2223 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2224 | dependencies: 2225 | isarray "1.0.0" 2226 | 2227 | isstream@~0.1.2: 2228 | version "0.1.2" 2229 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2230 | 2231 | istanbul-api@^1.1.1: 2232 | version "1.1.9" 2233 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.9.tgz#2827920d380d4286d857d57a2968a841db8a7ec8" 2234 | dependencies: 2235 | async "^2.1.4" 2236 | fileset "^2.0.2" 2237 | istanbul-lib-coverage "^1.1.1" 2238 | istanbul-lib-hook "^1.0.7" 2239 | istanbul-lib-instrument "^1.7.2" 2240 | istanbul-lib-report "^1.1.1" 2241 | istanbul-lib-source-maps "^1.2.1" 2242 | istanbul-reports "^1.1.1" 2243 | js-yaml "^3.7.0" 2244 | mkdirp "^0.5.1" 2245 | once "^1.4.0" 2246 | 2247 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 2248 | version "1.1.1" 2249 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2250 | 2251 | istanbul-lib-hook@^1.0.7: 2252 | version "1.0.7" 2253 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 2254 | dependencies: 2255 | append-transform "^0.4.0" 2256 | 2257 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2: 2258 | version "1.7.2" 2259 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.2.tgz#6014b03d3470fb77638d5802508c255c06312e56" 2260 | dependencies: 2261 | babel-generator "^6.18.0" 2262 | babel-template "^6.16.0" 2263 | babel-traverse "^6.18.0" 2264 | babel-types "^6.18.0" 2265 | babylon "^6.13.0" 2266 | istanbul-lib-coverage "^1.1.1" 2267 | semver "^5.3.0" 2268 | 2269 | istanbul-lib-report@^1.1.1: 2270 | version "1.1.1" 2271 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 2272 | dependencies: 2273 | istanbul-lib-coverage "^1.1.1" 2274 | mkdirp "^0.5.1" 2275 | path-parse "^1.0.5" 2276 | supports-color "^3.1.2" 2277 | 2278 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 2279 | version "1.2.1" 2280 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 2281 | dependencies: 2282 | debug "^2.6.3" 2283 | istanbul-lib-coverage "^1.1.1" 2284 | mkdirp "^0.5.1" 2285 | rimraf "^2.6.1" 2286 | source-map "^0.5.3" 2287 | 2288 | istanbul-reports@^1.1.1: 2289 | version "1.1.1" 2290 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 2291 | dependencies: 2292 | handlebars "^4.0.3" 2293 | 2294 | jest-changed-files@^20.0.3: 2295 | version "20.0.3" 2296 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 2297 | 2298 | jest-cli@^20.0.4: 2299 | version "20.0.4" 2300 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 2301 | dependencies: 2302 | ansi-escapes "^1.4.0" 2303 | callsites "^2.0.0" 2304 | chalk "^1.1.3" 2305 | graceful-fs "^4.1.11" 2306 | is-ci "^1.0.10" 2307 | istanbul-api "^1.1.1" 2308 | istanbul-lib-coverage "^1.0.1" 2309 | istanbul-lib-instrument "^1.4.2" 2310 | istanbul-lib-source-maps "^1.1.0" 2311 | jest-changed-files "^20.0.3" 2312 | jest-config "^20.0.4" 2313 | jest-docblock "^20.0.3" 2314 | jest-environment-jsdom "^20.0.3" 2315 | jest-haste-map "^20.0.4" 2316 | jest-jasmine2 "^20.0.4" 2317 | jest-message-util "^20.0.3" 2318 | jest-regex-util "^20.0.3" 2319 | jest-resolve-dependencies "^20.0.3" 2320 | jest-runtime "^20.0.4" 2321 | jest-snapshot "^20.0.3" 2322 | jest-util "^20.0.3" 2323 | micromatch "^2.3.11" 2324 | node-notifier "^5.0.2" 2325 | pify "^2.3.0" 2326 | slash "^1.0.0" 2327 | string-length "^1.0.1" 2328 | throat "^3.0.0" 2329 | which "^1.2.12" 2330 | worker-farm "^1.3.1" 2331 | yargs "^7.0.2" 2332 | 2333 | jest-config@^20.0.4: 2334 | version "20.0.4" 2335 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 2336 | dependencies: 2337 | chalk "^1.1.3" 2338 | glob "^7.1.1" 2339 | jest-environment-jsdom "^20.0.3" 2340 | jest-environment-node "^20.0.3" 2341 | jest-jasmine2 "^20.0.4" 2342 | jest-matcher-utils "^20.0.3" 2343 | jest-regex-util "^20.0.3" 2344 | jest-resolve "^20.0.4" 2345 | jest-validate "^20.0.3" 2346 | pretty-format "^20.0.3" 2347 | 2348 | jest-diff@^20.0.3: 2349 | version "20.0.3" 2350 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 2351 | dependencies: 2352 | chalk "^1.1.3" 2353 | diff "^3.2.0" 2354 | jest-matcher-utils "^20.0.3" 2355 | pretty-format "^20.0.3" 2356 | 2357 | jest-docblock@^20.0.1, jest-docblock@^20.0.3: 2358 | version "20.0.3" 2359 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 2360 | 2361 | jest-environment-jsdom@^20.0.3: 2362 | version "20.0.3" 2363 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 2364 | dependencies: 2365 | jest-mock "^20.0.3" 2366 | jest-util "^20.0.3" 2367 | jsdom "^9.12.0" 2368 | 2369 | jest-environment-node@^20.0.3: 2370 | version "20.0.3" 2371 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 2372 | dependencies: 2373 | jest-mock "^20.0.3" 2374 | jest-util "^20.0.3" 2375 | 2376 | jest-haste-map@^20.0.4: 2377 | version "20.0.4" 2378 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.4.tgz#653eb55c889ce3c021f7b94693f20a4159badf03" 2379 | dependencies: 2380 | fb-watchman "^2.0.0" 2381 | graceful-fs "^4.1.11" 2382 | jest-docblock "^20.0.3" 2383 | micromatch "^2.3.11" 2384 | sane "~1.6.0" 2385 | worker-farm "^1.3.1" 2386 | 2387 | jest-jasmine2@^20.0.4: 2388 | version "20.0.4" 2389 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 2390 | dependencies: 2391 | chalk "^1.1.3" 2392 | graceful-fs "^4.1.11" 2393 | jest-diff "^20.0.3" 2394 | jest-matcher-utils "^20.0.3" 2395 | jest-matchers "^20.0.3" 2396 | jest-message-util "^20.0.3" 2397 | jest-snapshot "^20.0.3" 2398 | once "^1.4.0" 2399 | p-map "^1.1.1" 2400 | 2401 | jest-matcher-utils@^20.0.3: 2402 | version "20.0.3" 2403 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 2404 | dependencies: 2405 | chalk "^1.1.3" 2406 | pretty-format "^20.0.3" 2407 | 2408 | jest-matchers@^20.0.3: 2409 | version "20.0.3" 2410 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 2411 | dependencies: 2412 | jest-diff "^20.0.3" 2413 | jest-matcher-utils "^20.0.3" 2414 | jest-message-util "^20.0.3" 2415 | jest-regex-util "^20.0.3" 2416 | 2417 | jest-message-util@^20.0.3: 2418 | version "20.0.3" 2419 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 2420 | dependencies: 2421 | chalk "^1.1.3" 2422 | micromatch "^2.3.11" 2423 | slash "^1.0.0" 2424 | 2425 | jest-mock@^20.0.3: 2426 | version "20.0.3" 2427 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2428 | 2429 | jest-regex-util@^20.0.3: 2430 | version "20.0.3" 2431 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2432 | 2433 | jest-resolve-dependencies@^20.0.3: 2434 | version "20.0.3" 2435 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 2436 | dependencies: 2437 | jest-regex-util "^20.0.3" 2438 | 2439 | jest-resolve@^20.0.4: 2440 | version "20.0.4" 2441 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 2442 | dependencies: 2443 | browser-resolve "^1.11.2" 2444 | is-builtin-module "^1.0.0" 2445 | resolve "^1.3.2" 2446 | 2447 | jest-runtime@^20.0.4: 2448 | version "20.0.4" 2449 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2450 | dependencies: 2451 | babel-core "^6.0.0" 2452 | babel-jest "^20.0.3" 2453 | babel-plugin-istanbul "^4.0.0" 2454 | chalk "^1.1.3" 2455 | convert-source-map "^1.4.0" 2456 | graceful-fs "^4.1.11" 2457 | jest-config "^20.0.4" 2458 | jest-haste-map "^20.0.4" 2459 | jest-regex-util "^20.0.3" 2460 | jest-resolve "^20.0.4" 2461 | jest-util "^20.0.3" 2462 | json-stable-stringify "^1.0.1" 2463 | micromatch "^2.3.11" 2464 | strip-bom "3.0.0" 2465 | yargs "^7.0.2" 2466 | 2467 | jest-snapshot@^20.0.3: 2468 | version "20.0.3" 2469 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2470 | dependencies: 2471 | chalk "^1.1.3" 2472 | jest-diff "^20.0.3" 2473 | jest-matcher-utils "^20.0.3" 2474 | jest-util "^20.0.3" 2475 | natural-compare "^1.4.0" 2476 | pretty-format "^20.0.3" 2477 | 2478 | jest-util@^20.0.3: 2479 | version "20.0.3" 2480 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2481 | dependencies: 2482 | chalk "^1.1.3" 2483 | graceful-fs "^4.1.11" 2484 | jest-message-util "^20.0.3" 2485 | jest-mock "^20.0.3" 2486 | jest-validate "^20.0.3" 2487 | leven "^2.1.0" 2488 | mkdirp "^0.5.1" 2489 | 2490 | jest-validate@^20.0.3: 2491 | version "20.0.3" 2492 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2493 | dependencies: 2494 | chalk "^1.1.3" 2495 | jest-matcher-utils "^20.0.3" 2496 | leven "^2.1.0" 2497 | pretty-format "^20.0.3" 2498 | 2499 | jest@^20.0.4: 2500 | version "20.0.4" 2501 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2502 | dependencies: 2503 | jest-cli "^20.0.4" 2504 | 2505 | js-base64@^2.1.8: 2506 | version "2.1.9" 2507 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 2508 | 2509 | js-tokens@^3.0.0: 2510 | version "3.0.1" 2511 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2512 | 2513 | js-yaml@^3.4.3, js-yaml@^3.7.0, js-yaml@^3.8.4: 2514 | version "3.8.4" 2515 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 2516 | dependencies: 2517 | argparse "^1.0.7" 2518 | esprima "^3.1.1" 2519 | 2520 | jsbn@~0.1.0: 2521 | version "0.1.1" 2522 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2523 | 2524 | jschardet@^1.4.2: 2525 | version "1.4.2" 2526 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 2527 | 2528 | jsdom@^9.12.0: 2529 | version "9.12.0" 2530 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2531 | dependencies: 2532 | abab "^1.0.3" 2533 | acorn "^4.0.4" 2534 | acorn-globals "^3.1.0" 2535 | array-equal "^1.0.0" 2536 | content-type-parser "^1.0.1" 2537 | cssom ">= 0.3.2 < 0.4.0" 2538 | cssstyle ">= 0.2.37 < 0.3.0" 2539 | escodegen "^1.6.1" 2540 | html-encoding-sniffer "^1.0.1" 2541 | nwmatcher ">= 1.3.9 < 2.0.0" 2542 | parse5 "^1.5.1" 2543 | request "^2.79.0" 2544 | sax "^1.2.1" 2545 | symbol-tree "^3.2.1" 2546 | tough-cookie "^2.3.2" 2547 | webidl-conversions "^4.0.0" 2548 | whatwg-encoding "^1.0.1" 2549 | whatwg-url "^4.3.0" 2550 | xml-name-validator "^2.0.1" 2551 | 2552 | jsesc@^1.3.0: 2553 | version "1.3.0" 2554 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2555 | 2556 | jsesc@~0.5.0: 2557 | version "0.5.0" 2558 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2559 | 2560 | json-schema@0.2.3: 2561 | version "0.2.3" 2562 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2563 | 2564 | json-stable-stringify@^1.0.1: 2565 | version "1.0.1" 2566 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2567 | dependencies: 2568 | jsonify "~0.0.0" 2569 | 2570 | json-stringify-safe@~5.0.1: 2571 | version "5.0.1" 2572 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2573 | 2574 | json5@^0.5.0: 2575 | version "0.5.1" 2576 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2577 | 2578 | jsonify@~0.0.0: 2579 | version "0.0.0" 2580 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2581 | 2582 | jsonpointer@^4.0.0: 2583 | version "4.0.1" 2584 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2585 | 2586 | jsprim@^1.2.2: 2587 | version "1.4.0" 2588 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2589 | dependencies: 2590 | assert-plus "1.0.0" 2591 | extsprintf "1.0.2" 2592 | json-schema "0.2.3" 2593 | verror "1.3.6" 2594 | 2595 | jsx-ast-utils@^1.4.0, jsx-ast-utils@^1.4.1: 2596 | version "1.4.1" 2597 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz#3867213e8dd79bf1e8f2300c0cfc1efb182c0df1" 2598 | 2599 | kind-of@^3.0.2: 2600 | version "3.2.2" 2601 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2602 | dependencies: 2603 | is-buffer "^1.1.5" 2604 | 2605 | kind-of@^4.0.0: 2606 | version "4.0.0" 2607 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2608 | dependencies: 2609 | is-buffer "^1.1.5" 2610 | 2611 | lazy-cache@^1.0.3: 2612 | version "1.0.4" 2613 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2614 | 2615 | lcid@^1.0.0: 2616 | version "1.0.0" 2617 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2618 | dependencies: 2619 | invert-kv "^1.0.0" 2620 | 2621 | less@^2.7.2: 2622 | version "2.7.2" 2623 | resolved "https://registry.yarnpkg.com/less/-/less-2.7.2.tgz#368d6cc73e1fb03981183280918743c5dcf9b3df" 2624 | optionalDependencies: 2625 | errno "^0.1.1" 2626 | graceful-fs "^4.1.2" 2627 | image-size "~0.5.0" 2628 | mime "^1.2.11" 2629 | mkdirp "^0.5.0" 2630 | promise "^7.1.1" 2631 | request "^2.72.0" 2632 | source-map "^0.5.3" 2633 | 2634 | leven@^2.1.0: 2635 | version "2.1.0" 2636 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2637 | 2638 | levn@^0.3.0, levn@~0.3.0: 2639 | version "0.3.0" 2640 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2641 | dependencies: 2642 | prelude-ls "~1.1.2" 2643 | type-check "~0.3.2" 2644 | 2645 | lint-staged@^4.0.0: 2646 | version "4.0.0" 2647 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.0.0.tgz#c15669f598614a6e68090303e175a799d48e0d85" 2648 | dependencies: 2649 | app-root-path "^2.0.0" 2650 | cosmiconfig "^1.1.0" 2651 | execa "^0.7.0" 2652 | listr "^0.12.0" 2653 | lodash.chunk "^4.2.0" 2654 | minimatch "^3.0.0" 2655 | npm-which "^3.0.1" 2656 | p-map "^1.1.1" 2657 | staged-git-files "0.0.4" 2658 | 2659 | listr-silent-renderer@^1.1.1: 2660 | version "1.1.1" 2661 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2662 | 2663 | listr-update-renderer@^0.2.0: 2664 | version "0.2.0" 2665 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2666 | dependencies: 2667 | chalk "^1.1.3" 2668 | cli-truncate "^0.2.1" 2669 | elegant-spinner "^1.0.1" 2670 | figures "^1.7.0" 2671 | indent-string "^3.0.0" 2672 | log-symbols "^1.0.2" 2673 | log-update "^1.0.2" 2674 | strip-ansi "^3.0.1" 2675 | 2676 | listr-verbose-renderer@^0.4.0: 2677 | version "0.4.0" 2678 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 2679 | dependencies: 2680 | chalk "^1.1.3" 2681 | cli-cursor "^1.0.2" 2682 | date-fns "^1.27.2" 2683 | figures "^1.7.0" 2684 | 2685 | listr@^0.12.0: 2686 | version "0.12.0" 2687 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 2688 | dependencies: 2689 | chalk "^1.1.3" 2690 | cli-truncate "^0.2.1" 2691 | figures "^1.7.0" 2692 | indent-string "^2.1.0" 2693 | is-promise "^2.1.0" 2694 | is-stream "^1.1.0" 2695 | listr-silent-renderer "^1.1.1" 2696 | listr-update-renderer "^0.2.0" 2697 | listr-verbose-renderer "^0.4.0" 2698 | log-symbols "^1.0.2" 2699 | log-update "^1.0.2" 2700 | ora "^0.2.3" 2701 | p-map "^1.1.1" 2702 | rxjs "^5.0.0-beta.11" 2703 | stream-to-observable "^0.1.0" 2704 | strip-ansi "^3.0.1" 2705 | 2706 | load-json-file@^1.0.0: 2707 | version "1.1.0" 2708 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2709 | dependencies: 2710 | graceful-fs "^4.1.2" 2711 | parse-json "^2.2.0" 2712 | pify "^2.0.0" 2713 | pinkie-promise "^2.0.0" 2714 | strip-bom "^2.0.0" 2715 | 2716 | load-json-file@^2.0.0: 2717 | version "2.0.0" 2718 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2719 | dependencies: 2720 | graceful-fs "^4.1.2" 2721 | parse-json "^2.2.0" 2722 | pify "^2.0.0" 2723 | strip-bom "^3.0.0" 2724 | 2725 | locate-path@^2.0.0: 2726 | version "2.0.0" 2727 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2728 | dependencies: 2729 | p-locate "^2.0.0" 2730 | path-exists "^3.0.0" 2731 | 2732 | lodash.assign@^4.2.0: 2733 | version "4.2.0" 2734 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2735 | 2736 | lodash.chunk@^4.2.0: 2737 | version "4.2.0" 2738 | resolved "https://registry.yarnpkg.com/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc" 2739 | 2740 | lodash.clonedeep@^4.3.2: 2741 | version "4.5.0" 2742 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2743 | 2744 | lodash.cond@^4.3.0: 2745 | version "4.5.2" 2746 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2747 | 2748 | lodash.isplainobject@^4.0.6: 2749 | version "4.0.6" 2750 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 2751 | 2752 | lodash.map@^4.6.0: 2753 | version "4.6.0" 2754 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2755 | 2756 | lodash.mergewith@^4.6.0: 2757 | version "4.6.0" 2758 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" 2759 | 2760 | lodash.some@^4.6.0: 2761 | version "4.6.0" 2762 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2763 | 2764 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0, lodash@~4.17.4: 2765 | version "4.17.4" 2766 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2767 | 2768 | log-symbols@^1.0.2: 2769 | version "1.0.2" 2770 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2771 | dependencies: 2772 | chalk "^1.0.0" 2773 | 2774 | log-update@^1.0.2: 2775 | version "1.0.2" 2776 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2777 | dependencies: 2778 | ansi-escapes "^1.0.0" 2779 | cli-cursor "^1.0.2" 2780 | 2781 | lolex@^1.6.0: 2782 | version "1.6.0" 2783 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-1.6.0.tgz#3a9a0283452a47d7439e72731b9e07d7386e49f6" 2784 | 2785 | longest@^1.0.1: 2786 | version "1.0.1" 2787 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2788 | 2789 | loose-envify@^1.0.0: 2790 | version "1.3.1" 2791 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2792 | dependencies: 2793 | js-tokens "^3.0.0" 2794 | 2795 | loud-rejection@^1.0.0: 2796 | version "1.6.0" 2797 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2798 | dependencies: 2799 | currently-unhandled "^0.4.1" 2800 | signal-exit "^3.0.0" 2801 | 2802 | lru-cache@^4.0.1: 2803 | version "4.1.1" 2804 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2805 | dependencies: 2806 | pseudomap "^1.0.2" 2807 | yallist "^2.1.2" 2808 | 2809 | magic-string@*: 2810 | version "0.21.3" 2811 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.21.3.tgz#87e201009ebfde6f46dc5757305a70af71e31624" 2812 | dependencies: 2813 | vlq "^0.2.1" 2814 | 2815 | makeerror@1.0.x: 2816 | version "1.0.11" 2817 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2818 | dependencies: 2819 | tmpl "1.0.x" 2820 | 2821 | map-obj@^1.0.0, map-obj@^1.0.1: 2822 | version "1.0.1" 2823 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2824 | 2825 | meow@^3.7.0: 2826 | version "3.7.0" 2827 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2828 | dependencies: 2829 | camelcase-keys "^2.0.0" 2830 | decamelize "^1.1.2" 2831 | loud-rejection "^1.0.0" 2832 | map-obj "^1.0.1" 2833 | minimist "^1.1.3" 2834 | normalize-package-data "^2.3.4" 2835 | object-assign "^4.0.1" 2836 | read-pkg-up "^1.0.1" 2837 | redent "^1.0.0" 2838 | trim-newlines "^1.0.0" 2839 | 2840 | merge@^1.1.3: 2841 | version "1.2.0" 2842 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2843 | 2844 | micromatch@^2.1.5, micromatch@^2.3.11: 2845 | version "2.3.11" 2846 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2847 | dependencies: 2848 | arr-diff "^2.0.0" 2849 | array-unique "^0.2.1" 2850 | braces "^1.8.2" 2851 | expand-brackets "^0.1.4" 2852 | extglob "^0.3.1" 2853 | filename-regex "^2.0.0" 2854 | is-extglob "^1.0.0" 2855 | is-glob "^2.0.1" 2856 | kind-of "^3.0.2" 2857 | normalize-path "^2.0.1" 2858 | object.omit "^2.0.0" 2859 | parse-glob "^3.0.4" 2860 | regex-cache "^0.4.2" 2861 | 2862 | mime-db@~1.27.0: 2863 | version "1.27.0" 2864 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2865 | 2866 | mime-types@^2.1.12, mime-types@~2.1.7: 2867 | version "2.1.15" 2868 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2869 | dependencies: 2870 | mime-db "~1.27.0" 2871 | 2872 | mime@^1.2.11: 2873 | version "1.3.6" 2874 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" 2875 | 2876 | mimic-fn@^1.0.0: 2877 | version "1.1.0" 2878 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2879 | 2880 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2: 2881 | version "3.0.4" 2882 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2883 | dependencies: 2884 | brace-expansion "^1.1.7" 2885 | 2886 | minimist@0.0.8, minimist@~0.0.1: 2887 | version "0.0.8" 2888 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2889 | 2890 | minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0: 2891 | version "1.2.0" 2892 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2893 | 2894 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2895 | version "0.5.1" 2896 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2897 | dependencies: 2898 | minimist "0.0.8" 2899 | 2900 | ms@0.7.1: 2901 | version "0.7.1" 2902 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2903 | 2904 | ms@2.0.0: 2905 | version "2.0.0" 2906 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2907 | 2908 | mute-stream@0.0.7: 2909 | version "0.0.7" 2910 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2911 | 2912 | nan@^2.3.0, nan@^2.3.2: 2913 | version "2.6.2" 2914 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2915 | 2916 | native-promise-only@^0.8.1: 2917 | version "0.8.1" 2918 | resolved "https://registry.yarnpkg.com/native-promise-only/-/native-promise-only-0.8.1.tgz#20a318c30cb45f71fe7adfbf7b21c99c1472ef11" 2919 | 2920 | natural-compare@^1.4.0: 2921 | version "1.4.0" 2922 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2923 | 2924 | node-gyp@^3.3.1: 2925 | version "3.6.2" 2926 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" 2927 | dependencies: 2928 | fstream "^1.0.0" 2929 | glob "^7.0.3" 2930 | graceful-fs "^4.1.2" 2931 | minimatch "^3.0.2" 2932 | mkdirp "^0.5.0" 2933 | nopt "2 || 3" 2934 | npmlog "0 || 1 || 2 || 3 || 4" 2935 | osenv "0" 2936 | request "2" 2937 | rimraf "2" 2938 | semver "~5.3.0" 2939 | tar "^2.0.0" 2940 | which "1" 2941 | 2942 | node-int64@^0.4.0: 2943 | version "0.4.0" 2944 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2945 | 2946 | node-notifier@^5.0.2: 2947 | version "5.1.2" 2948 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2949 | dependencies: 2950 | growly "^1.3.0" 2951 | semver "^5.3.0" 2952 | shellwords "^0.1.0" 2953 | which "^1.2.12" 2954 | 2955 | node-pre-gyp@^0.6.36: 2956 | version "0.6.36" 2957 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2958 | dependencies: 2959 | mkdirp "^0.5.1" 2960 | nopt "^4.0.1" 2961 | npmlog "^4.0.2" 2962 | rc "^1.1.7" 2963 | request "^2.81.0" 2964 | rimraf "^2.6.1" 2965 | semver "^5.3.0" 2966 | tar "^2.2.1" 2967 | tar-pack "^3.4.0" 2968 | 2969 | node-sass@^4.5.3: 2970 | version "4.5.3" 2971 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.3.tgz#d09c9d1179641239d1b97ffc6231fdcec53e1568" 2972 | dependencies: 2973 | async-foreach "^0.1.3" 2974 | chalk "^1.1.1" 2975 | cross-spawn "^3.0.0" 2976 | gaze "^1.0.0" 2977 | get-stdin "^4.0.1" 2978 | glob "^7.0.3" 2979 | in-publish "^2.0.0" 2980 | lodash.assign "^4.2.0" 2981 | lodash.clonedeep "^4.3.2" 2982 | lodash.mergewith "^4.6.0" 2983 | meow "^3.7.0" 2984 | mkdirp "^0.5.1" 2985 | nan "^2.3.2" 2986 | node-gyp "^3.3.1" 2987 | npmlog "^4.0.0" 2988 | request "^2.79.0" 2989 | sass-graph "^2.1.1" 2990 | stdout-stream "^1.4.0" 2991 | 2992 | "nopt@2 || 3": 2993 | version "3.0.6" 2994 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2995 | dependencies: 2996 | abbrev "1" 2997 | 2998 | nopt@^4.0.1: 2999 | version "4.0.1" 3000 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3001 | dependencies: 3002 | abbrev "1" 3003 | osenv "^0.1.4" 3004 | 3005 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 3006 | version "2.3.8" 3007 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 3008 | dependencies: 3009 | hosted-git-info "^2.1.4" 3010 | is-builtin-module "^1.0.0" 3011 | semver "2 || 3 || 4 || 5" 3012 | validate-npm-package-license "^3.0.1" 3013 | 3014 | normalize-path@^1.0.0: 3015 | version "1.0.0" 3016 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 3017 | 3018 | normalize-path@^2.0.1: 3019 | version "2.1.1" 3020 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3021 | dependencies: 3022 | remove-trailing-separator "^1.0.1" 3023 | 3024 | npm-path@^2.0.2: 3025 | version "2.0.3" 3026 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 3027 | dependencies: 3028 | which "^1.2.10" 3029 | 3030 | npm-run-path@^2.0.0: 3031 | version "2.0.2" 3032 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3033 | dependencies: 3034 | path-key "^2.0.0" 3035 | 3036 | npm-which@^3.0.1: 3037 | version "3.0.1" 3038 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 3039 | dependencies: 3040 | commander "^2.9.0" 3041 | npm-path "^2.0.2" 3042 | which "^1.2.10" 3043 | 3044 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: 3045 | version "4.1.0" 3046 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 3047 | dependencies: 3048 | are-we-there-yet "~1.1.2" 3049 | console-control-strings "~1.1.0" 3050 | gauge "~2.7.3" 3051 | set-blocking "~2.0.0" 3052 | 3053 | number-is-nan@^1.0.0: 3054 | version "1.0.1" 3055 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3056 | 3057 | "nwmatcher@>= 1.3.9 < 2.0.0": 3058 | version "1.4.1" 3059 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 3060 | 3061 | oauth-sign@~0.8.1: 3062 | version "0.8.2" 3063 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3064 | 3065 | object-assign@^4.0.1, object-assign@^4.1.0: 3066 | version "4.1.1" 3067 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3068 | 3069 | object-keys@^1.0.8: 3070 | version "1.0.11" 3071 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 3072 | 3073 | object.omit@^2.0.0: 3074 | version "2.0.1" 3075 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3076 | dependencies: 3077 | for-own "^0.1.4" 3078 | is-extendable "^0.1.1" 3079 | 3080 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 3081 | version "1.4.0" 3082 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3083 | dependencies: 3084 | wrappy "1" 3085 | 3086 | onetime@^1.0.0: 3087 | version "1.1.0" 3088 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3089 | 3090 | onetime@^2.0.0: 3091 | version "2.0.1" 3092 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3093 | dependencies: 3094 | mimic-fn "^1.0.0" 3095 | 3096 | optimist@^0.6.1: 3097 | version "0.6.1" 3098 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3099 | dependencies: 3100 | minimist "~0.0.1" 3101 | wordwrap "~0.0.2" 3102 | 3103 | optionator@^0.8.1, optionator@^0.8.2: 3104 | version "0.8.2" 3105 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3106 | dependencies: 3107 | deep-is "~0.1.3" 3108 | fast-levenshtein "~2.0.4" 3109 | levn "~0.3.0" 3110 | prelude-ls "~1.1.2" 3111 | type-check "~0.3.2" 3112 | wordwrap "~1.0.0" 3113 | 3114 | ora@^0.2.3: 3115 | version "0.2.3" 3116 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 3117 | dependencies: 3118 | chalk "^1.1.1" 3119 | cli-cursor "^1.0.2" 3120 | cli-spinners "^0.1.2" 3121 | object-assign "^4.0.1" 3122 | 3123 | os-homedir@^1.0.0, os-homedir@^1.0.1: 3124 | version "1.0.2" 3125 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3126 | 3127 | os-locale@^1.4.0: 3128 | version "1.4.0" 3129 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3130 | dependencies: 3131 | lcid "^1.0.0" 3132 | 3133 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 3134 | version "1.0.2" 3135 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3136 | 3137 | osenv@0, osenv@^0.1.4: 3138 | version "0.1.4" 3139 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3140 | dependencies: 3141 | os-homedir "^1.0.0" 3142 | os-tmpdir "^1.0.0" 3143 | 3144 | p-finally@^1.0.0: 3145 | version "1.0.0" 3146 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3147 | 3148 | p-limit@^1.1.0: 3149 | version "1.1.0" 3150 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3151 | 3152 | p-locate@^2.0.0: 3153 | version "2.0.0" 3154 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3155 | dependencies: 3156 | p-limit "^1.1.0" 3157 | 3158 | p-map@^1.1.1: 3159 | version "1.1.1" 3160 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 3161 | 3162 | pad-right@^0.2.2: 3163 | version "0.2.2" 3164 | resolved "https://registry.yarnpkg.com/pad-right/-/pad-right-0.2.2.tgz#6fbc924045d244f2a2a244503060d3bfc6009774" 3165 | dependencies: 3166 | repeat-string "^1.5.2" 3167 | 3168 | parse-glob@^3.0.4: 3169 | version "3.0.4" 3170 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3171 | dependencies: 3172 | glob-base "^0.3.0" 3173 | is-dotfile "^1.0.0" 3174 | is-extglob "^1.0.0" 3175 | is-glob "^2.0.0" 3176 | 3177 | parse-json@^2.2.0: 3178 | version "2.2.0" 3179 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3180 | dependencies: 3181 | error-ex "^1.2.0" 3182 | 3183 | parse5@^1.5.1: 3184 | version "1.5.1" 3185 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 3186 | 3187 | path-exists@^2.0.0: 3188 | version "2.1.0" 3189 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3190 | dependencies: 3191 | pinkie-promise "^2.0.0" 3192 | 3193 | path-exists@^3.0.0: 3194 | version "3.0.0" 3195 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3196 | 3197 | path-is-absolute@^1.0.0: 3198 | version "1.0.1" 3199 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3200 | 3201 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 3202 | version "1.0.2" 3203 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3204 | 3205 | path-key@^2.0.0: 3206 | version "2.0.1" 3207 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3208 | 3209 | path-parse@^1.0.5: 3210 | version "1.0.5" 3211 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3212 | 3213 | path-to-regexp@^1.7.0: 3214 | version "1.7.0" 3215 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 3216 | dependencies: 3217 | isarray "0.0.1" 3218 | 3219 | path-type@^1.0.0: 3220 | version "1.1.0" 3221 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3222 | dependencies: 3223 | graceful-fs "^4.1.2" 3224 | pify "^2.0.0" 3225 | pinkie-promise "^2.0.0" 3226 | 3227 | path-type@^2.0.0: 3228 | version "2.0.0" 3229 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3230 | dependencies: 3231 | pify "^2.0.0" 3232 | 3233 | performance-now@^0.2.0: 3234 | version "0.2.0" 3235 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3236 | 3237 | pify@^2.0.0, pify@^2.3.0: 3238 | version "2.3.0" 3239 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3240 | 3241 | pinkie-promise@^2.0.0: 3242 | version "2.0.1" 3243 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3244 | dependencies: 3245 | pinkie "^2.0.0" 3246 | 3247 | pinkie@^2.0.0: 3248 | version "2.0.4" 3249 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3250 | 3251 | pkg-dir@^1.0.0: 3252 | version "1.0.0" 3253 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3254 | dependencies: 3255 | find-up "^1.0.0" 3256 | 3257 | pluralize@^4.0.0: 3258 | version "4.0.0" 3259 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-4.0.0.tgz#59b708c1c0190a2f692f1c7618c446b052fd1762" 3260 | 3261 | prelude-ls@~1.1.2: 3262 | version "1.1.2" 3263 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3264 | 3265 | preserve@^0.2.0: 3266 | version "0.2.0" 3267 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3268 | 3269 | prettier@^1.4.4: 3270 | version "1.4.4" 3271 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.4.4.tgz#a8d1447b14c9bf67e6d420dcadd10fb9a4fad65a" 3272 | 3273 | pretty-format@^20.0.3: 3274 | version "20.0.3" 3275 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 3276 | dependencies: 3277 | ansi-regex "^2.1.1" 3278 | ansi-styles "^3.0.0" 3279 | 3280 | private@^0.1.6: 3281 | version "0.1.7" 3282 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3283 | 3284 | process-nextick-args@~1.0.6: 3285 | version "1.0.7" 3286 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3287 | 3288 | progress@^2.0.0: 3289 | version "2.0.0" 3290 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3291 | 3292 | promise@^7.1.1: 3293 | version "7.3.1" 3294 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 3295 | dependencies: 3296 | asap "~2.0.3" 3297 | 3298 | prr@~0.0.0: 3299 | version "0.0.0" 3300 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3301 | 3302 | pseudomap@^1.0.2: 3303 | version "1.0.2" 3304 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3305 | 3306 | punycode@^1.4.1: 3307 | version "1.4.1" 3308 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3309 | 3310 | qs@~6.4.0: 3311 | version "6.4.0" 3312 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3313 | 3314 | randomatic@^1.1.3: 3315 | version "1.1.7" 3316 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3317 | dependencies: 3318 | is-number "^3.0.0" 3319 | kind-of "^4.0.0" 3320 | 3321 | rc@^1.1.7: 3322 | version "1.2.1" 3323 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3324 | dependencies: 3325 | deep-extend "~0.4.0" 3326 | ini "~1.3.0" 3327 | minimist "^1.2.0" 3328 | strip-json-comments "~2.0.1" 3329 | 3330 | read-pkg-up@^1.0.1: 3331 | version "1.0.1" 3332 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3333 | dependencies: 3334 | find-up "^1.0.0" 3335 | read-pkg "^1.0.0" 3336 | 3337 | read-pkg-up@^2.0.0: 3338 | version "2.0.0" 3339 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3340 | dependencies: 3341 | find-up "^2.0.0" 3342 | read-pkg "^2.0.0" 3343 | 3344 | read-pkg@^1.0.0: 3345 | version "1.1.0" 3346 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3347 | dependencies: 3348 | load-json-file "^1.0.0" 3349 | normalize-package-data "^2.3.2" 3350 | path-type "^1.0.0" 3351 | 3352 | read-pkg@^2.0.0: 3353 | version "2.0.0" 3354 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3355 | dependencies: 3356 | load-json-file "^2.0.0" 3357 | normalize-package-data "^2.3.2" 3358 | path-type "^2.0.0" 3359 | 3360 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 3361 | version "2.3.0" 3362 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.0.tgz#640f5dcda88c91a8dc60787145629170813a1ed2" 3363 | dependencies: 3364 | core-util-is "~1.0.0" 3365 | inherits "~2.0.3" 3366 | isarray "~1.0.0" 3367 | process-nextick-args "~1.0.6" 3368 | safe-buffer "~5.1.0" 3369 | string_decoder "~1.0.0" 3370 | util-deprecate "~1.0.1" 3371 | 3372 | readdirp@^2.0.0: 3373 | version "2.1.0" 3374 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3375 | dependencies: 3376 | graceful-fs "^4.1.2" 3377 | minimatch "^3.0.2" 3378 | readable-stream "^2.0.2" 3379 | set-immediate-shim "^1.0.1" 3380 | 3381 | redent@^1.0.0: 3382 | version "1.0.0" 3383 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3384 | dependencies: 3385 | indent-string "^2.1.0" 3386 | strip-indent "^1.0.1" 3387 | 3388 | regenerate@^1.2.1: 3389 | version "1.3.2" 3390 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3391 | 3392 | regenerator-runtime@^0.10.0: 3393 | version "0.10.5" 3394 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3395 | 3396 | regenerator-transform@0.9.11: 3397 | version "0.9.11" 3398 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3399 | dependencies: 3400 | babel-runtime "^6.18.0" 3401 | babel-types "^6.19.0" 3402 | private "^0.1.6" 3403 | 3404 | regex-cache@^0.4.2: 3405 | version "0.4.3" 3406 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3407 | dependencies: 3408 | is-equal-shallow "^0.1.3" 3409 | is-primitive "^2.0.0" 3410 | 3411 | regexpu-core@^2.0.0: 3412 | version "2.0.0" 3413 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3414 | dependencies: 3415 | regenerate "^1.2.1" 3416 | regjsgen "^0.2.0" 3417 | regjsparser "^0.1.4" 3418 | 3419 | regjsgen@^0.2.0: 3420 | version "0.2.0" 3421 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3422 | 3423 | regjsparser@^0.1.4: 3424 | version "0.1.5" 3425 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3426 | dependencies: 3427 | jsesc "~0.5.0" 3428 | 3429 | remove-trailing-separator@^1.0.1: 3430 | version "1.0.2" 3431 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 3432 | 3433 | repeat-element@^1.1.2: 3434 | version "1.1.2" 3435 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3436 | 3437 | repeat-string@^1.5.2: 3438 | version "1.6.1" 3439 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3440 | 3441 | repeating@^2.0.0: 3442 | version "2.0.1" 3443 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3444 | dependencies: 3445 | is-finite "^1.0.0" 3446 | 3447 | request@2, request@^2.72.0, request@^2.79.0, request@^2.81.0: 3448 | version "2.81.0" 3449 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3450 | dependencies: 3451 | aws-sign2 "~0.6.0" 3452 | aws4 "^1.2.1" 3453 | caseless "~0.12.0" 3454 | combined-stream "~1.0.5" 3455 | extend "~3.0.0" 3456 | forever-agent "~0.6.1" 3457 | form-data "~2.1.1" 3458 | har-validator "~4.2.1" 3459 | hawk "~3.1.3" 3460 | http-signature "~1.1.0" 3461 | is-typedarray "~1.0.0" 3462 | isstream "~0.1.2" 3463 | json-stringify-safe "~5.0.1" 3464 | mime-types "~2.1.7" 3465 | oauth-sign "~0.8.1" 3466 | performance-now "^0.2.0" 3467 | qs "~6.4.0" 3468 | safe-buffer "^5.0.1" 3469 | stringstream "~0.0.4" 3470 | tough-cookie "~2.3.0" 3471 | tunnel-agent "^0.6.0" 3472 | uuid "^3.0.0" 3473 | 3474 | require-directory@^2.1.1: 3475 | version "2.1.1" 3476 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3477 | 3478 | require-from-string@^1.1.0: 3479 | version "1.2.1" 3480 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 3481 | 3482 | require-main-filename@^1.0.1: 3483 | version "1.0.1" 3484 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3485 | 3486 | require-relative@0.8.7: 3487 | version "0.8.7" 3488 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 3489 | 3490 | require-uncached@^1.0.3: 3491 | version "1.0.3" 3492 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3493 | dependencies: 3494 | caller-path "^0.1.0" 3495 | resolve-from "^1.0.0" 3496 | 3497 | resolve-from@^1.0.0: 3498 | version "1.0.1" 3499 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3500 | 3501 | resolve@1.1.7: 3502 | version "1.1.7" 3503 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3504 | 3505 | resolve@^1.1.6, resolve@^1.3.2: 3506 | version "1.3.3" 3507 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3508 | dependencies: 3509 | path-parse "^1.0.5" 3510 | 3511 | restore-cursor@^1.0.1: 3512 | version "1.0.1" 3513 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3514 | dependencies: 3515 | exit-hook "^1.0.0" 3516 | onetime "^1.0.0" 3517 | 3518 | restore-cursor@^2.0.0: 3519 | version "2.0.0" 3520 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3521 | dependencies: 3522 | onetime "^2.0.0" 3523 | signal-exit "^3.0.2" 3524 | 3525 | right-align@^0.1.1: 3526 | version "0.1.3" 3527 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3528 | dependencies: 3529 | align-text "^0.1.1" 3530 | 3531 | right-pad@^1.0.1: 3532 | version "1.0.1" 3533 | resolved "https://registry.yarnpkg.com/right-pad/-/right-pad-1.0.1.tgz#8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0" 3534 | 3535 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3536 | version "2.6.1" 3537 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3538 | dependencies: 3539 | glob "^7.0.5" 3540 | 3541 | rollup-plugin-babel@^2.7.1: 3542 | version "2.7.1" 3543 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-2.7.1.tgz#16528197b0f938a1536f44683c7a93d573182f57" 3544 | dependencies: 3545 | babel-core "6" 3546 | babel-plugin-transform-es2015-classes "^6.9.0" 3547 | object-assign "^4.1.0" 3548 | rollup-pluginutils "^1.5.0" 3549 | 3550 | rollup-plugin-babili@^3.1.0: 3551 | version "3.1.0" 3552 | resolved "https://registry.yarnpkg.com/rollup-plugin-babili/-/rollup-plugin-babili-3.1.0.tgz#27ada043a0ed021050a712528f68ed641888b5dc" 3553 | dependencies: 3554 | "@comandeer/babel-plugin-banner" "^1.0.0" 3555 | babel-core "^6.21.0" 3556 | babel-preset-babili "^0.1.2" 3557 | 3558 | rollup-plugin-cleanup@^1.0.1: 3559 | version "1.0.1" 3560 | resolved "https://registry.yarnpkg.com/rollup-plugin-cleanup/-/rollup-plugin-cleanup-1.0.1.tgz#ca056c74fe6ea21783f99851963b173cbe8e9359" 3561 | dependencies: 3562 | acorn "4.x" 3563 | magic-string "*" 3564 | rollup-pluginutils "*" 3565 | 3566 | rollup-plugin-flow@^1.1.1: 3567 | version "1.1.1" 3568 | resolved "https://registry.yarnpkg.com/rollup-plugin-flow/-/rollup-plugin-flow-1.1.1.tgz#6ce568f1dd559666b77ab76b4bae251407528db6" 3569 | dependencies: 3570 | flow-remove-types "^1.1.0" 3571 | rollup-pluginutils "^1.5.1" 3572 | 3573 | rollup-plugin-multi-dest@^1.0.2: 3574 | version "1.0.2" 3575 | resolved "https://registry.yarnpkg.com/rollup-plugin-multi-dest/-/rollup-plugin-multi-dest-1.0.2.tgz#ec695726c96c7567881b87eafb0c856742e4c354" 3576 | dependencies: 3577 | deepmerge "^1.3.2" 3578 | rollup "^0.41.6" 3579 | 3580 | rollup-pluginutils@*, rollup-pluginutils@^1.5.0, rollup-pluginutils@^1.5.1: 3581 | version "1.5.2" 3582 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 3583 | dependencies: 3584 | estree-walker "^0.2.1" 3585 | minimatch "^3.0.2" 3586 | 3587 | rollup-watch@^4.0.0: 3588 | version "4.0.0" 3589 | resolved "https://registry.yarnpkg.com/rollup-watch/-/rollup-watch-4.0.0.tgz#309051b9403b9e5445c5746c9eba9a466951d39e" 3590 | dependencies: 3591 | chokidar "^1.7.0" 3592 | require-relative "0.8.7" 3593 | 3594 | rollup@^0.41.6: 3595 | version "0.41.6" 3596 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.41.6.tgz#e0d05497877a398c104d816d2733a718a7a94e2a" 3597 | dependencies: 3598 | source-map-support "^0.4.0" 3599 | 3600 | rollup@^0.43.0: 3601 | version "0.43.0" 3602 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.43.0.tgz#b36bdb75fa5e0823b6de8aee18ff7b5655520543" 3603 | dependencies: 3604 | source-map-support "^0.4.0" 3605 | 3606 | run-async@^2.2.0: 3607 | version "2.3.0" 3608 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3609 | dependencies: 3610 | is-promise "^2.1.0" 3611 | 3612 | rx-lite-aggregates@^4.0.8: 3613 | version "4.0.8" 3614 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3615 | dependencies: 3616 | rx-lite "*" 3617 | 3618 | rx-lite@*, rx-lite@^4.0.8: 3619 | version "4.0.8" 3620 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3621 | 3622 | rxjs@^5.0.0-beta.11: 3623 | version "5.4.1" 3624 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.1.tgz#b62f757f279445d265a18a58fb0a70dc90e91626" 3625 | dependencies: 3626 | symbol-observable "^1.0.1" 3627 | 3628 | safe-buffer@^5.0.1, safe-buffer@~5.1.0: 3629 | version "5.1.0" 3630 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.0.tgz#fe4c8460397f9eaaaa58e73be46273408a45e223" 3631 | 3632 | safe-buffer@~5.0.1: 3633 | version "5.0.1" 3634 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3635 | 3636 | samsam@1.x, samsam@^1.1.3: 3637 | version "1.2.1" 3638 | resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.2.1.tgz#edd39093a3184370cb859243b2bdf255e7d8ea67" 3639 | 3640 | sane@~1.6.0: 3641 | version "1.6.0" 3642 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 3643 | dependencies: 3644 | anymatch "^1.3.0" 3645 | exec-sh "^0.2.0" 3646 | fb-watchman "^1.8.0" 3647 | minimatch "^3.0.2" 3648 | minimist "^1.1.1" 3649 | walker "~1.0.5" 3650 | watch "~0.10.0" 3651 | 3652 | sass-graph@^2.1.1: 3653 | version "2.2.4" 3654 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" 3655 | dependencies: 3656 | glob "^7.0.0" 3657 | lodash "^4.0.0" 3658 | scss-tokenizer "^0.2.3" 3659 | yargs "^7.0.0" 3660 | 3661 | sax@^1.2.1: 3662 | version "1.2.2" 3663 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3664 | 3665 | scss-tokenizer@^0.2.3: 3666 | version "0.2.3" 3667 | resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" 3668 | dependencies: 3669 | js-base64 "^2.1.8" 3670 | source-map "^0.4.2" 3671 | 3672 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@~5.3.0: 3673 | version "5.3.0" 3674 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3675 | 3676 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3677 | version "2.0.0" 3678 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3679 | 3680 | set-immediate-shim@^1.0.1: 3681 | version "1.0.1" 3682 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3683 | 3684 | shebang-command@^1.2.0: 3685 | version "1.2.0" 3686 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3687 | dependencies: 3688 | shebang-regex "^1.0.0" 3689 | 3690 | shebang-regex@^1.0.0: 3691 | version "1.0.0" 3692 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3693 | 3694 | shellwords@^0.1.0: 3695 | version "0.1.0" 3696 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 3697 | 3698 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3699 | version "3.0.2" 3700 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3701 | 3702 | sinon@^2.3.5: 3703 | version "2.3.5" 3704 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-2.3.5.tgz#9a2fc0ff8d526da716f30953aa2c65d518917f6c" 3705 | dependencies: 3706 | diff "^3.1.0" 3707 | formatio "1.2.0" 3708 | lolex "^1.6.0" 3709 | native-promise-only "^0.8.1" 3710 | path-to-regexp "^1.7.0" 3711 | samsam "^1.1.3" 3712 | text-encoding "0.6.4" 3713 | type-detect "^4.0.0" 3714 | 3715 | slash@^1.0.0: 3716 | version "1.0.0" 3717 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3718 | 3719 | slice-ansi@0.0.4: 3720 | version "0.0.4" 3721 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3722 | 3723 | sntp@1.x.x: 3724 | version "1.0.9" 3725 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3726 | dependencies: 3727 | hoek "2.x.x" 3728 | 3729 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3730 | version "0.4.15" 3731 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3732 | dependencies: 3733 | source-map "^0.5.6" 3734 | 3735 | source-map@^0.4.2, source-map@^0.4.4: 3736 | version "0.4.4" 3737 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3738 | dependencies: 3739 | amdefine ">=0.0.4" 3740 | 3741 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1: 3742 | version "0.5.6" 3743 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3744 | 3745 | source-map@~0.2.0: 3746 | version "0.2.0" 3747 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3748 | dependencies: 3749 | amdefine ">=0.0.4" 3750 | 3751 | spdx-correct@~1.0.0: 3752 | version "1.0.2" 3753 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3754 | dependencies: 3755 | spdx-license-ids "^1.0.2" 3756 | 3757 | spdx-expression-parse@~1.0.0: 3758 | version "1.0.4" 3759 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3760 | 3761 | spdx-license-ids@^1.0.2: 3762 | version "1.2.2" 3763 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3764 | 3765 | sprintf-js@~1.0.2: 3766 | version "1.0.3" 3767 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3768 | 3769 | sshpk@^1.7.0: 3770 | version "1.13.1" 3771 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3772 | dependencies: 3773 | asn1 "~0.2.3" 3774 | assert-plus "^1.0.0" 3775 | dashdash "^1.12.0" 3776 | getpass "^0.1.1" 3777 | optionalDependencies: 3778 | bcrypt-pbkdf "^1.0.0" 3779 | ecc-jsbn "~0.1.1" 3780 | jsbn "~0.1.0" 3781 | tweetnacl "~0.14.0" 3782 | 3783 | staged-git-files@0.0.4: 3784 | version "0.0.4" 3785 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 3786 | 3787 | stdout-stream@^1.4.0: 3788 | version "1.4.0" 3789 | resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b" 3790 | dependencies: 3791 | readable-stream "^2.0.1" 3792 | 3793 | stream-to-observable@^0.1.0: 3794 | version "0.1.0" 3795 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 3796 | 3797 | string-length@^1.0.1: 3798 | version "1.0.1" 3799 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3800 | dependencies: 3801 | strip-ansi "^3.0.0" 3802 | 3803 | string-width@^1.0.1, string-width@^1.0.2: 3804 | version "1.0.2" 3805 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3806 | dependencies: 3807 | code-point-at "^1.0.0" 3808 | is-fullwidth-code-point "^1.0.0" 3809 | strip-ansi "^3.0.0" 3810 | 3811 | string-width@^2.0.0: 3812 | version "2.0.0" 3813 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3814 | dependencies: 3815 | is-fullwidth-code-point "^2.0.0" 3816 | strip-ansi "^3.0.0" 3817 | 3818 | string_decoder@~1.0.0: 3819 | version "1.0.2" 3820 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.2.tgz#b29e1f4e1125fa97a10382b8a533737b7491e179" 3821 | dependencies: 3822 | safe-buffer "~5.0.1" 3823 | 3824 | stringstream@~0.0.4: 3825 | version "0.0.5" 3826 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3827 | 3828 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3829 | version "3.0.1" 3830 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3831 | dependencies: 3832 | ansi-regex "^2.0.0" 3833 | 3834 | strip-bom@3.0.0, strip-bom@^3.0.0: 3835 | version "3.0.0" 3836 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3837 | 3838 | strip-bom@^2.0.0: 3839 | version "2.0.0" 3840 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3841 | dependencies: 3842 | is-utf8 "^0.2.0" 3843 | 3844 | strip-eof@^1.0.0: 3845 | version "1.0.0" 3846 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3847 | 3848 | strip-indent@^1.0.1: 3849 | version "1.0.1" 3850 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3851 | dependencies: 3852 | get-stdin "^4.0.1" 3853 | 3854 | strip-json-comments@~2.0.1: 3855 | version "2.0.1" 3856 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3857 | 3858 | supports-color@^2.0.0: 3859 | version "2.0.0" 3860 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3861 | 3862 | supports-color@^3.1.2: 3863 | version "3.2.3" 3864 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3865 | dependencies: 3866 | has-flag "^1.0.0" 3867 | 3868 | symbol-observable@^1.0.1: 3869 | version "1.0.4" 3870 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3871 | 3872 | symbol-tree@^3.2.1: 3873 | version "3.2.2" 3874 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3875 | 3876 | table@^4.0.1: 3877 | version "4.0.1" 3878 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 3879 | dependencies: 3880 | ajv "^4.7.0" 3881 | ajv-keywords "^1.0.0" 3882 | chalk "^1.1.1" 3883 | lodash "^4.0.0" 3884 | slice-ansi "0.0.4" 3885 | string-width "^2.0.0" 3886 | 3887 | tar-pack@^3.4.0: 3888 | version "3.4.0" 3889 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3890 | dependencies: 3891 | debug "^2.2.0" 3892 | fstream "^1.0.10" 3893 | fstream-ignore "^1.0.5" 3894 | once "^1.3.3" 3895 | readable-stream "^2.1.4" 3896 | rimraf "^2.5.1" 3897 | tar "^2.2.1" 3898 | uid-number "^0.0.6" 3899 | 3900 | tar@^2.0.0, tar@^2.2.1: 3901 | version "2.2.1" 3902 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3903 | dependencies: 3904 | block-stream "*" 3905 | fstream "^1.0.2" 3906 | inherits "2" 3907 | 3908 | test-exclude@^4.1.1: 3909 | version "4.1.1" 3910 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3911 | dependencies: 3912 | arrify "^1.0.1" 3913 | micromatch "^2.3.11" 3914 | object-assign "^4.1.0" 3915 | read-pkg-up "^1.0.1" 3916 | require-main-filename "^1.0.1" 3917 | 3918 | text-encoding@0.6.4: 3919 | version "0.6.4" 3920 | resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.6.4.tgz#e399a982257a276dae428bb92845cb71bdc26d19" 3921 | 3922 | text-table@~0.2.0: 3923 | version "0.2.0" 3924 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3925 | 3926 | throat@^3.0.0: 3927 | version "3.2.0" 3928 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 3929 | 3930 | through@^2.3.6: 3931 | version "2.3.8" 3932 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3933 | 3934 | tmp@^0.0.31: 3935 | version "0.0.31" 3936 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3937 | dependencies: 3938 | os-tmpdir "~1.0.1" 3939 | 3940 | tmpl@1.0.x: 3941 | version "1.0.4" 3942 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3943 | 3944 | to-fast-properties@^1.0.1: 3945 | version "1.0.3" 3946 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3947 | 3948 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3949 | version "2.3.2" 3950 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3951 | dependencies: 3952 | punycode "^1.4.1" 3953 | 3954 | tr46@~0.0.3: 3955 | version "0.0.3" 3956 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3957 | 3958 | trim-newlines@^1.0.0: 3959 | version "1.0.0" 3960 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3961 | 3962 | trim-right@^1.0.1: 3963 | version "1.0.1" 3964 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3965 | 3966 | tryit@^1.0.1: 3967 | version "1.0.3" 3968 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3969 | 3970 | tunnel-agent@^0.6.0: 3971 | version "0.6.0" 3972 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3973 | dependencies: 3974 | safe-buffer "^5.0.1" 3975 | 3976 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3977 | version "0.14.5" 3978 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3979 | 3980 | type-check@~0.3.2: 3981 | version "0.3.2" 3982 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3983 | dependencies: 3984 | prelude-ls "~1.1.2" 3985 | 3986 | type-detect@^4.0.0: 3987 | version "4.0.3" 3988 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.3.tgz#0e3f2670b44099b0b46c284d136a7ef49c74c2ea" 3989 | 3990 | typedarray@^0.0.6: 3991 | version "0.0.6" 3992 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3993 | 3994 | uglify-js@^2.6: 3995 | version "2.8.29" 3996 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3997 | dependencies: 3998 | source-map "~0.5.1" 3999 | yargs "~3.10.0" 4000 | optionalDependencies: 4001 | uglify-to-browserify "~1.0.0" 4002 | 4003 | uglify-to-browserify@~1.0.0: 4004 | version "1.0.2" 4005 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4006 | 4007 | uid-number@^0.0.6: 4008 | version "0.0.6" 4009 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4010 | 4011 | util-deprecate@~1.0.1: 4012 | version "1.0.2" 4013 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4014 | 4015 | uuid@^3.0.0: 4016 | version "3.1.0" 4017 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 4018 | 4019 | validate-npm-package-license@^3.0.1: 4020 | version "3.0.1" 4021 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4022 | dependencies: 4023 | spdx-correct "~1.0.0" 4024 | spdx-expression-parse "~1.0.0" 4025 | 4026 | verror@1.3.6: 4027 | version "1.3.6" 4028 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4029 | dependencies: 4030 | extsprintf "1.0.2" 4031 | 4032 | vlq@^0.2.1: 4033 | version "0.2.2" 4034 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.2.tgz#e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1" 4035 | 4036 | walker@~1.0.5: 4037 | version "1.0.7" 4038 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4039 | dependencies: 4040 | makeerror "1.0.x" 4041 | 4042 | watch@~0.10.0: 4043 | version "0.10.0" 4044 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 4045 | 4046 | webidl-conversions@^3.0.0: 4047 | version "3.0.1" 4048 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 4049 | 4050 | webidl-conversions@^4.0.0: 4051 | version "4.0.1" 4052 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 4053 | 4054 | whatwg-encoding@^1.0.1: 4055 | version "1.0.1" 4056 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 4057 | dependencies: 4058 | iconv-lite "0.4.13" 4059 | 4060 | whatwg-url@^4.3.0: 4061 | version "4.8.0" 4062 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 4063 | dependencies: 4064 | tr46 "~0.0.3" 4065 | webidl-conversions "^3.0.0" 4066 | 4067 | which-module@^1.0.0: 4068 | version "1.0.0" 4069 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4070 | 4071 | which@1, which@^1.2.10, which@^1.2.12, which@^1.2.9: 4072 | version "1.2.14" 4073 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4074 | dependencies: 4075 | isexe "^2.0.0" 4076 | 4077 | wide-align@^1.1.0: 4078 | version "1.1.2" 4079 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4080 | dependencies: 4081 | string-width "^1.0.2" 4082 | 4083 | window-size@0.1.0: 4084 | version "0.1.0" 4085 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4086 | 4087 | word-wrap@^1.1.0: 4088 | version "1.2.3" 4089 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 4090 | 4091 | wordwrap@0.0.2: 4092 | version "0.0.2" 4093 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4094 | 4095 | wordwrap@~0.0.2: 4096 | version "0.0.3" 4097 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4098 | 4099 | wordwrap@~1.0.0: 4100 | version "1.0.0" 4101 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4102 | 4103 | worker-farm@^1.3.1: 4104 | version "1.3.1" 4105 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 4106 | dependencies: 4107 | errno ">=0.1.1 <0.2.0-0" 4108 | xtend ">=4.0.0 <4.1.0-0" 4109 | 4110 | wrap-ansi@^2.0.0: 4111 | version "2.1.0" 4112 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4113 | dependencies: 4114 | string-width "^1.0.1" 4115 | strip-ansi "^3.0.1" 4116 | 4117 | wrappy@1: 4118 | version "1.0.2" 4119 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4120 | 4121 | write@^0.2.1: 4122 | version "0.2.1" 4123 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4124 | dependencies: 4125 | mkdirp "^0.5.1" 4126 | 4127 | xml-name-validator@^2.0.1: 4128 | version "2.0.1" 4129 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 4130 | 4131 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0: 4132 | version "4.0.1" 4133 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4134 | 4135 | y18n@^3.2.1: 4136 | version "3.2.1" 4137 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4138 | 4139 | yallist@^2.1.2: 4140 | version "2.1.2" 4141 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4142 | 4143 | yargs-parser@^5.0.0: 4144 | version "5.0.0" 4145 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 4146 | dependencies: 4147 | camelcase "^3.0.0" 4148 | 4149 | yargs@^7.0.0, yargs@^7.0.2: 4150 | version "7.1.0" 4151 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 4152 | dependencies: 4153 | camelcase "^3.0.0" 4154 | cliui "^3.2.0" 4155 | decamelize "^1.1.1" 4156 | get-caller-file "^1.0.1" 4157 | os-locale "^1.4.0" 4158 | read-pkg-up "^1.0.1" 4159 | require-directory "^2.1.1" 4160 | require-main-filename "^1.0.1" 4161 | set-blocking "^2.0.0" 4162 | string-width "^1.0.2" 4163 | which-module "^1.0.0" 4164 | y18n "^3.2.1" 4165 | yargs-parser "^5.0.0" 4166 | 4167 | yargs@~3.10.0: 4168 | version "3.10.0" 4169 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4170 | dependencies: 4171 | camelcase "^1.0.2" 4172 | cliui "^2.1.0" 4173 | decamelize "^1.0.0" 4174 | window-size "0.1.0" 4175 | --------------------------------------------------------------------------------