├── .editorconfig
├── .eslintrc.js
├── .github
└── ISSUE_TEMPLATE.md
├── .gitignore
├── LICENSE.md
├── README.md
├── dist
└── siema.min.js
├── docs
├── _layouts
│ └── default.html
├── assets
│ ├── android-chrome-192x192.png
│ ├── android-chrome-256x256.png
│ ├── apple-touch-icon.png
│ ├── browserconfig.xml
│ ├── bs.svg
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── favicon.ico
│ ├── manifest.json
│ ├── mstile-150x150.png
│ ├── safari-pinned-tab.svg
│ ├── siema--pink.svg
│ ├── siema--yellow.svg
│ ├── siema.jpg
│ ├── siema.min.js
│ ├── siema.mp4
│ ├── siema.webm
│ ├── siematutorial.jpg
│ └── style.css
└── index.md
├── package-lock.json
├── package.json
├── src
└── siema.js
├── webpack.config.js
└── yarn.lock
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | indent_style = space
5 | indent_size = 2
6 | end_of_line = lf
7 | charset = utf-8
8 | trim_trailing_whitespace = true
9 | insert_final_newline = true
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | // Apply best practices by enabling eslint:recommended
2 | // Never repeat rules that eslint:recommended sets as a default
3 | // Explicitly add more rules categorized in categories taken from official docs
4 |
5 | module.exports = {
6 | 'extends': 'eslint:recommended',
7 | 'parserOptions': {
8 | "ecmaVersion": 2017,
9 | 'sourceType': 'module',
10 | 'ecmaFeatures': {
11 | 'experimentalObjectRestSpread': true,
12 | 'jsx': true,
13 | 'impliedStrict': true
14 | }
15 | },
16 | 'env': {
17 | 'browser': true,
18 | 'commonjs': true,
19 | 'es6': true,
20 | 'node': true,
21 | 'jquery': true,
22 | 'serviceworker': true
23 | },
24 | 'rules': {
25 | // Possible Errors
26 | 'no-console': 1,
27 | 'no-template-curly-in-string': 2,
28 |
29 | // Best Practices
30 | 'array-callback-return': 2,
31 | 'block-scoped-var': 2,
32 | 'consistent-return': 2,
33 | 'curly': 2,
34 | 'default-case': 2,
35 | 'dot-notation': 2,
36 | 'eqeqeq': [
37 | 2,
38 | 'smart'
39 | ],
40 | 'no-alert': 1,
41 | 'no-caller': 2,
42 | 'no-div-regex': 2,
43 | 'no-else-return': 2,
44 | 'no-eq-null': 2,
45 | 'no-eval': 2,
46 | 'no-extend-native': 2,
47 | 'no-extra-bind': 2,
48 | 'no-extra-label': 2,
49 | 'no-floating-decimal': 2,
50 | 'no-global-assign': 2,
51 | 'no-implied-eval': 2,
52 | 'no-lone-blocks': 2,
53 | 'no-loop-func': 2,
54 | 'no-multi-spaces': 2,
55 | 'no-proto': 2,
56 | 'no-self-compare': 2,
57 | 'no-sequences': 2,
58 | 'no-unused-expressions': 2,
59 | 'no-useless-call': 2,
60 | 'no-useless-concat': 2,
61 | 'no-useless-escape': 2,
62 | 'no-void': 2,
63 | 'no-with': 2,
64 | 'radix': 2,
65 | 'wrap-iife': [
66 | 2,
67 | 'inside'
68 | ],
69 | 'yoda': [
70 | 2,
71 | 'never'
72 | ],
73 |
74 | // Strict Mode
75 | 'strict': 2,
76 |
77 | // Variables
78 | 'init-declarations': [
79 | 2,
80 | 'always'
81 | ],
82 | 'no-label-var': 2,
83 | 'no-undef-init': 2,
84 | 'no-undefined': 2,
85 | 'no-use-before-define': 2,
86 |
87 | // Stylistic Issues
88 | 'array-bracket-spacing': [
89 | 1,
90 | 'never'
91 | ],
92 | 'block-spacing': [
93 | 2,
94 | 'always'
95 | ],
96 | 'brace-style': [
97 | 2,
98 | 'stroustrup',
99 | {
100 | 'allowSingleLine': true
101 | }
102 | ],
103 | 'camelcase': 2,
104 | 'comma-dangle': [
105 | 2,
106 | 'only-multiline'
107 | ],
108 | 'comma-spacing': [
109 | 2,
110 | {
111 | 'before': false,
112 | 'after': true
113 | }
114 | ],
115 | 'comma-style': [
116 | 2,
117 | 'last'
118 | ],
119 | 'computed-property-spacing': [
120 | 2,
121 | 'never'
122 | ],
123 | 'eol-last': 2,
124 | 'func-call-spacing': [
125 | 2,
126 | 'never'
127 | ],
128 | 'func-names': [
129 | 1,
130 | 'always'
131 | ],
132 | 'indent': [
133 | 2,
134 | 2
135 | ],
136 | 'jsx-quotes': [
137 | 2,
138 | 'prefer-double'
139 | ],
140 | 'key-spacing': [
141 | 2,
142 | {
143 | 'beforeColon': false,
144 | 'afterColon': true
145 | }
146 | ],
147 | 'keyword-spacing': 2,
148 | 'line-comment-position': [
149 | 2,
150 | {
151 | 'position': 'above'
152 | }
153 | ],
154 | 'linebreak-style': [
155 | 2,
156 | 'unix'
157 | ],
158 | 'lines-around-directive': [
159 | 2,
160 | 'always'
161 | ],
162 | 'max-depth': 2,
163 | 'new-cap': 2,
164 | 'new-parens': 2,
165 | 'no-lonely-if': 2,
166 | 'no-nested-ternary': 2,
167 | 'no-tabs': 2,
168 | 'no-trailing-spaces': 2,
169 | 'no-underscore-dangle': 2,
170 | 'no-unneeded-ternary': 2,
171 | 'no-whitespace-before-property': 2,
172 | 'object-curly-spacing': [
173 | 2,
174 | 'always'
175 | ],
176 | 'object-property-newline': 2,
177 | 'one-var-declaration-per-line': [
178 | 2,
179 | 'always'
180 | ],
181 | 'one-var': [
182 | 2,
183 | 'never'
184 | ],
185 | 'operator-assignment': [
186 | 2,
187 | 'always'
188 | ],
189 | 'quote-props': [
190 | 2,
191 | 'as-needed'
192 | ],
193 | 'quotes': [
194 | 2,
195 | 'single'
196 | ],
197 | 'semi-spacing': [
198 | 2,
199 | {
200 | 'before': false,
201 | 'after': true
202 | }
203 | ],
204 | 'semi': [
205 | 2,
206 | 'always'
207 | ],
208 | 'space-before-blocks': 2,
209 | 'space-before-function-paren': [
210 | 2,
211 | 'never'
212 | ],
213 | 'space-in-parens': [
214 | 2,
215 | 'never'
216 | ],
217 | 'space-infix-ops': 2,
218 | 'space-unary-ops': [
219 | 2,
220 | {
221 | 'words': true,
222 | 'nonwords': false
223 | }
224 | ],
225 | 'spaced-comment': [
226 | 2,
227 | 'always'
228 | ],
229 |
230 | // ECMAScript 6
231 | 'arrow-parens': [
232 | 2,
233 | 'as-needed'
234 | ],
235 | 'arrow-spacing': [
236 | 2,
237 | {
238 | 'before': true,
239 | 'after': true
240 | }
241 | ],
242 | 'generator-star-spacing': [
243 | 2,
244 | {
245 | 'before': false,
246 | 'after': true
247 | }
248 | ],
249 | 'no-confusing-arrow': 2,
250 | 'no-const-assign': 2,
251 | 'no-duplicate-imports': 2,
252 | 'no-restricted-imports': 2,
253 | 'no-this-before-super': 2,
254 | 'no-useless-computed-key': 2,
255 | 'no-useless-constructor': 2,
256 | 'no-useless-rename': 2,
257 | 'no-var': 2,
258 | 'prefer-arrow-callback': 2,
259 | 'prefer-const': 2,
260 | 'prefer-template': 2,
261 | 'require-yield': 2,
262 | 'template-curly-spacing': [
263 | 2,
264 | 'never'
265 | ],
266 | }
267 | };
268 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | I'm always more than happy to fix a bug that you found or help you to build something cool with Siema, but...
2 |
3 | - - -
4 |
5 | Before asking about XYZ, please make sure that the solution ready to copy & paste is not provided on a Siema's CodePen collection: http://codepen.io/collection/Adpkkd/
6 |
7 | - - -
8 |
9 | If you found a bug — CodePen / JS Bin / JSFiddle example is irreplaceable. Please, please, please...
10 |
11 | - - -
12 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 | *.log*
4 | docs/_site
5 | .idea/
6 | .vscode/
7 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | # License
2 |
3 | MIT License
4 |
5 | Copyright (c) 2017 [Paweł Grzybek](https://pawelgrzybek.com/)
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy
8 | of this software and associated documentation files (the "Software"), to deal
9 | in the Software without restriction, including without limitation the rights
10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 | copies of the Software, and to permit persons to whom the Software is
12 | furnished to do so, subject to the following conditions:
13 |
14 | The above copyright notice and this permission notice shall be included in all
15 | copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 | SOFTWARE.
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | **Hi. I will be discontinuing active maintenance of Siema. I built it by myself to use on one of my projects. Two years later I consider carousels as an anti-pattern and I would suggest you to find a better UI pattern than carousel for your current project. If you really want to use it, feel free. If you have any questions, please look for the answer in closed issues section. Would you like to contribute or coutinue maintenance of Siema? Fantastic!**
2 |
3 | - - -
4 |
5 | # Siema - Lightweight and simple carousel with no dependencies
6 |
7 | Full docs with examples: [https://pawelgrzybek.github.io/siema/](https://pawelgrzybek.github.io/siema/).
8 |
9 | Siema is a lightweight (only 3kb gzipped) carousel plugin with no dependencies and no styling. As Brad Frost once said "do that shit yourself". It is 100% open source and [available on Github](https://github.com/pawelgrzybek/siema). It is free to use on personal and commercial projects. Use it with your favourite module bundler or by manually injecting the script into your project.
10 |
11 | ## Installation
12 |
13 | Setup is trivially easy. A little bit of markup...
14 |
15 | ```html
16 |
17 |
Hi, I'm slide 1
18 |
Hi, I'm slide 2
19 |
Hi, I'm slide 3
20 |
Hi, I'm slide 4
21 |
22 | ```
23 |
24 | If you are using a module bundler like Webpack or Browserify...
25 |
26 | ```
27 | yarn add siema
28 | ```
29 |
30 | ```js
31 | import Siema from 'siema';
32 | new Siema();
33 | ```
34 |
35 | ...or manually inject the minified script into your website.
36 |
37 | ```html
38 |
39 |
42 | ```
43 |
44 | ## Options
45 |
46 | Siema comes with a few (optional) settings that you can change by passing an object as an argument. Default values are presented below.
47 |
48 | ```js
49 | new Siema({
50 | selector: '.siema',
51 | duration: 200,
52 | easing: 'ease-out',
53 | perPage: 1,
54 | startIndex: 0,
55 | draggable: true,
56 | multipleDrag: true,
57 | threshold: 20,
58 | loop: false,
59 | rtl: false,
60 | onInit: () => {},
61 | onChange: () => {},
62 | });
63 | ```
64 |
65 | **`selector`** (string or DOM element)
66 | The selector to use as a carousel. Siema will use all immediate children of this selector as a slider items. It can be a query string [(example)](http://codepen.io/pawelgrzybek/pen/QvLjxY) or DOM element [(example)](http://codepen.io/pawelgrzybek/pen/gWYaje).
67 |
68 | **`duration`** (number)
69 | Slide transition duration in milliseconds [(example)](http://codepen.io/pawelgrzybek/pen/BRBoqO).
70 |
71 | **`easing`** (string)
72 | It is like a CSS `transition-timing-function` — describes acceleration curve [(example)](http://codepen.io/pawelgrzybek/pen/aWovrB).
73 |
74 | **`perPage`** (number or object)
75 | The number of slides to be shown. It accepts a number [(example)](http://codepen.io/pawelgrzybek/pen/bWbVXz) or an object [(example)](http://codepen.io/pawelgrzybek/pen/dWbGyZ) for complex responsive layouts.
76 |
77 | **`startIndex`** (number)
78 | Index (zero-based) of the starting slide [(example)](http://codepen.io/pawelgrzybek/pen/vmBLER).
79 |
80 | **`draggable`** (boolean)
81 | Use dragging and touch swiping [(example)](http://codepen.io/pawelgrzybek/pen/mmbVVj).
82 |
83 | **`multipleDrag`** (boolean)
84 | Allow dragging to move multiple slides.
85 |
86 | **`threshold`** (number)
87 | Touch and mouse dragging threshold (in px) [(example)](http://codepen.io/pawelgrzybek/pen/gWYPrQ).
88 |
89 | **`loop`** (boolean)
90 | Loop the slides around [(example)](http://codepen.io/pawelgrzybek/pen/zwOrKN).
91 |
92 | **`rtl`** (boolean)
93 | Enables layout for languages written from right to left (like Hebrew or Arabic) [(example)](https://codepen.io/pawelgrzybek/pen/XZNEgd).
94 |
95 | **`onInit`** (function)
96 | Runs immediately after initialization [(example)](http://codepen.io/pawelgrzybek/pen/BRBjpE).
97 |
98 | **`onChange`** (function)
99 | Runs after slide change [(example)](http://codepen.io/pawelgrzybek/pen/RVbrVe).
100 |
101 | ## API
102 |
103 | As mentioned above, Siema doesn't come with many options - just a few useful methods. Combine it with some very basic JavaScript and voila!
104 |
105 | **`prev(howManySlides = 1, callback)`**
106 | Go to previous item [(example)](http://codepen.io/pawelgrzybek/pen/JNPKVE). Optionally slide few items backward by passing `howManySlides` (number) argument [(example)](http://codepen.io/pawelgrzybek/pen/wdwWZQ). Optional `callback` (function) available as a third argument [(example)](http://codepen.io/pawelgrzybek/pen/JNPKQW).
107 |
108 | **`next(howManySlides = 1, callback)`**
109 | Go to next item [(example)](http://codepen.io/pawelgrzybek/pen/JNPKVE). Optionally slide few items forward by passing `howManySlides` (number) argument [(example)](http://codepen.io/pawelgrzybek/pen/wdwWZQ). Optional `callback` (function) available as a third argument [(example)](http://codepen.io/pawelgrzybek/pen/JNPKQW).
110 |
111 | **`goTo(index, callback)`**
112 | Go to item at particular `index` (number) [(example)](http://codepen.io/pawelgrzybek/pen/gWYLXP). Optional `callback` (function) available as a second argument [(example)](http://codepen.io/pawelgrzybek/pen/ZKzBvo).
113 |
114 | **`remove(index, callback)`**
115 | Remove item at particular `index` (number) [(example)](http://codepen.io/pawelgrzybek/pen/BRBpQJ). Optional `callback` (function) available as a second argument [(example)](http://codepen.io/pawelgrzybek/pen/rmBjjE).
116 |
117 | **`insert(item, index, callback)`**
118 | Insert new `item` (DOM element) at specific `index` (number) [(example)](http://codepen.io/pawelgrzybek/pen/QvLdaJ). Optional `callback` (function) available as a third argument [(example)](http://codepen.io/pawelgrzybek/pen/vmBgdZ).
119 |
120 | **`prepend(item, callback)`**
121 | Prepend new `item` (DOM element) [(example)](http://codepen.io/pawelgrzybek/pen/rmBymW). Optional `callback` (function) available as a second argument [(example)](http://codepen.io/pawelgrzybek/pen/LyPWLe).
122 |
123 | **`append(item, callback)`**
124 | Append new `item` (DOM element) [(example)](http://codepen.io/pawelgrzybek/pen/RVbpZe). Optional `callback` (function) available as a second argument [(example)](http://codepen.io/pawelgrzybek/pen/rmByGj).
125 |
126 | **`destroy(restoreMarkup = false, callback)`**
127 | Remove all event listeners on instance [(example)](http://codepen.io/pawelgrzybek/pen/oWvZEd). Use `restoreMarkup` to restore the initial markup inside selector [(example)](http://codepen.io/pawelgrzybek/pen/ZKzeoL). Optional `callback` (function) available as a third argument [(example)](http://codepen.io/pawelgrzybek/pen/Wjepyv).
128 |
129 | **`currentSlide`**
130 | Prints current slide index [(example)](https://codepen.io/pawelgrzybek/pen/XRNOPP).
131 |
132 | ## Browser support
133 |
134 | - IE10
135 | - Chrome 12
136 | - Firefox 16
137 | - Opera 15
138 | - Safari 5.1
139 | - Android Browser 4.0
140 | - iOS Safari 6.0
141 |
142 | ## Extra & Thanks
143 |
144 | Siema means 'hello' in Polish. When I play around with some code, I always use random names. That's the whole story behind the name of this one :)
145 |
146 | Huge thanks to [Jarkko Sibenberg](http://www.sibenberg.com/) for the cute logo design! I can't thank [BrowserStack](https://www.browserstack.com) enough for giving me a free access to their testing amazing service.
147 |
--------------------------------------------------------------------------------
/dist/siema.min.js:
--------------------------------------------------------------------------------
1 | !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define("Siema",[],t):"object"==typeof exports?exports.Siema=t():e.Siema=t()}("undefined"!=typeof self?self:this,function(){return function(e){function t(r){if(i[r])return i[r].exports;var n=i[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,t),n.l=!0,n.exports}var i={};return t.m=e,t.c=i,t.d=function(e,i,r){t.o(e,i)||Object.defineProperty(e,i,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var i=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(i,"a",i),i},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,i){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s=function(){function e(e,t){for(var i=0;i=e&&(this.perPage=this.config.perPage[e])}}},{key:"prev",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=arguments[1];if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;if(this.config.loop){if(this.currentSlide-e<0){this.disableTransition();var r=this.currentSlide+this.innerElements.length,n=this.perPage,s=r+n,l=(this.config.rtl?1:-1)*s*(this.selectorWidth/this.perPage),o=this.config.draggable?this.drag.endX-this.drag.startX:0;this.sliderFrame.style[this.transformProperty]="translate3d("+(l+o)+"px, 0, 0)",this.currentSlide=r-e}else this.currentSlide=this.currentSlide-e}else this.currentSlide=Math.max(this.currentSlide-e,0);i!==this.currentSlide&&(this.slideToCurrent(this.config.loop),this.config.onChange.call(this),t&&t.call(this))}}},{key:"next",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=arguments[1];if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;if(this.config.loop){if(this.currentSlide+e>this.innerElements.length-this.perPage){this.disableTransition();var r=this.currentSlide-this.innerElements.length,n=this.perPage,s=r+n,l=(this.config.rtl?1:-1)*s*(this.selectorWidth/this.perPage),o=this.config.draggable?this.drag.endX-this.drag.startX:0;this.sliderFrame.style[this.transformProperty]="translate3d("+(l+o)+"px, 0, 0)",this.currentSlide=r+e}else this.currentSlide=this.currentSlide+e}else this.currentSlide=Math.min(this.currentSlide+e,this.innerElements.length-this.perPage);i!==this.currentSlide&&(this.slideToCurrent(this.config.loop),this.config.onChange.call(this),t&&t.call(this))}}},{key:"disableTransition",value:function(){this.sliderFrame.style.webkitTransition="all 0ms "+this.config.easing,this.sliderFrame.style.transition="all 0ms "+this.config.easing}},{key:"enableTransition",value:function(){this.sliderFrame.style.webkitTransition="all "+this.config.duration+"ms "+this.config.easing,this.sliderFrame.style.transition="all "+this.config.duration+"ms "+this.config.easing}},{key:"goTo",value:function(e,t){if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;this.currentSlide=this.config.loop?e%this.innerElements.length:Math.min(Math.max(e,0),this.innerElements.length-this.perPage),i!==this.currentSlide&&(this.slideToCurrent(),this.config.onChange.call(this),t&&t.call(this))}}},{key:"slideToCurrent",value:function(e){var t=this,i=this.config.loop?this.currentSlide+this.perPage:this.currentSlide,r=(this.config.rtl?1:-1)*i*(this.selectorWidth/this.perPage);e?requestAnimationFrame(function(){requestAnimationFrame(function(){t.enableTransition(),t.sliderFrame.style[t.transformProperty]="translate3d("+r+"px, 0, 0)"})}):this.sliderFrame.style[this.transformProperty]="translate3d("+r+"px, 0, 0)"}},{key:"updateAfterDrag",value:function(){var e=(this.config.rtl?-1:1)*(this.drag.endX-this.drag.startX),t=Math.abs(e),i=this.config.multipleDrag?Math.ceil(t/(this.selectorWidth/this.perPage)):1,r=e>0&&this.currentSlide-i<0,n=e<0&&this.currentSlide+i>this.innerElements.length-this.perPage;e>0&&t>this.config.threshold&&this.innerElements.length>this.perPage?this.prev(i):e<0&&t>this.config.threshold&&this.innerElements.length>this.perPage&&this.next(i),this.slideToCurrent(r||n)}},{key:"resizeHandler",value:function(){this.resolveSlidesNumber(),this.currentSlide+this.perPage>this.innerElements.length&&(this.currentSlide=this.innerElements.length<=this.perPage?0:this.innerElements.length-this.perPage),this.selectorWidth=this.selector.offsetWidth,this.buildSliderFrame()}},{key:"clearDrag",value:function(){this.drag={startX:0,endX:0,startY:0,letItGo:null,preventClick:this.drag.preventClick}}},{key:"touchstartHandler",value:function(e){-1!==["TEXTAREA","OPTION","INPUT","SELECT"].indexOf(e.target.nodeName)||(e.stopPropagation(),this.pointerDown=!0,this.drag.startX=e.touches[0].pageX,this.drag.startY=e.touches[0].pageY)}},{key:"touchendHandler",value:function(e){e.stopPropagation(),this.pointerDown=!1,this.enableTransition(),this.drag.endX&&this.updateAfterDrag(),this.clearDrag()}},{key:"touchmoveHandler",value:function(e){if(e.stopPropagation(),null===this.drag.letItGo&&(this.drag.letItGo=Math.abs(this.drag.startY-e.touches[0].pageY)=this.innerElements.length)throw new Error("Item to remove doesn't exist 😭");var i=ethis.innerElements.length+1)throw new Error("Unable to inset it at this index 😭");if(-1!==this.innerElements.indexOf(e))throw new Error("The same item in a carousel? Really? Nope 😭");var r=t<=this.currentSlide>0&&this.innerElements.length;this.currentSlide=r?this.currentSlide+1:this.currentSlide,this.innerElements.splice(t,0,e),this.buildSliderFrame(),i&&i.call(this)}},{key:"prepend",value:function(e,t){this.insert(e,0),t&&t.call(this)}},{key:"append",value:function(e,t){this.insert(e,this.innerElements.length+1),t&&t.call(this)}},{key:"destroy",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments[1];if(this.detachEvents(),this.selector.style.cursor="auto",e){for(var i=document.createDocumentFragment(),r=0;r
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | Siema - Lightweight and simple carousel with no dependencies
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
54 |
56 |
58 |
59 |
60 |
62 |
64 |
66 |
68 |
70 |
71 |
72 |
73 |
74 | Siema
75 | Lightweight and simple carousel with no dependencies
76 |
77 |
78 | {{ content }}
79 |
80 |
81 |
86 |
87 |
88 |
89 |
90 |
91 |
--------------------------------------------------------------------------------
/docs/assets/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pawelgrzybek/siema/cf1553d2eeb40ab17d164dcf265ba97a4e56170d/docs/assets/android-chrome-192x192.png
--------------------------------------------------------------------------------
/docs/assets/android-chrome-256x256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pawelgrzybek/siema/cf1553d2eeb40ab17d164dcf265ba97a4e56170d/docs/assets/android-chrome-256x256.png
--------------------------------------------------------------------------------
/docs/assets/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pawelgrzybek/siema/cf1553d2eeb40ab17d164dcf265ba97a4e56170d/docs/assets/apple-touch-icon.png
--------------------------------------------------------------------------------
/docs/assets/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | #ffffff
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/docs/assets/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pawelgrzybek/siema/cf1553d2eeb40ab17d164dcf265ba97a4e56170d/docs/assets/favicon-16x16.png
--------------------------------------------------------------------------------
/docs/assets/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pawelgrzybek/siema/cf1553d2eeb40ab17d164dcf265ba97a4e56170d/docs/assets/favicon-32x32.png
--------------------------------------------------------------------------------
/docs/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pawelgrzybek/siema/cf1553d2eeb40ab17d164dcf265ba97a4e56170d/docs/assets/favicon.ico
--------------------------------------------------------------------------------
/docs/assets/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Siema",
3 | "icons": [
4 | {
5 | "src": "assets\/android-chrome-192x192.png",
6 | "sizes": "192x192",
7 | "type": "image\/png"
8 | },
9 | {
10 | "src": "assets\/android-chrome-256x256.png",
11 | "sizes": "256x256",
12 | "type": "image\/png"
13 | }
14 | ],
15 | "theme_color": "#ffffff",
16 | "display": "standalone"
17 | }
18 |
--------------------------------------------------------------------------------
/docs/assets/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pawelgrzybek/siema/cf1553d2eeb40ab17d164dcf265ba97a4e56170d/docs/assets/mstile-150x150.png
--------------------------------------------------------------------------------
/docs/assets/safari-pinned-tab.svg:
--------------------------------------------------------------------------------
1 |
2 |
4 |
7 |
8 | Created by potrace 1.11, written by Peter Selinger 2001-2013
9 |
10 |
12 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/docs/assets/siema--pink.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/docs/assets/siema--yellow.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/docs/assets/siema.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pawelgrzybek/siema/cf1553d2eeb40ab17d164dcf265ba97a4e56170d/docs/assets/siema.jpg
--------------------------------------------------------------------------------
/docs/assets/siema.min.js:
--------------------------------------------------------------------------------
1 | !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define("Siema",[],t):"object"==typeof exports?exports.Siema=t():e.Siema=t()}("undefined"!=typeof self?self:this,function(){return function(e){function t(r){if(i[r])return i[r].exports;var n=i[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,t),n.l=!0,n.exports}var i={};return t.m=e,t.c=i,t.d=function(e,i,r){t.o(e,i)||Object.defineProperty(e,i,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var i=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(i,"a",i),i},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,i){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s=function(){function e(e,t){for(var i=0;i=e&&(this.perPage=this.config.perPage[e])}}},{key:"prev",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=arguments[1];if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;if(this.config.loop){if(this.currentSlide-e<0){this.disableTransition();var r=this.currentSlide+this.innerElements.length,n=this.perPage,s=r+n,l=(this.config.rtl?1:-1)*s*(this.selectorWidth/this.perPage),o=this.config.draggable?this.drag.endX-this.drag.startX:0;this.sliderFrame.style[this.transformProperty]="translate3d("+(l+o)+"px, 0, 0)",this.currentSlide=r-e}else this.currentSlide=this.currentSlide-e}else this.currentSlide=Math.max(this.currentSlide-e,0);i!==this.currentSlide&&(this.slideToCurrent(this.config.loop),this.config.onChange.call(this),t&&t.call(this))}}},{key:"next",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=arguments[1];if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;if(this.config.loop){if(this.currentSlide+e>this.innerElements.length-this.perPage){this.disableTransition();var r=this.currentSlide-this.innerElements.length,n=this.perPage,s=r+n,l=(this.config.rtl?1:-1)*s*(this.selectorWidth/this.perPage),o=this.config.draggable?this.drag.endX-this.drag.startX:0;this.sliderFrame.style[this.transformProperty]="translate3d("+(l+o)+"px, 0, 0)",this.currentSlide=r+e}else this.currentSlide=this.currentSlide+e}else this.currentSlide=Math.min(this.currentSlide+e,this.innerElements.length-this.perPage);i!==this.currentSlide&&(this.slideToCurrent(this.config.loop),this.config.onChange.call(this),t&&t.call(this))}}},{key:"disableTransition",value:function(){this.sliderFrame.style.webkitTransition="all 0ms "+this.config.easing,this.sliderFrame.style.transition="all 0ms "+this.config.easing}},{key:"enableTransition",value:function(){this.sliderFrame.style.webkitTransition="all "+this.config.duration+"ms "+this.config.easing,this.sliderFrame.style.transition="all "+this.config.duration+"ms "+this.config.easing}},{key:"goTo",value:function(e,t){if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;this.currentSlide=this.config.loop?e%this.innerElements.length:Math.min(Math.max(e,0),this.innerElements.length-this.perPage),i!==this.currentSlide&&(this.slideToCurrent(),this.config.onChange.call(this),t&&t.call(this))}}},{key:"slideToCurrent",value:function(e){var t=this,i=this.config.loop?this.currentSlide+this.perPage:this.currentSlide,r=(this.config.rtl?1:-1)*i*(this.selectorWidth/this.perPage);e?requestAnimationFrame(function(){requestAnimationFrame(function(){t.enableTransition(),t.sliderFrame.style[t.transformProperty]="translate3d("+r+"px, 0, 0)"})}):this.sliderFrame.style[this.transformProperty]="translate3d("+r+"px, 0, 0)"}},{key:"updateAfterDrag",value:function(){var e=(this.config.rtl?-1:1)*(this.drag.endX-this.drag.startX),t=Math.abs(e),i=this.config.multipleDrag?Math.ceil(t/(this.selectorWidth/this.perPage)):1,r=e>0&&this.currentSlide-i<0,n=e<0&&this.currentSlide+i>this.innerElements.length-this.perPage;e>0&&t>this.config.threshold&&this.innerElements.length>this.perPage?this.prev(i):e<0&&t>this.config.threshold&&this.innerElements.length>this.perPage&&this.next(i),this.slideToCurrent(r||n)}},{key:"resizeHandler",value:function(){this.resolveSlidesNumber(),this.currentSlide+this.perPage>this.innerElements.length&&(this.currentSlide=this.innerElements.length<=this.perPage?0:this.innerElements.length-this.perPage),this.selectorWidth=this.selector.offsetWidth,this.buildSliderFrame()}},{key:"clearDrag",value:function(){this.drag={startX:0,endX:0,startY:0,letItGo:null,preventClick:this.drag.preventClick}}},{key:"touchstartHandler",value:function(e){-1!==["TEXTAREA","OPTION","INPUT","SELECT"].indexOf(e.target.nodeName)||(e.stopPropagation(),this.pointerDown=!0,this.drag.startX=e.touches[0].pageX,this.drag.startY=e.touches[0].pageY)}},{key:"touchendHandler",value:function(e){e.stopPropagation(),this.pointerDown=!1,this.enableTransition(),this.drag.endX&&this.updateAfterDrag(),this.clearDrag()}},{key:"touchmoveHandler",value:function(e){if(e.stopPropagation(),null===this.drag.letItGo&&(this.drag.letItGo=Math.abs(this.drag.startY-e.touches[0].pageY)=this.innerElements.length)throw new Error("Item to remove doesn't exist 😭");var i=ethis.innerElements.length+1)throw new Error("Unable to inset it at this index 😭");if(-1!==this.innerElements.indexOf(e))throw new Error("The same item in a carousel? Really? Nope 😭");var r=t<=this.currentSlide>0&&this.innerElements.length;this.currentSlide=r?this.currentSlide+1:this.currentSlide,this.innerElements.splice(t,0,e),this.buildSliderFrame(),i&&i.call(this)}},{key:"prepend",value:function(e,t){this.insert(e,0),t&&t.call(this)}},{key:"append",value:function(e,t){this.insert(e,this.innerElements.length+1),t&&t.call(this)}},{key:"destroy",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments[1];if(this.detachEvents(),this.selector.style.cursor="auto",e){for(var i=document.createDocumentFragment(),r=0;rDownload Siema from Github
8 |
9 | 1. [Installation](#installation)
10 | 2. [Options](#options)
11 | 3. [API](#api)
12 | 4. [Example](#example)
13 | 5. [Browser support](#browser-support)
14 | 6. [Other implementations](#other-implementations)
15 | 7. [Contributing](#contributing)
16 | 8. [Extra](#extra--thanks)
17 |
18 | ## Installation
19 |
20 | Setup is trivially easy. A little bit of markup...
21 |
22 | ```html
23 |
24 |
Hi, I'm slide 1
25 |
Hi, I'm slide 2
26 |
Hi, I'm slide 3
27 |
Hi, I'm slide 4
28 |
29 | ```
30 |
31 | If you are using a module bundler like Webpack or Browserify...
32 |
33 | ```
34 | yarn add siema
35 | ```
36 |
37 | ```js
38 | import Siema from 'siema';
39 | new Siema();
40 | ```
41 |
42 | ...or manually inject the minified script into your website.
43 |
44 | ```html
45 |
46 |
49 | ```
50 |
51 |
52 |
53 |
54 |
55 |
56 | ## Options
57 |
58 | Siema comes with a few (optional) settings that you can change by passing an object as an argument. Default values are presented below.
59 |
60 | ```js
61 | new Siema({
62 | selector: '.siema',
63 | duration: 200,
64 | easing: 'ease-out',
65 | perPage: 1,
66 | startIndex: 0,
67 | draggable: true,
68 | multipleDrag: true,
69 | threshold: 20,
70 | loop: false,
71 | rtl: false,
72 | onInit: () => {},
73 | onChange: () => {},
74 | });
75 | ```
76 |
77 | **`selector`** (string or DOM element)
78 | The selector to use as a carousel. Siema will use all immediate children of this selector as a slider items. It can be a query string [(example)](http://codepen.io/pawelgrzybek/pen/QvLjxY) or DOM element [(example)](http://codepen.io/pawelgrzybek/pen/gWYaje).
79 |
80 | **`duration`** (number)
81 | Slide transition duration in milliseconds [(example)](http://codepen.io/pawelgrzybek/pen/BRBoqO).
82 |
83 | **`easing`** (string)
84 | It is like a CSS `transition-timing-function` — describes acceleration curve [(example)](http://codepen.io/pawelgrzybek/pen/aWovrB).
85 |
86 | **`perPage`** (number or object)
87 | The number of slides to be shown. It accepts a number [(example)](http://codepen.io/pawelgrzybek/pen/bWbVXz) or an object [(example)](http://codepen.io/pawelgrzybek/pen/dWbGyZ) for complex responsive layouts.
88 |
89 | **`startIndex`** (number)
90 | Index (zero-based) of the starting slide [(example)](http://codepen.io/pawelgrzybek/pen/vmBLER).
91 |
92 | **`draggable`** (boolean)
93 | Use dragging and touch swiping [(example)](http://codepen.io/pawelgrzybek/pen/mmbVVj).
94 |
95 | **`multipleDrag`** (boolean)
96 | Allow dragging to move multiple slides.
97 |
98 | **`threshold`** (number)
99 | Touch and mouse dragging threshold (in px) [(example)](http://codepen.io/pawelgrzybek/pen/gWYPrQ).
100 |
101 | **`loop`** (boolean)
102 | Loop the slides around [(example)](http://codepen.io/pawelgrzybek/pen/zwOrKN).
103 |
104 | **`rtl`** (boolean)
105 | Enables layout for languages written from right to left (like Hebrew or Arabic) [(example)](https://codepen.io/pawelgrzybek/pen/XZNEgd).
106 |
107 | **`onInit`** (function)
108 | Runs immediately after initialization [(example)](http://codepen.io/pawelgrzybek/pen/BRBjpE).
109 |
110 | **`onChange`** (function)
111 | Runs after slide change [(example)](http://codepen.io/pawelgrzybek/pen/RVbrVe).
112 |
113 | ## API
114 |
115 | As mentioned above, Siema doesn't come with many options - just a few useful methods. Combine it with some very basic JavaScript and voila!
116 |
117 | **`prev(howManySlides = 1, callback)`**
118 | Go to previous item [(example)](http://codepen.io/pawelgrzybek/pen/JNPKVE). Optionally slide few items backward by passing `howManySlides` (number) argument [(example)](http://codepen.io/pawelgrzybek/pen/wdwWZQ). Optional `callback` (function) available as a third argument [(example)](http://codepen.io/pawelgrzybek/pen/JNPKQW).
119 |
120 | **`next(howManySlides = 1, callback)`**
121 | Go to next item [(example)](http://codepen.io/pawelgrzybek/pen/JNPKVE). Optionally slide few items forward by passing `howManySlides` (number) argument [(example)](http://codepen.io/pawelgrzybek/pen/wdwWZQ). Optional `callback` (function) available as a third argument [(example)](http://codepen.io/pawelgrzybek/pen/JNPKQW).
122 |
123 | **`goTo(index, callback)`**
124 | Go to item at particular `index` (number) [(example)](http://codepen.io/pawelgrzybek/pen/gWYLXP). Optional `callback` (function) available as a second argument [(example)](http://codepen.io/pawelgrzybek/pen/ZKzBvo).
125 |
126 | **`remove(index, callback)`**
127 | Remove item at particular `index` (number) [(example)](http://codepen.io/pawelgrzybek/pen/BRBpQJ). Optional `callback` (function) available as a second argument [(example)](http://codepen.io/pawelgrzybek/pen/rmBjjE).
128 |
129 | **`insert(item, index, callback)`**
130 | Insert new `item` (DOM element) at specific `index` (number) [(example)](http://codepen.io/pawelgrzybek/pen/QvLdaJ). Optional `callback` (function) available as a third argument [(example)](http://codepen.io/pawelgrzybek/pen/vmBgdZ).
131 |
132 | **`prepend(item, callback)`**
133 | Prepend new `item` (DOM element) [(example)](http://codepen.io/pawelgrzybek/pen/rmBymW). Optional `callback` (function) available as a second argument [(example)](http://codepen.io/pawelgrzybek/pen/LyPWLe).
134 |
135 | **`append(item, callback)`**
136 | Append new `item` (DOM element) [(example)](http://codepen.io/pawelgrzybek/pen/RVbpZe). Optional `callback` (function) available as a second argument [(example)](http://codepen.io/pawelgrzybek/pen/rmByGj).
137 |
138 | **`destroy(restoreMarkup = false, callback)`**
139 | Remove all event listeners on instance [(example)](http://codepen.io/pawelgrzybek/pen/oWvZEd). Use `restoreMarkup` to restore the initial markup inside selector [(example)](http://codepen.io/pawelgrzybek/pen/ZKzeoL). Optional `callback` (function) available as a third argument [(example)](http://codepen.io/pawelgrzybek/pen/Wjepyv).
140 |
141 | **`currentSlide`**
142 | Prints current slide index [(example)](https://codepen.io/pawelgrzybek/pen/XRNOPP).
143 |
144 | ## Example
145 |
146 | Basic carousel with next and previous buttons.
147 |
148 | ```html
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 | prev
157 | next
158 | ```
159 |
160 | ```js
161 | const mySiema = new Siema();
162 | document.querySelector('.prev').addEventListener('click', () => mySiema.prev());
163 | document.querySelector('.next').addEventListener('click', () => mySiema.next());
164 | ```
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 | prev
174 | next
175 |
176 |
181 |
182 | I've also created a Codepen collection with tons of Siema examples.
183 |
184 | Check the Codepen collection
185 |
186 | ## Browser support
187 |
188 | - IE10
189 | - Chrome 12
190 | - Firefox 16
191 | - Opera 15
192 | - Safari 5.1
193 | - Android Browser 4.0
194 | - iOS Safari 6.0
195 |
196 | ## Other implementations
197 |
198 | - [Angular version](https://www.npmjs.com/package/ngx-siema) by Lex Zhukov
199 | - [React version](https://www.npmjs.com/package/react-siema) by Mantas Kaveckas
200 | - [Vue version](https://www.npmjs.com/package/vue2-siema) by Carlos Nogueira
201 | - [Siema-rails](https://github.com/Naggi-Goishi/siema-rails) by Naggi Goishi
202 |
203 |
204 | ## Contributing
205 | Siema's purpose is to provide a basic carousel tool and allow developers to extend it by using the available methods. It doesn't come with any complex configuration and myriad options — I would like to keep it this way. If you need a more powerful library I recommend the amazing [Flickity](http://flickity.metafizzy.co/) by David DeSandro or [Swiper](http://idangero.us/swiper/) by iDangero team.
206 |
207 | Bug fixes are more than welcome. If you have a feature suggestion please [open an issue](https://github.com/pawelgrzybek/siema/issues) on Github. Before sending a pull request make sure to use the `build` task please.
208 |
209 | ```shell
210 | yarn run build
211 | ```
212 |
213 | ## Extra & Thanks
214 |
215 | Siema means 'hello' in Polish. When I play around with some code, I always use random names. That's the whole story behind the name of this one :)
216 |
217 | Huge thanks to [Jarkko Sibenberg](http://www.sibenberg.com/) for the cute logo design! I can't thank [BrowserStack](https://www.browserstack.com) enough for giving me a free access to their testing amazing service.
218 |
219 |
220 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "siema",
3 | "version": "1.5.1",
4 | "description": "Lightweight and simple carousel with no dependencies",
5 | "main": "dist/siema.min.js",
6 | "devDependencies": {
7 | "babel": "^6.23.0",
8 | "babel-core": "^6.26.0",
9 | "babel-loader": "^7.1.2",
10 | "babel-plugin-add-module-exports": "^0.2.1",
11 | "babel-preset-es2015": "^6.24.1",
12 | "eslint": "4.16.0",
13 | "eslint-loader": "^1.9.0",
14 | "webpack": "3.10.0"
15 | },
16 | "scripts": {
17 | "build": "webpack && cp dist/siema.min.js docs/assets",
18 | "dev": "webpack --progress --colors --watch"
19 | },
20 | "files": [
21 | "dist"
22 | ],
23 | "repository": "pawelgrzybek/siema",
24 | "author": "Pawel Grzybek (https://pawelgrzybek.com/)",
25 | "license": "MIT",
26 | "bugs": {
27 | "url": "https://github.com/pawelgrzybek/siema/issues"
28 | },
29 | "homepage": "https://pawelgrzybek.com/siema",
30 | "keywords": [
31 | "slider",
32 | "carousel",
33 | "lightweight"
34 | ]
35 | }
36 |
--------------------------------------------------------------------------------
/src/siema.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Hi :-) This is a class representing a Siema.
3 | */
4 | export default class Siema {
5 | /**
6 | * Create a Siema.
7 | * @param {Object} options - Optional settings object.
8 | */
9 | constructor(options) {
10 | // Merge defaults with user's settings
11 | this.config = Siema.mergeSettings(options);
12 |
13 | // Resolve selector's type
14 | this.selector = typeof this.config.selector === 'string' ? document.querySelector(this.config.selector) : this.config.selector;
15 |
16 | // Early throw if selector doesn't exists
17 | if (this.selector === null) {
18 | throw new Error('Something wrong with your selector 😭');
19 | }
20 |
21 | // update perPage number dependable of user value
22 | this.resolveSlidesNumber();
23 |
24 | // Create global references
25 | this.selectorWidth = this.selector.offsetWidth;
26 | this.innerElements = [].slice.call(this.selector.children);
27 | this.currentSlide = this.config.loop ?
28 | this.config.startIndex % this.innerElements.length :
29 | Math.max(0, Math.min(this.config.startIndex, this.innerElements.length - this.perPage));
30 | this.transformProperty = Siema.webkitOrNot();
31 |
32 | // Bind all event handlers for referencability
33 | ['resizeHandler', 'touchstartHandler', 'touchendHandler', 'touchmoveHandler', 'mousedownHandler', 'mouseupHandler', 'mouseleaveHandler', 'mousemoveHandler', 'clickHandler'].forEach(method => {
34 | this[method] = this[method].bind(this);
35 | });
36 |
37 | // Build markup and apply required styling to elements
38 | this.init();
39 | }
40 |
41 |
42 | /**
43 | * Overrides default settings with custom ones.
44 | * @param {Object} options - Optional settings object.
45 | * @returns {Object} - Custom Siema settings.
46 | */
47 | static mergeSettings(options) {
48 | const settings = {
49 | selector: '.siema',
50 | duration: 200,
51 | easing: 'ease-out',
52 | perPage: 1,
53 | startIndex: 0,
54 | draggable: true,
55 | multipleDrag: true,
56 | threshold: 20,
57 | loop: false,
58 | rtl: false,
59 | onInit: () => {},
60 | onChange: () => {},
61 | };
62 |
63 | const userSttings = options;
64 | for (const attrname in userSttings) {
65 | settings[attrname] = userSttings[attrname];
66 | }
67 |
68 | return settings;
69 | }
70 |
71 |
72 | /**
73 | * Determine if browser supports unprefixed transform property.
74 | * Google Chrome since version 26 supports prefix-less transform
75 | * @returns {string} - Transform property supported by client.
76 | */
77 | static webkitOrNot() {
78 | const style = document.documentElement.style;
79 | if (typeof style.transform === 'string') {
80 | return 'transform';
81 | }
82 | return 'WebkitTransform';
83 | }
84 |
85 | /**
86 | * Attaches listeners to required events.
87 | */
88 | attachEvents() {
89 | // Resize element on window resize
90 | window.addEventListener('resize', this.resizeHandler);
91 |
92 | // If element is draggable / swipable, add event handlers
93 | if (this.config.draggable) {
94 | // Keep track pointer hold and dragging distance
95 | this.pointerDown = false;
96 | this.drag = {
97 | startX: 0,
98 | endX: 0,
99 | startY: 0,
100 | letItGo: null,
101 | preventClick: false,
102 | };
103 |
104 | const eventOptions = { passive: true };
105 |
106 | // Touch events
107 | this.selector.addEventListener('touchstart', this.touchstartHandler, eventOptions);
108 | this.selector.addEventListener('touchend', this.touchendHandler, eventOptions);
109 | this.selector.addEventListener('touchmove', this.touchmoveHandler, eventOptions);
110 |
111 | // Mouse events
112 | this.selector.addEventListener('mousedown', this.mousedownHandler, eventOptions);
113 | this.selector.addEventListener('mouseup', this.mouseupHandler, eventOptions);
114 | this.selector.addEventListener('mouseleave', this.mouseleaveHandler, eventOptions);
115 | this.selector.addEventListener('mousemove', this.mousemoveHandler, eventOptions);
116 |
117 | // Click
118 | this.selector.addEventListener('click', this.clickHandler);
119 | }
120 | }
121 |
122 |
123 | /**
124 | * Detaches listeners from required events.
125 | */
126 | detachEvents() {
127 | window.removeEventListener('resize', this.resizeHandler);
128 | this.selector.removeEventListener('touchstart', this.touchstartHandler);
129 | this.selector.removeEventListener('touchend', this.touchendHandler);
130 | this.selector.removeEventListener('touchmove', this.touchmoveHandler);
131 | this.selector.removeEventListener('mousedown', this.mousedownHandler);
132 | this.selector.removeEventListener('mouseup', this.mouseupHandler);
133 | this.selector.removeEventListener('mouseleave', this.mouseleaveHandler);
134 | this.selector.removeEventListener('mousemove', this.mousemoveHandler);
135 | this.selector.removeEventListener('click', this.clickHandler);
136 | }
137 |
138 |
139 | /**
140 | * Builds the markup and attaches listeners to required events.
141 | */
142 | init() {
143 | this.attachEvents();
144 |
145 | // hide everything out of selector's boundaries
146 | this.selector.style.overflow = 'hidden';
147 |
148 | // rtl or ltr
149 | this.selector.style.direction = this.config.rtl ? 'rtl' : 'ltr';
150 |
151 | // build a frame and slide to a currentSlide
152 | this.buildSliderFrame();
153 |
154 | this.config.onInit.call(this);
155 | }
156 |
157 |
158 | /**
159 | * Build a sliderFrame and slide to a current item.
160 | */
161 | buildSliderFrame() {
162 | const widthItem = this.selectorWidth / this.perPage;
163 | const itemsToBuild = this.config.loop ? this.innerElements.length + (2 * this.perPage) : this.innerElements.length;
164 |
165 | // Create frame and apply styling
166 | this.sliderFrame = document.createElement('div');
167 | this.sliderFrame.style.width = `${widthItem * itemsToBuild}px`;
168 | this.enableTransition();
169 |
170 | if (this.config.draggable) {
171 | this.selector.style.cursor = '-webkit-grab';
172 | }
173 |
174 | // Create a document fragment to put slides into it
175 | const docFragment = document.createDocumentFragment();
176 |
177 | // Loop through the slides, add styling and add them to document fragment
178 | if (this.config.loop) {
179 | for (let i = this.innerElements.length - this.perPage; i < this.innerElements.length; i++) {
180 | const element = this.buildSliderFrameItem(this.innerElements[i].cloneNode(true));
181 | docFragment.appendChild(element);
182 | }
183 | }
184 | for (let i = 0; i < this.innerElements.length; i++) {
185 | const element = this.buildSliderFrameItem(this.innerElements[i]);
186 | docFragment.appendChild(element);
187 | }
188 | if (this.config.loop) {
189 | for (let i = 0; i < this.perPage; i++) {
190 | const element = this.buildSliderFrameItem(this.innerElements[i].cloneNode(true));
191 | docFragment.appendChild(element);
192 | }
193 | }
194 |
195 | // Add fragment to the frame
196 | this.sliderFrame.appendChild(docFragment);
197 |
198 | // Clear selector (just in case something is there) and insert a frame
199 | this.selector.innerHTML = '';
200 | this.selector.appendChild(this.sliderFrame);
201 |
202 | // Go to currently active slide after initial build
203 | this.slideToCurrent();
204 | }
205 |
206 | buildSliderFrameItem(elm) {
207 | const elementContainer = document.createElement('div');
208 | elementContainer.style.cssFloat = this.config.rtl ? 'right' : 'left';
209 | elementContainer.style.float = this.config.rtl ? 'right' : 'left';
210 | elementContainer.style.width = `${this.config.loop ? 100 / (this.innerElements.length + (this.perPage * 2)) : 100 / (this.innerElements.length)}%`;
211 | elementContainer.appendChild(elm);
212 | return elementContainer;
213 | }
214 |
215 |
216 | /**
217 | * Determinates slides number accordingly to clients viewport.
218 | */
219 | resolveSlidesNumber() {
220 | if (typeof this.config.perPage === 'number') {
221 | this.perPage = this.config.perPage;
222 | }
223 | else if (typeof this.config.perPage === 'object') {
224 | this.perPage = 1;
225 | for (const viewport in this.config.perPage) {
226 | if (window.innerWidth >= viewport) {
227 | this.perPage = this.config.perPage[viewport];
228 | }
229 | }
230 | }
231 | }
232 |
233 |
234 | /**
235 | * Go to previous slide.
236 | * @param {number} [howManySlides=1] - How many items to slide backward.
237 | * @param {function} callback - Optional callback function.
238 | */
239 | prev(howManySlides = 1, callback) {
240 | // early return when there is nothing to slide
241 | if (this.innerElements.length <= this.perPage) {
242 | return;
243 | }
244 |
245 | const beforeChange = this.currentSlide;
246 |
247 | if (this.config.loop) {
248 | const isNewIndexClone = this.currentSlide - howManySlides < 0;
249 | if (isNewIndexClone) {
250 | this.disableTransition();
251 |
252 | const mirrorSlideIndex = this.currentSlide + this.innerElements.length;
253 | const mirrorSlideIndexOffset = this.perPage;
254 | const moveTo = mirrorSlideIndex + mirrorSlideIndexOffset;
255 | const offset = (this.config.rtl ? 1 : -1) * moveTo * (this.selectorWidth / this.perPage);
256 | const dragDistance = this.config.draggable ? this.drag.endX - this.drag.startX : 0;
257 |
258 | this.sliderFrame.style[this.transformProperty] = `translate3d(${offset + dragDistance}px, 0, 0)`;
259 | this.currentSlide = mirrorSlideIndex - howManySlides;
260 | }
261 | else {
262 | this.currentSlide = this.currentSlide - howManySlides;
263 | }
264 | }
265 | else {
266 | this.currentSlide = Math.max(this.currentSlide - howManySlides, 0);
267 | }
268 |
269 | if (beforeChange !== this.currentSlide) {
270 | this.slideToCurrent(this.config.loop);
271 | this.config.onChange.call(this);
272 | if (callback) {
273 | callback.call(this);
274 | }
275 | }
276 | }
277 |
278 |
279 | /**
280 | * Go to next slide.
281 | * @param {number} [howManySlides=1] - How many items to slide forward.
282 | * @param {function} callback - Optional callback function.
283 | */
284 | next(howManySlides = 1, callback) {
285 | // early return when there is nothing to slide
286 | if (this.innerElements.length <= this.perPage) {
287 | return;
288 | }
289 |
290 | const beforeChange = this.currentSlide;
291 |
292 | if (this.config.loop) {
293 | const isNewIndexClone = this.currentSlide + howManySlides > this.innerElements.length - this.perPage;
294 | if (isNewIndexClone) {
295 | this.disableTransition();
296 |
297 | const mirrorSlideIndex = this.currentSlide - this.innerElements.length;
298 | const mirrorSlideIndexOffset = this.perPage;
299 | const moveTo = mirrorSlideIndex + mirrorSlideIndexOffset;
300 | const offset = (this.config.rtl ? 1 : -1) * moveTo * (this.selectorWidth / this.perPage);
301 | const dragDistance = this.config.draggable ? this.drag.endX - this.drag.startX : 0;
302 |
303 | this.sliderFrame.style[this.transformProperty] = `translate3d(${offset + dragDistance}px, 0, 0)`;
304 | this.currentSlide = mirrorSlideIndex + howManySlides;
305 | }
306 | else {
307 | this.currentSlide = this.currentSlide + howManySlides;
308 | }
309 | }
310 | else {
311 | this.currentSlide = Math.min(this.currentSlide + howManySlides, this.innerElements.length - this.perPage);
312 | }
313 | if (beforeChange !== this.currentSlide) {
314 | this.slideToCurrent(this.config.loop);
315 | this.config.onChange.call(this);
316 | if (callback) {
317 | callback.call(this);
318 | }
319 | }
320 | }
321 |
322 |
323 | /**
324 | * Disable transition on sliderFrame.
325 | */
326 | disableTransition() {
327 | this.sliderFrame.style.webkitTransition = `all 0ms ${this.config.easing}`;
328 | this.sliderFrame.style.transition = `all 0ms ${this.config.easing}`;
329 | }
330 |
331 |
332 | /**
333 | * Enable transition on sliderFrame.
334 | */
335 | enableTransition() {
336 | this.sliderFrame.style.webkitTransition = `all ${this.config.duration}ms ${this.config.easing}`;
337 | this.sliderFrame.style.transition = `all ${this.config.duration}ms ${this.config.easing}`;
338 | }
339 |
340 |
341 | /**
342 | * Go to slide with particular index
343 | * @param {number} index - Item index to slide to.
344 | * @param {function} callback - Optional callback function.
345 | */
346 | goTo(index, callback) {
347 | if (this.innerElements.length <= this.perPage) {
348 | return;
349 | }
350 | const beforeChange = this.currentSlide;
351 | this.currentSlide = this.config.loop ?
352 | index % this.innerElements.length :
353 | Math.min(Math.max(index, 0), this.innerElements.length - this.perPage);
354 | if (beforeChange !== this.currentSlide) {
355 | this.slideToCurrent();
356 | this.config.onChange.call(this);
357 | if (callback) {
358 | callback.call(this);
359 | }
360 | }
361 | }
362 |
363 |
364 | /**
365 | * Moves sliders frame to position of currently active slide
366 | */
367 | slideToCurrent(enableTransition) {
368 | const currentSlide = this.config.loop ? this.currentSlide + this.perPage : this.currentSlide;
369 | const offset = (this.config.rtl ? 1 : -1) * currentSlide * (this.selectorWidth / this.perPage);
370 |
371 | if (enableTransition) {
372 | // This one is tricky, I know but this is a perfect explanation:
373 | // https://youtu.be/cCOL7MC4Pl0
374 | requestAnimationFrame(() => {
375 | requestAnimationFrame(() => {
376 | this.enableTransition();
377 | this.sliderFrame.style[this.transformProperty] = `translate3d(${offset}px, 0, 0)`;
378 | });
379 | });
380 | }
381 | else {
382 | this.sliderFrame.style[this.transformProperty] = `translate3d(${offset}px, 0, 0)`;
383 | }
384 | }
385 |
386 |
387 | /**
388 | * Recalculate drag /swipe event and reposition the frame of a slider
389 | */
390 | updateAfterDrag() {
391 | const movement = (this.config.rtl ? -1 : 1) * (this.drag.endX - this.drag.startX);
392 | const movementDistance = Math.abs(movement);
393 | const howManySliderToSlide = this.config.multipleDrag ? Math.ceil(movementDistance / (this.selectorWidth / this.perPage)) : 1;
394 |
395 | const slideToNegativeClone = movement > 0 && this.currentSlide - howManySliderToSlide < 0;
396 | const slideToPositiveClone = movement < 0 && this.currentSlide + howManySliderToSlide > this.innerElements.length - this.perPage;
397 |
398 | if (movement > 0 && movementDistance > this.config.threshold && this.innerElements.length > this.perPage) {
399 | this.prev(howManySliderToSlide);
400 | }
401 | else if (movement < 0 && movementDistance > this.config.threshold && this.innerElements.length > this.perPage) {
402 | this.next(howManySliderToSlide);
403 | }
404 | this.slideToCurrent(slideToNegativeClone || slideToPositiveClone);
405 | }
406 |
407 |
408 | /**
409 | * When window resizes, resize slider components as well
410 | */
411 | resizeHandler() {
412 | // update perPage number dependable of user value
413 | this.resolveSlidesNumber();
414 |
415 | // relcalculate currentSlide
416 | // prevent hiding items when browser width increases
417 | if (this.currentSlide + this.perPage > this.innerElements.length) {
418 | this.currentSlide = this.innerElements.length <= this.perPage ? 0 : this.innerElements.length - this.perPage;
419 | }
420 |
421 | this.selectorWidth = this.selector.offsetWidth;
422 |
423 | this.buildSliderFrame();
424 | }
425 |
426 |
427 | /**
428 | * Clear drag after touchend and mouseup event
429 | */
430 | clearDrag() {
431 | this.drag = {
432 | startX: 0,
433 | endX: 0,
434 | startY: 0,
435 | letItGo: null,
436 | preventClick: this.drag.preventClick
437 | };
438 | }
439 |
440 |
441 | /**
442 | * touchstart event handler
443 | */
444 | touchstartHandler(e) {
445 | // Prevent dragging / swiping on inputs, selects and textareas
446 | const ignoreSiema = ['TEXTAREA', 'OPTION', 'INPUT', 'SELECT'].indexOf(e.target.nodeName) !== -1;
447 | if (ignoreSiema) {
448 | return;
449 | }
450 |
451 | e.stopPropagation();
452 | this.pointerDown = true;
453 | this.drag.startX = e.touches[0].pageX;
454 | this.drag.startY = e.touches[0].pageY;
455 | }
456 |
457 |
458 | /**
459 | * touchend event handler
460 | */
461 | touchendHandler(e) {
462 | e.stopPropagation();
463 | this.pointerDown = false;
464 | this.enableTransition();
465 | if (this.drag.endX) {
466 | this.updateAfterDrag();
467 | }
468 | this.clearDrag();
469 | }
470 |
471 |
472 | /**
473 | * touchmove event handler
474 | */
475 | touchmoveHandler(e) {
476 | e.stopPropagation();
477 |
478 | if (this.drag.letItGo === null) {
479 | this.drag.letItGo = Math.abs(this.drag.startY - e.touches[0].pageY) < Math.abs(this.drag.startX - e.touches[0].pageX);
480 | }
481 |
482 | if (this.pointerDown && this.drag.letItGo) {
483 | e.preventDefault();
484 | this.drag.endX = e.touches[0].pageX;
485 | this.sliderFrame.style.webkitTransition = `all 0ms ${this.config.easing}`;
486 | this.sliderFrame.style.transition = `all 0ms ${this.config.easing}`;
487 |
488 | const currentSlide = this.config.loop ? this.currentSlide + this.perPage : this.currentSlide;
489 | const currentOffset = currentSlide * (this.selectorWidth / this.perPage);
490 | const dragOffset = (this.drag.endX - this.drag.startX);
491 | const offset = this.config.rtl ? currentOffset + dragOffset : currentOffset - dragOffset;
492 | this.sliderFrame.style[this.transformProperty] = `translate3d(${(this.config.rtl ? 1 : -1) * offset}px, 0, 0)`;
493 | }
494 | }
495 |
496 |
497 | /**
498 | * mousedown event handler
499 | */
500 | mousedownHandler(e) {
501 | // Prevent dragging / swiping on inputs, selects and textareas
502 | const ignoreSiema = ['TEXTAREA', 'OPTION', 'INPUT', 'SELECT'].indexOf(e.target.nodeName) !== -1;
503 | if (ignoreSiema) {
504 | return;
505 | }
506 |
507 | e.preventDefault();
508 | e.stopPropagation();
509 | this.pointerDown = true;
510 | this.drag.startX = e.pageX;
511 | }
512 |
513 |
514 | /**
515 | * mouseup event handler
516 | */
517 | mouseupHandler(e) {
518 | e.stopPropagation();
519 | this.pointerDown = false;
520 | this.selector.style.cursor = '-webkit-grab';
521 | this.enableTransition();
522 | if (this.drag.endX) {
523 | this.updateAfterDrag();
524 | }
525 | this.clearDrag();
526 | }
527 |
528 |
529 | /**
530 | * mousemove event handler
531 | */
532 | mousemoveHandler(e) {
533 | e.preventDefault();
534 | if (this.pointerDown) {
535 | // if dragged element is a link
536 | // mark preventClick prop as a true
537 | // to detemine about browser redirection later on
538 | if (e.target.nodeName === 'A') {
539 | this.drag.preventClick = true;
540 | }
541 |
542 | this.drag.endX = e.pageX;
543 | this.selector.style.cursor = '-webkit-grabbing';
544 | this.sliderFrame.style.webkitTransition = `all 0ms ${this.config.easing}`;
545 | this.sliderFrame.style.transition = `all 0ms ${this.config.easing}`;
546 |
547 | const currentSlide = this.config.loop ? this.currentSlide + this.perPage : this.currentSlide;
548 | const currentOffset = currentSlide * (this.selectorWidth / this.perPage);
549 | const dragOffset = (this.drag.endX - this.drag.startX);
550 | const offset = this.config.rtl ? currentOffset + dragOffset : currentOffset - dragOffset;
551 | this.sliderFrame.style[this.transformProperty] = `translate3d(${(this.config.rtl ? 1 : -1) * offset}px, 0, 0)`;
552 | }
553 | }
554 |
555 |
556 | /**
557 | * mouseleave event handler
558 | */
559 | mouseleaveHandler(e) {
560 | if (this.pointerDown) {
561 | this.pointerDown = false;
562 | this.selector.style.cursor = '-webkit-grab';
563 | this.drag.endX = e.pageX;
564 | this.drag.preventClick = false;
565 | this.enableTransition();
566 | this.updateAfterDrag();
567 | this.clearDrag();
568 | }
569 | }
570 |
571 |
572 | /**
573 | * click event handler
574 | */
575 | clickHandler(e) {
576 | // if the dragged element is a link
577 | // prevent browsers from folowing the link
578 | if (this.drag.preventClick) {
579 | e.preventDefault();
580 | }
581 | this.drag.preventClick = false;
582 | }
583 |
584 |
585 | /**
586 | * Remove item from carousel.
587 | * @param {number} index - Item index to remove.
588 | * @param {function} callback - Optional callback to call after remove.
589 | */
590 | remove(index, callback) {
591 | if (index < 0 || index >= this.innerElements.length) {
592 | throw new Error('Item to remove doesn\'t exist 😭');
593 | }
594 |
595 | // Shift sliderFrame back by one item when:
596 | // 1. Item with lower index than currenSlide is removed.
597 | // 2. Last item is removed.
598 | const lowerIndex = index < this.currentSlide;
599 | const lastItem = this.currentSlide + this.perPage - 1 === index;
600 |
601 | if (lowerIndex || lastItem) {
602 | this.currentSlide--;
603 | }
604 |
605 | this.innerElements.splice(index, 1);
606 |
607 | // build a frame and slide to a currentSlide
608 | this.buildSliderFrame();
609 |
610 | if (callback) {
611 | callback.call(this);
612 | }
613 | }
614 |
615 |
616 | /**
617 | * Insert item to carousel at particular index.
618 | * @param {HTMLElement} item - Item to insert.
619 | * @param {number} index - Index of new new item insertion.
620 | * @param {function} callback - Optional callback to call after insert.
621 | */
622 | insert(item, index, callback) {
623 | if (index < 0 || index > this.innerElements.length + 1) {
624 | throw new Error('Unable to inset it at this index 😭');
625 | }
626 | if (this.innerElements.indexOf(item) !== -1) {
627 | throw new Error('The same item in a carousel? Really? Nope 😭');
628 | }
629 |
630 | // Avoid shifting content
631 | const shouldItShift = index <= this.currentSlide > 0 && this.innerElements.length;
632 | this.currentSlide = shouldItShift ? this.currentSlide + 1 : this.currentSlide;
633 |
634 | this.innerElements.splice(index, 0, item);
635 |
636 | // build a frame and slide to a currentSlide
637 | this.buildSliderFrame();
638 |
639 | if (callback) {
640 | callback.call(this);
641 | }
642 | }
643 |
644 |
645 | /**
646 | * Prepernd item to carousel.
647 | * @param {HTMLElement} item - Item to prepend.
648 | * @param {function} callback - Optional callback to call after prepend.
649 | */
650 | prepend(item, callback) {
651 | this.insert(item, 0);
652 | if (callback) {
653 | callback.call(this);
654 | }
655 | }
656 |
657 |
658 | /**
659 | * Append item to carousel.
660 | * @param {HTMLElement} item - Item to append.
661 | * @param {function} callback - Optional callback to call after append.
662 | */
663 | append(item, callback) {
664 | this.insert(item, this.innerElements.length + 1);
665 | if (callback) {
666 | callback.call(this);
667 | }
668 | }
669 |
670 |
671 | /**
672 | * Removes listeners and optionally restores to initial markup
673 | * @param {boolean} restoreMarkup - Determinants about restoring an initial markup.
674 | * @param {function} callback - Optional callback function.
675 | */
676 | destroy(restoreMarkup = false, callback) {
677 | this.detachEvents();
678 |
679 | this.selector.style.cursor = 'auto';
680 |
681 | if (restoreMarkup) {
682 | const slides = document.createDocumentFragment();
683 | for (let i = 0; i < this.innerElements.length; i++) {
684 | slides.appendChild(this.innerElements[i]);
685 | }
686 | this.selector.innerHTML = '';
687 | this.selector.appendChild(slides);
688 | this.selector.removeAttribute('style');
689 | }
690 |
691 | if (callback) {
692 | callback.call(this);
693 | }
694 | }
695 | }
696 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | const path = require('path');
2 | const webpack = require('webpack');
3 |
4 | module.exports = {
5 | entry: './src/siema.js',
6 | output: {
7 | path: path.join(__dirname, 'dist'),
8 | filename: 'siema.min.js',
9 | library: 'Siema',
10 | libraryTarget: 'umd',
11 | umdNamedDefine: true
12 | },
13 | module: {
14 | rules: [
15 | {
16 | enforce: 'pre',
17 | test: /\.(js|jsx)$/,
18 | exclude: /node_modules/,
19 | loader: 'eslint-loader',
20 | },
21 | {
22 | test: /\.(js|jsx)$/,
23 | exclude: /(node_modules)/,
24 | loader: 'babel-loader',
25 | query: {
26 | presets: ['es2015'],
27 | plugins: ['babel-plugin-add-module-exports'],
28 | },
29 | },
30 | ]
31 | },
32 | plugins: [
33 | new webpack.optimize.UglifyJsPlugin({
34 | minimize: true,
35 | }),
36 | ],
37 | };
38 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | abbrev@1:
6 | version "1.1.1"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
8 |
9 | acorn-dynamic-import@^2.0.0:
10 | version "2.0.2"
11 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
12 | dependencies:
13 | acorn "^4.0.3"
14 |
15 | acorn-jsx@^3.0.0:
16 | version "3.0.1"
17 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
18 | dependencies:
19 | acorn "^3.0.4"
20 |
21 | acorn@^3.0.4:
22 | version "3.3.0"
23 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
24 |
25 | acorn@^4.0.3:
26 | version "4.0.13"
27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
28 |
29 | acorn@^5.0.0:
30 | version "5.1.2"
31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7"
32 |
33 | acorn@^5.2.1:
34 | version "5.4.1"
35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102"
36 |
37 | ajv-keywords@^2.0.0, ajv-keywords@^2.1.0:
38 | version "2.1.0"
39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0"
40 |
41 | ajv@^4.9.1:
42 | version "4.11.8"
43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
44 | dependencies:
45 | co "^4.6.0"
46 | json-stable-stringify "^1.0.1"
47 |
48 | ajv@^5.1.5, ajv@^5.2.3:
49 | version "5.2.3"
50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.3.tgz#c06f598778c44c6b161abafe3466b81ad1814ed2"
51 | dependencies:
52 | co "^4.6.0"
53 | fast-deep-equal "^1.0.0"
54 | json-schema-traverse "^0.3.0"
55 | json-stable-stringify "^1.0.1"
56 |
57 | ajv@^5.3.0:
58 | version "5.5.2"
59 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
60 | dependencies:
61 | co "^4.6.0"
62 | fast-deep-equal "^1.0.0"
63 | fast-json-stable-stringify "^2.0.0"
64 | json-schema-traverse "^0.3.0"
65 |
66 | align-text@^0.1.1, align-text@^0.1.3:
67 | version "0.1.4"
68 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
69 | dependencies:
70 | kind-of "^3.0.2"
71 | longest "^1.0.1"
72 | repeat-string "^1.5.2"
73 |
74 | ansi-escapes@^3.0.0:
75 | version "3.0.0"
76 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
77 |
78 | ansi-regex@^2.0.0:
79 | version "2.1.1"
80 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
81 |
82 | ansi-regex@^3.0.0:
83 | version "3.0.0"
84 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
85 |
86 | ansi-styles@^2.2.1:
87 | version "2.2.1"
88 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
89 |
90 | ansi-styles@^3.1.0:
91 | version "3.2.0"
92 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
93 | dependencies:
94 | color-convert "^1.9.0"
95 |
96 | anymatch@^1.3.0:
97 | version "1.3.2"
98 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
99 | dependencies:
100 | micromatch "^2.1.5"
101 | normalize-path "^2.0.0"
102 |
103 | aproba@^1.0.3:
104 | version "1.2.0"
105 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
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 | arr-diff@^2.0.0:
121 | version "2.0.0"
122 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
123 | dependencies:
124 | arr-flatten "^1.0.1"
125 |
126 | arr-flatten@^1.0.1:
127 | version "1.1.0"
128 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
129 |
130 | array-union@^1.0.1:
131 | version "1.0.2"
132 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
133 | dependencies:
134 | array-uniq "^1.0.1"
135 |
136 | array-uniq@^1.0.1:
137 | version "1.0.3"
138 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
139 |
140 | array-unique@^0.2.1:
141 | version "0.2.1"
142 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
143 |
144 | arrify@^1.0.0:
145 | version "1.0.1"
146 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
147 |
148 | asn1.js@^4.0.0:
149 | version "4.9.1"
150 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
151 | dependencies:
152 | bn.js "^4.0.0"
153 | inherits "^2.0.1"
154 | minimalistic-assert "^1.0.0"
155 |
156 | asn1@~0.2.3:
157 | version "0.2.3"
158 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
159 |
160 | assert-plus@1.0.0, assert-plus@^1.0.0:
161 | version "1.0.0"
162 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
163 |
164 | assert-plus@^0.2.0:
165 | version "0.2.0"
166 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
167 |
168 | assert@^1.1.1:
169 | version "1.4.1"
170 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
171 | dependencies:
172 | util "0.10.3"
173 |
174 | async-each@^1.0.0:
175 | version "1.0.1"
176 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
177 |
178 | async@^2.1.2:
179 | version "2.5.0"
180 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
181 | dependencies:
182 | lodash "^4.14.0"
183 |
184 | asynckit@^0.4.0:
185 | version "0.4.0"
186 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
187 |
188 | aws-sign2@~0.6.0:
189 | version "0.6.0"
190 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
191 |
192 | aws4@^1.2.1:
193 | version "1.6.0"
194 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
195 |
196 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
197 | version "6.26.0"
198 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
199 | dependencies:
200 | chalk "^1.1.3"
201 | esutils "^2.0.2"
202 | js-tokens "^3.0.2"
203 |
204 | babel-core@^6.26.0:
205 | version "6.26.0"
206 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
207 | dependencies:
208 | babel-code-frame "^6.26.0"
209 | babel-generator "^6.26.0"
210 | babel-helpers "^6.24.1"
211 | babel-messages "^6.23.0"
212 | babel-register "^6.26.0"
213 | babel-runtime "^6.26.0"
214 | babel-template "^6.26.0"
215 | babel-traverse "^6.26.0"
216 | babel-types "^6.26.0"
217 | babylon "^6.18.0"
218 | convert-source-map "^1.5.0"
219 | debug "^2.6.8"
220 | json5 "^0.5.1"
221 | lodash "^4.17.4"
222 | minimatch "^3.0.4"
223 | path-is-absolute "^1.0.1"
224 | private "^0.1.7"
225 | slash "^1.0.0"
226 | source-map "^0.5.6"
227 |
228 | babel-generator@^6.26.0:
229 | version "6.26.0"
230 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
231 | dependencies:
232 | babel-messages "^6.23.0"
233 | babel-runtime "^6.26.0"
234 | babel-types "^6.26.0"
235 | detect-indent "^4.0.0"
236 | jsesc "^1.3.0"
237 | lodash "^4.17.4"
238 | source-map "^0.5.6"
239 | trim-right "^1.0.1"
240 |
241 | babel-helper-call-delegate@^6.24.1:
242 | version "6.24.1"
243 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
244 | dependencies:
245 | babel-helper-hoist-variables "^6.24.1"
246 | babel-runtime "^6.22.0"
247 | babel-traverse "^6.24.1"
248 | babel-types "^6.24.1"
249 |
250 | babel-helper-define-map@^6.24.1:
251 | version "6.26.0"
252 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
253 | dependencies:
254 | babel-helper-function-name "^6.24.1"
255 | babel-runtime "^6.26.0"
256 | babel-types "^6.26.0"
257 | lodash "^4.17.4"
258 |
259 | babel-helper-function-name@^6.24.1:
260 | version "6.24.1"
261 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
262 | dependencies:
263 | babel-helper-get-function-arity "^6.24.1"
264 | babel-runtime "^6.22.0"
265 | babel-template "^6.24.1"
266 | babel-traverse "^6.24.1"
267 | babel-types "^6.24.1"
268 |
269 | babel-helper-get-function-arity@^6.24.1:
270 | version "6.24.1"
271 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
272 | dependencies:
273 | babel-runtime "^6.22.0"
274 | babel-types "^6.24.1"
275 |
276 | babel-helper-hoist-variables@^6.24.1:
277 | version "6.24.1"
278 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
279 | dependencies:
280 | babel-runtime "^6.22.0"
281 | babel-types "^6.24.1"
282 |
283 | babel-helper-optimise-call-expression@^6.24.1:
284 | version "6.24.1"
285 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
286 | dependencies:
287 | babel-runtime "^6.22.0"
288 | babel-types "^6.24.1"
289 |
290 | babel-helper-regex@^6.24.1:
291 | version "6.26.0"
292 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
293 | dependencies:
294 | babel-runtime "^6.26.0"
295 | babel-types "^6.26.0"
296 | lodash "^4.17.4"
297 |
298 | babel-helper-replace-supers@^6.24.1:
299 | version "6.24.1"
300 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
301 | dependencies:
302 | babel-helper-optimise-call-expression "^6.24.1"
303 | babel-messages "^6.23.0"
304 | babel-runtime "^6.22.0"
305 | babel-template "^6.24.1"
306 | babel-traverse "^6.24.1"
307 | babel-types "^6.24.1"
308 |
309 | babel-helpers@^6.24.1:
310 | version "6.24.1"
311 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
312 | dependencies:
313 | babel-runtime "^6.22.0"
314 | babel-template "^6.24.1"
315 |
316 | babel-loader@^7.1.2:
317 | version "7.1.2"
318 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.2.tgz#f6cbe122710f1aa2af4d881c6d5b54358ca24126"
319 | dependencies:
320 | find-cache-dir "^1.0.0"
321 | loader-utils "^1.0.2"
322 | mkdirp "^0.5.1"
323 |
324 | babel-messages@^6.23.0:
325 | version "6.23.0"
326 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
327 | dependencies:
328 | babel-runtime "^6.22.0"
329 |
330 | babel-plugin-add-module-exports@^0.2.1:
331 | version "0.2.1"
332 | resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz#9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25"
333 |
334 | babel-plugin-check-es2015-constants@^6.22.0:
335 | version "6.22.0"
336 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
337 | dependencies:
338 | babel-runtime "^6.22.0"
339 |
340 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
341 | version "6.22.0"
342 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
343 | dependencies:
344 | babel-runtime "^6.22.0"
345 |
346 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
347 | version "6.22.0"
348 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
349 | dependencies:
350 | babel-runtime "^6.22.0"
351 |
352 | babel-plugin-transform-es2015-block-scoping@^6.24.1:
353 | version "6.26.0"
354 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
355 | dependencies:
356 | babel-runtime "^6.26.0"
357 | babel-template "^6.26.0"
358 | babel-traverse "^6.26.0"
359 | babel-types "^6.26.0"
360 | lodash "^4.17.4"
361 |
362 | babel-plugin-transform-es2015-classes@^6.24.1:
363 | version "6.24.1"
364 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
365 | dependencies:
366 | babel-helper-define-map "^6.24.1"
367 | babel-helper-function-name "^6.24.1"
368 | babel-helper-optimise-call-expression "^6.24.1"
369 | babel-helper-replace-supers "^6.24.1"
370 | babel-messages "^6.23.0"
371 | babel-runtime "^6.22.0"
372 | babel-template "^6.24.1"
373 | babel-traverse "^6.24.1"
374 | babel-types "^6.24.1"
375 |
376 | babel-plugin-transform-es2015-computed-properties@^6.24.1:
377 | version "6.24.1"
378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
379 | dependencies:
380 | babel-runtime "^6.22.0"
381 | babel-template "^6.24.1"
382 |
383 | babel-plugin-transform-es2015-destructuring@^6.22.0:
384 | version "6.23.0"
385 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
386 | dependencies:
387 | babel-runtime "^6.22.0"
388 |
389 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
390 | version "6.24.1"
391 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
392 | dependencies:
393 | babel-runtime "^6.22.0"
394 | babel-types "^6.24.1"
395 |
396 | babel-plugin-transform-es2015-for-of@^6.22.0:
397 | version "6.23.0"
398 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
399 | dependencies:
400 | babel-runtime "^6.22.0"
401 |
402 | babel-plugin-transform-es2015-function-name@^6.24.1:
403 | version "6.24.1"
404 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
405 | dependencies:
406 | babel-helper-function-name "^6.24.1"
407 | babel-runtime "^6.22.0"
408 | babel-types "^6.24.1"
409 |
410 | babel-plugin-transform-es2015-literals@^6.22.0:
411 | version "6.22.0"
412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
413 | dependencies:
414 | babel-runtime "^6.22.0"
415 |
416 | babel-plugin-transform-es2015-modules-amd@^6.24.1:
417 | version "6.24.1"
418 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
419 | dependencies:
420 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
421 | babel-runtime "^6.22.0"
422 | babel-template "^6.24.1"
423 |
424 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
425 | version "6.26.0"
426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
427 | dependencies:
428 | babel-plugin-transform-strict-mode "^6.24.1"
429 | babel-runtime "^6.26.0"
430 | babel-template "^6.26.0"
431 | babel-types "^6.26.0"
432 |
433 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
434 | version "6.24.1"
435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
436 | dependencies:
437 | babel-helper-hoist-variables "^6.24.1"
438 | babel-runtime "^6.22.0"
439 | babel-template "^6.24.1"
440 |
441 | babel-plugin-transform-es2015-modules-umd@^6.24.1:
442 | version "6.24.1"
443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
444 | dependencies:
445 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
446 | babel-runtime "^6.22.0"
447 | babel-template "^6.24.1"
448 |
449 | babel-plugin-transform-es2015-object-super@^6.24.1:
450 | version "6.24.1"
451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
452 | dependencies:
453 | babel-helper-replace-supers "^6.24.1"
454 | babel-runtime "^6.22.0"
455 |
456 | babel-plugin-transform-es2015-parameters@^6.24.1:
457 | version "6.24.1"
458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
459 | dependencies:
460 | babel-helper-call-delegate "^6.24.1"
461 | babel-helper-get-function-arity "^6.24.1"
462 | babel-runtime "^6.22.0"
463 | babel-template "^6.24.1"
464 | babel-traverse "^6.24.1"
465 | babel-types "^6.24.1"
466 |
467 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
468 | version "6.24.1"
469 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
470 | dependencies:
471 | babel-runtime "^6.22.0"
472 | babel-types "^6.24.1"
473 |
474 | babel-plugin-transform-es2015-spread@^6.22.0:
475 | version "6.22.0"
476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
477 | dependencies:
478 | babel-runtime "^6.22.0"
479 |
480 | babel-plugin-transform-es2015-sticky-regex@^6.24.1:
481 | version "6.24.1"
482 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
483 | dependencies:
484 | babel-helper-regex "^6.24.1"
485 | babel-runtime "^6.22.0"
486 | babel-types "^6.24.1"
487 |
488 | babel-plugin-transform-es2015-template-literals@^6.22.0:
489 | version "6.22.0"
490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
491 | dependencies:
492 | babel-runtime "^6.22.0"
493 |
494 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
495 | version "6.23.0"
496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
497 | dependencies:
498 | babel-runtime "^6.22.0"
499 |
500 | babel-plugin-transform-es2015-unicode-regex@^6.24.1:
501 | version "6.24.1"
502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
503 | dependencies:
504 | babel-helper-regex "^6.24.1"
505 | babel-runtime "^6.22.0"
506 | regexpu-core "^2.0.0"
507 |
508 | babel-plugin-transform-regenerator@^6.24.1:
509 | version "6.26.0"
510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
511 | dependencies:
512 | regenerator-transform "^0.10.0"
513 |
514 | babel-plugin-transform-strict-mode@^6.24.1:
515 | version "6.24.1"
516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
517 | dependencies:
518 | babel-runtime "^6.22.0"
519 | babel-types "^6.24.1"
520 |
521 | babel-preset-es2015@^6.24.1:
522 | version "6.24.1"
523 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
524 | dependencies:
525 | babel-plugin-check-es2015-constants "^6.22.0"
526 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
527 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
528 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
529 | babel-plugin-transform-es2015-classes "^6.24.1"
530 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
531 | babel-plugin-transform-es2015-destructuring "^6.22.0"
532 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
533 | babel-plugin-transform-es2015-for-of "^6.22.0"
534 | babel-plugin-transform-es2015-function-name "^6.24.1"
535 | babel-plugin-transform-es2015-literals "^6.22.0"
536 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
537 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
538 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
539 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
540 | babel-plugin-transform-es2015-object-super "^6.24.1"
541 | babel-plugin-transform-es2015-parameters "^6.24.1"
542 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
543 | babel-plugin-transform-es2015-spread "^6.22.0"
544 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
545 | babel-plugin-transform-es2015-template-literals "^6.22.0"
546 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
547 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
548 | babel-plugin-transform-regenerator "^6.24.1"
549 |
550 | babel-register@^6.26.0:
551 | version "6.26.0"
552 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
553 | dependencies:
554 | babel-core "^6.26.0"
555 | babel-runtime "^6.26.0"
556 | core-js "^2.5.0"
557 | home-or-tmp "^2.0.0"
558 | lodash "^4.17.4"
559 | mkdirp "^0.5.1"
560 | source-map-support "^0.4.15"
561 |
562 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
563 | version "6.26.0"
564 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
565 | dependencies:
566 | core-js "^2.4.0"
567 | regenerator-runtime "^0.11.0"
568 |
569 | babel-template@^6.24.1, babel-template@^6.26.0:
570 | version "6.26.0"
571 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
572 | dependencies:
573 | babel-runtime "^6.26.0"
574 | babel-traverse "^6.26.0"
575 | babel-types "^6.26.0"
576 | babylon "^6.18.0"
577 | lodash "^4.17.4"
578 |
579 | babel-traverse@^6.24.1, babel-traverse@^6.26.0:
580 | version "6.26.0"
581 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
582 | dependencies:
583 | babel-code-frame "^6.26.0"
584 | babel-messages "^6.23.0"
585 | babel-runtime "^6.26.0"
586 | babel-types "^6.26.0"
587 | babylon "^6.18.0"
588 | debug "^2.6.8"
589 | globals "^9.18.0"
590 | invariant "^2.2.2"
591 | lodash "^4.17.4"
592 |
593 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
594 | version "6.26.0"
595 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
596 | dependencies:
597 | babel-runtime "^6.26.0"
598 | esutils "^2.0.2"
599 | lodash "^4.17.4"
600 | to-fast-properties "^1.0.3"
601 |
602 | babel@^6.23.0:
603 | version "6.23.0"
604 | resolved "https://registry.yarnpkg.com/babel/-/babel-6.23.0.tgz#d0d1e7d803e974765beea3232d4e153c0efb90f4"
605 |
606 | babylon@^6.18.0:
607 | version "6.18.0"
608 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
609 |
610 | balanced-match@^1.0.0:
611 | version "1.0.0"
612 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
613 |
614 | base64-js@^1.0.2:
615 | version "1.2.1"
616 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886"
617 |
618 | bcrypt-pbkdf@^1.0.0:
619 | version "1.0.1"
620 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
621 | dependencies:
622 | tweetnacl "^0.14.3"
623 |
624 | big.js@^3.1.3:
625 | version "3.2.0"
626 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
627 |
628 | binary-extensions@^1.0.0:
629 | version "1.10.0"
630 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0"
631 |
632 | block-stream@*:
633 | version "0.0.9"
634 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
635 | dependencies:
636 | inherits "~2.0.0"
637 |
638 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
639 | version "4.11.8"
640 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
641 |
642 | boom@2.x.x:
643 | version "2.10.1"
644 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
645 | dependencies:
646 | hoek "2.x.x"
647 |
648 | brace-expansion@^1.1.7:
649 | version "1.1.8"
650 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
651 | dependencies:
652 | balanced-match "^1.0.0"
653 | concat-map "0.0.1"
654 |
655 | braces@^1.8.2:
656 | version "1.8.5"
657 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
658 | dependencies:
659 | expand-range "^1.8.1"
660 | preserve "^0.2.0"
661 | repeat-element "^1.1.2"
662 |
663 | brorand@^1.0.1:
664 | version "1.1.0"
665 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
666 |
667 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
668 | version "1.1.0"
669 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.0.tgz#1d2ad62a8b479f23f0ab631c1be86a82dbccbe48"
670 | dependencies:
671 | buffer-xor "^1.0.3"
672 | cipher-base "^1.0.0"
673 | create-hash "^1.1.0"
674 | evp_bytestokey "^1.0.3"
675 | inherits "^2.0.1"
676 | safe-buffer "^5.0.1"
677 |
678 | browserify-cipher@^1.0.0:
679 | version "1.0.0"
680 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
681 | dependencies:
682 | browserify-aes "^1.0.4"
683 | browserify-des "^1.0.0"
684 | evp_bytestokey "^1.0.0"
685 |
686 | browserify-des@^1.0.0:
687 | version "1.0.0"
688 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
689 | dependencies:
690 | cipher-base "^1.0.1"
691 | des.js "^1.0.0"
692 | inherits "^2.0.1"
693 |
694 | browserify-rsa@^4.0.0:
695 | version "4.0.1"
696 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
697 | dependencies:
698 | bn.js "^4.1.0"
699 | randombytes "^2.0.1"
700 |
701 | browserify-sign@^4.0.0:
702 | version "4.0.4"
703 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
704 | dependencies:
705 | bn.js "^4.1.1"
706 | browserify-rsa "^4.0.0"
707 | create-hash "^1.1.0"
708 | create-hmac "^1.1.2"
709 | elliptic "^6.0.0"
710 | inherits "^2.0.1"
711 | parse-asn1 "^5.0.0"
712 |
713 | browserify-zlib@^0.1.4:
714 | version "0.1.4"
715 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
716 | dependencies:
717 | pako "~0.2.0"
718 |
719 | buffer-xor@^1.0.3:
720 | version "1.0.3"
721 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
722 |
723 | buffer@^4.3.0:
724 | version "4.9.1"
725 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
726 | dependencies:
727 | base64-js "^1.0.2"
728 | ieee754 "^1.1.4"
729 | isarray "^1.0.0"
730 |
731 | builtin-modules@^1.0.0:
732 | version "1.1.1"
733 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
734 |
735 | builtin-status-codes@^3.0.0:
736 | version "3.0.0"
737 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
738 |
739 | caller-path@^0.1.0:
740 | version "0.1.0"
741 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
742 | dependencies:
743 | callsites "^0.2.0"
744 |
745 | callsites@^0.2.0:
746 | version "0.2.0"
747 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca"
748 |
749 | camelcase@^1.0.2:
750 | version "1.2.1"
751 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
752 |
753 | camelcase@^4.1.0:
754 | version "4.1.0"
755 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
756 |
757 | caseless@~0.12.0:
758 | version "0.12.0"
759 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
760 |
761 | center-align@^0.1.1:
762 | version "0.1.3"
763 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
764 | dependencies:
765 | align-text "^0.1.3"
766 | lazy-cache "^1.0.3"
767 |
768 | chalk@^1.1.3:
769 | version "1.1.3"
770 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
771 | dependencies:
772 | ansi-styles "^2.2.1"
773 | escape-string-regexp "^1.0.2"
774 | has-ansi "^2.0.0"
775 | strip-ansi "^3.0.0"
776 | supports-color "^2.0.0"
777 |
778 | chalk@^2.0.0, chalk@^2.1.0:
779 | version "2.1.0"
780 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e"
781 | dependencies:
782 | ansi-styles "^3.1.0"
783 | escape-string-regexp "^1.0.5"
784 | supports-color "^4.0.0"
785 |
786 | chokidar@^1.7.0:
787 | version "1.7.0"
788 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
789 | dependencies:
790 | anymatch "^1.3.0"
791 | async-each "^1.0.0"
792 | glob-parent "^2.0.0"
793 | inherits "^2.0.1"
794 | is-binary-path "^1.0.0"
795 | is-glob "^2.0.0"
796 | path-is-absolute "^1.0.0"
797 | readdirp "^2.0.0"
798 | optionalDependencies:
799 | fsevents "^1.0.0"
800 |
801 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
802 | version "1.0.4"
803 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
804 | dependencies:
805 | inherits "^2.0.1"
806 | safe-buffer "^5.0.1"
807 |
808 | circular-json@^0.3.1:
809 | version "0.3.3"
810 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
811 |
812 | cli-cursor@^2.1.0:
813 | version "2.1.0"
814 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
815 | dependencies:
816 | restore-cursor "^2.0.0"
817 |
818 | cli-width@^2.0.0:
819 | version "2.2.0"
820 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
821 |
822 | cliui@^2.1.0:
823 | version "2.1.0"
824 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
825 | dependencies:
826 | center-align "^0.1.1"
827 | right-align "^0.1.1"
828 | wordwrap "0.0.2"
829 |
830 | cliui@^3.2.0:
831 | version "3.2.0"
832 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
833 | dependencies:
834 | string-width "^1.0.1"
835 | strip-ansi "^3.0.1"
836 | wrap-ansi "^2.0.0"
837 |
838 | co@^4.6.0:
839 | version "4.6.0"
840 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
841 |
842 | code-point-at@^1.0.0:
843 | version "1.1.0"
844 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
845 |
846 | color-convert@^1.9.0:
847 | version "1.9.0"
848 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a"
849 | dependencies:
850 | color-name "^1.1.1"
851 |
852 | color-name@^1.1.1:
853 | version "1.1.3"
854 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
855 |
856 | combined-stream@^1.0.5, combined-stream@~1.0.5:
857 | version "1.0.5"
858 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
859 | dependencies:
860 | delayed-stream "~1.0.0"
861 |
862 | commondir@^1.0.1:
863 | version "1.0.1"
864 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
865 |
866 | concat-map@0.0.1:
867 | version "0.0.1"
868 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
869 |
870 | concat-stream@^1.6.0:
871 | version "1.6.0"
872 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
873 | dependencies:
874 | inherits "^2.0.3"
875 | readable-stream "^2.2.2"
876 | typedarray "^0.0.6"
877 |
878 | console-browserify@^1.1.0:
879 | version "1.1.0"
880 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
881 | dependencies:
882 | date-now "^0.1.4"
883 |
884 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
885 | version "1.1.0"
886 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
887 |
888 | constants-browserify@^1.0.0:
889 | version "1.0.0"
890 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
891 |
892 | convert-source-map@^1.5.0:
893 | version "1.5.0"
894 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
895 |
896 | core-js@^2.4.0, core-js@^2.5.0:
897 | version "2.5.1"
898 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b"
899 |
900 | core-util-is@1.0.2, core-util-is@~1.0.0:
901 | version "1.0.2"
902 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
903 |
904 | create-ecdh@^4.0.0:
905 | version "4.0.0"
906 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
907 | dependencies:
908 | bn.js "^4.1.0"
909 | elliptic "^6.0.0"
910 |
911 | create-hash@^1.1.0, create-hash@^1.1.2:
912 | version "1.1.3"
913 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
914 | dependencies:
915 | cipher-base "^1.0.1"
916 | inherits "^2.0.1"
917 | ripemd160 "^2.0.0"
918 | sha.js "^2.4.0"
919 |
920 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
921 | version "1.1.6"
922 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
923 | dependencies:
924 | cipher-base "^1.0.3"
925 | create-hash "^1.1.0"
926 | inherits "^2.0.1"
927 | ripemd160 "^2.0.0"
928 | safe-buffer "^5.0.1"
929 | sha.js "^2.4.8"
930 |
931 | cross-spawn@^5.0.1, cross-spawn@^5.1.0:
932 | version "5.1.0"
933 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
934 | dependencies:
935 | lru-cache "^4.0.1"
936 | shebang-command "^1.2.0"
937 | which "^1.2.9"
938 |
939 | cryptiles@2.x.x:
940 | version "2.0.5"
941 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
942 | dependencies:
943 | boom "2.x.x"
944 |
945 | crypto-browserify@^3.11.0:
946 | version "3.11.1"
947 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f"
948 | dependencies:
949 | browserify-cipher "^1.0.0"
950 | browserify-sign "^4.0.0"
951 | create-ecdh "^4.0.0"
952 | create-hash "^1.1.0"
953 | create-hmac "^1.1.0"
954 | diffie-hellman "^5.0.0"
955 | inherits "^2.0.1"
956 | pbkdf2 "^3.0.3"
957 | public-encrypt "^4.0.0"
958 | randombytes "^2.0.0"
959 |
960 | d@1:
961 | version "1.0.0"
962 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
963 | dependencies:
964 | es5-ext "^0.10.9"
965 |
966 | dashdash@^1.12.0:
967 | version "1.14.1"
968 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
969 | dependencies:
970 | assert-plus "^1.0.0"
971 |
972 | date-now@^0.1.4:
973 | version "0.1.4"
974 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
975 |
976 | debug@^2.2.0, debug@^2.6.8:
977 | version "2.6.9"
978 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
979 | dependencies:
980 | ms "2.0.0"
981 |
982 | debug@^3.1.0:
983 | version "3.1.0"
984 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
985 | dependencies:
986 | ms "2.0.0"
987 |
988 | decamelize@^1.0.0, decamelize@^1.1.1:
989 | version "1.2.0"
990 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
991 |
992 | deep-extend@~0.4.0:
993 | version "0.4.2"
994 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
995 |
996 | deep-is@~0.1.3:
997 | version "0.1.3"
998 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
999 |
1000 | del@^2.0.2:
1001 | version "2.2.2"
1002 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8"
1003 | dependencies:
1004 | globby "^5.0.0"
1005 | is-path-cwd "^1.0.0"
1006 | is-path-in-cwd "^1.0.0"
1007 | object-assign "^4.0.1"
1008 | pify "^2.0.0"
1009 | pinkie-promise "^2.0.0"
1010 | rimraf "^2.2.8"
1011 |
1012 | delayed-stream@~1.0.0:
1013 | version "1.0.0"
1014 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1015 |
1016 | delegates@^1.0.0:
1017 | version "1.0.0"
1018 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1019 |
1020 | des.js@^1.0.0:
1021 | version "1.0.0"
1022 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
1023 | dependencies:
1024 | inherits "^2.0.1"
1025 | minimalistic-assert "^1.0.0"
1026 |
1027 | detect-indent@^4.0.0:
1028 | version "4.0.0"
1029 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1030 | dependencies:
1031 | repeating "^2.0.0"
1032 |
1033 | diffie-hellman@^5.0.0:
1034 | version "5.0.2"
1035 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
1036 | dependencies:
1037 | bn.js "^4.1.0"
1038 | miller-rabin "^4.0.0"
1039 | randombytes "^2.0.0"
1040 |
1041 | doctrine@^2.1.0:
1042 | version "2.1.0"
1043 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
1044 | dependencies:
1045 | esutils "^2.0.2"
1046 |
1047 | domain-browser@^1.1.1:
1048 | version "1.1.7"
1049 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
1050 |
1051 | ecc-jsbn@~0.1.1:
1052 | version "0.1.1"
1053 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1054 | dependencies:
1055 | jsbn "~0.1.0"
1056 |
1057 | elliptic@^6.0.0:
1058 | version "6.4.0"
1059 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
1060 | dependencies:
1061 | bn.js "^4.4.0"
1062 | brorand "^1.0.1"
1063 | hash.js "^1.0.0"
1064 | hmac-drbg "^1.0.0"
1065 | inherits "^2.0.1"
1066 | minimalistic-assert "^1.0.0"
1067 | minimalistic-crypto-utils "^1.0.0"
1068 |
1069 | emojis-list@^2.0.0:
1070 | version "2.1.0"
1071 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
1072 |
1073 | enhanced-resolve@^3.4.0:
1074 | version "3.4.1"
1075 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e"
1076 | dependencies:
1077 | graceful-fs "^4.1.2"
1078 | memory-fs "^0.4.0"
1079 | object-assign "^4.0.1"
1080 | tapable "^0.2.7"
1081 |
1082 | errno@^0.1.3:
1083 | version "0.1.4"
1084 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
1085 | dependencies:
1086 | prr "~0.0.0"
1087 |
1088 | error-ex@^1.2.0:
1089 | version "1.3.1"
1090 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1091 | dependencies:
1092 | is-arrayish "^0.2.1"
1093 |
1094 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14:
1095 | version "0.10.35"
1096 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.35.tgz#18ee858ce6a3c45c7d79e91c15fcca9ec568494f"
1097 | dependencies:
1098 | es6-iterator "~2.0.1"
1099 | es6-symbol "~3.1.1"
1100 |
1101 | es6-iterator@^2.0.1, es6-iterator@~2.0.1:
1102 | version "2.0.3"
1103 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7"
1104 | dependencies:
1105 | d "1"
1106 | es5-ext "^0.10.35"
1107 | es6-symbol "^3.1.1"
1108 |
1109 | es6-map@^0.1.3:
1110 | version "0.1.5"
1111 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
1112 | dependencies:
1113 | d "1"
1114 | es5-ext "~0.10.14"
1115 | es6-iterator "~2.0.1"
1116 | es6-set "~0.1.5"
1117 | es6-symbol "~3.1.1"
1118 | event-emitter "~0.3.5"
1119 |
1120 | es6-set@~0.1.5:
1121 | version "0.1.5"
1122 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
1123 | dependencies:
1124 | d "1"
1125 | es5-ext "~0.10.14"
1126 | es6-iterator "~2.0.1"
1127 | es6-symbol "3.1.1"
1128 | event-emitter "~0.3.5"
1129 |
1130 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1:
1131 | version "3.1.1"
1132 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
1133 | dependencies:
1134 | d "1"
1135 | es5-ext "~0.10.14"
1136 |
1137 | es6-weak-map@^2.0.1:
1138 | version "2.0.2"
1139 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
1140 | dependencies:
1141 | d "1"
1142 | es5-ext "^0.10.14"
1143 | es6-iterator "^2.0.1"
1144 | es6-symbol "^3.1.1"
1145 |
1146 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1147 | version "1.0.5"
1148 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1149 |
1150 | escope@^3.6.0:
1151 | version "3.6.0"
1152 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
1153 | dependencies:
1154 | es6-map "^0.1.3"
1155 | es6-weak-map "^2.0.1"
1156 | esrecurse "^4.1.0"
1157 | estraverse "^4.1.1"
1158 |
1159 | eslint-loader@^1.9.0:
1160 | version "1.9.0"
1161 | resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-1.9.0.tgz#7e1be9feddca328d3dcfaef1ad49d5beffe83a13"
1162 | dependencies:
1163 | loader-fs-cache "^1.0.0"
1164 | loader-utils "^1.0.2"
1165 | object-assign "^4.0.1"
1166 | object-hash "^1.1.4"
1167 | rimraf "^2.6.1"
1168 |
1169 | eslint-scope@^3.7.1:
1170 | version "3.7.1"
1171 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
1172 | dependencies:
1173 | esrecurse "^4.1.0"
1174 | estraverse "^4.1.1"
1175 |
1176 | eslint-visitor-keys@^1.0.0:
1177 | version "1.0.0"
1178 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
1179 |
1180 | eslint@4.16.0:
1181 | version "4.16.0"
1182 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.16.0.tgz#934ada9e98715e1d7bbfd6f6f0519ed2fab35cc1"
1183 | dependencies:
1184 | ajv "^5.3.0"
1185 | babel-code-frame "^6.22.0"
1186 | chalk "^2.1.0"
1187 | concat-stream "^1.6.0"
1188 | cross-spawn "^5.1.0"
1189 | debug "^3.1.0"
1190 | doctrine "^2.1.0"
1191 | eslint-scope "^3.7.1"
1192 | eslint-visitor-keys "^1.0.0"
1193 | espree "^3.5.2"
1194 | esquery "^1.0.0"
1195 | esutils "^2.0.2"
1196 | file-entry-cache "^2.0.0"
1197 | functional-red-black-tree "^1.0.1"
1198 | glob "^7.1.2"
1199 | globals "^11.0.1"
1200 | ignore "^3.3.3"
1201 | imurmurhash "^0.1.4"
1202 | inquirer "^3.0.6"
1203 | is-resolvable "^1.0.0"
1204 | js-yaml "^3.9.1"
1205 | json-stable-stringify-without-jsonify "^1.0.1"
1206 | levn "^0.3.0"
1207 | lodash "^4.17.4"
1208 | minimatch "^3.0.2"
1209 | mkdirp "^0.5.1"
1210 | natural-compare "^1.4.0"
1211 | optionator "^0.8.2"
1212 | path-is-inside "^1.0.2"
1213 | pluralize "^7.0.0"
1214 | progress "^2.0.0"
1215 | require-uncached "^1.0.3"
1216 | semver "^5.3.0"
1217 | strip-ansi "^4.0.0"
1218 | strip-json-comments "~2.0.1"
1219 | table "^4.0.1"
1220 | text-table "~0.2.0"
1221 |
1222 | espree@^3.5.2:
1223 | version "3.5.2"
1224 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca"
1225 | dependencies:
1226 | acorn "^5.2.1"
1227 | acorn-jsx "^3.0.0"
1228 |
1229 | esprima@^4.0.0:
1230 | version "4.0.0"
1231 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
1232 |
1233 | esquery@^1.0.0:
1234 | version "1.0.0"
1235 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa"
1236 | dependencies:
1237 | estraverse "^4.0.0"
1238 |
1239 | esrecurse@^4.1.0:
1240 | version "4.2.0"
1241 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
1242 | dependencies:
1243 | estraverse "^4.1.0"
1244 | object-assign "^4.0.1"
1245 |
1246 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
1247 | version "4.2.0"
1248 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1249 |
1250 | esutils@^2.0.2:
1251 | version "2.0.2"
1252 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1253 |
1254 | event-emitter@~0.3.5:
1255 | version "0.3.5"
1256 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
1257 | dependencies:
1258 | d "1"
1259 | es5-ext "~0.10.14"
1260 |
1261 | events@^1.0.0:
1262 | version "1.1.1"
1263 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1264 |
1265 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
1266 | version "1.0.3"
1267 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
1268 | dependencies:
1269 | md5.js "^1.3.4"
1270 | safe-buffer "^5.1.1"
1271 |
1272 | execa@^0.7.0:
1273 | version "0.7.0"
1274 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1275 | dependencies:
1276 | cross-spawn "^5.0.1"
1277 | get-stream "^3.0.0"
1278 | is-stream "^1.1.0"
1279 | npm-run-path "^2.0.0"
1280 | p-finally "^1.0.0"
1281 | signal-exit "^3.0.0"
1282 | strip-eof "^1.0.0"
1283 |
1284 | expand-brackets@^0.1.4:
1285 | version "0.1.5"
1286 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1287 | dependencies:
1288 | is-posix-bracket "^0.1.0"
1289 |
1290 | expand-range@^1.8.1:
1291 | version "1.8.2"
1292 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1293 | dependencies:
1294 | fill-range "^2.1.0"
1295 |
1296 | extend@~3.0.0:
1297 | version "3.0.1"
1298 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1299 |
1300 | external-editor@^2.0.4:
1301 | version "2.0.5"
1302 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc"
1303 | dependencies:
1304 | iconv-lite "^0.4.17"
1305 | jschardet "^1.4.2"
1306 | tmp "^0.0.33"
1307 |
1308 | extglob@^0.3.1:
1309 | version "0.3.2"
1310 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1311 | dependencies:
1312 | is-extglob "^1.0.0"
1313 |
1314 | extsprintf@1.3.0, extsprintf@^1.2.0:
1315 | version "1.3.0"
1316 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1317 |
1318 | fast-deep-equal@^1.0.0:
1319 | version "1.0.0"
1320 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
1321 |
1322 | fast-json-stable-stringify@^2.0.0:
1323 | version "2.0.0"
1324 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1325 |
1326 | fast-levenshtein@~2.0.4:
1327 | version "2.0.6"
1328 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1329 |
1330 | figures@^2.0.0:
1331 | version "2.0.0"
1332 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
1333 | dependencies:
1334 | escape-string-regexp "^1.0.5"
1335 |
1336 | file-entry-cache@^2.0.0:
1337 | version "2.0.0"
1338 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361"
1339 | dependencies:
1340 | flat-cache "^1.2.1"
1341 | object-assign "^4.0.1"
1342 |
1343 | filename-regex@^2.0.0:
1344 | version "2.0.1"
1345 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1346 |
1347 | fill-range@^2.1.0:
1348 | version "2.2.3"
1349 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1350 | dependencies:
1351 | is-number "^2.1.0"
1352 | isobject "^2.0.0"
1353 | randomatic "^1.1.3"
1354 | repeat-element "^1.1.2"
1355 | repeat-string "^1.5.2"
1356 |
1357 | find-cache-dir@^0.1.1:
1358 | version "0.1.1"
1359 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
1360 | dependencies:
1361 | commondir "^1.0.1"
1362 | mkdirp "^0.5.1"
1363 | pkg-dir "^1.0.0"
1364 |
1365 | find-cache-dir@^1.0.0:
1366 | version "1.0.0"
1367 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
1368 | dependencies:
1369 | commondir "^1.0.1"
1370 | make-dir "^1.0.0"
1371 | pkg-dir "^2.0.0"
1372 |
1373 | find-up@^1.0.0:
1374 | version "1.1.2"
1375 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1376 | dependencies:
1377 | path-exists "^2.0.0"
1378 | pinkie-promise "^2.0.0"
1379 |
1380 | find-up@^2.0.0, find-up@^2.1.0:
1381 | version "2.1.0"
1382 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1383 | dependencies:
1384 | locate-path "^2.0.0"
1385 |
1386 | flat-cache@^1.2.1:
1387 | version "1.3.0"
1388 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481"
1389 | dependencies:
1390 | circular-json "^0.3.1"
1391 | del "^2.0.2"
1392 | graceful-fs "^4.1.2"
1393 | write "^0.2.1"
1394 |
1395 | for-in@^1.0.1:
1396 | version "1.0.2"
1397 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1398 |
1399 | for-own@^0.1.4:
1400 | version "0.1.5"
1401 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1402 | dependencies:
1403 | for-in "^1.0.1"
1404 |
1405 | forever-agent@~0.6.1:
1406 | version "0.6.1"
1407 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1408 |
1409 | form-data@~2.1.1:
1410 | version "2.1.4"
1411 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1412 | dependencies:
1413 | asynckit "^0.4.0"
1414 | combined-stream "^1.0.5"
1415 | mime-types "^2.1.12"
1416 |
1417 | fs.realpath@^1.0.0:
1418 | version "1.0.0"
1419 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1420 |
1421 | fsevents@^1.0.0:
1422 | version "1.1.2"
1423 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"
1424 | dependencies:
1425 | nan "^2.3.0"
1426 | node-pre-gyp "^0.6.36"
1427 |
1428 | fstream-ignore@^1.0.5:
1429 | version "1.0.5"
1430 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1431 | dependencies:
1432 | fstream "^1.0.0"
1433 | inherits "2"
1434 | minimatch "^3.0.0"
1435 |
1436 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1437 | version "1.0.11"
1438 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1439 | dependencies:
1440 | graceful-fs "^4.1.2"
1441 | inherits "~2.0.0"
1442 | mkdirp ">=0.5 0"
1443 | rimraf "2"
1444 |
1445 | functional-red-black-tree@^1.0.1:
1446 | version "1.0.1"
1447 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1448 |
1449 | gauge@~2.7.3:
1450 | version "2.7.4"
1451 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1452 | dependencies:
1453 | aproba "^1.0.3"
1454 | console-control-strings "^1.0.0"
1455 | has-unicode "^2.0.0"
1456 | object-assign "^4.1.0"
1457 | signal-exit "^3.0.0"
1458 | string-width "^1.0.1"
1459 | strip-ansi "^3.0.1"
1460 | wide-align "^1.1.0"
1461 |
1462 | get-caller-file@^1.0.1:
1463 | version "1.0.2"
1464 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1465 |
1466 | get-stream@^3.0.0:
1467 | version "3.0.0"
1468 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1469 |
1470 | getpass@^0.1.1:
1471 | version "0.1.7"
1472 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1473 | dependencies:
1474 | assert-plus "^1.0.0"
1475 |
1476 | glob-base@^0.3.0:
1477 | version "0.3.0"
1478 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1479 | dependencies:
1480 | glob-parent "^2.0.0"
1481 | is-glob "^2.0.0"
1482 |
1483 | glob-parent@^2.0.0:
1484 | version "2.0.0"
1485 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1486 | dependencies:
1487 | is-glob "^2.0.0"
1488 |
1489 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
1490 | version "7.1.2"
1491 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1492 | dependencies:
1493 | fs.realpath "^1.0.0"
1494 | inflight "^1.0.4"
1495 | inherits "2"
1496 | minimatch "^3.0.4"
1497 | once "^1.3.0"
1498 | path-is-absolute "^1.0.0"
1499 |
1500 | globals@^11.0.1:
1501 | version "11.3.0"
1502 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0"
1503 |
1504 | globals@^9.18.0:
1505 | version "9.18.0"
1506 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1507 |
1508 | globby@^5.0.0:
1509 | version "5.0.0"
1510 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"
1511 | dependencies:
1512 | array-union "^1.0.1"
1513 | arrify "^1.0.0"
1514 | glob "^7.0.3"
1515 | object-assign "^4.0.1"
1516 | pify "^2.0.0"
1517 | pinkie-promise "^2.0.0"
1518 |
1519 | graceful-fs@^4.1.2:
1520 | version "4.1.11"
1521 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1522 |
1523 | har-schema@^1.0.5:
1524 | version "1.0.5"
1525 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1526 |
1527 | har-validator@~4.2.1:
1528 | version "4.2.1"
1529 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1530 | dependencies:
1531 | ajv "^4.9.1"
1532 | har-schema "^1.0.5"
1533 |
1534 | has-ansi@^2.0.0:
1535 | version "2.0.0"
1536 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1537 | dependencies:
1538 | ansi-regex "^2.0.0"
1539 |
1540 | has-flag@^2.0.0:
1541 | version "2.0.0"
1542 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1543 |
1544 | has-unicode@^2.0.0:
1545 | version "2.0.1"
1546 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1547 |
1548 | hash-base@^2.0.0:
1549 | version "2.0.2"
1550 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
1551 | dependencies:
1552 | inherits "^2.0.1"
1553 |
1554 | hash-base@^3.0.0:
1555 | version "3.0.4"
1556 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
1557 | dependencies:
1558 | inherits "^2.0.1"
1559 | safe-buffer "^5.0.1"
1560 |
1561 | hash.js@^1.0.0, hash.js@^1.0.3:
1562 | version "1.1.3"
1563 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
1564 | dependencies:
1565 | inherits "^2.0.3"
1566 | minimalistic-assert "^1.0.0"
1567 |
1568 | hawk@3.1.3, hawk@~3.1.3:
1569 | version "3.1.3"
1570 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1571 | dependencies:
1572 | boom "2.x.x"
1573 | cryptiles "2.x.x"
1574 | hoek "2.x.x"
1575 | sntp "1.x.x"
1576 |
1577 | hmac-drbg@^1.0.0:
1578 | version "1.0.1"
1579 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
1580 | dependencies:
1581 | hash.js "^1.0.3"
1582 | minimalistic-assert "^1.0.0"
1583 | minimalistic-crypto-utils "^1.0.1"
1584 |
1585 | hoek@2.x.x:
1586 | version "2.16.3"
1587 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1588 |
1589 | home-or-tmp@^2.0.0:
1590 | version "2.0.0"
1591 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1592 | dependencies:
1593 | os-homedir "^1.0.0"
1594 | os-tmpdir "^1.0.1"
1595 |
1596 | hosted-git-info@^2.1.4:
1597 | version "2.5.0"
1598 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1599 |
1600 | http-signature@~1.1.0:
1601 | version "1.1.1"
1602 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1603 | dependencies:
1604 | assert-plus "^0.2.0"
1605 | jsprim "^1.2.2"
1606 | sshpk "^1.7.0"
1607 |
1608 | https-browserify@0.0.1:
1609 | version "0.0.1"
1610 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
1611 |
1612 | iconv-lite@^0.4.17:
1613 | version "0.4.19"
1614 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
1615 |
1616 | ieee754@^1.1.4:
1617 | version "1.1.8"
1618 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
1619 |
1620 | ignore@^3.3.3:
1621 | version "3.3.5"
1622 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6"
1623 |
1624 | imurmurhash@^0.1.4:
1625 | version "0.1.4"
1626 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1627 |
1628 | indexof@0.0.1:
1629 | version "0.0.1"
1630 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1631 |
1632 | inflight@^1.0.4:
1633 | version "1.0.6"
1634 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1635 | dependencies:
1636 | once "^1.3.0"
1637 | wrappy "1"
1638 |
1639 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
1640 | version "2.0.3"
1641 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1642 |
1643 | inherits@2.0.1:
1644 | version "2.0.1"
1645 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1646 |
1647 | ini@~1.3.0:
1648 | version "1.3.4"
1649 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1650 |
1651 | inquirer@^3.0.6:
1652 | version "3.3.0"
1653 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
1654 | dependencies:
1655 | ansi-escapes "^3.0.0"
1656 | chalk "^2.0.0"
1657 | cli-cursor "^2.1.0"
1658 | cli-width "^2.0.0"
1659 | external-editor "^2.0.4"
1660 | figures "^2.0.0"
1661 | lodash "^4.3.0"
1662 | mute-stream "0.0.7"
1663 | run-async "^2.2.0"
1664 | rx-lite "^4.0.8"
1665 | rx-lite-aggregates "^4.0.8"
1666 | string-width "^2.1.0"
1667 | strip-ansi "^4.0.0"
1668 | through "^2.3.6"
1669 |
1670 | interpret@^1.0.0:
1671 | version "1.0.4"
1672 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0"
1673 |
1674 | invariant@^2.2.2:
1675 | version "2.2.2"
1676 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1677 | dependencies:
1678 | loose-envify "^1.0.0"
1679 |
1680 | invert-kv@^1.0.0:
1681 | version "1.0.0"
1682 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1683 |
1684 | is-arrayish@^0.2.1:
1685 | version "0.2.1"
1686 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1687 |
1688 | is-binary-path@^1.0.0:
1689 | version "1.0.1"
1690 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1691 | dependencies:
1692 | binary-extensions "^1.0.0"
1693 |
1694 | is-buffer@^1.1.5:
1695 | version "1.1.5"
1696 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
1697 |
1698 | is-builtin-module@^1.0.0:
1699 | version "1.0.0"
1700 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1701 | dependencies:
1702 | builtin-modules "^1.0.0"
1703 |
1704 | is-dotfile@^1.0.0:
1705 | version "1.0.3"
1706 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1707 |
1708 | is-equal-shallow@^0.1.3:
1709 | version "0.1.3"
1710 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1711 | dependencies:
1712 | is-primitive "^2.0.0"
1713 |
1714 | is-extendable@^0.1.1:
1715 | version "0.1.1"
1716 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1717 |
1718 | is-extglob@^1.0.0:
1719 | version "1.0.0"
1720 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1721 |
1722 | is-finite@^1.0.0:
1723 | version "1.0.2"
1724 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1725 | dependencies:
1726 | number-is-nan "^1.0.0"
1727 |
1728 | is-fullwidth-code-point@^1.0.0:
1729 | version "1.0.0"
1730 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1731 | dependencies:
1732 | number-is-nan "^1.0.0"
1733 |
1734 | is-fullwidth-code-point@^2.0.0:
1735 | version "2.0.0"
1736 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1737 |
1738 | is-glob@^2.0.0, is-glob@^2.0.1:
1739 | version "2.0.1"
1740 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1741 | dependencies:
1742 | is-extglob "^1.0.0"
1743 |
1744 | is-number@^2.1.0:
1745 | version "2.1.0"
1746 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1747 | dependencies:
1748 | kind-of "^3.0.2"
1749 |
1750 | is-number@^3.0.0:
1751 | version "3.0.0"
1752 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1753 | dependencies:
1754 | kind-of "^3.0.2"
1755 |
1756 | is-path-cwd@^1.0.0:
1757 | version "1.0.0"
1758 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
1759 |
1760 | is-path-in-cwd@^1.0.0:
1761 | version "1.0.0"
1762 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc"
1763 | dependencies:
1764 | is-path-inside "^1.0.0"
1765 |
1766 | is-path-inside@^1.0.0:
1767 | version "1.0.0"
1768 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f"
1769 | dependencies:
1770 | path-is-inside "^1.0.1"
1771 |
1772 | is-posix-bracket@^0.1.0:
1773 | version "0.1.1"
1774 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1775 |
1776 | is-primitive@^2.0.0:
1777 | version "2.0.0"
1778 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1779 |
1780 | is-promise@^2.1.0:
1781 | version "2.1.0"
1782 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
1783 |
1784 | is-resolvable@^1.0.0:
1785 | version "1.0.0"
1786 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62"
1787 | dependencies:
1788 | tryit "^1.0.1"
1789 |
1790 | is-stream@^1.1.0:
1791 | version "1.1.0"
1792 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1793 |
1794 | is-typedarray@~1.0.0:
1795 | version "1.0.0"
1796 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1797 |
1798 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1799 | version "1.0.0"
1800 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1801 |
1802 | isexe@^2.0.0:
1803 | version "2.0.0"
1804 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1805 |
1806 | isobject@^2.0.0:
1807 | version "2.1.0"
1808 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1809 | dependencies:
1810 | isarray "1.0.0"
1811 |
1812 | isstream@~0.1.2:
1813 | version "0.1.2"
1814 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1815 |
1816 | js-tokens@^3.0.0, js-tokens@^3.0.2:
1817 | version "3.0.2"
1818 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1819 |
1820 | js-yaml@^3.9.1:
1821 | version "3.10.0"
1822 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
1823 | dependencies:
1824 | argparse "^1.0.7"
1825 | esprima "^4.0.0"
1826 |
1827 | jsbn@~0.1.0:
1828 | version "0.1.1"
1829 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1830 |
1831 | jschardet@^1.4.2:
1832 | version "1.5.1"
1833 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9"
1834 |
1835 | jsesc@^1.3.0:
1836 | version "1.3.0"
1837 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1838 |
1839 | jsesc@~0.5.0:
1840 | version "0.5.0"
1841 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1842 |
1843 | json-loader@^0.5.4:
1844 | version "0.5.7"
1845 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
1846 |
1847 | json-schema-traverse@^0.3.0:
1848 | version "0.3.1"
1849 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1850 |
1851 | json-schema@0.2.3:
1852 | version "0.2.3"
1853 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1854 |
1855 | json-stable-stringify-without-jsonify@^1.0.1:
1856 | version "1.0.1"
1857 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1858 |
1859 | json-stable-stringify@^1.0.1:
1860 | version "1.0.1"
1861 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1862 | dependencies:
1863 | jsonify "~0.0.0"
1864 |
1865 | json-stringify-safe@~5.0.1:
1866 | version "5.0.1"
1867 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1868 |
1869 | json5@^0.5.0, json5@^0.5.1:
1870 | version "0.5.1"
1871 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1872 |
1873 | jsonify@~0.0.0:
1874 | version "0.0.0"
1875 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1876 |
1877 | jsprim@^1.2.2:
1878 | version "1.4.1"
1879 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1880 | dependencies:
1881 | assert-plus "1.0.0"
1882 | extsprintf "1.3.0"
1883 | json-schema "0.2.3"
1884 | verror "1.10.0"
1885 |
1886 | kind-of@^3.0.2:
1887 | version "3.2.2"
1888 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1889 | dependencies:
1890 | is-buffer "^1.1.5"
1891 |
1892 | kind-of@^4.0.0:
1893 | version "4.0.0"
1894 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1895 | dependencies:
1896 | is-buffer "^1.1.5"
1897 |
1898 | lazy-cache@^1.0.3:
1899 | version "1.0.4"
1900 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1901 |
1902 | lcid@^1.0.0:
1903 | version "1.0.0"
1904 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1905 | dependencies:
1906 | invert-kv "^1.0.0"
1907 |
1908 | levn@^0.3.0, levn@~0.3.0:
1909 | version "0.3.0"
1910 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
1911 | dependencies:
1912 | prelude-ls "~1.1.2"
1913 | type-check "~0.3.2"
1914 |
1915 | load-json-file@^2.0.0:
1916 | version "2.0.0"
1917 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
1918 | dependencies:
1919 | graceful-fs "^4.1.2"
1920 | parse-json "^2.2.0"
1921 | pify "^2.0.0"
1922 | strip-bom "^3.0.0"
1923 |
1924 | loader-fs-cache@^1.0.0:
1925 | version "1.0.1"
1926 | resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz#56e0bf08bd9708b26a765b68509840c8dec9fdbc"
1927 | dependencies:
1928 | find-cache-dir "^0.1.1"
1929 | mkdirp "0.5.1"
1930 |
1931 | loader-runner@^2.3.0:
1932 | version "2.3.0"
1933 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
1934 |
1935 | loader-utils@^1.0.2, loader-utils@^1.1.0:
1936 | version "1.1.0"
1937 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
1938 | dependencies:
1939 | big.js "^3.1.3"
1940 | emojis-list "^2.0.0"
1941 | json5 "^0.5.0"
1942 |
1943 | locate-path@^2.0.0:
1944 | version "2.0.0"
1945 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1946 | dependencies:
1947 | p-locate "^2.0.0"
1948 | path-exists "^3.0.0"
1949 |
1950 | lodash@^4.14.0, lodash@^4.17.4, lodash@^4.3.0:
1951 | version "4.17.4"
1952 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1953 |
1954 | longest@^1.0.1:
1955 | version "1.0.1"
1956 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
1957 |
1958 | loose-envify@^1.0.0:
1959 | version "1.3.1"
1960 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
1961 | dependencies:
1962 | js-tokens "^3.0.0"
1963 |
1964 | lru-cache@^4.0.1:
1965 | version "4.1.1"
1966 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
1967 | dependencies:
1968 | pseudomap "^1.0.2"
1969 | yallist "^2.1.2"
1970 |
1971 | make-dir@^1.0.0:
1972 | version "1.0.0"
1973 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978"
1974 | dependencies:
1975 | pify "^2.3.0"
1976 |
1977 | md5.js@^1.3.4:
1978 | version "1.3.4"
1979 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d"
1980 | dependencies:
1981 | hash-base "^3.0.0"
1982 | inherits "^2.0.1"
1983 |
1984 | mem@^1.1.0:
1985 | version "1.1.0"
1986 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
1987 | dependencies:
1988 | mimic-fn "^1.0.0"
1989 |
1990 | memory-fs@^0.4.0, memory-fs@~0.4.1:
1991 | version "0.4.1"
1992 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
1993 | dependencies:
1994 | errno "^0.1.3"
1995 | readable-stream "^2.0.1"
1996 |
1997 | micromatch@^2.1.5:
1998 | version "2.3.11"
1999 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2000 | dependencies:
2001 | arr-diff "^2.0.0"
2002 | array-unique "^0.2.1"
2003 | braces "^1.8.2"
2004 | expand-brackets "^0.1.4"
2005 | extglob "^0.3.1"
2006 | filename-regex "^2.0.0"
2007 | is-extglob "^1.0.0"
2008 | is-glob "^2.0.1"
2009 | kind-of "^3.0.2"
2010 | normalize-path "^2.0.1"
2011 | object.omit "^2.0.0"
2012 | parse-glob "^3.0.4"
2013 | regex-cache "^0.4.2"
2014 |
2015 | miller-rabin@^4.0.0:
2016 | version "4.0.1"
2017 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
2018 | dependencies:
2019 | bn.js "^4.0.0"
2020 | brorand "^1.0.1"
2021 |
2022 | mime-db@~1.30.0:
2023 | version "1.30.0"
2024 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
2025 |
2026 | mime-types@^2.1.12, mime-types@~2.1.7:
2027 | version "2.1.17"
2028 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
2029 | dependencies:
2030 | mime-db "~1.30.0"
2031 |
2032 | mimic-fn@^1.0.0:
2033 | version "1.1.0"
2034 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
2035 |
2036 | minimalistic-assert@^1.0.0:
2037 | version "1.0.0"
2038 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
2039 |
2040 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
2041 | version "1.0.1"
2042 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
2043 |
2044 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
2045 | version "3.0.4"
2046 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2047 | dependencies:
2048 | brace-expansion "^1.1.7"
2049 |
2050 | minimist@0.0.8:
2051 | version "0.0.8"
2052 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2053 |
2054 | minimist@^1.2.0:
2055 | version "1.2.0"
2056 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2057 |
2058 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0:
2059 | version "0.5.1"
2060 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2061 | dependencies:
2062 | minimist "0.0.8"
2063 |
2064 | ms@2.0.0:
2065 | version "2.0.0"
2066 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2067 |
2068 | mute-stream@0.0.7:
2069 | version "0.0.7"
2070 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
2071 |
2072 | nan@^2.3.0:
2073 | version "2.7.0"
2074 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
2075 |
2076 | natural-compare@^1.4.0:
2077 | version "1.4.0"
2078 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2079 |
2080 | node-libs-browser@^2.0.0:
2081 | version "2.0.0"
2082 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
2083 | dependencies:
2084 | assert "^1.1.1"
2085 | browserify-zlib "^0.1.4"
2086 | buffer "^4.3.0"
2087 | console-browserify "^1.1.0"
2088 | constants-browserify "^1.0.0"
2089 | crypto-browserify "^3.11.0"
2090 | domain-browser "^1.1.1"
2091 | events "^1.0.0"
2092 | https-browserify "0.0.1"
2093 | os-browserify "^0.2.0"
2094 | path-browserify "0.0.0"
2095 | process "^0.11.0"
2096 | punycode "^1.2.4"
2097 | querystring-es3 "^0.2.0"
2098 | readable-stream "^2.0.5"
2099 | stream-browserify "^2.0.1"
2100 | stream-http "^2.3.1"
2101 | string_decoder "^0.10.25"
2102 | timers-browserify "^2.0.2"
2103 | tty-browserify "0.0.0"
2104 | url "^0.11.0"
2105 | util "^0.10.3"
2106 | vm-browserify "0.0.4"
2107 |
2108 | node-pre-gyp@^0.6.36:
2109 | version "0.6.38"
2110 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d"
2111 | dependencies:
2112 | hawk "3.1.3"
2113 | mkdirp "^0.5.1"
2114 | nopt "^4.0.1"
2115 | npmlog "^4.0.2"
2116 | rc "^1.1.7"
2117 | request "2.81.0"
2118 | rimraf "^2.6.1"
2119 | semver "^5.3.0"
2120 | tar "^2.2.1"
2121 | tar-pack "^3.4.0"
2122 |
2123 | nopt@^4.0.1:
2124 | version "4.0.1"
2125 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2126 | dependencies:
2127 | abbrev "1"
2128 | osenv "^0.1.4"
2129 |
2130 | normalize-package-data@^2.3.2:
2131 | version "2.4.0"
2132 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
2133 | dependencies:
2134 | hosted-git-info "^2.1.4"
2135 | is-builtin-module "^1.0.0"
2136 | semver "2 || 3 || 4 || 5"
2137 | validate-npm-package-license "^3.0.1"
2138 |
2139 | normalize-path@^2.0.0, normalize-path@^2.0.1:
2140 | version "2.1.1"
2141 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2142 | dependencies:
2143 | remove-trailing-separator "^1.0.1"
2144 |
2145 | npm-run-path@^2.0.0:
2146 | version "2.0.2"
2147 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2148 | dependencies:
2149 | path-key "^2.0.0"
2150 |
2151 | npmlog@^4.0.2:
2152 | version "4.1.2"
2153 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2154 | dependencies:
2155 | are-we-there-yet "~1.1.2"
2156 | console-control-strings "~1.1.0"
2157 | gauge "~2.7.3"
2158 | set-blocking "~2.0.0"
2159 |
2160 | number-is-nan@^1.0.0:
2161 | version "1.0.1"
2162 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2163 |
2164 | oauth-sign@~0.8.1:
2165 | version "0.8.2"
2166 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2167 |
2168 | object-assign@^4.0.1, object-assign@^4.1.0:
2169 | version "4.1.1"
2170 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2171 |
2172 | object-hash@^1.1.4:
2173 | version "1.2.0"
2174 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.2.0.tgz#e96af0e96981996a1d47f88ead8f74f1ebc4422b"
2175 |
2176 | object.omit@^2.0.0:
2177 | version "2.0.1"
2178 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2179 | dependencies:
2180 | for-own "^0.1.4"
2181 | is-extendable "^0.1.1"
2182 |
2183 | once@^1.3.0, once@^1.3.3:
2184 | version "1.4.0"
2185 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2186 | dependencies:
2187 | wrappy "1"
2188 |
2189 | onetime@^2.0.0:
2190 | version "2.0.1"
2191 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
2192 | dependencies:
2193 | mimic-fn "^1.0.0"
2194 |
2195 | optionator@^0.8.2:
2196 | version "0.8.2"
2197 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
2198 | dependencies:
2199 | deep-is "~0.1.3"
2200 | fast-levenshtein "~2.0.4"
2201 | levn "~0.3.0"
2202 | prelude-ls "~1.1.2"
2203 | type-check "~0.3.2"
2204 | wordwrap "~1.0.0"
2205 |
2206 | os-browserify@^0.2.0:
2207 | version "0.2.1"
2208 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
2209 |
2210 | os-homedir@^1.0.0:
2211 | version "1.0.2"
2212 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2213 |
2214 | os-locale@^2.0.0:
2215 | version "2.1.0"
2216 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
2217 | dependencies:
2218 | execa "^0.7.0"
2219 | lcid "^1.0.0"
2220 | mem "^1.1.0"
2221 |
2222 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
2223 | version "1.0.2"
2224 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2225 |
2226 | osenv@^0.1.4:
2227 | version "0.1.4"
2228 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
2229 | dependencies:
2230 | os-homedir "^1.0.0"
2231 | os-tmpdir "^1.0.0"
2232 |
2233 | p-finally@^1.0.0:
2234 | version "1.0.0"
2235 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2236 |
2237 | p-limit@^1.1.0:
2238 | version "1.1.0"
2239 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
2240 |
2241 | p-locate@^2.0.0:
2242 | version "2.0.0"
2243 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2244 | dependencies:
2245 | p-limit "^1.1.0"
2246 |
2247 | pako@~0.2.0:
2248 | version "0.2.9"
2249 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
2250 |
2251 | parse-asn1@^5.0.0:
2252 | version "5.1.0"
2253 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
2254 | dependencies:
2255 | asn1.js "^4.0.0"
2256 | browserify-aes "^1.0.0"
2257 | create-hash "^1.1.0"
2258 | evp_bytestokey "^1.0.0"
2259 | pbkdf2 "^3.0.3"
2260 |
2261 | parse-glob@^3.0.4:
2262 | version "3.0.4"
2263 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2264 | dependencies:
2265 | glob-base "^0.3.0"
2266 | is-dotfile "^1.0.0"
2267 | is-extglob "^1.0.0"
2268 | is-glob "^2.0.0"
2269 |
2270 | parse-json@^2.2.0:
2271 | version "2.2.0"
2272 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2273 | dependencies:
2274 | error-ex "^1.2.0"
2275 |
2276 | path-browserify@0.0.0:
2277 | version "0.0.0"
2278 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
2279 |
2280 | path-exists@^2.0.0:
2281 | version "2.1.0"
2282 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2283 | dependencies:
2284 | pinkie-promise "^2.0.0"
2285 |
2286 | path-exists@^3.0.0:
2287 | version "3.0.0"
2288 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2289 |
2290 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
2291 | version "1.0.1"
2292 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2293 |
2294 | path-is-inside@^1.0.1, path-is-inside@^1.0.2:
2295 | version "1.0.2"
2296 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
2297 |
2298 | path-key@^2.0.0:
2299 | version "2.0.1"
2300 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2301 |
2302 | path-type@^2.0.0:
2303 | version "2.0.0"
2304 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2305 | dependencies:
2306 | pify "^2.0.0"
2307 |
2308 | pbkdf2@^3.0.3:
2309 | version "3.0.14"
2310 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade"
2311 | dependencies:
2312 | create-hash "^1.1.2"
2313 | create-hmac "^1.1.4"
2314 | ripemd160 "^2.0.1"
2315 | safe-buffer "^5.0.1"
2316 | sha.js "^2.4.8"
2317 |
2318 | performance-now@^0.2.0:
2319 | version "0.2.0"
2320 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2321 |
2322 | pify@^2.0.0, pify@^2.3.0:
2323 | version "2.3.0"
2324 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2325 |
2326 | pinkie-promise@^2.0.0:
2327 | version "2.0.1"
2328 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2329 | dependencies:
2330 | pinkie "^2.0.0"
2331 |
2332 | pinkie@^2.0.0:
2333 | version "2.0.4"
2334 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2335 |
2336 | pkg-dir@^1.0.0:
2337 | version "1.0.0"
2338 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
2339 | dependencies:
2340 | find-up "^1.0.0"
2341 |
2342 | pkg-dir@^2.0.0:
2343 | version "2.0.0"
2344 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
2345 | dependencies:
2346 | find-up "^2.1.0"
2347 |
2348 | pluralize@^7.0.0:
2349 | version "7.0.0"
2350 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777"
2351 |
2352 | prelude-ls@~1.1.2:
2353 | version "1.1.2"
2354 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
2355 |
2356 | preserve@^0.2.0:
2357 | version "0.2.0"
2358 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2359 |
2360 | private@^0.1.6, private@^0.1.7:
2361 | version "0.1.8"
2362 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
2363 |
2364 | process-nextick-args@~1.0.6:
2365 | version "1.0.7"
2366 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2367 |
2368 | process@^0.11.0:
2369 | version "0.11.10"
2370 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
2371 |
2372 | progress@^2.0.0:
2373 | version "2.0.0"
2374 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f"
2375 |
2376 | prr@~0.0.0:
2377 | version "0.0.0"
2378 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
2379 |
2380 | pseudomap@^1.0.2:
2381 | version "1.0.2"
2382 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2383 |
2384 | public-encrypt@^4.0.0:
2385 | version "4.0.0"
2386 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
2387 | dependencies:
2388 | bn.js "^4.1.0"
2389 | browserify-rsa "^4.0.0"
2390 | create-hash "^1.1.0"
2391 | parse-asn1 "^5.0.0"
2392 | randombytes "^2.0.1"
2393 |
2394 | punycode@1.3.2:
2395 | version "1.3.2"
2396 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2397 |
2398 | punycode@^1.2.4, punycode@^1.4.1:
2399 | version "1.4.1"
2400 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2401 |
2402 | qs@~6.4.0:
2403 | version "6.4.0"
2404 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2405 |
2406 | querystring-es3@^0.2.0:
2407 | version "0.2.1"
2408 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2409 |
2410 | querystring@0.2.0:
2411 | version "0.2.0"
2412 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2413 |
2414 | randomatic@^1.1.3:
2415 | version "1.1.7"
2416 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2417 | dependencies:
2418 | is-number "^3.0.0"
2419 | kind-of "^4.0.0"
2420 |
2421 | randombytes@^2.0.0, randombytes@^2.0.1:
2422 | version "2.0.5"
2423 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79"
2424 | dependencies:
2425 | safe-buffer "^5.1.0"
2426 |
2427 | rc@^1.1.7:
2428 | version "1.2.2"
2429 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077"
2430 | dependencies:
2431 | deep-extend "~0.4.0"
2432 | ini "~1.3.0"
2433 | minimist "^1.2.0"
2434 | strip-json-comments "~2.0.1"
2435 |
2436 | read-pkg-up@^2.0.0:
2437 | version "2.0.0"
2438 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
2439 | dependencies:
2440 | find-up "^2.0.0"
2441 | read-pkg "^2.0.0"
2442 |
2443 | read-pkg@^2.0.0:
2444 | version "2.0.0"
2445 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
2446 | dependencies:
2447 | load-json-file "^2.0.0"
2448 | normalize-package-data "^2.3.2"
2449 | path-type "^2.0.0"
2450 |
2451 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6:
2452 | version "2.3.3"
2453 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
2454 | dependencies:
2455 | core-util-is "~1.0.0"
2456 | inherits "~2.0.3"
2457 | isarray "~1.0.0"
2458 | process-nextick-args "~1.0.6"
2459 | safe-buffer "~5.1.1"
2460 | string_decoder "~1.0.3"
2461 | util-deprecate "~1.0.1"
2462 |
2463 | readdirp@^2.0.0:
2464 | version "2.1.0"
2465 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
2466 | dependencies:
2467 | graceful-fs "^4.1.2"
2468 | minimatch "^3.0.2"
2469 | readable-stream "^2.0.2"
2470 | set-immediate-shim "^1.0.1"
2471 |
2472 | regenerate@^1.2.1:
2473 | version "1.3.3"
2474 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f"
2475 |
2476 | regenerator-runtime@^0.11.0:
2477 | version "0.11.0"
2478 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
2479 |
2480 | regenerator-transform@^0.10.0:
2481 | version "0.10.1"
2482 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
2483 | dependencies:
2484 | babel-runtime "^6.18.0"
2485 | babel-types "^6.19.0"
2486 | private "^0.1.6"
2487 |
2488 | regex-cache@^0.4.2:
2489 | version "0.4.4"
2490 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2491 | dependencies:
2492 | is-equal-shallow "^0.1.3"
2493 |
2494 | regexpu-core@^2.0.0:
2495 | version "2.0.0"
2496 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
2497 | dependencies:
2498 | regenerate "^1.2.1"
2499 | regjsgen "^0.2.0"
2500 | regjsparser "^0.1.4"
2501 |
2502 | regjsgen@^0.2.0:
2503 | version "0.2.0"
2504 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
2505 |
2506 | regjsparser@^0.1.4:
2507 | version "0.1.5"
2508 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
2509 | dependencies:
2510 | jsesc "~0.5.0"
2511 |
2512 | remove-trailing-separator@^1.0.1:
2513 | version "1.1.0"
2514 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2515 |
2516 | repeat-element@^1.1.2:
2517 | version "1.1.2"
2518 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2519 |
2520 | repeat-string@^1.5.2:
2521 | version "1.6.1"
2522 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2523 |
2524 | repeating@^2.0.0:
2525 | version "2.0.1"
2526 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2527 | dependencies:
2528 | is-finite "^1.0.0"
2529 |
2530 | request@2.81.0:
2531 | version "2.81.0"
2532 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2533 | dependencies:
2534 | aws-sign2 "~0.6.0"
2535 | aws4 "^1.2.1"
2536 | caseless "~0.12.0"
2537 | combined-stream "~1.0.5"
2538 | extend "~3.0.0"
2539 | forever-agent "~0.6.1"
2540 | form-data "~2.1.1"
2541 | har-validator "~4.2.1"
2542 | hawk "~3.1.3"
2543 | http-signature "~1.1.0"
2544 | is-typedarray "~1.0.0"
2545 | isstream "~0.1.2"
2546 | json-stringify-safe "~5.0.1"
2547 | mime-types "~2.1.7"
2548 | oauth-sign "~0.8.1"
2549 | performance-now "^0.2.0"
2550 | qs "~6.4.0"
2551 | safe-buffer "^5.0.1"
2552 | stringstream "~0.0.4"
2553 | tough-cookie "~2.3.0"
2554 | tunnel-agent "^0.6.0"
2555 | uuid "^3.0.0"
2556 |
2557 | require-directory@^2.1.1:
2558 | version "2.1.1"
2559 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2560 |
2561 | require-main-filename@^1.0.1:
2562 | version "1.0.1"
2563 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2564 |
2565 | require-uncached@^1.0.3:
2566 | version "1.0.3"
2567 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3"
2568 | dependencies:
2569 | caller-path "^0.1.0"
2570 | resolve-from "^1.0.0"
2571 |
2572 | resolve-from@^1.0.0:
2573 | version "1.0.1"
2574 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
2575 |
2576 | restore-cursor@^2.0.0:
2577 | version "2.0.0"
2578 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
2579 | dependencies:
2580 | onetime "^2.0.0"
2581 | signal-exit "^3.0.2"
2582 |
2583 | right-align@^0.1.1:
2584 | version "0.1.3"
2585 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2586 | dependencies:
2587 | align-text "^0.1.1"
2588 |
2589 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1:
2590 | version "2.6.2"
2591 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
2592 | dependencies:
2593 | glob "^7.0.5"
2594 |
2595 | ripemd160@^2.0.0, ripemd160@^2.0.1:
2596 | version "2.0.1"
2597 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
2598 | dependencies:
2599 | hash-base "^2.0.0"
2600 | inherits "^2.0.1"
2601 |
2602 | run-async@^2.2.0:
2603 | version "2.3.0"
2604 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
2605 | dependencies:
2606 | is-promise "^2.1.0"
2607 |
2608 | rx-lite-aggregates@^4.0.8:
2609 | version "4.0.8"
2610 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
2611 | dependencies:
2612 | rx-lite "*"
2613 |
2614 | rx-lite@*, rx-lite@^4.0.8:
2615 | version "4.0.8"
2616 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
2617 |
2618 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2619 | version "5.1.1"
2620 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2621 |
2622 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
2623 | version "5.4.1"
2624 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
2625 |
2626 | set-blocking@^2.0.0, set-blocking@~2.0.0:
2627 | version "2.0.0"
2628 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2629 |
2630 | set-immediate-shim@^1.0.1:
2631 | version "1.0.1"
2632 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
2633 |
2634 | setimmediate@^1.0.4:
2635 | version "1.0.5"
2636 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
2637 |
2638 | sha.js@^2.4.0, sha.js@^2.4.8:
2639 | version "2.4.9"
2640 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d"
2641 | dependencies:
2642 | inherits "^2.0.1"
2643 | safe-buffer "^5.0.1"
2644 |
2645 | shebang-command@^1.2.0:
2646 | version "1.2.0"
2647 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2648 | dependencies:
2649 | shebang-regex "^1.0.0"
2650 |
2651 | shebang-regex@^1.0.0:
2652 | version "1.0.0"
2653 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2654 |
2655 | signal-exit@^3.0.0, signal-exit@^3.0.2:
2656 | version "3.0.2"
2657 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2658 |
2659 | slash@^1.0.0:
2660 | version "1.0.0"
2661 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2662 |
2663 | slice-ansi@1.0.0:
2664 | version "1.0.0"
2665 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d"
2666 | dependencies:
2667 | is-fullwidth-code-point "^2.0.0"
2668 |
2669 | sntp@1.x.x:
2670 | version "1.0.9"
2671 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2672 | dependencies:
2673 | hoek "2.x.x"
2674 |
2675 | source-list-map@^2.0.0:
2676 | version "2.0.0"
2677 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
2678 |
2679 | source-map-support@^0.4.15:
2680 | version "0.4.18"
2681 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
2682 | dependencies:
2683 | source-map "^0.5.6"
2684 |
2685 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
2686 | version "0.5.7"
2687 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2688 |
2689 | spdx-correct@~1.0.0:
2690 | version "1.0.2"
2691 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2692 | dependencies:
2693 | spdx-license-ids "^1.0.2"
2694 |
2695 | spdx-expression-parse@~1.0.0:
2696 | version "1.0.4"
2697 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2698 |
2699 | spdx-license-ids@^1.0.2:
2700 | version "1.2.2"
2701 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
2702 |
2703 | sprintf-js@~1.0.2:
2704 | version "1.0.3"
2705 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
2706 |
2707 | sshpk@^1.7.0:
2708 | version "1.13.1"
2709 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
2710 | dependencies:
2711 | asn1 "~0.2.3"
2712 | assert-plus "^1.0.0"
2713 | dashdash "^1.12.0"
2714 | getpass "^0.1.1"
2715 | optionalDependencies:
2716 | bcrypt-pbkdf "^1.0.0"
2717 | ecc-jsbn "~0.1.1"
2718 | jsbn "~0.1.0"
2719 | tweetnacl "~0.14.0"
2720 |
2721 | stream-browserify@^2.0.1:
2722 | version "2.0.1"
2723 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
2724 | dependencies:
2725 | inherits "~2.0.1"
2726 | readable-stream "^2.0.2"
2727 |
2728 | stream-http@^2.3.1:
2729 | version "2.7.2"
2730 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad"
2731 | dependencies:
2732 | builtin-status-codes "^3.0.0"
2733 | inherits "^2.0.1"
2734 | readable-stream "^2.2.6"
2735 | to-arraybuffer "^1.0.0"
2736 | xtend "^4.0.0"
2737 |
2738 | string-width@^1.0.1, string-width@^1.0.2:
2739 | version "1.0.2"
2740 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2741 | dependencies:
2742 | code-point-at "^1.0.0"
2743 | is-fullwidth-code-point "^1.0.0"
2744 | strip-ansi "^3.0.0"
2745 |
2746 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
2747 | version "2.1.1"
2748 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
2749 | dependencies:
2750 | is-fullwidth-code-point "^2.0.0"
2751 | strip-ansi "^4.0.0"
2752 |
2753 | string_decoder@^0.10.25:
2754 | version "0.10.31"
2755 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2756 |
2757 | string_decoder@~1.0.3:
2758 | version "1.0.3"
2759 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
2760 | dependencies:
2761 | safe-buffer "~5.1.0"
2762 |
2763 | stringstream@~0.0.4:
2764 | version "0.0.5"
2765 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2766 |
2767 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2768 | version "3.0.1"
2769 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2770 | dependencies:
2771 | ansi-regex "^2.0.0"
2772 |
2773 | strip-ansi@^4.0.0:
2774 | version "4.0.0"
2775 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
2776 | dependencies:
2777 | ansi-regex "^3.0.0"
2778 |
2779 | strip-bom@^3.0.0:
2780 | version "3.0.0"
2781 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2782 |
2783 | strip-eof@^1.0.0:
2784 | version "1.0.0"
2785 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
2786 |
2787 | strip-json-comments@~2.0.1:
2788 | version "2.0.1"
2789 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
2790 |
2791 | supports-color@^2.0.0:
2792 | version "2.0.0"
2793 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2794 |
2795 | supports-color@^4.0.0, supports-color@^4.2.1:
2796 | version "4.4.0"
2797 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e"
2798 | dependencies:
2799 | has-flag "^2.0.0"
2800 |
2801 | table@^4.0.1:
2802 | version "4.0.2"
2803 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
2804 | dependencies:
2805 | ajv "^5.2.3"
2806 | ajv-keywords "^2.1.0"
2807 | chalk "^2.1.0"
2808 | lodash "^4.17.4"
2809 | slice-ansi "1.0.0"
2810 | string-width "^2.1.1"
2811 |
2812 | tapable@^0.2.7:
2813 | version "0.2.8"
2814 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22"
2815 |
2816 | tar-pack@^3.4.0:
2817 | version "3.4.0"
2818 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
2819 | dependencies:
2820 | debug "^2.2.0"
2821 | fstream "^1.0.10"
2822 | fstream-ignore "^1.0.5"
2823 | once "^1.3.3"
2824 | readable-stream "^2.1.4"
2825 | rimraf "^2.5.1"
2826 | tar "^2.2.1"
2827 | uid-number "^0.0.6"
2828 |
2829 | tar@^2.2.1:
2830 | version "2.2.1"
2831 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
2832 | dependencies:
2833 | block-stream "*"
2834 | fstream "^1.0.2"
2835 | inherits "2"
2836 |
2837 | text-table@~0.2.0:
2838 | version "0.2.0"
2839 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2840 |
2841 | through@^2.3.6:
2842 | version "2.3.8"
2843 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
2844 |
2845 | timers-browserify@^2.0.2:
2846 | version "2.0.4"
2847 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6"
2848 | dependencies:
2849 | setimmediate "^1.0.4"
2850 |
2851 | tmp@^0.0.33:
2852 | version "0.0.33"
2853 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
2854 | dependencies:
2855 | os-tmpdir "~1.0.2"
2856 |
2857 | to-arraybuffer@^1.0.0:
2858 | version "1.0.1"
2859 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
2860 |
2861 | to-fast-properties@^1.0.3:
2862 | version "1.0.3"
2863 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
2864 |
2865 | tough-cookie@~2.3.0:
2866 | version "2.3.3"
2867 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
2868 | dependencies:
2869 | punycode "^1.4.1"
2870 |
2871 | trim-right@^1.0.1:
2872 | version "1.0.1"
2873 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
2874 |
2875 | tryit@^1.0.1:
2876 | version "1.0.3"
2877 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb"
2878 |
2879 | tty-browserify@0.0.0:
2880 | version "0.0.0"
2881 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
2882 |
2883 | tunnel-agent@^0.6.0:
2884 | version "0.6.0"
2885 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
2886 | dependencies:
2887 | safe-buffer "^5.0.1"
2888 |
2889 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
2890 | version "0.14.5"
2891 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
2892 |
2893 | type-check@~0.3.2:
2894 | version "0.3.2"
2895 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
2896 | dependencies:
2897 | prelude-ls "~1.1.2"
2898 |
2899 | typedarray@^0.0.6:
2900 | version "0.0.6"
2901 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
2902 |
2903 | uglify-js@^2.8.29:
2904 | version "2.8.29"
2905 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
2906 | dependencies:
2907 | source-map "~0.5.1"
2908 | yargs "~3.10.0"
2909 | optionalDependencies:
2910 | uglify-to-browserify "~1.0.0"
2911 |
2912 | uglify-to-browserify@~1.0.0:
2913 | version "1.0.2"
2914 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
2915 |
2916 | uglifyjs-webpack-plugin@^0.4.6:
2917 | version "0.4.6"
2918 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309"
2919 | dependencies:
2920 | source-map "^0.5.6"
2921 | uglify-js "^2.8.29"
2922 | webpack-sources "^1.0.1"
2923 |
2924 | uid-number@^0.0.6:
2925 | version "0.0.6"
2926 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
2927 |
2928 | url@^0.11.0:
2929 | version "0.11.0"
2930 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
2931 | dependencies:
2932 | punycode "1.3.2"
2933 | querystring "0.2.0"
2934 |
2935 | util-deprecate@~1.0.1:
2936 | version "1.0.2"
2937 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2938 |
2939 | util@0.10.3, util@^0.10.3:
2940 | version "0.10.3"
2941 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
2942 | dependencies:
2943 | inherits "2.0.1"
2944 |
2945 | uuid@^3.0.0:
2946 | version "3.1.0"
2947 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
2948 |
2949 | validate-npm-package-license@^3.0.1:
2950 | version "3.0.1"
2951 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
2952 | dependencies:
2953 | spdx-correct "~1.0.0"
2954 | spdx-expression-parse "~1.0.0"
2955 |
2956 | verror@1.10.0:
2957 | version "1.10.0"
2958 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
2959 | dependencies:
2960 | assert-plus "^1.0.0"
2961 | core-util-is "1.0.2"
2962 | extsprintf "^1.2.0"
2963 |
2964 | vm-browserify@0.0.4:
2965 | version "0.0.4"
2966 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
2967 | dependencies:
2968 | indexof "0.0.1"
2969 |
2970 | watchpack@^1.4.0:
2971 | version "1.4.0"
2972 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac"
2973 | dependencies:
2974 | async "^2.1.2"
2975 | chokidar "^1.7.0"
2976 | graceful-fs "^4.1.2"
2977 |
2978 | webpack-sources@^1.0.1:
2979 | version "1.0.1"
2980 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf"
2981 | dependencies:
2982 | source-list-map "^2.0.0"
2983 | source-map "~0.5.3"
2984 |
2985 | webpack@3.10.0:
2986 | version "3.10.0"
2987 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.10.0.tgz#5291b875078cf2abf42bdd23afe3f8f96c17d725"
2988 | dependencies:
2989 | acorn "^5.0.0"
2990 | acorn-dynamic-import "^2.0.0"
2991 | ajv "^5.1.5"
2992 | ajv-keywords "^2.0.0"
2993 | async "^2.1.2"
2994 | enhanced-resolve "^3.4.0"
2995 | escope "^3.6.0"
2996 | interpret "^1.0.0"
2997 | json-loader "^0.5.4"
2998 | json5 "^0.5.1"
2999 | loader-runner "^2.3.0"
3000 | loader-utils "^1.1.0"
3001 | memory-fs "~0.4.1"
3002 | mkdirp "~0.5.0"
3003 | node-libs-browser "^2.0.0"
3004 | source-map "^0.5.3"
3005 | supports-color "^4.2.1"
3006 | tapable "^0.2.7"
3007 | uglifyjs-webpack-plugin "^0.4.6"
3008 | watchpack "^1.4.0"
3009 | webpack-sources "^1.0.1"
3010 | yargs "^8.0.2"
3011 |
3012 | which-module@^2.0.0:
3013 | version "2.0.0"
3014 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3015 |
3016 | which@^1.2.9:
3017 | version "1.3.0"
3018 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
3019 | dependencies:
3020 | isexe "^2.0.0"
3021 |
3022 | wide-align@^1.1.0:
3023 | version "1.1.2"
3024 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
3025 | dependencies:
3026 | string-width "^1.0.2"
3027 |
3028 | window-size@0.1.0:
3029 | version "0.1.0"
3030 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3031 |
3032 | wordwrap@0.0.2:
3033 | version "0.0.2"
3034 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3035 |
3036 | wordwrap@~1.0.0:
3037 | version "1.0.0"
3038 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
3039 |
3040 | wrap-ansi@^2.0.0:
3041 | version "2.1.0"
3042 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3043 | dependencies:
3044 | string-width "^1.0.1"
3045 | strip-ansi "^3.0.1"
3046 |
3047 | wrappy@1:
3048 | version "1.0.2"
3049 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3050 |
3051 | write@^0.2.1:
3052 | version "0.2.1"
3053 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757"
3054 | dependencies:
3055 | mkdirp "^0.5.1"
3056 |
3057 | xtend@^4.0.0:
3058 | version "4.0.1"
3059 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3060 |
3061 | y18n@^3.2.1:
3062 | version "3.2.1"
3063 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3064 |
3065 | yallist@^2.1.2:
3066 | version "2.1.2"
3067 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
3068 |
3069 | yargs-parser@^7.0.0:
3070 | version "7.0.0"
3071 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
3072 | dependencies:
3073 | camelcase "^4.1.0"
3074 |
3075 | yargs@^8.0.2:
3076 | version "8.0.2"
3077 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
3078 | dependencies:
3079 | camelcase "^4.1.0"
3080 | cliui "^3.2.0"
3081 | decamelize "^1.1.1"
3082 | get-caller-file "^1.0.1"
3083 | os-locale "^2.0.0"
3084 | read-pkg-up "^2.0.0"
3085 | require-directory "^2.1.1"
3086 | require-main-filename "^1.0.1"
3087 | set-blocking "^2.0.0"
3088 | string-width "^2.0.0"
3089 | which-module "^2.0.0"
3090 | y18n "^3.2.1"
3091 | yargs-parser "^7.0.0"
3092 |
3093 | yargs@~3.10.0:
3094 | version "3.10.0"
3095 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3096 | dependencies:
3097 | camelcase "^1.0.2"
3098 | cliui "^2.1.0"
3099 | decamelize "^1.0.0"
3100 | window-size "0.1.0"
3101 |
--------------------------------------------------------------------------------