├── .editorconfig ├── .eslintrc.yml ├── .gitignore ├── README.md ├── Sketch Reverse.sketchplugin └── Contents │ ├── Resources │ └── icons │ │ ├── reverseDpt.png │ │ ├── reverseX.png │ │ └── reverseY.png │ └── Sketch │ ├── manifest.json │ ├── reverseDpt.js │ ├── reverseX.js │ └── reverseY.js ├── appcast.xml ├── images ├── img-header.jpg ├── img-sketch-resize.jpg ├── img-sketch-reverse.jpg ├── img-sketch-runner.jpg ├── img-sketch-styles-generator.jpg └── img-usage.gif ├── license ├── package.json ├── src ├── manifest.json ├── reverse.js ├── reverseDpt.js ├── reverseX.js └── reverseY.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 2 7 | indent_style = space 8 | insert_final_newline = true 9 | max_line_length = null 10 | trim_trailing_whitespace = true 11 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | --- 2 | root: true 3 | extends: 4 | - airbnb-base 5 | - plugin:import/errors 6 | - prettier 7 | plugins: 8 | - prettier 9 | env: 10 | node: true 11 | rules: 12 | no-param-reassign: 0 13 | globals: 14 | MSLayer: false 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | plugin.sketchplugin/* 2 | node_modules 3 | .npm 4 | npm-debug.log 5 | .DS_Store 6 | .DS_Store? 7 | ._* 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Sketch Reverse 2 | ![Sketch Reverse](https://raw.githubusercontent.com/lucaorio/sketch-reverse/master/images/img-header.jpg) 3 | > Reverse the position or depth of selected elements 4 | 5 | **Sketch Reverse** is a plugin made for [Sketch](http://sketchapp.com). It *reverses the position* of multiple elements on the x or y axes, **without** changing the layers' depth/order. An action to *reverse the layers' depth/order* is also provided. It doesn't affect the position of the related elements on the artboard. 6 | 7 | Follow me on Twitter [@lucaorio_](https://twitter.com/lucaorio_) for updates, help and other stuff! 🎉 8 | 9 | *Looking for other plugins? Give these a try!* 😎 10 | 11 | [Sketch Styles Generator](https://github.com/lucaorio/sketch-styles-generator) 12 | [Sketch Resize](https://github.com/lucaorio/sketch-resize) 13 | 14 | ## Contents 15 | - [Installation](#installation) 16 | - [Usage](#usage) 17 | - [Integrations](#integrations) 18 | - [License](#license) 19 | - [Contacts](#contacts) 20 | 21 | ## Installation 22 | #### Manual 23 | * [Download](https://github.com/lucaorio/sketch-reverse/releases/latest) the latest release of the plugin [`sketch-reverse.zip`](https://github.com/lucaorio/sketch-reverse/releases/latest) 24 | * Uncompress the downloaded file 25 | * Double-click `Sketch Reverse.sketchplugin` to install it 26 | 27 | #### Via Sketch Runner 28 | * Trigger [Sketch Runner](http://bit.ly/SketchRunnerWebsite) (`cmd+'`) 29 | * Move to the *Install* tab 30 | * Search for *Reverse* and install it 31 | 32 | ## Usage 33 | * **Select** some layers, groups, or artboards 34 | * **Run** the plugin by clicking `Plugins->Reverse` and selecting one of the available options 35 | 36 | Or trigger the plugin via **shortcut**: 37 | * Y - Reverse Position: `ctrl+cmd+y` 38 | * X - Reverse Position: `ctrl+cmd+x` 39 | * Depth - Reverse Order: `ctrl+cmd+o` 40 | 41 | ![Reverse Usage](https://raw.githubusercontent.com/lucaorio/sketch-reverse/master/images/img-usage.gif) 42 | 43 | ## Integrations 44 | *Sketch Reverse* is fully integrated with [Sketch Runner](http://bit.ly/SketchRunnerWebsite), the ultimate tool to speed up your Sketch workflow. You can trigger the plugin by simply typing its first letters, in pure Spotlight style! 45 | 46 | ![Sketch Runner Integration](https://raw.githubusercontent.com/lucaorio/sketch-reverse/master/images/img-sketch-runner.jpg) 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | ## License 57 | ![https://github.com/lucaorio/sketch-reverse/blob/master/license](https://img.shields.io/badge/license-MIT-blue.svg) 58 | 59 | *** 60 | 61 | ## Contacts 62 | * 🐦 Twitter [@lucaorio](http://twitter.com/@lucaorio_) 63 | * 🕸 Website [lucaorio.com](http://lucaorio.com) 64 | * 📬 Email [luca.o@me.com](mailto:luca.o@me.com) 65 | -------------------------------------------------------------------------------- /Sketch Reverse.sketchplugin/Contents/Resources/icons/reverseDpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaorio/sketch-reverse/110685e0203414ae3cc692b2f396729a0c0b8b76/Sketch Reverse.sketchplugin/Contents/Resources/icons/reverseDpt.png -------------------------------------------------------------------------------- /Sketch Reverse.sketchplugin/Contents/Resources/icons/reverseX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaorio/sketch-reverse/110685e0203414ae3cc692b2f396729a0c0b8b76/Sketch Reverse.sketchplugin/Contents/Resources/icons/reverseX.png -------------------------------------------------------------------------------- /Sketch Reverse.sketchplugin/Contents/Resources/icons/reverseY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaorio/sketch-reverse/110685e0203414ae3cc692b2f396729a0c0b8b76/Sketch Reverse.sketchplugin/Contents/Resources/icons/reverseY.png -------------------------------------------------------------------------------- /Sketch Reverse.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Luca Orio", 3 | "name": "Reverse", 4 | "compatibleVersion": 3, 5 | "bundleVersion": 1, 6 | "identifier": "com.sketch.reverse", 7 | "appcast": "https://raw.githubusercontent.com/lucaorio/sketch-reverse/master/appcast.xml", 8 | "commands": [ 9 | { 10 | "name": "Y - Reverse Position", 11 | "identifier": "reverseY", 12 | "script": "reverseY.js", 13 | "shortcut": "ctrl cmd y", 14 | "description": "Reverse the position of selected elements on the Y axis", 15 | "icon": "icons/reverseY.png" 16 | }, 17 | { 18 | "name": "X - Reverse Position", 19 | "identifier": "reverseX", 20 | "script": "reverseX.js", 21 | "shortcut": "ctrl cmd x", 22 | "description": "Reverse the position of selected elements on the X axis", 23 | "icon": "icons/reverseX.png" 24 | }, 25 | { 26 | "name": "Depth - Reverse Order", 27 | "identifier": "reverseDpt", 28 | "script": "reverseDpt.js", 29 | "shortcut": "ctrl cmd o", 30 | "description": "Reverse the depth/order of selected elements", 31 | "icon": "icons/reverseDpt.png" 32 | } 33 | ], 34 | "menu": { 35 | "title": "Reverse", 36 | "items": [ 37 | "reverseY", 38 | "reverseX", 39 | "reverseDpt" 40 | ] 41 | }, 42 | "version": "1.0.1", 43 | "description": "Reverse the position or depth of selected elements", 44 | "homepage": "https://github.com/lucaorio/sketch-reverse#readme", 45 | "disableCocoaScriptPreprocessor": true 46 | } -------------------------------------------------------------------------------- /Sketch Reverse.sketchplugin/Contents/Sketch/reverseDpt.js: -------------------------------------------------------------------------------- 1 | var that = this; 2 | function run (key, context) { 3 | that.context = context; 4 | 5 | var exports = 6 | /******/ (function(modules) { // webpackBootstrap 7 | /******/ // The module cache 8 | /******/ var installedModules = {}; 9 | /******/ 10 | /******/ // The require function 11 | /******/ function __webpack_require__(moduleId) { 12 | /******/ 13 | /******/ // Check if module is in cache 14 | /******/ if(installedModules[moduleId]) { 15 | /******/ return installedModules[moduleId].exports; 16 | /******/ } 17 | /******/ // Create a new module (and put it into the cache) 18 | /******/ var module = installedModules[moduleId] = { 19 | /******/ i: moduleId, 20 | /******/ l: false, 21 | /******/ exports: {} 22 | /******/ }; 23 | /******/ 24 | /******/ // Execute the module function 25 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); 26 | /******/ 27 | /******/ // Flag the module as loaded 28 | /******/ module.l = true; 29 | /******/ 30 | /******/ // Return the exports of the module 31 | /******/ return module.exports; 32 | /******/ } 33 | /******/ 34 | /******/ 35 | /******/ // expose the modules object (__webpack_modules__) 36 | /******/ __webpack_require__.m = modules; 37 | /******/ 38 | /******/ // expose the module cache 39 | /******/ __webpack_require__.c = installedModules; 40 | /******/ 41 | /******/ // define getter function for harmony exports 42 | /******/ __webpack_require__.d = function(exports, name, getter) { 43 | /******/ if(!__webpack_require__.o(exports, name)) { 44 | /******/ Object.defineProperty(exports, name, { 45 | /******/ configurable: false, 46 | /******/ enumerable: true, 47 | /******/ get: getter 48 | /******/ }); 49 | /******/ } 50 | /******/ }; 51 | /******/ 52 | /******/ // getDefaultExport function for compatibility with non-harmony modules 53 | /******/ __webpack_require__.n = function(module) { 54 | /******/ var getter = module && module.__esModule ? 55 | /******/ function getDefault() { return module['default']; } : 56 | /******/ function getModuleExports() { return module; }; 57 | /******/ __webpack_require__.d(getter, 'a', getter); 58 | /******/ return getter; 59 | /******/ }; 60 | /******/ 61 | /******/ // Object.prototype.hasOwnProperty.call 62 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; 63 | /******/ 64 | /******/ // __webpack_public_path__ 65 | /******/ __webpack_require__.p = ""; 66 | /******/ 67 | /******/ // Load entry module and return exports 68 | /******/ return __webpack_require__(__webpack_require__.s = 0); 69 | /******/ }) 70 | /************************************************************************/ 71 | /******/ ([ 72 | /* 0 */ 73 | /***/ (function(module, exports, __webpack_require__) { 74 | 75 | Object.defineProperty(exports, "__esModule", { 76 | value: true 77 | }); 78 | 79 | var _reverse = __webpack_require__(1); 80 | 81 | var _reverse2 = _interopRequireDefault(_reverse); 82 | 83 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } 84 | 85 | var reverseDpt = function reverseDpt(ctx) { 86 | return (0, _reverse2['default'])(ctx, 'dpt'); 87 | }; 88 | exports['default'] = reverseDpt; 89 | 90 | /***/ }), 91 | /* 1 */ 92 | /***/ (function(module, exports) { 93 | 94 | Object.defineProperty(exports, "__esModule", { 95 | value: true 96 | }); 97 | 98 | function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } 99 | 100 | // generate layers array 101 | var getlyrs = function getlyrs(sel, count) { 102 | var lyrs = []; 103 | 104 | for (var i = 0; i <= count - 1; i += 1) { 105 | var lyr = sel.objectAtIndex(i); 106 | var frame = lyr.frame(); 107 | 108 | lyrs.push({ 109 | pointer: lyr, 110 | name: lyr.name(), 111 | w: frame.width(), 112 | h: frame.height(), 113 | x: frame.x(), 114 | y: frame.y(), 115 | dist: { 116 | x: 0, 117 | y: 0 118 | } 119 | }); 120 | } 121 | 122 | return lyrs; 123 | }; 124 | 125 | // reorder array by position rather than depth 126 | var reorder = function reorder(lyrs, axis) { 127 | return [].concat(_toConsumableArray(lyrs)).sort(function (a, b) { 128 | return a[axis] - b[axis]; 129 | }); 130 | }; 131 | 132 | // store distance between bottom/right edge of a layer and its subsequent one 133 | var getdist = function getdist(lyrs) { 134 | lyrs.forEach(function (lyr, idx) { 135 | var next = lyrs[idx + 1]; 136 | lyr.dist.y = next ? next.y - lyr.y - lyr.h : 0; 137 | lyr.dist.x = next ? next.x - lyr.x - lyr.w : 0; 138 | }); 139 | 140 | return lyrs; 141 | }; 142 | 143 | // reposition the layers on the artboard 144 | var reposition = function reposition(lyrs, axis) { 145 | lyrs.reverse().forEach(function (lyr, idx) { 146 | var prev = lyrs[idx - 1]; 147 | var lastPos = lyrs[lyrs.length - 1][axis]; 148 | var dim = axis === 'y' ? 'h' : 'w'; 149 | var prevBounds = prev ? prev.pointer.frame()[axis]() + prev[dim] : lastPos; 150 | 151 | lyr.pointer.frame()[axis] = prevBounds + lyr.dist[axis]; 152 | }); 153 | }; 154 | 155 | // get parent layer 156 | var getParent = function getParent(sel) { 157 | return sel && sel.firstObject().parentGroup(); 158 | }; 159 | 160 | // reverse layers depth 161 | var redepth = function redepth(sel, lyrs, parent) { 162 | var ph = MSLayer.alloc().init(); 163 | 164 | parent.insertLayers_beforeLayer([ph], sel.firstObject()); 165 | lyrs.reverse().forEach(function (lyr) { 166 | lyr.pointer.moveToLayer_beforeLayer(lyr.pointer.parentGroup(), ph); 167 | }); 168 | ph.removeFromParent(); 169 | }; 170 | 171 | // exit and print message 172 | var exit = function exit(doc, msg) { 173 | doc.showMessage(msg); 174 | doc.reloadInspector(); 175 | }; 176 | 177 | // reverse the layer order on a specific axis, or just their depth 178 | var reverse = function reverse(ctx, axis) { 179 | var doc = ctx.document; 180 | var sel = ctx.selection; 181 | var count = sel.count(); 182 | var err = 'Select two (or more) layers! 🙏'; 183 | var lyrs = getlyrs(sel, count); 184 | 185 | if (count <= 1) { 186 | doc.showMessage(err); 187 | return; 188 | } 189 | 190 | if (axis === 'dpt') { 191 | redepth(sel, lyrs, getParent(sel)); 192 | exit(doc, 'Reversed order of ' + String(count) + ' layers. \uD83C\uDF89'); 193 | } else { 194 | reposition(getdist(reorder(lyrs, axis)), axis); 195 | exit(doc, 'Reversed position of ' + String(count) + ' layers on the ' + String(axis.toUpperCase()) + ' axis. \uD83C\uDF89'); 196 | } 197 | }; 198 | 199 | exports['default'] = reverse; 200 | 201 | /***/ }) 202 | /******/ ]); 203 | if (key === 'default' && typeof exports === 'function') { 204 | exports(context); 205 | } else { 206 | exports[key](context); 207 | } 208 | } 209 | that['onRun'] = run.bind(this, 'default') 210 | -------------------------------------------------------------------------------- /Sketch Reverse.sketchplugin/Contents/Sketch/reverseX.js: -------------------------------------------------------------------------------- 1 | var that = this; 2 | function run (key, context) { 3 | that.context = context; 4 | 5 | var exports = 6 | /******/ (function(modules) { // webpackBootstrap 7 | /******/ // The module cache 8 | /******/ var installedModules = {}; 9 | /******/ 10 | /******/ // The require function 11 | /******/ function __webpack_require__(moduleId) { 12 | /******/ 13 | /******/ // Check if module is in cache 14 | /******/ if(installedModules[moduleId]) { 15 | /******/ return installedModules[moduleId].exports; 16 | /******/ } 17 | /******/ // Create a new module (and put it into the cache) 18 | /******/ var module = installedModules[moduleId] = { 19 | /******/ i: moduleId, 20 | /******/ l: false, 21 | /******/ exports: {} 22 | /******/ }; 23 | /******/ 24 | /******/ // Execute the module function 25 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); 26 | /******/ 27 | /******/ // Flag the module as loaded 28 | /******/ module.l = true; 29 | /******/ 30 | /******/ // Return the exports of the module 31 | /******/ return module.exports; 32 | /******/ } 33 | /******/ 34 | /******/ 35 | /******/ // expose the modules object (__webpack_modules__) 36 | /******/ __webpack_require__.m = modules; 37 | /******/ 38 | /******/ // expose the module cache 39 | /******/ __webpack_require__.c = installedModules; 40 | /******/ 41 | /******/ // define getter function for harmony exports 42 | /******/ __webpack_require__.d = function(exports, name, getter) { 43 | /******/ if(!__webpack_require__.o(exports, name)) { 44 | /******/ Object.defineProperty(exports, name, { 45 | /******/ configurable: false, 46 | /******/ enumerable: true, 47 | /******/ get: getter 48 | /******/ }); 49 | /******/ } 50 | /******/ }; 51 | /******/ 52 | /******/ // getDefaultExport function for compatibility with non-harmony modules 53 | /******/ __webpack_require__.n = function(module) { 54 | /******/ var getter = module && module.__esModule ? 55 | /******/ function getDefault() { return module['default']; } : 56 | /******/ function getModuleExports() { return module; }; 57 | /******/ __webpack_require__.d(getter, 'a', getter); 58 | /******/ return getter; 59 | /******/ }; 60 | /******/ 61 | /******/ // Object.prototype.hasOwnProperty.call 62 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; 63 | /******/ 64 | /******/ // __webpack_public_path__ 65 | /******/ __webpack_require__.p = ""; 66 | /******/ 67 | /******/ // Load entry module and return exports 68 | /******/ return __webpack_require__(__webpack_require__.s = 0); 69 | /******/ }) 70 | /************************************************************************/ 71 | /******/ ([ 72 | /* 0 */ 73 | /***/ (function(module, exports, __webpack_require__) { 74 | 75 | Object.defineProperty(exports, "__esModule", { 76 | value: true 77 | }); 78 | 79 | var _reverse = __webpack_require__(1); 80 | 81 | var _reverse2 = _interopRequireDefault(_reverse); 82 | 83 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } 84 | 85 | var reverseX = function reverseX(ctx) { 86 | return (0, _reverse2['default'])(ctx, 'x'); 87 | }; 88 | exports['default'] = reverseX; 89 | 90 | /***/ }), 91 | /* 1 */ 92 | /***/ (function(module, exports) { 93 | 94 | Object.defineProperty(exports, "__esModule", { 95 | value: true 96 | }); 97 | 98 | function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } 99 | 100 | // generate layers array 101 | var getlyrs = function getlyrs(sel, count) { 102 | var lyrs = []; 103 | 104 | for (var i = 0; i <= count - 1; i += 1) { 105 | var lyr = sel.objectAtIndex(i); 106 | var frame = lyr.frame(); 107 | 108 | lyrs.push({ 109 | pointer: lyr, 110 | name: lyr.name(), 111 | w: frame.width(), 112 | h: frame.height(), 113 | x: frame.x(), 114 | y: frame.y(), 115 | dist: { 116 | x: 0, 117 | y: 0 118 | } 119 | }); 120 | } 121 | 122 | return lyrs; 123 | }; 124 | 125 | // reorder array by position rather than depth 126 | var reorder = function reorder(lyrs, axis) { 127 | return [].concat(_toConsumableArray(lyrs)).sort(function (a, b) { 128 | return a[axis] - b[axis]; 129 | }); 130 | }; 131 | 132 | // store distance between bottom/right edge of a layer and its subsequent one 133 | var getdist = function getdist(lyrs) { 134 | lyrs.forEach(function (lyr, idx) { 135 | var next = lyrs[idx + 1]; 136 | lyr.dist.y = next ? next.y - lyr.y - lyr.h : 0; 137 | lyr.dist.x = next ? next.x - lyr.x - lyr.w : 0; 138 | }); 139 | 140 | return lyrs; 141 | }; 142 | 143 | // reposition the layers on the artboard 144 | var reposition = function reposition(lyrs, axis) { 145 | lyrs.reverse().forEach(function (lyr, idx) { 146 | var prev = lyrs[idx - 1]; 147 | var lastPos = lyrs[lyrs.length - 1][axis]; 148 | var dim = axis === 'y' ? 'h' : 'w'; 149 | var prevBounds = prev ? prev.pointer.frame()[axis]() + prev[dim] : lastPos; 150 | 151 | lyr.pointer.frame()[axis] = prevBounds + lyr.dist[axis]; 152 | }); 153 | }; 154 | 155 | // get parent layer 156 | var getParent = function getParent(sel) { 157 | return sel && sel.firstObject().parentGroup(); 158 | }; 159 | 160 | // reverse layers depth 161 | var redepth = function redepth(sel, lyrs, parent) { 162 | var ph = MSLayer.alloc().init(); 163 | 164 | parent.insertLayers_beforeLayer([ph], sel.firstObject()); 165 | lyrs.reverse().forEach(function (lyr) { 166 | lyr.pointer.moveToLayer_beforeLayer(lyr.pointer.parentGroup(), ph); 167 | }); 168 | ph.removeFromParent(); 169 | }; 170 | 171 | // exit and print message 172 | var exit = function exit(doc, msg) { 173 | doc.showMessage(msg); 174 | doc.reloadInspector(); 175 | }; 176 | 177 | // reverse the layer order on a specific axis, or just their depth 178 | var reverse = function reverse(ctx, axis) { 179 | var doc = ctx.document; 180 | var sel = ctx.selection; 181 | var count = sel.count(); 182 | var err = 'Select two (or more) layers! 🙏'; 183 | var lyrs = getlyrs(sel, count); 184 | 185 | if (count <= 1) { 186 | doc.showMessage(err); 187 | return; 188 | } 189 | 190 | if (axis === 'dpt') { 191 | redepth(sel, lyrs, getParent(sel)); 192 | exit(doc, 'Reversed order of ' + String(count) + ' layers. \uD83C\uDF89'); 193 | } else { 194 | reposition(getdist(reorder(lyrs, axis)), axis); 195 | exit(doc, 'Reversed position of ' + String(count) + ' layers on the ' + String(axis.toUpperCase()) + ' axis. \uD83C\uDF89'); 196 | } 197 | }; 198 | 199 | exports['default'] = reverse; 200 | 201 | /***/ }) 202 | /******/ ]); 203 | if (key === 'default' && typeof exports === 'function') { 204 | exports(context); 205 | } else { 206 | exports[key](context); 207 | } 208 | } 209 | that['onRun'] = run.bind(this, 'default') 210 | -------------------------------------------------------------------------------- /Sketch Reverse.sketchplugin/Contents/Sketch/reverseY.js: -------------------------------------------------------------------------------- 1 | var that = this; 2 | function run (key, context) { 3 | that.context = context; 4 | 5 | var exports = 6 | /******/ (function(modules) { // webpackBootstrap 7 | /******/ // The module cache 8 | /******/ var installedModules = {}; 9 | /******/ 10 | /******/ // The require function 11 | /******/ function __webpack_require__(moduleId) { 12 | /******/ 13 | /******/ // Check if module is in cache 14 | /******/ if(installedModules[moduleId]) { 15 | /******/ return installedModules[moduleId].exports; 16 | /******/ } 17 | /******/ // Create a new module (and put it into the cache) 18 | /******/ var module = installedModules[moduleId] = { 19 | /******/ i: moduleId, 20 | /******/ l: false, 21 | /******/ exports: {} 22 | /******/ }; 23 | /******/ 24 | /******/ // Execute the module function 25 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); 26 | /******/ 27 | /******/ // Flag the module as loaded 28 | /******/ module.l = true; 29 | /******/ 30 | /******/ // Return the exports of the module 31 | /******/ return module.exports; 32 | /******/ } 33 | /******/ 34 | /******/ 35 | /******/ // expose the modules object (__webpack_modules__) 36 | /******/ __webpack_require__.m = modules; 37 | /******/ 38 | /******/ // expose the module cache 39 | /******/ __webpack_require__.c = installedModules; 40 | /******/ 41 | /******/ // define getter function for harmony exports 42 | /******/ __webpack_require__.d = function(exports, name, getter) { 43 | /******/ if(!__webpack_require__.o(exports, name)) { 44 | /******/ Object.defineProperty(exports, name, { 45 | /******/ configurable: false, 46 | /******/ enumerable: true, 47 | /******/ get: getter 48 | /******/ }); 49 | /******/ } 50 | /******/ }; 51 | /******/ 52 | /******/ // getDefaultExport function for compatibility with non-harmony modules 53 | /******/ __webpack_require__.n = function(module) { 54 | /******/ var getter = module && module.__esModule ? 55 | /******/ function getDefault() { return module['default']; } : 56 | /******/ function getModuleExports() { return module; }; 57 | /******/ __webpack_require__.d(getter, 'a', getter); 58 | /******/ return getter; 59 | /******/ }; 60 | /******/ 61 | /******/ // Object.prototype.hasOwnProperty.call 62 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; 63 | /******/ 64 | /******/ // __webpack_public_path__ 65 | /******/ __webpack_require__.p = ""; 66 | /******/ 67 | /******/ // Load entry module and return exports 68 | /******/ return __webpack_require__(__webpack_require__.s = 0); 69 | /******/ }) 70 | /************************************************************************/ 71 | /******/ ([ 72 | /* 0 */ 73 | /***/ (function(module, exports, __webpack_require__) { 74 | 75 | Object.defineProperty(exports, "__esModule", { 76 | value: true 77 | }); 78 | 79 | var _reverse = __webpack_require__(1); 80 | 81 | var _reverse2 = _interopRequireDefault(_reverse); 82 | 83 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } 84 | 85 | var reverseY = function reverseY(ctx) { 86 | return (0, _reverse2['default'])(ctx, 'y'); 87 | }; 88 | exports['default'] = reverseY; 89 | 90 | /***/ }), 91 | /* 1 */ 92 | /***/ (function(module, exports) { 93 | 94 | Object.defineProperty(exports, "__esModule", { 95 | value: true 96 | }); 97 | 98 | function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } 99 | 100 | // generate layers array 101 | var getlyrs = function getlyrs(sel, count) { 102 | var lyrs = []; 103 | 104 | for (var i = 0; i <= count - 1; i += 1) { 105 | var lyr = sel.objectAtIndex(i); 106 | var frame = lyr.frame(); 107 | 108 | lyrs.push({ 109 | pointer: lyr, 110 | name: lyr.name(), 111 | w: frame.width(), 112 | h: frame.height(), 113 | x: frame.x(), 114 | y: frame.y(), 115 | dist: { 116 | x: 0, 117 | y: 0 118 | } 119 | }); 120 | } 121 | 122 | return lyrs; 123 | }; 124 | 125 | // reorder array by position rather than depth 126 | var reorder = function reorder(lyrs, axis) { 127 | return [].concat(_toConsumableArray(lyrs)).sort(function (a, b) { 128 | return a[axis] - b[axis]; 129 | }); 130 | }; 131 | 132 | // store distance between bottom/right edge of a layer and its subsequent one 133 | var getdist = function getdist(lyrs) { 134 | lyrs.forEach(function (lyr, idx) { 135 | var next = lyrs[idx + 1]; 136 | lyr.dist.y = next ? next.y - lyr.y - lyr.h : 0; 137 | lyr.dist.x = next ? next.x - lyr.x - lyr.w : 0; 138 | }); 139 | 140 | return lyrs; 141 | }; 142 | 143 | // reposition the layers on the artboard 144 | var reposition = function reposition(lyrs, axis) { 145 | lyrs.reverse().forEach(function (lyr, idx) { 146 | var prev = lyrs[idx - 1]; 147 | var lastPos = lyrs[lyrs.length - 1][axis]; 148 | var dim = axis === 'y' ? 'h' : 'w'; 149 | var prevBounds = prev ? prev.pointer.frame()[axis]() + prev[dim] : lastPos; 150 | 151 | lyr.pointer.frame()[axis] = prevBounds + lyr.dist[axis]; 152 | }); 153 | }; 154 | 155 | // get parent layer 156 | var getParent = function getParent(sel) { 157 | return sel && sel.firstObject().parentGroup(); 158 | }; 159 | 160 | // reverse layers depth 161 | var redepth = function redepth(sel, lyrs, parent) { 162 | var ph = MSLayer.alloc().init(); 163 | 164 | parent.insertLayers_beforeLayer([ph], sel.firstObject()); 165 | lyrs.reverse().forEach(function (lyr) { 166 | lyr.pointer.moveToLayer_beforeLayer(lyr.pointer.parentGroup(), ph); 167 | }); 168 | ph.removeFromParent(); 169 | }; 170 | 171 | // exit and print message 172 | var exit = function exit(doc, msg) { 173 | doc.showMessage(msg); 174 | doc.reloadInspector(); 175 | }; 176 | 177 | // reverse the layer order on a specific axis, or just their depth 178 | var reverse = function reverse(ctx, axis) { 179 | var doc = ctx.document; 180 | var sel = ctx.selection; 181 | var count = sel.count(); 182 | var err = 'Select two (or more) layers! 🙏'; 183 | var lyrs = getlyrs(sel, count); 184 | 185 | if (count <= 1) { 186 | doc.showMessage(err); 187 | return; 188 | } 189 | 190 | if (axis === 'dpt') { 191 | redepth(sel, lyrs, getParent(sel)); 192 | exit(doc, 'Reversed order of ' + String(count) + ' layers. \uD83C\uDF89'); 193 | } else { 194 | reposition(getdist(reorder(lyrs, axis)), axis); 195 | exit(doc, 'Reversed position of ' + String(count) + ' layers on the ' + String(axis.toUpperCase()) + ' axis. \uD83C\uDF89'); 196 | } 197 | }; 198 | 199 | exports['default'] = reverse; 200 | 201 | /***/ }) 202 | /******/ ]); 203 | if (key === 'default' && typeof exports === 'function') { 204 | exports(context); 205 | } else { 206 | exports[key](context); 207 | } 208 | } 209 | that['onRun'] = run.bind(this, 'default') 210 | -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Sketch Reverse 5 | https://github.com/lucaorio/sketch-reverse 6 | Reverse the position or depth of selected elements. 7 | en 8 | 9 | Sketch Reverse 1.0.0 10 | 11 | 13 |
  • First Release
  • 14 | 15 | ]]> 16 |
    17 | 18 |
    19 | 20 | Sketch Reverse 1.0.1 21 | 22 | 24 |
  • Fixed Typos
  • 25 | 26 | ]]> 27 |
    28 | 29 |
    30 |
    31 |
    32 | -------------------------------------------------------------------------------- /images/img-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaorio/sketch-reverse/110685e0203414ae3cc692b2f396729a0c0b8b76/images/img-header.jpg -------------------------------------------------------------------------------- /images/img-sketch-resize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaorio/sketch-reverse/110685e0203414ae3cc692b2f396729a0c0b8b76/images/img-sketch-resize.jpg -------------------------------------------------------------------------------- /images/img-sketch-reverse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaorio/sketch-reverse/110685e0203414ae3cc692b2f396729a0c0b8b76/images/img-sketch-reverse.jpg -------------------------------------------------------------------------------- /images/img-sketch-runner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaorio/sketch-reverse/110685e0203414ae3cc692b2f396729a0c0b8b76/images/img-sketch-runner.jpg -------------------------------------------------------------------------------- /images/img-sketch-styles-generator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaorio/sketch-reverse/110685e0203414ae3cc692b2f396729a0c0b8b76/images/img-sketch-styles-generator.jpg -------------------------------------------------------------------------------- /images/img-usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucaorio/sketch-reverse/110685e0203414ae3cc692b2f396729a0c0b8b76/images/img-usage.gif -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) Luca Orio (lucaorio.com) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sketch-reverse", 3 | "version": "1.0.1", 4 | "description": "Reverse the position or depth of selected elements", 5 | "author": "Luca Orio ", 6 | "homepage": "https://github.com/lucaorio/sketch-reverse#readme", 7 | "repository": { 8 | "type": "git", 9 | "url": "git+https://github.com/lucaorio/sketch-reverse.git" 10 | }, 11 | "keywords": [ 12 | "sketch", 13 | "sketchapp", 14 | "plugin", 15 | "reverse", 16 | "layers", 17 | "depth", 18 | "inverse" 19 | ], 20 | "license": "MIT", 21 | "bugs": { 22 | "url": "https://github.com/lucaorio/sketch-reverse/issues" 23 | }, 24 | "engines": { 25 | "sketch": ">=3.0" 26 | }, 27 | "skpm": { 28 | "name": "sketch-reverse", 29 | "manifest": "src/manifest.json", 30 | "main": "plugin.sketchplugin" 31 | }, 32 | "scripts": { 33 | "build": "skpm-build", 34 | "watch": "skpm-build --watch", 35 | "start": "skpm-build --watch --run", 36 | "postinstall": "npm run build && skpm-link", 37 | "lint-staged": "lint-staged", 38 | "prettier:base": "prettier --single-quote --trailing-comma es5 --no-semi --write", 39 | "prettify": "npm run prettier:base \"./src/**/*.js\"" 40 | }, 41 | "devDependencies": { 42 | "@skpm/builder": "^0.1.3", 43 | "eslint": "^4.8.0", 44 | "eslint-config-airbnb-base": "^12.0.2", 45 | "eslint-config-prettier": "^2.6.0", 46 | "eslint-plugin-import": "^2.7.0", 47 | "eslint-plugin-no-not-accumulator-reassign": "^0.1.0", 48 | "eslint-plugin-prettier": "^2.3.1", 49 | "lint-staged": "^4.2.3", 50 | "pre-commit": "^1.2.2", 51 | "prettier": "^1.7.4" 52 | }, 53 | "pre-commit": [ 54 | "lint-staged" 55 | ], 56 | "lint-staged": { 57 | "*.js": [ 58 | "npm run prettier:base", 59 | "eslint --quiet --rule 'prettier/prettier: [\"error\", {\"trailingComma\": \"es5\", \"singleQuote\": true}]'", 60 | "git add" 61 | ] 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Luca Orio", 3 | "name": "Reverse", 4 | "compatibleVersion": 3, 5 | "bundleVersion": 1, 6 | "identifier": "com.sketch.reverse", 7 | "appcast": "https://raw.githubusercontent.com/lucaorio/sketch-reverse/master/appcast.xml", 8 | "commands": [ 9 | { 10 | "name": "Y - Reverse Position", 11 | "identifier": "reverseY", 12 | "script": "./reverseY.js", 13 | "shortcut": "ctrl cmd y", 14 | "description": "Reverse the position of selected elements on the Y axis", 15 | "icon" : "icons/reverseY.png" 16 | }, 17 | { 18 | "name": "X - Reverse Position", 19 | "identifier": "reverseX", 20 | "script": "./reverseX.js", 21 | "shortcut": "ctrl cmd x", 22 | "description": "Reverse the position of selected elements on the X axis", 23 | "icon" : "icons/reverseX.png" 24 | }, 25 | { 26 | "name": "Depth - Reverse Order", 27 | "identifier": "reverseDpt", 28 | "script": "./reverseDpt.js", 29 | "shortcut": "ctrl cmd o", 30 | "description": "Reverse the depth/order of selected elements", 31 | "icon" : "icons/reverseDpt.png" 32 | } 33 | ], 34 | "menu": { 35 | "title": "Reverse", 36 | "items": [ 37 | "reverseY", 38 | "reverseX", 39 | "reverseDpt" 40 | ] 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/reverse.js: -------------------------------------------------------------------------------- 1 | // generate layers array 2 | const getlyrs = (sel, count) => { 3 | const lyrs = []; 4 | 5 | for (let i = 0; i <= count - 1; i += 1) { 6 | const lyr = sel.objectAtIndex(i); 7 | const frame = lyr.frame(); 8 | 9 | lyrs.push({ 10 | pointer: lyr, 11 | name: lyr.name(), 12 | w: frame.width(), 13 | h: frame.height(), 14 | x: frame.x(), 15 | y: frame.y(), 16 | dist: { 17 | x: 0, 18 | y: 0 19 | } 20 | }); 21 | } 22 | 23 | return lyrs; 24 | } 25 | 26 | // reorder array by position rather than depth 27 | const reorder = (lyrs, axis) => [...lyrs].sort((a, b) => (a[axis] - b[axis])); 28 | 29 | // store distance between bottom/right edge of a layer and its subsequent one 30 | const getdist = lyrs => { 31 | lyrs.forEach((lyr, idx) => { 32 | const next = lyrs[idx + 1]; 33 | lyr.dist.y = next ? (next.y - lyr.y - lyr.h) : 0; 34 | lyr.dist.x = next ? (next.x - lyr.x - lyr.w) : 0; 35 | }); 36 | 37 | return lyrs; 38 | } 39 | 40 | // reposition the layers on the artboard 41 | const reposition = (lyrs, axis) => { 42 | lyrs.reverse().forEach((lyr, idx) => { 43 | const prev = lyrs[idx - 1]; 44 | const lastPos = lyrs[lyrs.length - 1][axis]; 45 | const dim = axis === 'y' ? 'h' : 'w'; 46 | const prevBounds = prev ? prev.pointer.frame()[axis]() + prev[dim] : lastPos; 47 | 48 | lyr.pointer.frame()[axis] = prevBounds + lyr.dist[axis]; 49 | }); 50 | } 51 | 52 | // get parent layer 53 | const getParent = sel => sel && sel.firstObject().parentGroup(); 54 | 55 | // reverse layers depth 56 | const redepth = (sel, lyrs, parent) => { 57 | const ph = MSLayer.alloc().init(); 58 | 59 | parent.insertLayers_beforeLayer([ph], sel.firstObject()); 60 | lyrs.reverse().forEach(lyr => { 61 | lyr.pointer.moveToLayer_beforeLayer(lyr.pointer.parentGroup(), ph); 62 | }); 63 | ph.removeFromParent(); 64 | } 65 | 66 | // exit and print message 67 | const exit = (doc, msg) => { 68 | doc.showMessage(msg); 69 | doc.reloadInspector(); 70 | }; 71 | 72 | // reverse the layer order on a specific axis, or just their depth 73 | const reverse = (ctx, axis) => { 74 | const doc = ctx.document; 75 | const sel = ctx.selection; 76 | const count = sel.count(); 77 | const err = 'Select two (or more) layers! 🙏'; 78 | const lyrs = getlyrs(sel, count); 79 | 80 | if (count <= 1) { 81 | doc.showMessage(err); 82 | return; 83 | } 84 | 85 | if (axis === 'dpt') { 86 | redepth(sel, lyrs, getParent(sel)); 87 | exit(doc, `Reversed order of ${count} layers. 🎉`); 88 | } else { 89 | reposition(getdist(reorder(lyrs, axis)), axis); 90 | exit(doc, `Reversed position of ${count} layers on the ${axis.toUpperCase()} axis. 🎉`); 91 | } 92 | } 93 | 94 | export default reverse; 95 | -------------------------------------------------------------------------------- /src/reverseDpt.js: -------------------------------------------------------------------------------- 1 | import reverse from './reverse' 2 | 3 | const reverseDpt = (ctx) => reverse(ctx, 'dpt'); 4 | export default reverseDpt; 5 | -------------------------------------------------------------------------------- /src/reverseX.js: -------------------------------------------------------------------------------- 1 | import reverse from './reverse' 2 | 3 | const reverseX = (ctx) => reverse(ctx, 'x'); 4 | export default reverseX; 5 | -------------------------------------------------------------------------------- /src/reverseY.js: -------------------------------------------------------------------------------- 1 | import reverse from './reverse' 2 | 3 | const reverseY = (ctx) => reverse(ctx, 'y'); 4 | export default reverseY; 5 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@skpm/builder@^0.1.3": 6 | version "0.1.7" 7 | resolved "https://registry.yarnpkg.com/@skpm/builder/-/builder-0.1.7.tgz#b49d524e97088c99b676c7eb9a2abc319866f3e3" 8 | dependencies: 9 | "@skpm/file-loader" "^1.0.0" 10 | "@skpm/utils" "^0.1.0" 11 | babel-core "^6.24.1" 12 | babel-loader "^7.1.0" 13 | babel-preset-airbnb "^2.4.0" 14 | chalk "^1.1.3" 15 | glob "^7.1.2" 16 | parse-author "2.0.0" 17 | run-sketch-plugin "^1.0.0" 18 | semver "^5.3.0" 19 | sketch-polyfill-console "^0.4.0" 20 | sketch-polyfill-fetch "^0.1.4" 21 | sketch-polyfill-setinterval "^0.1.0" 22 | sketch-polyfill-settimeout "^0.2.0" 23 | webpack "^3.0.0" 24 | webpack-sources "^1.0.1" 25 | yargs "^9.0.1" 26 | yesno "^0.0.1" 27 | 28 | "@skpm/file-loader@^1.0.0": 29 | version "1.1.5" 30 | resolved "https://registry.yarnpkg.com/@skpm/file-loader/-/file-loader-1.1.5.tgz#4a575e3788f1203111b80bd91c72ebe385d220a7" 31 | dependencies: 32 | loader-utils "^1.0.2" 33 | schema-utils "^0.3.0" 34 | 35 | "@skpm/sketch-debugger@^0.2.1": 36 | version "0.2.2" 37 | resolved "https://registry.yarnpkg.com/@skpm/sketch-debugger/-/sketch-debugger-0.2.2.tgz#93c33fb3d7e9423bc389c4c59edce73708140ee3" 38 | dependencies: 39 | sketch-module-web-view "^0.2.6" 40 | 41 | "@skpm/utils@^0.1.0": 42 | version "0.1.6" 43 | resolved "https://registry.yarnpkg.com/@skpm/utils/-/utils-0.1.6.tgz#757a9657c68e13f51bee88e117fb679d621f891f" 44 | dependencies: 45 | js-yaml "^3.10.0" 46 | object-assign "*" 47 | 48 | abbrev@1: 49 | version "1.1.1" 50 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 51 | 52 | acorn-dynamic-import@^2.0.0: 53 | version "2.0.2" 54 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 55 | dependencies: 56 | acorn "^4.0.3" 57 | 58 | acorn-jsx@^3.0.0: 59 | version "3.0.1" 60 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 61 | dependencies: 62 | acorn "^3.0.4" 63 | 64 | acorn@^3.0.4: 65 | version "3.3.0" 66 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 67 | 68 | acorn@^4.0.3: 69 | version "4.0.13" 70 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 71 | 72 | acorn@^5.0.0, acorn@^5.5.0: 73 | version "5.5.3" 74 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" 75 | 76 | ajv-keywords@^2.1.0: 77 | version "2.1.1" 78 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 79 | 80 | ajv-keywords@^3.1.0: 81 | version "3.1.0" 82 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.1.0.tgz#ac2b27939c543e95d2c06e7f7f5c27be4aa543be" 83 | 84 | ajv@^4.9.1: 85 | version "4.11.8" 86 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 87 | dependencies: 88 | co "^4.6.0" 89 | json-stable-stringify "^1.0.1" 90 | 91 | ajv@^5.0.0, ajv@^5.2.3, ajv@^5.3.0: 92 | version "5.5.2" 93 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 94 | dependencies: 95 | co "^4.6.0" 96 | fast-deep-equal "^1.0.0" 97 | fast-json-stable-stringify "^2.0.0" 98 | json-schema-traverse "^0.3.0" 99 | 100 | ajv@^6.1.0: 101 | version "6.2.1" 102 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.2.1.tgz#28a6abc493a2abe0fb4c8507acaedb43fa550671" 103 | dependencies: 104 | fast-deep-equal "^1.0.0" 105 | fast-json-stable-stringify "^2.0.0" 106 | json-schema-traverse "^0.3.0" 107 | 108 | align-text@^0.1.1, align-text@^0.1.3: 109 | version "0.1.4" 110 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 111 | dependencies: 112 | kind-of "^3.0.2" 113 | longest "^1.0.1" 114 | repeat-string "^1.5.2" 115 | 116 | ansi-escapes@^1.0.0: 117 | version "1.4.0" 118 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 119 | 120 | ansi-escapes@^3.0.0: 121 | version "3.0.0" 122 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 123 | 124 | ansi-regex@^2.0.0: 125 | version "2.1.1" 126 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 127 | 128 | ansi-regex@^3.0.0: 129 | version "3.0.0" 130 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 131 | 132 | ansi-styles@^2.2.1: 133 | version "2.2.1" 134 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 135 | 136 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 137 | version "3.2.1" 138 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 139 | dependencies: 140 | color-convert "^1.9.0" 141 | 142 | anymatch@^2.0.0: 143 | version "2.0.0" 144 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 145 | dependencies: 146 | micromatch "^3.1.4" 147 | normalize-path "^2.1.1" 148 | 149 | app-root-path@^2.0.0: 150 | version "2.0.1" 151 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 152 | 153 | aproba@^1.0.3: 154 | version "1.2.0" 155 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 156 | 157 | are-we-there-yet@~1.1.2: 158 | version "1.1.4" 159 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 160 | dependencies: 161 | delegates "^1.0.0" 162 | readable-stream "^2.0.6" 163 | 164 | argparse@^1.0.7: 165 | version "1.0.10" 166 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 167 | dependencies: 168 | sprintf-js "~1.0.2" 169 | 170 | arr-diff@^4.0.0: 171 | version "4.0.0" 172 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 173 | 174 | arr-flatten@^1.1.0: 175 | version "1.1.0" 176 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 177 | 178 | arr-union@^3.1.0: 179 | version "3.1.0" 180 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 181 | 182 | array-union@^1.0.1: 183 | version "1.0.2" 184 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 185 | dependencies: 186 | array-uniq "^1.0.1" 187 | 188 | array-uniq@^1.0.1: 189 | version "1.0.3" 190 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 191 | 192 | array-unique@^0.3.2: 193 | version "0.3.2" 194 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 195 | 196 | arrify@^1.0.0: 197 | version "1.0.1" 198 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 199 | 200 | asn1.js@^4.0.0: 201 | version "4.10.1" 202 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 203 | dependencies: 204 | bn.js "^4.0.0" 205 | inherits "^2.0.1" 206 | minimalistic-assert "^1.0.0" 207 | 208 | asn1@~0.2.3: 209 | version "0.2.3" 210 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 211 | 212 | assert-plus@1.0.0, assert-plus@^1.0.0: 213 | version "1.0.0" 214 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 215 | 216 | assert-plus@^0.2.0: 217 | version "0.2.0" 218 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 219 | 220 | assert@^1.1.1: 221 | version "1.4.1" 222 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 223 | dependencies: 224 | util "0.10.3" 225 | 226 | assign-symbols@^1.0.0: 227 | version "1.0.0" 228 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 229 | 230 | async-each@^1.0.0: 231 | version "1.0.1" 232 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 233 | 234 | async@^2.1.2: 235 | version "2.6.0" 236 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 237 | dependencies: 238 | lodash "^4.14.0" 239 | 240 | asynckit@^0.4.0: 241 | version "0.4.0" 242 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 243 | 244 | atob@^2.0.0: 245 | version "2.0.3" 246 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" 247 | 248 | author-regex@^1.0.0: 249 | version "1.0.0" 250 | resolved "https://registry.yarnpkg.com/author-regex/-/author-regex-1.0.0.tgz#d08885be6b9bbf9439fe087c76287245f0a81450" 251 | 252 | aws-sign2@~0.6.0: 253 | version "0.6.0" 254 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 255 | 256 | aws4@^1.2.1: 257 | version "1.6.0" 258 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 259 | 260 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 261 | version "6.26.0" 262 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 263 | dependencies: 264 | chalk "^1.1.3" 265 | esutils "^2.0.2" 266 | js-tokens "^3.0.2" 267 | 268 | babel-core@^6.24.1, babel-core@^6.26.0: 269 | version "6.26.0" 270 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 271 | dependencies: 272 | babel-code-frame "^6.26.0" 273 | babel-generator "^6.26.0" 274 | babel-helpers "^6.24.1" 275 | babel-messages "^6.23.0" 276 | babel-register "^6.26.0" 277 | babel-runtime "^6.26.0" 278 | babel-template "^6.26.0" 279 | babel-traverse "^6.26.0" 280 | babel-types "^6.26.0" 281 | babylon "^6.18.0" 282 | convert-source-map "^1.5.0" 283 | debug "^2.6.8" 284 | json5 "^0.5.1" 285 | lodash "^4.17.4" 286 | minimatch "^3.0.4" 287 | path-is-absolute "^1.0.1" 288 | private "^0.1.7" 289 | slash "^1.0.0" 290 | source-map "^0.5.6" 291 | 292 | babel-generator@^6.26.0: 293 | version "6.26.1" 294 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 295 | dependencies: 296 | babel-messages "^6.23.0" 297 | babel-runtime "^6.26.0" 298 | babel-types "^6.26.0" 299 | detect-indent "^4.0.0" 300 | jsesc "^1.3.0" 301 | lodash "^4.17.4" 302 | source-map "^0.5.7" 303 | trim-right "^1.0.1" 304 | 305 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 308 | dependencies: 309 | babel-helper-explode-assignable-expression "^6.24.1" 310 | babel-runtime "^6.22.0" 311 | babel-types "^6.24.1" 312 | 313 | babel-helper-builder-react-jsx@^6.24.1: 314 | version "6.26.0" 315 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 316 | dependencies: 317 | babel-runtime "^6.26.0" 318 | babel-types "^6.26.0" 319 | esutils "^2.0.2" 320 | 321 | babel-helper-call-delegate@^6.24.1: 322 | version "6.24.1" 323 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 324 | dependencies: 325 | babel-helper-hoist-variables "^6.24.1" 326 | babel-runtime "^6.22.0" 327 | babel-traverse "^6.24.1" 328 | babel-types "^6.24.1" 329 | 330 | babel-helper-define-map@^6.24.1: 331 | version "6.26.0" 332 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 333 | dependencies: 334 | babel-helper-function-name "^6.24.1" 335 | babel-runtime "^6.26.0" 336 | babel-types "^6.26.0" 337 | lodash "^4.17.4" 338 | 339 | babel-helper-explode-assignable-expression@^6.24.1: 340 | version "6.24.1" 341 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 342 | dependencies: 343 | babel-runtime "^6.22.0" 344 | babel-traverse "^6.24.1" 345 | babel-types "^6.24.1" 346 | 347 | babel-helper-function-name@^6.24.1: 348 | version "6.24.1" 349 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 350 | dependencies: 351 | babel-helper-get-function-arity "^6.24.1" 352 | babel-runtime "^6.22.0" 353 | babel-template "^6.24.1" 354 | babel-traverse "^6.24.1" 355 | babel-types "^6.24.1" 356 | 357 | babel-helper-get-function-arity@^6.24.1: 358 | version "6.24.1" 359 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 360 | dependencies: 361 | babel-runtime "^6.22.0" 362 | babel-types "^6.24.1" 363 | 364 | babel-helper-hoist-variables@^6.24.1: 365 | version "6.24.1" 366 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 367 | dependencies: 368 | babel-runtime "^6.22.0" 369 | babel-types "^6.24.1" 370 | 371 | babel-helper-optimise-call-expression@^6.24.1: 372 | version "6.24.1" 373 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 374 | dependencies: 375 | babel-runtime "^6.22.0" 376 | babel-types "^6.24.1" 377 | 378 | babel-helper-regex@^6.24.1: 379 | version "6.26.0" 380 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 381 | dependencies: 382 | babel-runtime "^6.26.0" 383 | babel-types "^6.26.0" 384 | lodash "^4.17.4" 385 | 386 | babel-helper-remap-async-to-generator@^6.24.1: 387 | version "6.24.1" 388 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 389 | dependencies: 390 | babel-helper-function-name "^6.24.1" 391 | babel-runtime "^6.22.0" 392 | babel-template "^6.24.1" 393 | babel-traverse "^6.24.1" 394 | babel-types "^6.24.1" 395 | 396 | babel-helper-replace-supers@^6.24.1: 397 | version "6.24.1" 398 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 399 | dependencies: 400 | babel-helper-optimise-call-expression "^6.24.1" 401 | babel-messages "^6.23.0" 402 | babel-runtime "^6.22.0" 403 | babel-template "^6.24.1" 404 | babel-traverse "^6.24.1" 405 | babel-types "^6.24.1" 406 | 407 | babel-helpers@^6.24.1: 408 | version "6.24.1" 409 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 410 | dependencies: 411 | babel-runtime "^6.22.0" 412 | babel-template "^6.24.1" 413 | 414 | babel-loader@^7.1.0: 415 | version "7.1.4" 416 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.4.tgz#e3463938bd4e6d55d1c174c5485d406a188ed015" 417 | dependencies: 418 | find-cache-dir "^1.0.0" 419 | loader-utils "^1.0.2" 420 | mkdirp "^0.5.1" 421 | 422 | babel-messages@^6.23.0: 423 | version "6.23.0" 424 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 425 | dependencies: 426 | babel-runtime "^6.22.0" 427 | 428 | babel-plugin-check-es2015-constants@^6.22.0: 429 | version "6.22.0" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 431 | dependencies: 432 | babel-runtime "^6.22.0" 433 | 434 | babel-plugin-syntax-async-functions@^6.8.0: 435 | version "6.13.0" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 437 | 438 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 439 | version "6.13.0" 440 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 441 | 442 | babel-plugin-syntax-flow@^6.18.0: 443 | version "6.18.0" 444 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 445 | 446 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 447 | version "6.18.0" 448 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 449 | 450 | babel-plugin-syntax-object-rest-spread@^6.8.0: 451 | version "6.13.0" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 453 | 454 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 455 | version "6.22.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 457 | 458 | babel-plugin-transform-async-to-generator@^6.22.0: 459 | version "6.24.1" 460 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 461 | dependencies: 462 | babel-helper-remap-async-to-generator "^6.24.1" 463 | babel-plugin-syntax-async-functions "^6.8.0" 464 | babel-runtime "^6.22.0" 465 | 466 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 467 | version "6.22.0" 468 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 469 | dependencies: 470 | babel-runtime "^6.22.0" 471 | 472 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 473 | version "6.22.0" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 475 | dependencies: 476 | babel-runtime "^6.22.0" 477 | 478 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 479 | version "6.26.0" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 481 | dependencies: 482 | babel-runtime "^6.26.0" 483 | babel-template "^6.26.0" 484 | babel-traverse "^6.26.0" 485 | babel-types "^6.26.0" 486 | lodash "^4.17.4" 487 | 488 | babel-plugin-transform-es2015-classes@^6.23.0: 489 | version "6.24.1" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 491 | dependencies: 492 | babel-helper-define-map "^6.24.1" 493 | babel-helper-function-name "^6.24.1" 494 | babel-helper-optimise-call-expression "^6.24.1" 495 | babel-helper-replace-supers "^6.24.1" 496 | babel-messages "^6.23.0" 497 | babel-runtime "^6.22.0" 498 | babel-template "^6.24.1" 499 | babel-traverse "^6.24.1" 500 | babel-types "^6.24.1" 501 | 502 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 503 | version "6.24.1" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 505 | dependencies: 506 | babel-runtime "^6.22.0" 507 | babel-template "^6.24.1" 508 | 509 | babel-plugin-transform-es2015-destructuring@^6.23.0: 510 | version "6.23.0" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 512 | dependencies: 513 | babel-runtime "^6.22.0" 514 | 515 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 516 | version "6.24.1" 517 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 518 | dependencies: 519 | babel-runtime "^6.22.0" 520 | babel-types "^6.24.1" 521 | 522 | babel-plugin-transform-es2015-for-of@^6.23.0: 523 | version "6.23.0" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 525 | dependencies: 526 | babel-runtime "^6.22.0" 527 | 528 | babel-plugin-transform-es2015-function-name@^6.22.0: 529 | version "6.24.1" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 531 | dependencies: 532 | babel-helper-function-name "^6.24.1" 533 | babel-runtime "^6.22.0" 534 | babel-types "^6.24.1" 535 | 536 | babel-plugin-transform-es2015-literals@^6.22.0: 537 | version "6.22.0" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 539 | dependencies: 540 | babel-runtime "^6.22.0" 541 | 542 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 543 | version "6.24.1" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 545 | dependencies: 546 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 547 | babel-runtime "^6.22.0" 548 | babel-template "^6.24.1" 549 | 550 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 551 | version "6.26.0" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 553 | dependencies: 554 | babel-plugin-transform-strict-mode "^6.24.1" 555 | babel-runtime "^6.26.0" 556 | babel-template "^6.26.0" 557 | babel-types "^6.26.0" 558 | 559 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 560 | version "6.24.1" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 562 | dependencies: 563 | babel-helper-hoist-variables "^6.24.1" 564 | babel-runtime "^6.22.0" 565 | babel-template "^6.24.1" 566 | 567 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 568 | version "6.24.1" 569 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 570 | dependencies: 571 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 572 | babel-runtime "^6.22.0" 573 | babel-template "^6.24.1" 574 | 575 | babel-plugin-transform-es2015-object-super@^6.22.0: 576 | version "6.24.1" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 578 | dependencies: 579 | babel-helper-replace-supers "^6.24.1" 580 | babel-runtime "^6.22.0" 581 | 582 | babel-plugin-transform-es2015-parameters@^6.23.0: 583 | version "6.24.1" 584 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 585 | dependencies: 586 | babel-helper-call-delegate "^6.24.1" 587 | babel-helper-get-function-arity "^6.24.1" 588 | babel-runtime "^6.22.0" 589 | babel-template "^6.24.1" 590 | babel-traverse "^6.24.1" 591 | babel-types "^6.24.1" 592 | 593 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 594 | version "6.24.1" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 596 | dependencies: 597 | babel-runtime "^6.22.0" 598 | babel-types "^6.24.1" 599 | 600 | babel-plugin-transform-es2015-spread@^6.22.0: 601 | version "6.22.0" 602 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 603 | dependencies: 604 | babel-runtime "^6.22.0" 605 | 606 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 607 | version "6.24.1" 608 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 609 | dependencies: 610 | babel-helper-regex "^6.24.1" 611 | babel-runtime "^6.22.0" 612 | babel-types "^6.24.1" 613 | 614 | babel-plugin-transform-es2015-template-literals@^6.22.0: 615 | version "6.22.0" 616 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 617 | dependencies: 618 | babel-runtime "^6.22.0" 619 | 620 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 621 | version "6.23.0" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 623 | dependencies: 624 | babel-runtime "^6.22.0" 625 | 626 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 627 | version "6.24.1" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 629 | dependencies: 630 | babel-helper-regex "^6.24.1" 631 | babel-runtime "^6.22.0" 632 | regexpu-core "^2.0.0" 633 | 634 | babel-plugin-transform-es3-member-expression-literals@^6.22.0: 635 | version "6.22.0" 636 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz#733d3444f3ecc41bef8ed1a6a4e09657b8969ebb" 637 | dependencies: 638 | babel-runtime "^6.22.0" 639 | 640 | babel-plugin-transform-es3-property-literals@^6.22.0: 641 | version "6.22.0" 642 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz#b2078d5842e22abf40f73e8cde9cd3711abd5758" 643 | dependencies: 644 | babel-runtime "^6.22.0" 645 | 646 | babel-plugin-transform-exponentiation-operator@^6.22.0, babel-plugin-transform-exponentiation-operator@^6.24.1: 647 | version "6.24.1" 648 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 649 | dependencies: 650 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 651 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 652 | babel-runtime "^6.22.0" 653 | 654 | babel-plugin-transform-flow-strip-types@^6.22.0: 655 | version "6.22.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 657 | dependencies: 658 | babel-plugin-syntax-flow "^6.18.0" 659 | babel-runtime "^6.22.0" 660 | 661 | babel-plugin-transform-jscript@^6.22.0: 662 | version "6.22.0" 663 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-jscript/-/babel-plugin-transform-jscript-6.22.0.tgz#6e8af12b7aba49e0a809152616ac05690b3352dc" 664 | dependencies: 665 | babel-runtime "^6.22.0" 666 | 667 | babel-plugin-transform-object-rest-spread@^6.23.0: 668 | version "6.26.0" 669 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 670 | dependencies: 671 | babel-plugin-syntax-object-rest-spread "^6.8.0" 672 | babel-runtime "^6.26.0" 673 | 674 | babel-plugin-transform-react-display-name@^6.23.0: 675 | version "6.25.0" 676 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 677 | dependencies: 678 | babel-runtime "^6.22.0" 679 | 680 | babel-plugin-transform-react-jsx-self@^6.22.0: 681 | version "6.22.0" 682 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 683 | dependencies: 684 | babel-plugin-syntax-jsx "^6.8.0" 685 | babel-runtime "^6.22.0" 686 | 687 | babel-plugin-transform-react-jsx-source@^6.22.0: 688 | version "6.22.0" 689 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 690 | dependencies: 691 | babel-plugin-syntax-jsx "^6.8.0" 692 | babel-runtime "^6.22.0" 693 | 694 | babel-plugin-transform-react-jsx@^6.24.1: 695 | version "6.24.1" 696 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 697 | dependencies: 698 | babel-helper-builder-react-jsx "^6.24.1" 699 | babel-plugin-syntax-jsx "^6.8.0" 700 | babel-runtime "^6.22.0" 701 | 702 | babel-plugin-transform-regenerator@^6.22.0: 703 | version "6.26.0" 704 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 705 | dependencies: 706 | regenerator-transform "^0.10.0" 707 | 708 | babel-plugin-transform-strict-mode@^6.24.1: 709 | version "6.24.1" 710 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 711 | dependencies: 712 | babel-runtime "^6.22.0" 713 | babel-types "^6.24.1" 714 | 715 | babel-preset-airbnb@^2.4.0: 716 | version "2.4.0" 717 | resolved "https://registry.yarnpkg.com/babel-preset-airbnb/-/babel-preset-airbnb-2.4.0.tgz#1b1476f3fafd3c7abc22fa97f932f9e021301450" 718 | dependencies: 719 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 720 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 721 | babel-plugin-transform-es2015-template-literals "^6.22.0" 722 | babel-plugin-transform-es3-member-expression-literals "^6.22.0" 723 | babel-plugin-transform-es3-property-literals "^6.22.0" 724 | babel-plugin-transform-exponentiation-operator "^6.24.1" 725 | babel-plugin-transform-jscript "^6.22.0" 726 | babel-plugin-transform-object-rest-spread "^6.23.0" 727 | babel-preset-env "^1.5.2" 728 | babel-preset-react "^6.24.1" 729 | object.assign "^4.0.4" 730 | 731 | babel-preset-env@^1.5.2: 732 | version "1.6.1" 733 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 734 | dependencies: 735 | babel-plugin-check-es2015-constants "^6.22.0" 736 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 737 | babel-plugin-transform-async-to-generator "^6.22.0" 738 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 739 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 740 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 741 | babel-plugin-transform-es2015-classes "^6.23.0" 742 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 743 | babel-plugin-transform-es2015-destructuring "^6.23.0" 744 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 745 | babel-plugin-transform-es2015-for-of "^6.23.0" 746 | babel-plugin-transform-es2015-function-name "^6.22.0" 747 | babel-plugin-transform-es2015-literals "^6.22.0" 748 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 749 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 750 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 751 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 752 | babel-plugin-transform-es2015-object-super "^6.22.0" 753 | babel-plugin-transform-es2015-parameters "^6.23.0" 754 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 755 | babel-plugin-transform-es2015-spread "^6.22.0" 756 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 757 | babel-plugin-transform-es2015-template-literals "^6.22.0" 758 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 759 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 760 | babel-plugin-transform-exponentiation-operator "^6.22.0" 761 | babel-plugin-transform-regenerator "^6.22.0" 762 | browserslist "^2.1.2" 763 | invariant "^2.2.2" 764 | semver "^5.3.0" 765 | 766 | babel-preset-flow@^6.23.0: 767 | version "6.23.0" 768 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 769 | dependencies: 770 | babel-plugin-transform-flow-strip-types "^6.22.0" 771 | 772 | babel-preset-react@^6.24.1: 773 | version "6.24.1" 774 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 775 | dependencies: 776 | babel-plugin-syntax-jsx "^6.3.13" 777 | babel-plugin-transform-react-display-name "^6.23.0" 778 | babel-plugin-transform-react-jsx "^6.24.1" 779 | babel-plugin-transform-react-jsx-self "^6.22.0" 780 | babel-plugin-transform-react-jsx-source "^6.22.0" 781 | babel-preset-flow "^6.23.0" 782 | 783 | babel-register@^6.26.0: 784 | version "6.26.0" 785 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 786 | dependencies: 787 | babel-core "^6.26.0" 788 | babel-runtime "^6.26.0" 789 | core-js "^2.5.0" 790 | home-or-tmp "^2.0.0" 791 | lodash "^4.17.4" 792 | mkdirp "^0.5.1" 793 | source-map-support "^0.4.15" 794 | 795 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 796 | version "6.26.0" 797 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 798 | dependencies: 799 | core-js "^2.4.0" 800 | regenerator-runtime "^0.11.0" 801 | 802 | babel-template@^6.24.1, babel-template@^6.26.0: 803 | version "6.26.0" 804 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 805 | dependencies: 806 | babel-runtime "^6.26.0" 807 | babel-traverse "^6.26.0" 808 | babel-types "^6.26.0" 809 | babylon "^6.18.0" 810 | lodash "^4.17.4" 811 | 812 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 813 | version "6.26.0" 814 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 815 | dependencies: 816 | babel-code-frame "^6.26.0" 817 | babel-messages "^6.23.0" 818 | babel-runtime "^6.26.0" 819 | babel-types "^6.26.0" 820 | babylon "^6.18.0" 821 | debug "^2.6.8" 822 | globals "^9.18.0" 823 | invariant "^2.2.2" 824 | lodash "^4.17.4" 825 | 826 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 827 | version "6.26.0" 828 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 829 | dependencies: 830 | babel-runtime "^6.26.0" 831 | esutils "^2.0.2" 832 | lodash "^4.17.4" 833 | to-fast-properties "^1.0.3" 834 | 835 | babylon@^6.18.0: 836 | version "6.18.0" 837 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 838 | 839 | balanced-match@^1.0.0: 840 | version "1.0.0" 841 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 842 | 843 | base64-js@^1.0.2: 844 | version "1.2.3" 845 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.3.tgz#fb13668233d9614cf5fb4bce95a9ba4096cdf801" 846 | 847 | base@^0.11.1: 848 | version "0.11.2" 849 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 850 | dependencies: 851 | cache-base "^1.0.1" 852 | class-utils "^0.3.5" 853 | component-emitter "^1.2.1" 854 | define-property "^1.0.0" 855 | isobject "^3.0.1" 856 | mixin-deep "^1.2.0" 857 | pascalcase "^0.1.1" 858 | 859 | bcrypt-pbkdf@^1.0.0: 860 | version "1.0.1" 861 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 862 | dependencies: 863 | tweetnacl "^0.14.3" 864 | 865 | big.js@^3.1.3: 866 | version "3.2.0" 867 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 868 | 869 | binary-extensions@^1.0.0: 870 | version "1.11.0" 871 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 872 | 873 | block-stream@*: 874 | version "0.0.9" 875 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 876 | dependencies: 877 | inherits "~2.0.0" 878 | 879 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 880 | version "4.11.8" 881 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 882 | 883 | boom@2.x.x: 884 | version "2.10.1" 885 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 886 | dependencies: 887 | hoek "2.x.x" 888 | 889 | brace-expansion@^1.1.7: 890 | version "1.1.11" 891 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 892 | dependencies: 893 | balanced-match "^1.0.0" 894 | concat-map "0.0.1" 895 | 896 | braces@^2.3.0, braces@^2.3.1: 897 | version "2.3.1" 898 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" 899 | dependencies: 900 | arr-flatten "^1.1.0" 901 | array-unique "^0.3.2" 902 | define-property "^1.0.0" 903 | extend-shallow "^2.0.1" 904 | fill-range "^4.0.0" 905 | isobject "^3.0.1" 906 | kind-of "^6.0.2" 907 | repeat-element "^1.1.2" 908 | snapdragon "^0.8.1" 909 | snapdragon-node "^2.0.1" 910 | split-string "^3.0.2" 911 | to-regex "^3.0.1" 912 | 913 | brorand@^1.0.1: 914 | version "1.1.0" 915 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 916 | 917 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 918 | version "1.1.1" 919 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 920 | dependencies: 921 | buffer-xor "^1.0.3" 922 | cipher-base "^1.0.0" 923 | create-hash "^1.1.0" 924 | evp_bytestokey "^1.0.3" 925 | inherits "^2.0.1" 926 | safe-buffer "^5.0.1" 927 | 928 | browserify-cipher@^1.0.0: 929 | version "1.0.0" 930 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 931 | dependencies: 932 | browserify-aes "^1.0.4" 933 | browserify-des "^1.0.0" 934 | evp_bytestokey "^1.0.0" 935 | 936 | browserify-des@^1.0.0: 937 | version "1.0.0" 938 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 939 | dependencies: 940 | cipher-base "^1.0.1" 941 | des.js "^1.0.0" 942 | inherits "^2.0.1" 943 | 944 | browserify-rsa@^4.0.0: 945 | version "4.0.1" 946 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 947 | dependencies: 948 | bn.js "^4.1.0" 949 | randombytes "^2.0.1" 950 | 951 | browserify-sign@^4.0.0: 952 | version "4.0.4" 953 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 954 | dependencies: 955 | bn.js "^4.1.1" 956 | browserify-rsa "^4.0.0" 957 | create-hash "^1.1.0" 958 | create-hmac "^1.1.2" 959 | elliptic "^6.0.0" 960 | inherits "^2.0.1" 961 | parse-asn1 "^5.0.0" 962 | 963 | browserify-zlib@^0.2.0: 964 | version "0.2.0" 965 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 966 | dependencies: 967 | pako "~1.0.5" 968 | 969 | browserslist@^2.1.2: 970 | version "2.11.3" 971 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" 972 | dependencies: 973 | caniuse-lite "^1.0.30000792" 974 | electron-to-chromium "^1.3.30" 975 | 976 | buffer-xor@^1.0.3: 977 | version "1.0.3" 978 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 979 | 980 | buffer@^4.3.0: 981 | version "4.9.1" 982 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 983 | dependencies: 984 | base64-js "^1.0.2" 985 | ieee754 "^1.1.4" 986 | isarray "^1.0.0" 987 | 988 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 989 | version "1.1.1" 990 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 991 | 992 | builtin-status-codes@^3.0.0: 993 | version "3.0.0" 994 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 995 | 996 | cache-base@^1.0.1: 997 | version "1.0.1" 998 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 999 | dependencies: 1000 | collection-visit "^1.0.0" 1001 | component-emitter "^1.2.1" 1002 | get-value "^2.0.6" 1003 | has-value "^1.0.0" 1004 | isobject "^3.0.1" 1005 | set-value "^2.0.0" 1006 | to-object-path "^0.3.0" 1007 | union-value "^1.0.0" 1008 | unset-value "^1.0.0" 1009 | 1010 | caller-path@^0.1.0: 1011 | version "0.1.0" 1012 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 1013 | dependencies: 1014 | callsites "^0.2.0" 1015 | 1016 | callsites@^0.2.0: 1017 | version "0.2.0" 1018 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 1019 | 1020 | camelcase@^1.0.2: 1021 | version "1.2.1" 1022 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1023 | 1024 | camelcase@^4.1.0: 1025 | version "4.1.0" 1026 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 1027 | 1028 | caniuse-lite@^1.0.30000792: 1029 | version "1.0.30000815" 1030 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000815.tgz#3a4258e6850362185adb11b0d754a48402d35bf6" 1031 | 1032 | caseless@~0.12.0: 1033 | version "0.12.0" 1034 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1035 | 1036 | center-align@^0.1.1: 1037 | version "0.1.3" 1038 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1039 | dependencies: 1040 | align-text "^0.1.3" 1041 | lazy-cache "^1.0.3" 1042 | 1043 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 1044 | version "1.1.3" 1045 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1046 | dependencies: 1047 | ansi-styles "^2.2.1" 1048 | escape-string-regexp "^1.0.2" 1049 | has-ansi "^2.0.0" 1050 | strip-ansi "^3.0.0" 1051 | supports-color "^2.0.0" 1052 | 1053 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 1054 | version "2.3.2" 1055 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" 1056 | dependencies: 1057 | ansi-styles "^3.2.1" 1058 | escape-string-regexp "^1.0.5" 1059 | supports-color "^5.3.0" 1060 | 1061 | chardet@^0.4.0: 1062 | version "0.4.2" 1063 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 1064 | 1065 | chokidar@^2.0.2: 1066 | version "2.0.2" 1067 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.2.tgz#4dc65139eeb2714977735b6a35d06e97b494dfd7" 1068 | dependencies: 1069 | anymatch "^2.0.0" 1070 | async-each "^1.0.0" 1071 | braces "^2.3.0" 1072 | glob-parent "^3.1.0" 1073 | inherits "^2.0.1" 1074 | is-binary-path "^1.0.0" 1075 | is-glob "^4.0.0" 1076 | normalize-path "^2.1.1" 1077 | path-is-absolute "^1.0.0" 1078 | readdirp "^2.0.0" 1079 | upath "^1.0.0" 1080 | optionalDependencies: 1081 | fsevents "^1.0.0" 1082 | 1083 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 1084 | version "1.0.4" 1085 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 1086 | dependencies: 1087 | inherits "^2.0.1" 1088 | safe-buffer "^5.0.1" 1089 | 1090 | circular-json@^0.3.1: 1091 | version "0.3.3" 1092 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 1093 | 1094 | class-utils@^0.3.5: 1095 | version "0.3.6" 1096 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 1097 | dependencies: 1098 | arr-union "^3.1.0" 1099 | define-property "^0.2.5" 1100 | isobject "^3.0.0" 1101 | static-extend "^0.1.1" 1102 | 1103 | cli-cursor@^1.0.2: 1104 | version "1.0.2" 1105 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1106 | dependencies: 1107 | restore-cursor "^1.0.1" 1108 | 1109 | cli-cursor@^2.1.0: 1110 | version "2.1.0" 1111 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 1112 | dependencies: 1113 | restore-cursor "^2.0.0" 1114 | 1115 | cli-spinners@^0.1.2: 1116 | version "0.1.2" 1117 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 1118 | 1119 | cli-truncate@^0.2.1: 1120 | version "0.2.1" 1121 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 1122 | dependencies: 1123 | slice-ansi "0.0.4" 1124 | string-width "^1.0.1" 1125 | 1126 | cli-width@^2.0.0: 1127 | version "2.2.0" 1128 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 1129 | 1130 | cliui@^2.1.0: 1131 | version "2.1.0" 1132 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1133 | dependencies: 1134 | center-align "^0.1.1" 1135 | right-align "^0.1.1" 1136 | wordwrap "0.0.2" 1137 | 1138 | cliui@^3.2.0: 1139 | version "3.2.0" 1140 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1141 | dependencies: 1142 | string-width "^1.0.1" 1143 | strip-ansi "^3.0.1" 1144 | wrap-ansi "^2.0.0" 1145 | 1146 | co@^4.6.0: 1147 | version "4.6.0" 1148 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1149 | 1150 | cocoascript-class@^0.1.2: 1151 | version "0.1.2" 1152 | resolved "https://registry.yarnpkg.com/cocoascript-class/-/cocoascript-class-0.1.2.tgz#dab25f20389946d9986c1812b88ac3783eec42d3" 1153 | 1154 | code-point-at@^1.0.0: 1155 | version "1.1.0" 1156 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1157 | 1158 | collection-visit@^1.0.0: 1159 | version "1.0.0" 1160 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1161 | dependencies: 1162 | map-visit "^1.0.0" 1163 | object-visit "^1.0.0" 1164 | 1165 | color-convert@^1.9.0: 1166 | version "1.9.1" 1167 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 1168 | dependencies: 1169 | color-name "^1.1.1" 1170 | 1171 | color-name@^1.1.1: 1172 | version "1.1.3" 1173 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1174 | 1175 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1176 | version "1.0.6" 1177 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 1178 | dependencies: 1179 | delayed-stream "~1.0.0" 1180 | 1181 | commander@^2.11.0, commander@^2.9.0: 1182 | version "2.15.0" 1183 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.0.tgz#ad2a23a1c3b036e392469b8012cec6b33b4c1322" 1184 | 1185 | commondir@^1.0.1: 1186 | version "1.0.1" 1187 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1188 | 1189 | component-emitter@^1.2.1: 1190 | version "1.2.1" 1191 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1192 | 1193 | concat-map@0.0.1: 1194 | version "0.0.1" 1195 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1196 | 1197 | concat-stream@^1.4.7, concat-stream@^1.6.0: 1198 | version "1.6.1" 1199 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.1.tgz#261b8f518301f1d834e36342b9fea095d2620a26" 1200 | dependencies: 1201 | inherits "^2.0.3" 1202 | readable-stream "^2.2.2" 1203 | typedarray "^0.0.6" 1204 | 1205 | console-browserify@^1.1.0: 1206 | version "1.1.0" 1207 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1208 | dependencies: 1209 | date-now "^0.1.4" 1210 | 1211 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1212 | version "1.1.0" 1213 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1214 | 1215 | constants-browserify@^1.0.0: 1216 | version "1.0.0" 1217 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1218 | 1219 | contains-path@^0.1.0: 1220 | version "0.1.0" 1221 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1222 | 1223 | convert-source-map@^1.5.0: 1224 | version "1.5.1" 1225 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1226 | 1227 | copy-descriptor@^0.1.0: 1228 | version "0.1.1" 1229 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1230 | 1231 | core-js@^2.4.0, core-js@^2.5.0: 1232 | version "2.5.3" 1233 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1234 | 1235 | core-util-is@1.0.2, core-util-is@~1.0.0: 1236 | version "1.0.2" 1237 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1238 | 1239 | coscript@^1.0.0: 1240 | version "1.0.0" 1241 | resolved "https://registry.yarnpkg.com/coscript/-/coscript-1.0.0.tgz#1a0ef8d5f8b4a67901b97ae59bd2f51e6cc6b0f1" 1242 | 1243 | cosmiconfig@^1.1.0: 1244 | version "1.1.0" 1245 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 1246 | dependencies: 1247 | graceful-fs "^4.1.2" 1248 | js-yaml "^3.4.3" 1249 | minimist "^1.2.0" 1250 | object-assign "^4.0.1" 1251 | os-homedir "^1.0.1" 1252 | parse-json "^2.2.0" 1253 | pinkie-promise "^2.0.0" 1254 | require-from-string "^1.1.0" 1255 | 1256 | create-ecdh@^4.0.0: 1257 | version "4.0.0" 1258 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1259 | dependencies: 1260 | bn.js "^4.1.0" 1261 | elliptic "^6.0.0" 1262 | 1263 | create-hash@^1.1.0, create-hash@^1.1.2: 1264 | version "1.1.3" 1265 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 1266 | dependencies: 1267 | cipher-base "^1.0.1" 1268 | inherits "^2.0.1" 1269 | ripemd160 "^2.0.0" 1270 | sha.js "^2.4.0" 1271 | 1272 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 1273 | version "1.1.6" 1274 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 1275 | dependencies: 1276 | cipher-base "^1.0.3" 1277 | create-hash "^1.1.0" 1278 | inherits "^2.0.1" 1279 | ripemd160 "^2.0.0" 1280 | safe-buffer "^5.0.1" 1281 | sha.js "^2.4.8" 1282 | 1283 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1284 | version "5.1.0" 1285 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1286 | dependencies: 1287 | lru-cache "^4.0.1" 1288 | shebang-command "^1.2.0" 1289 | which "^1.2.9" 1290 | 1291 | cryptiles@2.x.x: 1292 | version "2.0.5" 1293 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1294 | dependencies: 1295 | boom "2.x.x" 1296 | 1297 | crypto-browserify@^3.11.0: 1298 | version "3.12.0" 1299 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1300 | dependencies: 1301 | browserify-cipher "^1.0.0" 1302 | browserify-sign "^4.0.0" 1303 | create-ecdh "^4.0.0" 1304 | create-hash "^1.1.0" 1305 | create-hmac "^1.1.0" 1306 | diffie-hellman "^5.0.0" 1307 | inherits "^2.0.1" 1308 | pbkdf2 "^3.0.3" 1309 | public-encrypt "^4.0.0" 1310 | randombytes "^2.0.0" 1311 | randomfill "^1.0.3" 1312 | 1313 | d@1: 1314 | version "1.0.0" 1315 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 1316 | dependencies: 1317 | es5-ext "^0.10.9" 1318 | 1319 | dashdash@^1.12.0: 1320 | version "1.14.1" 1321 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1322 | dependencies: 1323 | assert-plus "^1.0.0" 1324 | 1325 | date-fns@^1.27.2: 1326 | version "1.29.0" 1327 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" 1328 | 1329 | date-now@^0.1.4: 1330 | version "0.1.4" 1331 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1332 | 1333 | debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1334 | version "2.6.9" 1335 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1336 | dependencies: 1337 | ms "2.0.0" 1338 | 1339 | debug@^3.1.0: 1340 | version "3.1.0" 1341 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1342 | dependencies: 1343 | ms "2.0.0" 1344 | 1345 | decamelize@^1.0.0, decamelize@^1.1.1: 1346 | version "1.2.0" 1347 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1348 | 1349 | decode-uri-component@^0.2.0: 1350 | version "0.2.0" 1351 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1352 | 1353 | deep-extend@~0.4.0: 1354 | version "0.4.2" 1355 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1356 | 1357 | deep-is@~0.1.3: 1358 | version "0.1.3" 1359 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1360 | 1361 | define-properties@^1.1.2: 1362 | version "1.1.2" 1363 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1364 | dependencies: 1365 | foreach "^2.0.5" 1366 | object-keys "^1.0.8" 1367 | 1368 | define-property@^0.2.5: 1369 | version "0.2.5" 1370 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1371 | dependencies: 1372 | is-descriptor "^0.1.0" 1373 | 1374 | define-property@^1.0.0: 1375 | version "1.0.0" 1376 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1377 | dependencies: 1378 | is-descriptor "^1.0.0" 1379 | 1380 | define-property@^2.0.2: 1381 | version "2.0.2" 1382 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1383 | dependencies: 1384 | is-descriptor "^1.0.2" 1385 | isobject "^3.0.1" 1386 | 1387 | del@^2.0.2: 1388 | version "2.2.2" 1389 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1390 | dependencies: 1391 | globby "^5.0.0" 1392 | is-path-cwd "^1.0.0" 1393 | is-path-in-cwd "^1.0.0" 1394 | object-assign "^4.0.1" 1395 | pify "^2.0.0" 1396 | pinkie-promise "^2.0.0" 1397 | rimraf "^2.2.8" 1398 | 1399 | delayed-stream@~1.0.0: 1400 | version "1.0.0" 1401 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1402 | 1403 | delegates@^1.0.0: 1404 | version "1.0.0" 1405 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1406 | 1407 | des.js@^1.0.0: 1408 | version "1.0.0" 1409 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1410 | dependencies: 1411 | inherits "^2.0.1" 1412 | minimalistic-assert "^1.0.0" 1413 | 1414 | detect-indent@^4.0.0: 1415 | version "4.0.0" 1416 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1417 | dependencies: 1418 | repeating "^2.0.0" 1419 | 1420 | detect-libc@^1.0.2: 1421 | version "1.0.3" 1422 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1423 | 1424 | diffie-hellman@^5.0.0: 1425 | version "5.0.2" 1426 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1427 | dependencies: 1428 | bn.js "^4.1.0" 1429 | miller-rabin "^4.0.0" 1430 | randombytes "^2.0.0" 1431 | 1432 | doctrine@1.5.0: 1433 | version "1.5.0" 1434 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1435 | dependencies: 1436 | esutils "^2.0.2" 1437 | isarray "^1.0.0" 1438 | 1439 | doctrine@^2.1.0: 1440 | version "2.1.0" 1441 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 1442 | dependencies: 1443 | esutils "^2.0.2" 1444 | 1445 | domain-browser@^1.1.1: 1446 | version "1.2.0" 1447 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 1448 | 1449 | ecc-jsbn@~0.1.1: 1450 | version "0.1.1" 1451 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1452 | dependencies: 1453 | jsbn "~0.1.0" 1454 | 1455 | electron-to-chromium@^1.3.30: 1456 | version "1.3.38" 1457 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.38.tgz#49234b00c0592f62921f9426bccefee23de086bb" 1458 | 1459 | elegant-spinner@^1.0.1: 1460 | version "1.0.1" 1461 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1462 | 1463 | elliptic@^6.0.0: 1464 | version "6.4.0" 1465 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1466 | dependencies: 1467 | bn.js "^4.4.0" 1468 | brorand "^1.0.1" 1469 | hash.js "^1.0.0" 1470 | hmac-drbg "^1.0.0" 1471 | inherits "^2.0.1" 1472 | minimalistic-assert "^1.0.0" 1473 | minimalistic-crypto-utils "^1.0.0" 1474 | 1475 | emojis-list@^2.0.0: 1476 | version "2.1.0" 1477 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1478 | 1479 | enhanced-resolve@^3.4.0: 1480 | version "3.4.1" 1481 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 1482 | dependencies: 1483 | graceful-fs "^4.1.2" 1484 | memory-fs "^0.4.0" 1485 | object-assign "^4.0.1" 1486 | tapable "^0.2.7" 1487 | 1488 | errno@^0.1.3: 1489 | version "0.1.7" 1490 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 1491 | dependencies: 1492 | prr "~1.0.1" 1493 | 1494 | error-ex@^1.2.0: 1495 | version "1.3.1" 1496 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1497 | dependencies: 1498 | is-arrayish "^0.2.1" 1499 | 1500 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 1501 | version "0.10.40" 1502 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.40.tgz#ab3d2179b943008c5e9ef241beb25ef41424c774" 1503 | dependencies: 1504 | es6-iterator "~2.0.3" 1505 | es6-symbol "~3.1.1" 1506 | 1507 | es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: 1508 | version "2.0.3" 1509 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 1510 | dependencies: 1511 | d "1" 1512 | es5-ext "^0.10.35" 1513 | es6-symbol "^3.1.1" 1514 | 1515 | es6-map@^0.1.3: 1516 | version "0.1.5" 1517 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1518 | dependencies: 1519 | d "1" 1520 | es5-ext "~0.10.14" 1521 | es6-iterator "~2.0.1" 1522 | es6-set "~0.1.5" 1523 | es6-symbol "~3.1.1" 1524 | event-emitter "~0.3.5" 1525 | 1526 | es6-set@~0.1.5: 1527 | version "0.1.5" 1528 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1529 | dependencies: 1530 | d "1" 1531 | es5-ext "~0.10.14" 1532 | es6-iterator "~2.0.1" 1533 | es6-symbol "3.1.1" 1534 | event-emitter "~0.3.5" 1535 | 1536 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 1537 | version "3.1.1" 1538 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1539 | dependencies: 1540 | d "1" 1541 | es5-ext "~0.10.14" 1542 | 1543 | es6-weak-map@^2.0.1: 1544 | version "2.0.2" 1545 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1546 | dependencies: 1547 | d "1" 1548 | es5-ext "^0.10.14" 1549 | es6-iterator "^2.0.1" 1550 | es6-symbol "^3.1.1" 1551 | 1552 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1553 | version "1.0.5" 1554 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1555 | 1556 | escope@^3.6.0: 1557 | version "3.6.0" 1558 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1559 | dependencies: 1560 | es6-map "^0.1.3" 1561 | es6-weak-map "^2.0.1" 1562 | esrecurse "^4.1.0" 1563 | estraverse "^4.1.1" 1564 | 1565 | eslint-config-airbnb-base@^12.0.2: 1566 | version "12.1.0" 1567 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944" 1568 | dependencies: 1569 | eslint-restricted-globals "^0.1.1" 1570 | 1571 | eslint-config-prettier@^2.6.0: 1572 | version "2.9.0" 1573 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.9.0.tgz#5ecd65174d486c22dff389fe036febf502d468a3" 1574 | dependencies: 1575 | get-stdin "^5.0.1" 1576 | 1577 | eslint-import-resolver-node@^0.3.1: 1578 | version "0.3.2" 1579 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 1580 | dependencies: 1581 | debug "^2.6.9" 1582 | resolve "^1.5.0" 1583 | 1584 | eslint-module-utils@^2.1.1: 1585 | version "2.1.1" 1586 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1587 | dependencies: 1588 | debug "^2.6.8" 1589 | pkg-dir "^1.0.0" 1590 | 1591 | eslint-plugin-import@^2.7.0: 1592 | version "2.9.0" 1593 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.9.0.tgz#26002efbfca5989b7288ac047508bd24f217b169" 1594 | dependencies: 1595 | builtin-modules "^1.1.1" 1596 | contains-path "^0.1.0" 1597 | debug "^2.6.8" 1598 | doctrine "1.5.0" 1599 | eslint-import-resolver-node "^0.3.1" 1600 | eslint-module-utils "^2.1.1" 1601 | has "^1.0.1" 1602 | lodash "^4.17.4" 1603 | minimatch "^3.0.3" 1604 | read-pkg-up "^2.0.0" 1605 | 1606 | eslint-plugin-no-not-accumulator-reassign@^0.1.0: 1607 | version "0.1.0" 1608 | resolved "https://registry.yarnpkg.com/eslint-plugin-no-not-accumulator-reassign/-/eslint-plugin-no-not-accumulator-reassign-0.1.0.tgz#a29fb9323b75ec1130d2c39134ff07a049d9f6a6" 1609 | 1610 | eslint-plugin-prettier@^2.3.1: 1611 | version "2.6.0" 1612 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.0.tgz#33e4e228bdb06142d03c560ce04ec23f6c767dd7" 1613 | dependencies: 1614 | fast-diff "^1.1.1" 1615 | jest-docblock "^21.0.0" 1616 | 1617 | eslint-restricted-globals@^0.1.1: 1618 | version "0.1.1" 1619 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1620 | 1621 | eslint-scope@^3.7.1: 1622 | version "3.7.1" 1623 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1624 | dependencies: 1625 | esrecurse "^4.1.0" 1626 | estraverse "^4.1.1" 1627 | 1628 | eslint-visitor-keys@^1.0.0: 1629 | version "1.0.0" 1630 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 1631 | 1632 | eslint@^4.8.0: 1633 | version "4.18.2" 1634 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.2.tgz#0f81267ad1012e7d2051e186a9004cc2267b8d45" 1635 | dependencies: 1636 | ajv "^5.3.0" 1637 | babel-code-frame "^6.22.0" 1638 | chalk "^2.1.0" 1639 | concat-stream "^1.6.0" 1640 | cross-spawn "^5.1.0" 1641 | debug "^3.1.0" 1642 | doctrine "^2.1.0" 1643 | eslint-scope "^3.7.1" 1644 | eslint-visitor-keys "^1.0.0" 1645 | espree "^3.5.2" 1646 | esquery "^1.0.0" 1647 | esutils "^2.0.2" 1648 | file-entry-cache "^2.0.0" 1649 | functional-red-black-tree "^1.0.1" 1650 | glob "^7.1.2" 1651 | globals "^11.0.1" 1652 | ignore "^3.3.3" 1653 | imurmurhash "^0.1.4" 1654 | inquirer "^3.0.6" 1655 | is-resolvable "^1.0.0" 1656 | js-yaml "^3.9.1" 1657 | json-stable-stringify-without-jsonify "^1.0.1" 1658 | levn "^0.3.0" 1659 | lodash "^4.17.4" 1660 | minimatch "^3.0.2" 1661 | mkdirp "^0.5.1" 1662 | natural-compare "^1.4.0" 1663 | optionator "^0.8.2" 1664 | path-is-inside "^1.0.2" 1665 | pluralize "^7.0.0" 1666 | progress "^2.0.0" 1667 | require-uncached "^1.0.3" 1668 | semver "^5.3.0" 1669 | strip-ansi "^4.0.0" 1670 | strip-json-comments "~2.0.1" 1671 | table "4.0.2" 1672 | text-table "~0.2.0" 1673 | 1674 | espree@^3.5.2: 1675 | version "3.5.4" 1676 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 1677 | dependencies: 1678 | acorn "^5.5.0" 1679 | acorn-jsx "^3.0.0" 1680 | 1681 | esprima@^4.0.0: 1682 | version "4.0.0" 1683 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1684 | 1685 | esquery@^1.0.0: 1686 | version "1.0.0" 1687 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1688 | dependencies: 1689 | estraverse "^4.0.0" 1690 | 1691 | esrecurse@^4.1.0: 1692 | version "4.2.1" 1693 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 1694 | dependencies: 1695 | estraverse "^4.1.0" 1696 | 1697 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 1698 | version "4.2.0" 1699 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1700 | 1701 | esutils@^2.0.2: 1702 | version "2.0.2" 1703 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1704 | 1705 | event-emitter@~0.3.5: 1706 | version "0.3.5" 1707 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1708 | dependencies: 1709 | d "1" 1710 | es5-ext "~0.10.14" 1711 | 1712 | events@^1.0.0: 1713 | version "1.1.1" 1714 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1715 | 1716 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1717 | version "1.0.3" 1718 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1719 | dependencies: 1720 | md5.js "^1.3.4" 1721 | safe-buffer "^5.1.1" 1722 | 1723 | execa@^0.7.0: 1724 | version "0.7.0" 1725 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1726 | dependencies: 1727 | cross-spawn "^5.0.1" 1728 | get-stream "^3.0.0" 1729 | is-stream "^1.1.0" 1730 | npm-run-path "^2.0.0" 1731 | p-finally "^1.0.0" 1732 | signal-exit "^3.0.0" 1733 | strip-eof "^1.0.0" 1734 | 1735 | execa@^0.8.0: 1736 | version "0.8.0" 1737 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 1738 | dependencies: 1739 | cross-spawn "^5.0.1" 1740 | get-stream "^3.0.0" 1741 | is-stream "^1.1.0" 1742 | npm-run-path "^2.0.0" 1743 | p-finally "^1.0.0" 1744 | signal-exit "^3.0.0" 1745 | strip-eof "^1.0.0" 1746 | 1747 | exit-hook@^1.0.0: 1748 | version "1.1.1" 1749 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1750 | 1751 | expand-brackets@^2.1.4: 1752 | version "2.1.4" 1753 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1754 | dependencies: 1755 | debug "^2.3.3" 1756 | define-property "^0.2.5" 1757 | extend-shallow "^2.0.1" 1758 | posix-character-classes "^0.1.0" 1759 | regex-not "^1.0.0" 1760 | snapdragon "^0.8.1" 1761 | to-regex "^3.0.1" 1762 | 1763 | extend-shallow@^2.0.1: 1764 | version "2.0.1" 1765 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1766 | dependencies: 1767 | is-extendable "^0.1.0" 1768 | 1769 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1770 | version "3.0.2" 1771 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1772 | dependencies: 1773 | assign-symbols "^1.0.0" 1774 | is-extendable "^1.0.1" 1775 | 1776 | extend@~3.0.0: 1777 | version "3.0.1" 1778 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1779 | 1780 | external-editor@^2.0.4: 1781 | version "2.1.0" 1782 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1783 | dependencies: 1784 | chardet "^0.4.0" 1785 | iconv-lite "^0.4.17" 1786 | tmp "^0.0.33" 1787 | 1788 | extglob@^2.0.4: 1789 | version "2.0.4" 1790 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1791 | dependencies: 1792 | array-unique "^0.3.2" 1793 | define-property "^1.0.0" 1794 | expand-brackets "^2.1.4" 1795 | extend-shallow "^2.0.1" 1796 | fragment-cache "^0.2.1" 1797 | regex-not "^1.0.0" 1798 | snapdragon "^0.8.1" 1799 | to-regex "^3.0.1" 1800 | 1801 | extsprintf@1.3.0: 1802 | version "1.3.0" 1803 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1804 | 1805 | extsprintf@^1.2.0: 1806 | version "1.4.0" 1807 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1808 | 1809 | fast-deep-equal@^1.0.0: 1810 | version "1.1.0" 1811 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1812 | 1813 | fast-diff@^1.1.1: 1814 | version "1.1.2" 1815 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.2.tgz#4b62c42b8e03de3f848460b639079920695d0154" 1816 | 1817 | fast-json-stable-stringify@^2.0.0: 1818 | version "2.0.0" 1819 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1820 | 1821 | fast-levenshtein@~2.0.4: 1822 | version "2.0.6" 1823 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1824 | 1825 | figures@^1.7.0: 1826 | version "1.7.0" 1827 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1828 | dependencies: 1829 | escape-string-regexp "^1.0.5" 1830 | object-assign "^4.1.0" 1831 | 1832 | figures@^2.0.0: 1833 | version "2.0.0" 1834 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1835 | dependencies: 1836 | escape-string-regexp "^1.0.5" 1837 | 1838 | file-entry-cache@^2.0.0: 1839 | version "2.0.0" 1840 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1841 | dependencies: 1842 | flat-cache "^1.2.1" 1843 | object-assign "^4.0.1" 1844 | 1845 | fill-range@^4.0.0: 1846 | version "4.0.0" 1847 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1848 | dependencies: 1849 | extend-shallow "^2.0.1" 1850 | is-number "^3.0.0" 1851 | repeat-string "^1.6.1" 1852 | to-regex-range "^2.1.0" 1853 | 1854 | find-cache-dir@^1.0.0: 1855 | version "1.0.0" 1856 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" 1857 | dependencies: 1858 | commondir "^1.0.1" 1859 | make-dir "^1.0.0" 1860 | pkg-dir "^2.0.0" 1861 | 1862 | find-up@^1.0.0: 1863 | version "1.1.2" 1864 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1865 | dependencies: 1866 | path-exists "^2.0.0" 1867 | pinkie-promise "^2.0.0" 1868 | 1869 | find-up@^2.0.0, find-up@^2.1.0: 1870 | version "2.1.0" 1871 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1872 | dependencies: 1873 | locate-path "^2.0.0" 1874 | 1875 | flat-cache@^1.2.1: 1876 | version "1.3.0" 1877 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1878 | dependencies: 1879 | circular-json "^0.3.1" 1880 | del "^2.0.2" 1881 | graceful-fs "^4.1.2" 1882 | write "^0.2.1" 1883 | 1884 | for-in@^1.0.2: 1885 | version "1.0.2" 1886 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1887 | 1888 | foreach@^2.0.5: 1889 | version "2.0.5" 1890 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1891 | 1892 | forever-agent@~0.6.1: 1893 | version "0.6.1" 1894 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1895 | 1896 | form-data@~2.1.1: 1897 | version "2.1.4" 1898 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1899 | dependencies: 1900 | asynckit "^0.4.0" 1901 | combined-stream "^1.0.5" 1902 | mime-types "^2.1.12" 1903 | 1904 | fragment-cache@^0.2.1: 1905 | version "0.2.1" 1906 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1907 | dependencies: 1908 | map-cache "^0.2.2" 1909 | 1910 | fs.realpath@^1.0.0: 1911 | version "1.0.0" 1912 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1913 | 1914 | fsevents@^1.0.0: 1915 | version "1.1.3" 1916 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1917 | dependencies: 1918 | nan "^2.3.0" 1919 | node-pre-gyp "^0.6.39" 1920 | 1921 | fstream-ignore@^1.0.5: 1922 | version "1.0.5" 1923 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1924 | dependencies: 1925 | fstream "^1.0.0" 1926 | inherits "2" 1927 | minimatch "^3.0.0" 1928 | 1929 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1930 | version "1.0.11" 1931 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1932 | dependencies: 1933 | graceful-fs "^4.1.2" 1934 | inherits "~2.0.0" 1935 | mkdirp ">=0.5 0" 1936 | rimraf "2" 1937 | 1938 | function-bind@^1.0.2, function-bind@^1.1.1: 1939 | version "1.1.1" 1940 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1941 | 1942 | functional-red-black-tree@^1.0.1: 1943 | version "1.0.1" 1944 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1945 | 1946 | gauge@~2.7.3: 1947 | version "2.7.4" 1948 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1949 | dependencies: 1950 | aproba "^1.0.3" 1951 | console-control-strings "^1.0.0" 1952 | has-unicode "^2.0.0" 1953 | object-assign "^4.1.0" 1954 | signal-exit "^3.0.0" 1955 | string-width "^1.0.1" 1956 | strip-ansi "^3.0.1" 1957 | wide-align "^1.1.0" 1958 | 1959 | get-caller-file@^1.0.1: 1960 | version "1.0.2" 1961 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1962 | 1963 | get-own-enumerable-property-symbols@^2.0.1: 1964 | version "2.0.1" 1965 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-2.0.1.tgz#5c4ad87f2834c4b9b4e84549dc1e0650fb38c24b" 1966 | 1967 | get-stdin@^5.0.1: 1968 | version "5.0.1" 1969 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1970 | 1971 | get-stream@^3.0.0: 1972 | version "3.0.0" 1973 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1974 | 1975 | get-value@^2.0.3, get-value@^2.0.6: 1976 | version "2.0.6" 1977 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1978 | 1979 | getpass@^0.1.1: 1980 | version "0.1.7" 1981 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1982 | dependencies: 1983 | assert-plus "^1.0.0" 1984 | 1985 | glob-parent@^3.1.0: 1986 | version "3.1.0" 1987 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1988 | dependencies: 1989 | is-glob "^3.1.0" 1990 | path-dirname "^1.0.0" 1991 | 1992 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1993 | version "7.1.2" 1994 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1995 | dependencies: 1996 | fs.realpath "^1.0.0" 1997 | inflight "^1.0.4" 1998 | inherits "2" 1999 | minimatch "^3.0.4" 2000 | once "^1.3.0" 2001 | path-is-absolute "^1.0.0" 2002 | 2003 | globals@^11.0.1: 2004 | version "11.3.0" 2005 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0" 2006 | 2007 | globals@^9.18.0: 2008 | version "9.18.0" 2009 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 2010 | 2011 | globby@^5.0.0: 2012 | version "5.0.0" 2013 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2014 | dependencies: 2015 | array-union "^1.0.1" 2016 | arrify "^1.0.0" 2017 | glob "^7.0.3" 2018 | object-assign "^4.0.1" 2019 | pify "^2.0.0" 2020 | pinkie-promise "^2.0.0" 2021 | 2022 | graceful-fs@^4.1.2: 2023 | version "4.1.11" 2024 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2025 | 2026 | har-schema@^1.0.5: 2027 | version "1.0.5" 2028 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 2029 | 2030 | har-validator@~4.2.1: 2031 | version "4.2.1" 2032 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 2033 | dependencies: 2034 | ajv "^4.9.1" 2035 | har-schema "^1.0.5" 2036 | 2037 | has-ansi@^2.0.0: 2038 | version "2.0.0" 2039 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2040 | dependencies: 2041 | ansi-regex "^2.0.0" 2042 | 2043 | has-flag@^2.0.0: 2044 | version "2.0.0" 2045 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 2046 | 2047 | has-flag@^3.0.0: 2048 | version "3.0.0" 2049 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 2050 | 2051 | has-symbols@^1.0.0: 2052 | version "1.0.0" 2053 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" 2054 | 2055 | has-unicode@^2.0.0: 2056 | version "2.0.1" 2057 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2058 | 2059 | has-value@^0.3.1: 2060 | version "0.3.1" 2061 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 2062 | dependencies: 2063 | get-value "^2.0.3" 2064 | has-values "^0.1.4" 2065 | isobject "^2.0.0" 2066 | 2067 | has-value@^1.0.0: 2068 | version "1.0.0" 2069 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 2070 | dependencies: 2071 | get-value "^2.0.6" 2072 | has-values "^1.0.0" 2073 | isobject "^3.0.0" 2074 | 2075 | has-values@^0.1.4: 2076 | version "0.1.4" 2077 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 2078 | 2079 | has-values@^1.0.0: 2080 | version "1.0.0" 2081 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 2082 | dependencies: 2083 | is-number "^3.0.0" 2084 | kind-of "^4.0.0" 2085 | 2086 | has@^1.0.1: 2087 | version "1.0.1" 2088 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2089 | dependencies: 2090 | function-bind "^1.0.2" 2091 | 2092 | hash-base@^2.0.0: 2093 | version "2.0.2" 2094 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 2095 | dependencies: 2096 | inherits "^2.0.1" 2097 | 2098 | hash-base@^3.0.0: 2099 | version "3.0.4" 2100 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 2101 | dependencies: 2102 | inherits "^2.0.1" 2103 | safe-buffer "^5.0.1" 2104 | 2105 | hash.js@^1.0.0, hash.js@^1.0.3: 2106 | version "1.1.3" 2107 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 2108 | dependencies: 2109 | inherits "^2.0.3" 2110 | minimalistic-assert "^1.0.0" 2111 | 2112 | hawk@3.1.3, hawk@~3.1.3: 2113 | version "3.1.3" 2114 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2115 | dependencies: 2116 | boom "2.x.x" 2117 | cryptiles "2.x.x" 2118 | hoek "2.x.x" 2119 | sntp "1.x.x" 2120 | 2121 | hmac-drbg@^1.0.0: 2122 | version "1.0.1" 2123 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 2124 | dependencies: 2125 | hash.js "^1.0.3" 2126 | minimalistic-assert "^1.0.0" 2127 | minimalistic-crypto-utils "^1.0.1" 2128 | 2129 | hoek@2.x.x: 2130 | version "2.16.3" 2131 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2132 | 2133 | home-or-tmp@^2.0.0: 2134 | version "2.0.0" 2135 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2136 | dependencies: 2137 | os-homedir "^1.0.0" 2138 | os-tmpdir "^1.0.1" 2139 | 2140 | hosted-git-info@^2.1.4: 2141 | version "2.6.0" 2142 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 2143 | 2144 | http-signature@~1.1.0: 2145 | version "1.1.1" 2146 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2147 | dependencies: 2148 | assert-plus "^0.2.0" 2149 | jsprim "^1.2.2" 2150 | sshpk "^1.7.0" 2151 | 2152 | https-browserify@^1.0.0: 2153 | version "1.0.0" 2154 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 2155 | 2156 | iconv-lite@^0.4.17: 2157 | version "0.4.19" 2158 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 2159 | 2160 | ieee754@^1.1.4: 2161 | version "1.1.8" 2162 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 2163 | 2164 | ignore@^3.3.3: 2165 | version "3.3.7" 2166 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 2167 | 2168 | imurmurhash@^0.1.4: 2169 | version "0.1.4" 2170 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2171 | 2172 | indent-string@^2.1.0: 2173 | version "2.1.0" 2174 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2175 | dependencies: 2176 | repeating "^2.0.0" 2177 | 2178 | indent-string@^3.0.0: 2179 | version "3.2.0" 2180 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 2181 | 2182 | indexof@0.0.1: 2183 | version "0.0.1" 2184 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2185 | 2186 | inflight@^1.0.4: 2187 | version "1.0.6" 2188 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2189 | dependencies: 2190 | once "^1.3.0" 2191 | wrappy "1" 2192 | 2193 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 2194 | version "2.0.3" 2195 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2196 | 2197 | inherits@2.0.1: 2198 | version "2.0.1" 2199 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2200 | 2201 | ini@~1.3.0: 2202 | version "1.3.5" 2203 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 2204 | 2205 | inquirer@^3.0.6: 2206 | version "3.3.0" 2207 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 2208 | dependencies: 2209 | ansi-escapes "^3.0.0" 2210 | chalk "^2.0.0" 2211 | cli-cursor "^2.1.0" 2212 | cli-width "^2.0.0" 2213 | external-editor "^2.0.4" 2214 | figures "^2.0.0" 2215 | lodash "^4.3.0" 2216 | mute-stream "0.0.7" 2217 | run-async "^2.2.0" 2218 | rx-lite "^4.0.8" 2219 | rx-lite-aggregates "^4.0.8" 2220 | string-width "^2.1.0" 2221 | strip-ansi "^4.0.0" 2222 | through "^2.3.6" 2223 | 2224 | interpret@^1.0.0: 2225 | version "1.1.0" 2226 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 2227 | 2228 | invariant@^2.2.2: 2229 | version "2.2.4" 2230 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 2231 | dependencies: 2232 | loose-envify "^1.0.0" 2233 | 2234 | invert-kv@^1.0.0: 2235 | version "1.0.0" 2236 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2237 | 2238 | is-accessor-descriptor@^0.1.6: 2239 | version "0.1.6" 2240 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 2241 | dependencies: 2242 | kind-of "^3.0.2" 2243 | 2244 | is-accessor-descriptor@^1.0.0: 2245 | version "1.0.0" 2246 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 2247 | dependencies: 2248 | kind-of "^6.0.0" 2249 | 2250 | is-arrayish@^0.2.1: 2251 | version "0.2.1" 2252 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2253 | 2254 | is-binary-path@^1.0.0: 2255 | version "1.0.1" 2256 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2257 | dependencies: 2258 | binary-extensions "^1.0.0" 2259 | 2260 | is-buffer@^1.1.5: 2261 | version "1.1.6" 2262 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 2263 | 2264 | is-builtin-module@^1.0.0: 2265 | version "1.0.0" 2266 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2267 | dependencies: 2268 | builtin-modules "^1.0.0" 2269 | 2270 | is-data-descriptor@^0.1.4: 2271 | version "0.1.4" 2272 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 2273 | dependencies: 2274 | kind-of "^3.0.2" 2275 | 2276 | is-data-descriptor@^1.0.0: 2277 | version "1.0.0" 2278 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 2279 | dependencies: 2280 | kind-of "^6.0.0" 2281 | 2282 | is-descriptor@^0.1.0: 2283 | version "0.1.6" 2284 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 2285 | dependencies: 2286 | is-accessor-descriptor "^0.1.6" 2287 | is-data-descriptor "^0.1.4" 2288 | kind-of "^5.0.0" 2289 | 2290 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 2291 | version "1.0.2" 2292 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 2293 | dependencies: 2294 | is-accessor-descriptor "^1.0.0" 2295 | is-data-descriptor "^1.0.0" 2296 | kind-of "^6.0.2" 2297 | 2298 | is-extendable@^0.1.0, is-extendable@^0.1.1: 2299 | version "0.1.1" 2300 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2301 | 2302 | is-extendable@^1.0.1: 2303 | version "1.0.1" 2304 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 2305 | dependencies: 2306 | is-plain-object "^2.0.4" 2307 | 2308 | is-extglob@^2.1.0, is-extglob@^2.1.1: 2309 | version "2.1.1" 2310 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2311 | 2312 | is-finite@^1.0.0: 2313 | version "1.0.2" 2314 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2315 | dependencies: 2316 | number-is-nan "^1.0.0" 2317 | 2318 | is-fullwidth-code-point@^1.0.0: 2319 | version "1.0.0" 2320 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2321 | dependencies: 2322 | number-is-nan "^1.0.0" 2323 | 2324 | is-fullwidth-code-point@^2.0.0: 2325 | version "2.0.0" 2326 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2327 | 2328 | is-glob@^3.1.0: 2329 | version "3.1.0" 2330 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 2331 | dependencies: 2332 | is-extglob "^2.1.0" 2333 | 2334 | is-glob@^4.0.0: 2335 | version "4.0.0" 2336 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 2337 | dependencies: 2338 | is-extglob "^2.1.1" 2339 | 2340 | is-number@^3.0.0: 2341 | version "3.0.0" 2342 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 2343 | dependencies: 2344 | kind-of "^3.0.2" 2345 | 2346 | is-number@^4.0.0: 2347 | version "4.0.0" 2348 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 2349 | 2350 | is-obj@^1.0.1: 2351 | version "1.0.1" 2352 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2353 | 2354 | is-odd@^2.0.0: 2355 | version "2.0.0" 2356 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 2357 | dependencies: 2358 | is-number "^4.0.0" 2359 | 2360 | is-path-cwd@^1.0.0: 2361 | version "1.0.0" 2362 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2363 | 2364 | is-path-in-cwd@^1.0.0: 2365 | version "1.0.0" 2366 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2367 | dependencies: 2368 | is-path-inside "^1.0.0" 2369 | 2370 | is-path-inside@^1.0.0: 2371 | version "1.0.1" 2372 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 2373 | dependencies: 2374 | path-is-inside "^1.0.1" 2375 | 2376 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2377 | version "2.0.4" 2378 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 2379 | dependencies: 2380 | isobject "^3.0.1" 2381 | 2382 | is-promise@^2.1.0: 2383 | version "2.1.0" 2384 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2385 | 2386 | is-regexp@^1.0.0: 2387 | version "1.0.0" 2388 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 2389 | 2390 | is-resolvable@^1.0.0: 2391 | version "1.1.0" 2392 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 2393 | 2394 | is-stream@^1.1.0: 2395 | version "1.1.0" 2396 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2397 | 2398 | is-typedarray@~1.0.0: 2399 | version "1.0.0" 2400 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2401 | 2402 | is-windows@^1.0.2: 2403 | version "1.0.2" 2404 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 2405 | 2406 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2407 | version "1.0.0" 2408 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2409 | 2410 | isexe@^2.0.0: 2411 | version "2.0.0" 2412 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2413 | 2414 | isobject@^2.0.0: 2415 | version "2.1.0" 2416 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2417 | dependencies: 2418 | isarray "1.0.0" 2419 | 2420 | isobject@^3.0.0, isobject@^3.0.1: 2421 | version "3.0.1" 2422 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2423 | 2424 | isstream@~0.1.2: 2425 | version "0.1.2" 2426 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2427 | 2428 | jest-docblock@^21.0.0: 2429 | version "21.2.0" 2430 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 2431 | 2432 | jest-get-type@^21.2.0: 2433 | version "21.2.0" 2434 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 2435 | 2436 | jest-validate@^21.1.0: 2437 | version "21.2.1" 2438 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 2439 | dependencies: 2440 | chalk "^2.0.1" 2441 | jest-get-type "^21.2.0" 2442 | leven "^2.1.0" 2443 | pretty-format "^21.2.1" 2444 | 2445 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2446 | version "3.0.2" 2447 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2448 | 2449 | js-yaml@^3.10.0, js-yaml@^3.4.3, js-yaml@^3.9.1: 2450 | version "3.11.0" 2451 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 2452 | dependencies: 2453 | argparse "^1.0.7" 2454 | esprima "^4.0.0" 2455 | 2456 | jsbn@~0.1.0: 2457 | version "0.1.1" 2458 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2459 | 2460 | jsesc@^1.3.0: 2461 | version "1.3.0" 2462 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2463 | 2464 | jsesc@~0.5.0: 2465 | version "0.5.0" 2466 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2467 | 2468 | json-loader@^0.5.4: 2469 | version "0.5.7" 2470 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 2471 | 2472 | json-schema-traverse@^0.3.0: 2473 | version "0.3.1" 2474 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2475 | 2476 | json-schema@0.2.3: 2477 | version "0.2.3" 2478 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2479 | 2480 | json-stable-stringify-without-jsonify@^1.0.1: 2481 | version "1.0.1" 2482 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2483 | 2484 | json-stable-stringify@^1.0.1: 2485 | version "1.0.1" 2486 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2487 | dependencies: 2488 | jsonify "~0.0.0" 2489 | 2490 | json-stringify-safe@~5.0.1: 2491 | version "5.0.1" 2492 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2493 | 2494 | json5@^0.5.0, json5@^0.5.1: 2495 | version "0.5.1" 2496 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2497 | 2498 | jsonify@~0.0.0: 2499 | version "0.0.0" 2500 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2501 | 2502 | jsprim@^1.2.2: 2503 | version "1.4.1" 2504 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2505 | dependencies: 2506 | assert-plus "1.0.0" 2507 | extsprintf "1.3.0" 2508 | json-schema "0.2.3" 2509 | verror "1.10.0" 2510 | 2511 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2512 | version "3.2.2" 2513 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2514 | dependencies: 2515 | is-buffer "^1.1.5" 2516 | 2517 | kind-of@^4.0.0: 2518 | version "4.0.0" 2519 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2520 | dependencies: 2521 | is-buffer "^1.1.5" 2522 | 2523 | kind-of@^5.0.0: 2524 | version "5.1.0" 2525 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2526 | 2527 | kind-of@^6.0.0, kind-of@^6.0.2: 2528 | version "6.0.2" 2529 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2530 | 2531 | lazy-cache@^1.0.3: 2532 | version "1.0.4" 2533 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2534 | 2535 | lcid@^1.0.0: 2536 | version "1.0.0" 2537 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2538 | dependencies: 2539 | invert-kv "^1.0.0" 2540 | 2541 | leven@^2.1.0: 2542 | version "2.1.0" 2543 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2544 | 2545 | levn@^0.3.0, levn@~0.3.0: 2546 | version "0.3.0" 2547 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2548 | dependencies: 2549 | prelude-ls "~1.1.2" 2550 | type-check "~0.3.2" 2551 | 2552 | lint-staged@^4.2.3: 2553 | version "4.3.0" 2554 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.3.0.tgz#ed0779ad9a42c0dc62bb3244e522870b41125879" 2555 | dependencies: 2556 | app-root-path "^2.0.0" 2557 | chalk "^2.1.0" 2558 | commander "^2.11.0" 2559 | cosmiconfig "^1.1.0" 2560 | execa "^0.8.0" 2561 | is-glob "^4.0.0" 2562 | jest-validate "^21.1.0" 2563 | listr "^0.12.0" 2564 | lodash "^4.17.4" 2565 | log-symbols "^2.0.0" 2566 | minimatch "^3.0.0" 2567 | npm-which "^3.0.1" 2568 | p-map "^1.1.1" 2569 | staged-git-files "0.0.4" 2570 | stringify-object "^3.2.0" 2571 | 2572 | listr-silent-renderer@^1.1.1: 2573 | version "1.1.1" 2574 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2575 | 2576 | listr-update-renderer@^0.2.0: 2577 | version "0.2.0" 2578 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2579 | dependencies: 2580 | chalk "^1.1.3" 2581 | cli-truncate "^0.2.1" 2582 | elegant-spinner "^1.0.1" 2583 | figures "^1.7.0" 2584 | indent-string "^3.0.0" 2585 | log-symbols "^1.0.2" 2586 | log-update "^1.0.2" 2587 | strip-ansi "^3.0.1" 2588 | 2589 | listr-verbose-renderer@^0.4.0: 2590 | version "0.4.1" 2591 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#8206f4cf6d52ddc5827e5fd14989e0e965933a35" 2592 | dependencies: 2593 | chalk "^1.1.3" 2594 | cli-cursor "^1.0.2" 2595 | date-fns "^1.27.2" 2596 | figures "^1.7.0" 2597 | 2598 | listr@^0.12.0: 2599 | version "0.12.0" 2600 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 2601 | dependencies: 2602 | chalk "^1.1.3" 2603 | cli-truncate "^0.2.1" 2604 | figures "^1.7.0" 2605 | indent-string "^2.1.0" 2606 | is-promise "^2.1.0" 2607 | is-stream "^1.1.0" 2608 | listr-silent-renderer "^1.1.1" 2609 | listr-update-renderer "^0.2.0" 2610 | listr-verbose-renderer "^0.4.0" 2611 | log-symbols "^1.0.2" 2612 | log-update "^1.0.2" 2613 | ora "^0.2.3" 2614 | p-map "^1.1.1" 2615 | rxjs "^5.0.0-beta.11" 2616 | stream-to-observable "^0.1.0" 2617 | strip-ansi "^3.0.1" 2618 | 2619 | load-json-file@^2.0.0: 2620 | version "2.0.0" 2621 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2622 | dependencies: 2623 | graceful-fs "^4.1.2" 2624 | parse-json "^2.2.0" 2625 | pify "^2.0.0" 2626 | strip-bom "^3.0.0" 2627 | 2628 | loader-runner@^2.3.0: 2629 | version "2.3.0" 2630 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2631 | 2632 | loader-utils@^1.0.2, loader-utils@^1.1.0: 2633 | version "1.1.0" 2634 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2635 | dependencies: 2636 | big.js "^3.1.3" 2637 | emojis-list "^2.0.0" 2638 | json5 "^0.5.0" 2639 | 2640 | locate-path@^2.0.0: 2641 | version "2.0.0" 2642 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2643 | dependencies: 2644 | p-locate "^2.0.0" 2645 | path-exists "^3.0.0" 2646 | 2647 | lodash@^4.14.0, lodash@^4.17.4, lodash@^4.3.0: 2648 | version "4.17.5" 2649 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 2650 | 2651 | log-symbols@^1.0.2: 2652 | version "1.0.2" 2653 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2654 | dependencies: 2655 | chalk "^1.0.0" 2656 | 2657 | log-symbols@^2.0.0: 2658 | version "2.2.0" 2659 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 2660 | dependencies: 2661 | chalk "^2.0.1" 2662 | 2663 | log-update@^1.0.2: 2664 | version "1.0.2" 2665 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2666 | dependencies: 2667 | ansi-escapes "^1.0.0" 2668 | cli-cursor "^1.0.2" 2669 | 2670 | longest@^1.0.1: 2671 | version "1.0.1" 2672 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2673 | 2674 | loose-envify@^1.0.0: 2675 | version "1.3.1" 2676 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2677 | dependencies: 2678 | js-tokens "^3.0.0" 2679 | 2680 | lru-cache@^4.0.1: 2681 | version "4.1.2" 2682 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 2683 | dependencies: 2684 | pseudomap "^1.0.2" 2685 | yallist "^2.1.2" 2686 | 2687 | make-dir@^1.0.0: 2688 | version "1.2.0" 2689 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" 2690 | dependencies: 2691 | pify "^3.0.0" 2692 | 2693 | map-cache@^0.2.2: 2694 | version "0.2.2" 2695 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2696 | 2697 | map-visit@^1.0.0: 2698 | version "1.0.0" 2699 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2700 | dependencies: 2701 | object-visit "^1.0.0" 2702 | 2703 | md5.js@^1.3.4: 2704 | version "1.3.4" 2705 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 2706 | dependencies: 2707 | hash-base "^3.0.0" 2708 | inherits "^2.0.1" 2709 | 2710 | mem@^1.1.0: 2711 | version "1.1.0" 2712 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2713 | dependencies: 2714 | mimic-fn "^1.0.0" 2715 | 2716 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2717 | version "0.4.1" 2718 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2719 | dependencies: 2720 | errno "^0.1.3" 2721 | readable-stream "^2.0.1" 2722 | 2723 | micromatch@^3.1.4: 2724 | version "3.1.9" 2725 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.9.tgz#15dc93175ae39e52e93087847096effc73efcf89" 2726 | dependencies: 2727 | arr-diff "^4.0.0" 2728 | array-unique "^0.3.2" 2729 | braces "^2.3.1" 2730 | define-property "^2.0.2" 2731 | extend-shallow "^3.0.2" 2732 | extglob "^2.0.4" 2733 | fragment-cache "^0.2.1" 2734 | kind-of "^6.0.2" 2735 | nanomatch "^1.2.9" 2736 | object.pick "^1.3.0" 2737 | regex-not "^1.0.0" 2738 | snapdragon "^0.8.1" 2739 | to-regex "^3.0.1" 2740 | 2741 | miller-rabin@^4.0.0: 2742 | version "4.0.1" 2743 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2744 | dependencies: 2745 | bn.js "^4.0.0" 2746 | brorand "^1.0.1" 2747 | 2748 | mime-db@~1.33.0: 2749 | version "1.33.0" 2750 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2751 | 2752 | mime-types@^2.1.12, mime-types@~2.1.7: 2753 | version "2.1.18" 2754 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2755 | dependencies: 2756 | mime-db "~1.33.0" 2757 | 2758 | mimic-fn@^1.0.0: 2759 | version "1.2.0" 2760 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2761 | 2762 | minimalistic-assert@^1.0.0: 2763 | version "1.0.0" 2764 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2765 | 2766 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2767 | version "1.0.1" 2768 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2769 | 2770 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2771 | version "3.0.4" 2772 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2773 | dependencies: 2774 | brace-expansion "^1.1.7" 2775 | 2776 | minimist@0.0.8: 2777 | version "0.0.8" 2778 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2779 | 2780 | minimist@^1.2.0: 2781 | version "1.2.0" 2782 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2783 | 2784 | mixin-deep@^1.2.0: 2785 | version "1.3.1" 2786 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 2787 | dependencies: 2788 | for-in "^1.0.2" 2789 | is-extendable "^1.0.1" 2790 | 2791 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 2792 | version "0.5.1" 2793 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2794 | dependencies: 2795 | minimist "0.0.8" 2796 | 2797 | mocha-js-delegate@^0.1.1: 2798 | version "0.1.1" 2799 | resolved "https://registry.yarnpkg.com/mocha-js-delegate/-/mocha-js-delegate-0.1.1.tgz#322a4d2aa9fdf2c696d50deaaa013526b759ccf6" 2800 | 2801 | ms@2.0.0: 2802 | version "2.0.0" 2803 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2804 | 2805 | mute-stream@0.0.7: 2806 | version "0.0.7" 2807 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2808 | 2809 | nan@^2.3.0: 2810 | version "2.9.2" 2811 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.9.2.tgz#f564d75f5f8f36a6d9456cca7a6c4fe488ab7866" 2812 | 2813 | nanomatch@^1.2.9: 2814 | version "1.2.9" 2815 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2816 | dependencies: 2817 | arr-diff "^4.0.0" 2818 | array-unique "^0.3.2" 2819 | define-property "^2.0.2" 2820 | extend-shallow "^3.0.2" 2821 | fragment-cache "^0.2.1" 2822 | is-odd "^2.0.0" 2823 | is-windows "^1.0.2" 2824 | kind-of "^6.0.2" 2825 | object.pick "^1.3.0" 2826 | regex-not "^1.0.0" 2827 | snapdragon "^0.8.1" 2828 | to-regex "^3.0.1" 2829 | 2830 | natural-compare@^1.4.0: 2831 | version "1.4.0" 2832 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2833 | 2834 | neo-async@^2.5.0: 2835 | version "2.5.0" 2836 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.5.0.tgz#76b1c823130cca26acfbaccc8fbaf0a2fa33b18f" 2837 | 2838 | node-libs-browser@^2.0.0: 2839 | version "2.1.0" 2840 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz#5f94263d404f6e44767d726901fff05478d600df" 2841 | dependencies: 2842 | assert "^1.1.1" 2843 | browserify-zlib "^0.2.0" 2844 | buffer "^4.3.0" 2845 | console-browserify "^1.1.0" 2846 | constants-browserify "^1.0.0" 2847 | crypto-browserify "^3.11.0" 2848 | domain-browser "^1.1.1" 2849 | events "^1.0.0" 2850 | https-browserify "^1.0.0" 2851 | os-browserify "^0.3.0" 2852 | path-browserify "0.0.0" 2853 | process "^0.11.10" 2854 | punycode "^1.2.4" 2855 | querystring-es3 "^0.2.0" 2856 | readable-stream "^2.3.3" 2857 | stream-browserify "^2.0.1" 2858 | stream-http "^2.7.2" 2859 | string_decoder "^1.0.0" 2860 | timers-browserify "^2.0.4" 2861 | tty-browserify "0.0.0" 2862 | url "^0.11.0" 2863 | util "^0.10.3" 2864 | vm-browserify "0.0.4" 2865 | 2866 | node-pre-gyp@^0.6.39: 2867 | version "0.6.39" 2868 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2869 | dependencies: 2870 | detect-libc "^1.0.2" 2871 | hawk "3.1.3" 2872 | mkdirp "^0.5.1" 2873 | nopt "^4.0.1" 2874 | npmlog "^4.0.2" 2875 | rc "^1.1.7" 2876 | request "2.81.0" 2877 | rimraf "^2.6.1" 2878 | semver "^5.3.0" 2879 | tar "^2.2.1" 2880 | tar-pack "^3.4.0" 2881 | 2882 | nopt@^4.0.1: 2883 | version "4.0.1" 2884 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2885 | dependencies: 2886 | abbrev "1" 2887 | osenv "^0.1.4" 2888 | 2889 | normalize-package-data@^2.3.2: 2890 | version "2.4.0" 2891 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2892 | dependencies: 2893 | hosted-git-info "^2.1.4" 2894 | is-builtin-module "^1.0.0" 2895 | semver "2 || 3 || 4 || 5" 2896 | validate-npm-package-license "^3.0.1" 2897 | 2898 | normalize-path@^2.1.1: 2899 | version "2.1.1" 2900 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2901 | dependencies: 2902 | remove-trailing-separator "^1.0.1" 2903 | 2904 | npm-path@^2.0.2: 2905 | version "2.0.4" 2906 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64" 2907 | dependencies: 2908 | which "^1.2.10" 2909 | 2910 | npm-run-path@^2.0.0: 2911 | version "2.0.2" 2912 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2913 | dependencies: 2914 | path-key "^2.0.0" 2915 | 2916 | npm-which@^3.0.1: 2917 | version "3.0.1" 2918 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2919 | dependencies: 2920 | commander "^2.9.0" 2921 | npm-path "^2.0.2" 2922 | which "^1.2.10" 2923 | 2924 | npmlog@^4.0.2: 2925 | version "4.1.2" 2926 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2927 | dependencies: 2928 | are-we-there-yet "~1.1.2" 2929 | console-control-strings "~1.1.0" 2930 | gauge "~2.7.3" 2931 | set-blocking "~2.0.0" 2932 | 2933 | number-is-nan@^1.0.0: 2934 | version "1.0.1" 2935 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2936 | 2937 | oauth-sign@~0.8.1: 2938 | version "0.8.2" 2939 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2940 | 2941 | object-assign@*, object-assign@^4.0.1, object-assign@^4.1.0: 2942 | version "4.1.1" 2943 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2944 | 2945 | object-copy@^0.1.0: 2946 | version "0.1.0" 2947 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2948 | dependencies: 2949 | copy-descriptor "^0.1.0" 2950 | define-property "^0.2.5" 2951 | kind-of "^3.0.3" 2952 | 2953 | object-keys@^1.0.11, object-keys@^1.0.8: 2954 | version "1.0.11" 2955 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2956 | 2957 | object-visit@^1.0.0: 2958 | version "1.0.1" 2959 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2960 | dependencies: 2961 | isobject "^3.0.0" 2962 | 2963 | object.assign@^4.0.4: 2964 | version "4.1.0" 2965 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2966 | dependencies: 2967 | define-properties "^1.1.2" 2968 | function-bind "^1.1.1" 2969 | has-symbols "^1.0.0" 2970 | object-keys "^1.0.11" 2971 | 2972 | object.pick@^1.3.0: 2973 | version "1.3.0" 2974 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2975 | dependencies: 2976 | isobject "^3.0.1" 2977 | 2978 | once@^1.3.0, once@^1.3.3: 2979 | version "1.4.0" 2980 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2981 | dependencies: 2982 | wrappy "1" 2983 | 2984 | onetime@^1.0.0: 2985 | version "1.1.0" 2986 | resolved "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2987 | 2988 | onetime@^2.0.0: 2989 | version "2.0.1" 2990 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2991 | dependencies: 2992 | mimic-fn "^1.0.0" 2993 | 2994 | optionator@^0.8.2: 2995 | version "0.8.2" 2996 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2997 | dependencies: 2998 | deep-is "~0.1.3" 2999 | fast-levenshtein "~2.0.4" 3000 | levn "~0.3.0" 3001 | prelude-ls "~1.1.2" 3002 | type-check "~0.3.2" 3003 | wordwrap "~1.0.0" 3004 | 3005 | ora@^0.2.3: 3006 | version "0.2.3" 3007 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 3008 | dependencies: 3009 | chalk "^1.1.1" 3010 | cli-cursor "^1.0.2" 3011 | cli-spinners "^0.1.2" 3012 | object-assign "^4.0.1" 3013 | 3014 | os-browserify@^0.3.0: 3015 | version "0.3.0" 3016 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 3017 | 3018 | os-homedir@^1.0.0, os-homedir@^1.0.1: 3019 | version "1.0.2" 3020 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3021 | 3022 | os-locale@^2.0.0: 3023 | version "2.1.0" 3024 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 3025 | dependencies: 3026 | execa "^0.7.0" 3027 | lcid "^1.0.0" 3028 | mem "^1.1.0" 3029 | 3030 | os-shim@^0.1.2: 3031 | version "0.1.3" 3032 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 3033 | 3034 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 3035 | version "1.0.2" 3036 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3037 | 3038 | osenv@^0.1.4: 3039 | version "0.1.5" 3040 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 3041 | dependencies: 3042 | os-homedir "^1.0.0" 3043 | os-tmpdir "^1.0.0" 3044 | 3045 | p-finally@^1.0.0: 3046 | version "1.0.0" 3047 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3048 | 3049 | p-limit@^1.1.0: 3050 | version "1.2.0" 3051 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 3052 | dependencies: 3053 | p-try "^1.0.0" 3054 | 3055 | p-locate@^2.0.0: 3056 | version "2.0.0" 3057 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3058 | dependencies: 3059 | p-limit "^1.1.0" 3060 | 3061 | p-map@^1.1.1: 3062 | version "1.2.0" 3063 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 3064 | 3065 | p-try@^1.0.0: 3066 | version "1.0.0" 3067 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 3068 | 3069 | pako@~1.0.5: 3070 | version "1.0.6" 3071 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz#0101211baa70c4bca4a0f63f2206e97b7dfaf258" 3072 | 3073 | parse-asn1@^5.0.0: 3074 | version "5.1.0" 3075 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 3076 | dependencies: 3077 | asn1.js "^4.0.0" 3078 | browserify-aes "^1.0.0" 3079 | create-hash "^1.1.0" 3080 | evp_bytestokey "^1.0.0" 3081 | pbkdf2 "^3.0.3" 3082 | 3083 | parse-author@2.0.0: 3084 | version "2.0.0" 3085 | resolved "https://registry.yarnpkg.com/parse-author/-/parse-author-2.0.0.tgz#d3460bf1ddd0dfaeed42da754242e65fb684a81f" 3086 | dependencies: 3087 | author-regex "^1.0.0" 3088 | 3089 | parse-json@^2.2.0: 3090 | version "2.2.0" 3091 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3092 | dependencies: 3093 | error-ex "^1.2.0" 3094 | 3095 | pascalcase@^0.1.1: 3096 | version "0.1.1" 3097 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 3098 | 3099 | path-browserify@0.0.0: 3100 | version "0.0.0" 3101 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 3102 | 3103 | path-dirname@^1.0.0: 3104 | version "1.0.2" 3105 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 3106 | 3107 | path-exists@^2.0.0: 3108 | version "2.1.0" 3109 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3110 | dependencies: 3111 | pinkie-promise "^2.0.0" 3112 | 3113 | path-exists@^3.0.0: 3114 | version "3.0.0" 3115 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3116 | 3117 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3118 | version "1.0.1" 3119 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3120 | 3121 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 3122 | version "1.0.2" 3123 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3124 | 3125 | path-key@^2.0.0: 3126 | version "2.0.1" 3127 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3128 | 3129 | path-parse@^1.0.5: 3130 | version "1.0.5" 3131 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3132 | 3133 | path-type@^2.0.0: 3134 | version "2.0.0" 3135 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3136 | dependencies: 3137 | pify "^2.0.0" 3138 | 3139 | pbkdf2@^3.0.3: 3140 | version "3.0.14" 3141 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 3142 | dependencies: 3143 | create-hash "^1.1.2" 3144 | create-hmac "^1.1.4" 3145 | ripemd160 "^2.0.1" 3146 | safe-buffer "^5.0.1" 3147 | sha.js "^2.4.8" 3148 | 3149 | performance-now@^0.2.0: 3150 | version "0.2.0" 3151 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3152 | 3153 | pify@^2.0.0: 3154 | version "2.3.0" 3155 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3156 | 3157 | pify@^3.0.0: 3158 | version "3.0.0" 3159 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3160 | 3161 | pinkie-promise@^2.0.0: 3162 | version "2.0.1" 3163 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3164 | dependencies: 3165 | pinkie "^2.0.0" 3166 | 3167 | pinkie@^2.0.0: 3168 | version "2.0.4" 3169 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3170 | 3171 | pkg-dir@^1.0.0: 3172 | version "1.0.0" 3173 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3174 | dependencies: 3175 | find-up "^1.0.0" 3176 | 3177 | pkg-dir@^2.0.0: 3178 | version "2.0.0" 3179 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 3180 | dependencies: 3181 | find-up "^2.1.0" 3182 | 3183 | pluralize@^7.0.0: 3184 | version "7.0.0" 3185 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 3186 | 3187 | posix-character-classes@^0.1.0: 3188 | version "0.1.1" 3189 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 3190 | 3191 | pre-commit@^1.2.2: 3192 | version "1.2.2" 3193 | resolved "https://registry.yarnpkg.com/pre-commit/-/pre-commit-1.2.2.tgz#dbcee0ee9de7235e57f79c56d7ce94641a69eec6" 3194 | dependencies: 3195 | cross-spawn "^5.0.1" 3196 | spawn-sync "^1.0.15" 3197 | which "1.2.x" 3198 | 3199 | prelude-ls@~1.1.2: 3200 | version "1.1.2" 3201 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3202 | 3203 | prettier@^1.7.4: 3204 | version "1.11.1" 3205 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.11.1.tgz#61e43fc4cd44e68f2b0dfc2c38cd4bb0fccdcc75" 3206 | 3207 | pretty-format@^21.2.1: 3208 | version "21.2.1" 3209 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 3210 | dependencies: 3211 | ansi-regex "^3.0.0" 3212 | ansi-styles "^3.2.0" 3213 | 3214 | private@^0.1.6, private@^0.1.7: 3215 | version "0.1.8" 3216 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3217 | 3218 | process-nextick-args@~2.0.0: 3219 | version "2.0.0" 3220 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 3221 | 3222 | process@^0.11.10: 3223 | version "0.11.10" 3224 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 3225 | 3226 | progress@^2.0.0: 3227 | version "2.0.0" 3228 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3229 | 3230 | prr@~1.0.1: 3231 | version "1.0.1" 3232 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 3233 | 3234 | pseudomap@^1.0.2: 3235 | version "1.0.2" 3236 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3237 | 3238 | public-encrypt@^4.0.0: 3239 | version "4.0.0" 3240 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3241 | dependencies: 3242 | bn.js "^4.1.0" 3243 | browserify-rsa "^4.0.0" 3244 | create-hash "^1.1.0" 3245 | parse-asn1 "^5.0.0" 3246 | randombytes "^2.0.1" 3247 | 3248 | punycode@1.3.2: 3249 | version "1.3.2" 3250 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3251 | 3252 | punycode@^1.2.4, punycode@^1.4.1: 3253 | version "1.4.1" 3254 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3255 | 3256 | qs@~6.4.0: 3257 | version "6.4.0" 3258 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3259 | 3260 | querystring-es3@^0.2.0: 3261 | version "0.2.1" 3262 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3263 | 3264 | querystring@0.2.0: 3265 | version "0.2.0" 3266 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3267 | 3268 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 3269 | version "2.0.6" 3270 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" 3271 | dependencies: 3272 | safe-buffer "^5.1.0" 3273 | 3274 | randomfill@^1.0.3: 3275 | version "1.0.4" 3276 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 3277 | dependencies: 3278 | randombytes "^2.0.5" 3279 | safe-buffer "^5.1.0" 3280 | 3281 | rc@^1.1.7: 3282 | version "1.2.6" 3283 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" 3284 | dependencies: 3285 | deep-extend "~0.4.0" 3286 | ini "~1.3.0" 3287 | minimist "^1.2.0" 3288 | strip-json-comments "~2.0.1" 3289 | 3290 | read-pkg-up@^2.0.0: 3291 | version "2.0.0" 3292 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3293 | dependencies: 3294 | find-up "^2.0.0" 3295 | read-pkg "^2.0.0" 3296 | 3297 | read-pkg@^2.0.0: 3298 | version "2.0.0" 3299 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3300 | dependencies: 3301 | load-json-file "^2.0.0" 3302 | normalize-package-data "^2.3.2" 3303 | path-type "^2.0.0" 3304 | 3305 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.3.3: 3306 | version "2.3.5" 3307 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" 3308 | dependencies: 3309 | core-util-is "~1.0.0" 3310 | inherits "~2.0.3" 3311 | isarray "~1.0.0" 3312 | process-nextick-args "~2.0.0" 3313 | safe-buffer "~5.1.1" 3314 | string_decoder "~1.0.3" 3315 | util-deprecate "~1.0.1" 3316 | 3317 | readdirp@^2.0.0: 3318 | version "2.1.0" 3319 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3320 | dependencies: 3321 | graceful-fs "^4.1.2" 3322 | minimatch "^3.0.2" 3323 | readable-stream "^2.0.2" 3324 | set-immediate-shim "^1.0.1" 3325 | 3326 | regenerate@^1.2.1: 3327 | version "1.3.3" 3328 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 3329 | 3330 | regenerator-runtime@^0.11.0: 3331 | version "0.11.1" 3332 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 3333 | 3334 | regenerator-transform@^0.10.0: 3335 | version "0.10.1" 3336 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3337 | dependencies: 3338 | babel-runtime "^6.18.0" 3339 | babel-types "^6.19.0" 3340 | private "^0.1.6" 3341 | 3342 | regex-not@^1.0.0, regex-not@^1.0.2: 3343 | version "1.0.2" 3344 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 3345 | dependencies: 3346 | extend-shallow "^3.0.2" 3347 | safe-regex "^1.1.0" 3348 | 3349 | regexpu-core@^2.0.0: 3350 | version "2.0.0" 3351 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3352 | dependencies: 3353 | regenerate "^1.2.1" 3354 | regjsgen "^0.2.0" 3355 | regjsparser "^0.1.4" 3356 | 3357 | regjsgen@^0.2.0: 3358 | version "0.2.0" 3359 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3360 | 3361 | regjsparser@^0.1.4: 3362 | version "0.1.5" 3363 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3364 | dependencies: 3365 | jsesc "~0.5.0" 3366 | 3367 | remove-trailing-separator@^1.0.1: 3368 | version "1.1.0" 3369 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3370 | 3371 | repeat-element@^1.1.2: 3372 | version "1.1.2" 3373 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3374 | 3375 | repeat-string@^1.5.2, repeat-string@^1.6.1: 3376 | version "1.6.1" 3377 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3378 | 3379 | repeating@^2.0.0: 3380 | version "2.0.1" 3381 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3382 | dependencies: 3383 | is-finite "^1.0.0" 3384 | 3385 | request@2.81.0: 3386 | version "2.81.0" 3387 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3388 | dependencies: 3389 | aws-sign2 "~0.6.0" 3390 | aws4 "^1.2.1" 3391 | caseless "~0.12.0" 3392 | combined-stream "~1.0.5" 3393 | extend "~3.0.0" 3394 | forever-agent "~0.6.1" 3395 | form-data "~2.1.1" 3396 | har-validator "~4.2.1" 3397 | hawk "~3.1.3" 3398 | http-signature "~1.1.0" 3399 | is-typedarray "~1.0.0" 3400 | isstream "~0.1.2" 3401 | json-stringify-safe "~5.0.1" 3402 | mime-types "~2.1.7" 3403 | oauth-sign "~0.8.1" 3404 | performance-now "^0.2.0" 3405 | qs "~6.4.0" 3406 | safe-buffer "^5.0.1" 3407 | stringstream "~0.0.4" 3408 | tough-cookie "~2.3.0" 3409 | tunnel-agent "^0.6.0" 3410 | uuid "^3.0.0" 3411 | 3412 | require-directory@^2.1.1: 3413 | version "2.1.1" 3414 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3415 | 3416 | require-from-string@^1.1.0: 3417 | version "1.2.1" 3418 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 3419 | 3420 | require-main-filename@^1.0.1: 3421 | version "1.0.1" 3422 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3423 | 3424 | require-uncached@^1.0.3: 3425 | version "1.0.3" 3426 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3427 | dependencies: 3428 | caller-path "^0.1.0" 3429 | resolve-from "^1.0.0" 3430 | 3431 | resolve-from@^1.0.0: 3432 | version "1.0.1" 3433 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3434 | 3435 | resolve-url@^0.2.1: 3436 | version "0.2.1" 3437 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3438 | 3439 | resolve@^1.5.0: 3440 | version "1.5.0" 3441 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 3442 | dependencies: 3443 | path-parse "^1.0.5" 3444 | 3445 | restore-cursor@^1.0.1: 3446 | version "1.0.1" 3447 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3448 | dependencies: 3449 | exit-hook "^1.0.0" 3450 | onetime "^1.0.0" 3451 | 3452 | restore-cursor@^2.0.0: 3453 | version "2.0.0" 3454 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3455 | dependencies: 3456 | onetime "^2.0.0" 3457 | signal-exit "^3.0.2" 3458 | 3459 | ret@~0.1.10: 3460 | version "0.1.15" 3461 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3462 | 3463 | right-align@^0.1.1: 3464 | version "0.1.3" 3465 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3466 | dependencies: 3467 | align-text "^0.1.1" 3468 | 3469 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3470 | version "2.6.2" 3471 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3472 | dependencies: 3473 | glob "^7.0.5" 3474 | 3475 | ripemd160@^2.0.0, ripemd160@^2.0.1: 3476 | version "2.0.1" 3477 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 3478 | dependencies: 3479 | hash-base "^2.0.0" 3480 | inherits "^2.0.1" 3481 | 3482 | run-async@^2.2.0: 3483 | version "2.3.0" 3484 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3485 | dependencies: 3486 | is-promise "^2.1.0" 3487 | 3488 | run-sketch-plugin@^1.0.0: 3489 | version "1.0.3" 3490 | resolved "https://registry.yarnpkg.com/run-sketch-plugin/-/run-sketch-plugin-1.0.3.tgz#2eb6112d2b0870adfb03fce8310ade76d7fd8f52" 3491 | dependencies: 3492 | coscript "^1.0.0" 3493 | 3494 | rx-lite-aggregates@^4.0.8: 3495 | version "4.0.8" 3496 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3497 | dependencies: 3498 | rx-lite "*" 3499 | 3500 | rx-lite@*, rx-lite@^4.0.8: 3501 | version "4.0.8" 3502 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3503 | 3504 | rxjs@^5.0.0-beta.11: 3505 | version "5.5.7" 3506 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.7.tgz#afb3d1642b069b2fbf203903d6501d1acb4cda27" 3507 | dependencies: 3508 | symbol-observable "1.0.1" 3509 | 3510 | 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: 3511 | version "5.1.1" 3512 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3513 | 3514 | safe-regex@^1.1.0: 3515 | version "1.1.0" 3516 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3517 | dependencies: 3518 | ret "~0.1.10" 3519 | 3520 | schema-utils@^0.3.0: 3521 | version "0.3.0" 3522 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" 3523 | dependencies: 3524 | ajv "^5.0.0" 3525 | 3526 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3527 | version "5.5.0" 3528 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3529 | 3530 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3531 | version "2.0.0" 3532 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3533 | 3534 | set-immediate-shim@^1.0.1: 3535 | version "1.0.1" 3536 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3537 | 3538 | set-value@^0.4.3: 3539 | version "0.4.3" 3540 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3541 | dependencies: 3542 | extend-shallow "^2.0.1" 3543 | is-extendable "^0.1.1" 3544 | is-plain-object "^2.0.1" 3545 | to-object-path "^0.3.0" 3546 | 3547 | set-value@^2.0.0: 3548 | version "2.0.0" 3549 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3550 | dependencies: 3551 | extend-shallow "^2.0.1" 3552 | is-extendable "^0.1.1" 3553 | is-plain-object "^2.0.3" 3554 | split-string "^3.0.1" 3555 | 3556 | setimmediate@^1.0.4: 3557 | version "1.0.5" 3558 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3559 | 3560 | sha.js@^2.4.0, sha.js@^2.4.8: 3561 | version "2.4.10" 3562 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.10.tgz#b1fde5cd7d11a5626638a07c604ab909cfa31f9b" 3563 | dependencies: 3564 | inherits "^2.0.1" 3565 | safe-buffer "^5.0.1" 3566 | 3567 | shebang-command@^1.2.0: 3568 | version "1.2.0" 3569 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3570 | dependencies: 3571 | shebang-regex "^1.0.0" 3572 | 3573 | shebang-regex@^1.0.0: 3574 | version "1.0.0" 3575 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3576 | 3577 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3578 | version "3.0.2" 3579 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3580 | 3581 | sketch-module-web-view@^0.2.6: 3582 | version "0.2.6" 3583 | resolved "https://registry.yarnpkg.com/sketch-module-web-view/-/sketch-module-web-view-0.2.6.tgz#f99be792d3f943dde19db7e9cd36cf4b0437dd70" 3584 | dependencies: 3585 | mocha-js-delegate "^0.1.1" 3586 | 3587 | sketch-polyfill-console@^0.4.0: 3588 | version "0.4.3" 3589 | resolved "https://registry.yarnpkg.com/sketch-polyfill-console/-/sketch-polyfill-console-0.4.3.tgz#3fb2e08fad13551bb13df11aaca698051290b7d8" 3590 | dependencies: 3591 | "@skpm/sketch-debugger" "^0.2.1" 3592 | 3593 | sketch-polyfill-fetch@^0.1.4: 3594 | version "0.1.4" 3595 | resolved "https://registry.yarnpkg.com/sketch-polyfill-fetch/-/sketch-polyfill-fetch-0.1.4.tgz#03e73076403d6c3fb86f314523621be6738cd4e6" 3596 | dependencies: 3597 | cocoascript-class "^0.1.2" 3598 | 3599 | sketch-polyfill-setinterval@^0.1.0: 3600 | version "0.1.0" 3601 | resolved "https://registry.yarnpkg.com/sketch-polyfill-setinterval/-/sketch-polyfill-setinterval-0.1.0.tgz#0f7fe50e095a965f4201f99a0d8c3e46dd466c48" 3602 | 3603 | sketch-polyfill-settimeout@^0.2.0: 3604 | version "0.2.0" 3605 | resolved "https://registry.yarnpkg.com/sketch-polyfill-settimeout/-/sketch-polyfill-settimeout-0.2.0.tgz#920ea87c83dcf2b73debb59e26d0de371958b43b" 3606 | 3607 | slash@^1.0.0: 3608 | version "1.0.0" 3609 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3610 | 3611 | slice-ansi@0.0.4: 3612 | version "0.0.4" 3613 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3614 | 3615 | slice-ansi@1.0.0: 3616 | version "1.0.0" 3617 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3618 | dependencies: 3619 | is-fullwidth-code-point "^2.0.0" 3620 | 3621 | snapdragon-node@^2.0.1: 3622 | version "2.1.1" 3623 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3624 | dependencies: 3625 | define-property "^1.0.0" 3626 | isobject "^3.0.0" 3627 | snapdragon-util "^3.0.1" 3628 | 3629 | snapdragon-util@^3.0.1: 3630 | version "3.0.1" 3631 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3632 | dependencies: 3633 | kind-of "^3.2.0" 3634 | 3635 | snapdragon@^0.8.1: 3636 | version "0.8.2" 3637 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3638 | dependencies: 3639 | base "^0.11.1" 3640 | debug "^2.2.0" 3641 | define-property "^0.2.5" 3642 | extend-shallow "^2.0.1" 3643 | map-cache "^0.2.2" 3644 | source-map "^0.5.6" 3645 | source-map-resolve "^0.5.0" 3646 | use "^3.1.0" 3647 | 3648 | sntp@1.x.x: 3649 | version "1.0.9" 3650 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3651 | dependencies: 3652 | hoek "2.x.x" 3653 | 3654 | source-list-map@^2.0.0: 3655 | version "2.0.0" 3656 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 3657 | 3658 | source-map-resolve@^0.5.0: 3659 | version "0.5.1" 3660 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 3661 | dependencies: 3662 | atob "^2.0.0" 3663 | decode-uri-component "^0.2.0" 3664 | resolve-url "^0.2.1" 3665 | source-map-url "^0.4.0" 3666 | urix "^0.1.0" 3667 | 3668 | source-map-support@^0.4.15: 3669 | version "0.4.18" 3670 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3671 | dependencies: 3672 | source-map "^0.5.6" 3673 | 3674 | source-map-url@^0.4.0: 3675 | version "0.4.0" 3676 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3677 | 3678 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 3679 | version "0.5.7" 3680 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3681 | 3682 | source-map@~0.6.1: 3683 | version "0.6.1" 3684 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3685 | 3686 | spawn-sync@^1.0.15: 3687 | version "1.0.15" 3688 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 3689 | dependencies: 3690 | concat-stream "^1.4.7" 3691 | os-shim "^0.1.2" 3692 | 3693 | spdx-correct@^3.0.0: 3694 | version "3.0.0" 3695 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 3696 | dependencies: 3697 | spdx-expression-parse "^3.0.0" 3698 | spdx-license-ids "^3.0.0" 3699 | 3700 | spdx-exceptions@^2.1.0: 3701 | version "2.1.0" 3702 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 3703 | 3704 | spdx-expression-parse@^3.0.0: 3705 | version "3.0.0" 3706 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3707 | dependencies: 3708 | spdx-exceptions "^2.1.0" 3709 | spdx-license-ids "^3.0.0" 3710 | 3711 | spdx-license-ids@^3.0.0: 3712 | version "3.0.0" 3713 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 3714 | 3715 | split-string@^3.0.1, split-string@^3.0.2: 3716 | version "3.1.0" 3717 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3718 | dependencies: 3719 | extend-shallow "^3.0.0" 3720 | 3721 | sprintf-js@~1.0.2: 3722 | version "1.0.3" 3723 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3724 | 3725 | sshpk@^1.7.0: 3726 | version "1.14.1" 3727 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 3728 | dependencies: 3729 | asn1 "~0.2.3" 3730 | assert-plus "^1.0.0" 3731 | dashdash "^1.12.0" 3732 | getpass "^0.1.1" 3733 | optionalDependencies: 3734 | bcrypt-pbkdf "^1.0.0" 3735 | ecc-jsbn "~0.1.1" 3736 | jsbn "~0.1.0" 3737 | tweetnacl "~0.14.0" 3738 | 3739 | staged-git-files@0.0.4: 3740 | version "0.0.4" 3741 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 3742 | 3743 | static-extend@^0.1.1: 3744 | version "0.1.2" 3745 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3746 | dependencies: 3747 | define-property "^0.2.5" 3748 | object-copy "^0.1.0" 3749 | 3750 | stream-browserify@^2.0.1: 3751 | version "2.0.1" 3752 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3753 | dependencies: 3754 | inherits "~2.0.1" 3755 | readable-stream "^2.0.2" 3756 | 3757 | stream-http@^2.7.2: 3758 | version "2.8.1" 3759 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.1.tgz#d0441be1a457a73a733a8a7b53570bebd9ef66a4" 3760 | dependencies: 3761 | builtin-status-codes "^3.0.0" 3762 | inherits "^2.0.1" 3763 | readable-stream "^2.3.3" 3764 | to-arraybuffer "^1.0.0" 3765 | xtend "^4.0.0" 3766 | 3767 | stream-to-observable@^0.1.0: 3768 | version "0.1.0" 3769 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 3770 | 3771 | string-width@^1.0.1, string-width@^1.0.2: 3772 | version "1.0.2" 3773 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3774 | dependencies: 3775 | code-point-at "^1.0.0" 3776 | is-fullwidth-code-point "^1.0.0" 3777 | strip-ansi "^3.0.0" 3778 | 3779 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3780 | version "2.1.1" 3781 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3782 | dependencies: 3783 | is-fullwidth-code-point "^2.0.0" 3784 | strip-ansi "^4.0.0" 3785 | 3786 | string_decoder@^1.0.0: 3787 | version "1.1.0" 3788 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.0.tgz#384f322ee8a848e500effde99901bba849c5d403" 3789 | dependencies: 3790 | safe-buffer "~5.1.0" 3791 | 3792 | string_decoder@~1.0.3: 3793 | version "1.0.3" 3794 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3795 | dependencies: 3796 | safe-buffer "~5.1.0" 3797 | 3798 | stringify-object@^3.2.0: 3799 | version "3.2.2" 3800 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.2.tgz#9853052e5a88fb605a44cd27445aa257ad7ffbcd" 3801 | dependencies: 3802 | get-own-enumerable-property-symbols "^2.0.1" 3803 | is-obj "^1.0.1" 3804 | is-regexp "^1.0.0" 3805 | 3806 | stringstream@~0.0.4: 3807 | version "0.0.5" 3808 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3809 | 3810 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3811 | version "3.0.1" 3812 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3813 | dependencies: 3814 | ansi-regex "^2.0.0" 3815 | 3816 | strip-ansi@^4.0.0: 3817 | version "4.0.0" 3818 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3819 | dependencies: 3820 | ansi-regex "^3.0.0" 3821 | 3822 | strip-bom@^3.0.0: 3823 | version "3.0.0" 3824 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3825 | 3826 | strip-eof@^1.0.0: 3827 | version "1.0.0" 3828 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3829 | 3830 | strip-json-comments@~2.0.1: 3831 | version "2.0.1" 3832 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3833 | 3834 | supports-color@^2.0.0: 3835 | version "2.0.0" 3836 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3837 | 3838 | supports-color@^4.2.1: 3839 | version "4.5.0" 3840 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3841 | dependencies: 3842 | has-flag "^2.0.0" 3843 | 3844 | supports-color@^5.3.0: 3845 | version "5.3.0" 3846 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" 3847 | dependencies: 3848 | has-flag "^3.0.0" 3849 | 3850 | symbol-observable@1.0.1: 3851 | version "1.0.1" 3852 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 3853 | 3854 | table@4.0.2: 3855 | version "4.0.2" 3856 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3857 | dependencies: 3858 | ajv "^5.2.3" 3859 | ajv-keywords "^2.1.0" 3860 | chalk "^2.1.0" 3861 | lodash "^4.17.4" 3862 | slice-ansi "1.0.0" 3863 | string-width "^2.1.1" 3864 | 3865 | tapable@^0.2.7: 3866 | version "0.2.8" 3867 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 3868 | 3869 | tar-pack@^3.4.0: 3870 | version "3.4.1" 3871 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 3872 | dependencies: 3873 | debug "^2.2.0" 3874 | fstream "^1.0.10" 3875 | fstream-ignore "^1.0.5" 3876 | once "^1.3.3" 3877 | readable-stream "^2.1.4" 3878 | rimraf "^2.5.1" 3879 | tar "^2.2.1" 3880 | uid-number "^0.0.6" 3881 | 3882 | tar@^2.2.1: 3883 | version "2.2.1" 3884 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3885 | dependencies: 3886 | block-stream "*" 3887 | fstream "^1.0.2" 3888 | inherits "2" 3889 | 3890 | text-table@~0.2.0: 3891 | version "0.2.0" 3892 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3893 | 3894 | through@^2.3.6: 3895 | version "2.3.8" 3896 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3897 | 3898 | timers-browserify@^2.0.4: 3899 | version "2.0.6" 3900 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.6.tgz#241e76927d9ca05f4d959819022f5b3664b64bae" 3901 | dependencies: 3902 | setimmediate "^1.0.4" 3903 | 3904 | tmp@^0.0.33: 3905 | version "0.0.33" 3906 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3907 | dependencies: 3908 | os-tmpdir "~1.0.2" 3909 | 3910 | to-arraybuffer@^1.0.0: 3911 | version "1.0.1" 3912 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3913 | 3914 | to-fast-properties@^1.0.3: 3915 | version "1.0.3" 3916 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3917 | 3918 | to-object-path@^0.3.0: 3919 | version "0.3.0" 3920 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3921 | dependencies: 3922 | kind-of "^3.0.2" 3923 | 3924 | to-regex-range@^2.1.0: 3925 | version "2.1.1" 3926 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3927 | dependencies: 3928 | is-number "^3.0.0" 3929 | repeat-string "^1.6.1" 3930 | 3931 | to-regex@^3.0.1: 3932 | version "3.0.2" 3933 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3934 | dependencies: 3935 | define-property "^2.0.2" 3936 | extend-shallow "^3.0.2" 3937 | regex-not "^1.0.2" 3938 | safe-regex "^1.1.0" 3939 | 3940 | tough-cookie@~2.3.0: 3941 | version "2.3.4" 3942 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3943 | dependencies: 3944 | punycode "^1.4.1" 3945 | 3946 | trim-right@^1.0.1: 3947 | version "1.0.1" 3948 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3949 | 3950 | tty-browserify@0.0.0: 3951 | version "0.0.0" 3952 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3953 | 3954 | tunnel-agent@^0.6.0: 3955 | version "0.6.0" 3956 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3957 | dependencies: 3958 | safe-buffer "^5.0.1" 3959 | 3960 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3961 | version "0.14.5" 3962 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3963 | 3964 | type-check@~0.3.2: 3965 | version "0.3.2" 3966 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3967 | dependencies: 3968 | prelude-ls "~1.1.2" 3969 | 3970 | typedarray@^0.0.6: 3971 | version "0.0.6" 3972 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3973 | 3974 | uglify-js@^2.8.29: 3975 | version "2.8.29" 3976 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3977 | dependencies: 3978 | source-map "~0.5.1" 3979 | yargs "~3.10.0" 3980 | optionalDependencies: 3981 | uglify-to-browserify "~1.0.0" 3982 | 3983 | uglify-to-browserify@~1.0.0: 3984 | version "1.0.2" 3985 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3986 | 3987 | uglifyjs-webpack-plugin@^0.4.6: 3988 | version "0.4.6" 3989 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 3990 | dependencies: 3991 | source-map "^0.5.6" 3992 | uglify-js "^2.8.29" 3993 | webpack-sources "^1.0.1" 3994 | 3995 | uid-number@^0.0.6: 3996 | version "0.0.6" 3997 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3998 | 3999 | union-value@^1.0.0: 4000 | version "1.0.0" 4001 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 4002 | dependencies: 4003 | arr-union "^3.1.0" 4004 | get-value "^2.0.6" 4005 | is-extendable "^0.1.1" 4006 | set-value "^0.4.3" 4007 | 4008 | unset-value@^1.0.0: 4009 | version "1.0.0" 4010 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 4011 | dependencies: 4012 | has-value "^0.3.1" 4013 | isobject "^3.0.0" 4014 | 4015 | upath@^1.0.0: 4016 | version "1.0.4" 4017 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.0.4.tgz#ee2321ba0a786c50973db043a50b7bcba822361d" 4018 | 4019 | urix@^0.1.0: 4020 | version "0.1.0" 4021 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 4022 | 4023 | url@^0.11.0: 4024 | version "0.11.0" 4025 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4026 | dependencies: 4027 | punycode "1.3.2" 4028 | querystring "0.2.0" 4029 | 4030 | use@^3.1.0: 4031 | version "3.1.0" 4032 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 4033 | dependencies: 4034 | kind-of "^6.0.2" 4035 | 4036 | util-deprecate@~1.0.1: 4037 | version "1.0.2" 4038 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4039 | 4040 | util@0.10.3, util@^0.10.3: 4041 | version "0.10.3" 4042 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4043 | dependencies: 4044 | inherits "2.0.1" 4045 | 4046 | uuid@^3.0.0: 4047 | version "3.2.1" 4048 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 4049 | 4050 | validate-npm-package-license@^3.0.1: 4051 | version "3.0.3" 4052 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 4053 | dependencies: 4054 | spdx-correct "^3.0.0" 4055 | spdx-expression-parse "^3.0.0" 4056 | 4057 | verror@1.10.0: 4058 | version "1.10.0" 4059 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4060 | dependencies: 4061 | assert-plus "^1.0.0" 4062 | core-util-is "1.0.2" 4063 | extsprintf "^1.2.0" 4064 | 4065 | vm-browserify@0.0.4: 4066 | version "0.0.4" 4067 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4068 | dependencies: 4069 | indexof "0.0.1" 4070 | 4071 | watchpack@^1.4.0: 4072 | version "1.5.0" 4073 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.5.0.tgz#231e783af830a22f8966f65c4c4bacc814072eed" 4074 | dependencies: 4075 | chokidar "^2.0.2" 4076 | graceful-fs "^4.1.2" 4077 | neo-async "^2.5.0" 4078 | 4079 | webpack-sources@^1.0.1: 4080 | version "1.1.0" 4081 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" 4082 | dependencies: 4083 | source-list-map "^2.0.0" 4084 | source-map "~0.6.1" 4085 | 4086 | webpack@^3.0.0: 4087 | version "3.11.0" 4088 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.11.0.tgz#77da451b1d7b4b117adaf41a1a93b5742f24d894" 4089 | dependencies: 4090 | acorn "^5.0.0" 4091 | acorn-dynamic-import "^2.0.0" 4092 | ajv "^6.1.0" 4093 | ajv-keywords "^3.1.0" 4094 | async "^2.1.2" 4095 | enhanced-resolve "^3.4.0" 4096 | escope "^3.6.0" 4097 | interpret "^1.0.0" 4098 | json-loader "^0.5.4" 4099 | json5 "^0.5.1" 4100 | loader-runner "^2.3.0" 4101 | loader-utils "^1.1.0" 4102 | memory-fs "~0.4.1" 4103 | mkdirp "~0.5.0" 4104 | node-libs-browser "^2.0.0" 4105 | source-map "^0.5.3" 4106 | supports-color "^4.2.1" 4107 | tapable "^0.2.7" 4108 | uglifyjs-webpack-plugin "^0.4.6" 4109 | watchpack "^1.4.0" 4110 | webpack-sources "^1.0.1" 4111 | yargs "^8.0.2" 4112 | 4113 | which-module@^2.0.0: 4114 | version "2.0.0" 4115 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4116 | 4117 | which@1.2.x: 4118 | version "1.2.14" 4119 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4120 | dependencies: 4121 | isexe "^2.0.0" 4122 | 4123 | which@^1.2.10, which@^1.2.9: 4124 | version "1.3.0" 4125 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4126 | dependencies: 4127 | isexe "^2.0.0" 4128 | 4129 | wide-align@^1.1.0: 4130 | version "1.1.2" 4131 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4132 | dependencies: 4133 | string-width "^1.0.2" 4134 | 4135 | window-size@0.1.0: 4136 | version "0.1.0" 4137 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4138 | 4139 | wordwrap@0.0.2: 4140 | version "0.0.2" 4141 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4142 | 4143 | wordwrap@~1.0.0: 4144 | version "1.0.0" 4145 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4146 | 4147 | wrap-ansi@^2.0.0: 4148 | version "2.1.0" 4149 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4150 | dependencies: 4151 | string-width "^1.0.1" 4152 | strip-ansi "^3.0.1" 4153 | 4154 | wrappy@1: 4155 | version "1.0.2" 4156 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4157 | 4158 | write@^0.2.1: 4159 | version "0.2.1" 4160 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4161 | dependencies: 4162 | mkdirp "^0.5.1" 4163 | 4164 | xtend@^4.0.0: 4165 | version "4.0.1" 4166 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4167 | 4168 | y18n@^3.2.1: 4169 | version "3.2.1" 4170 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4171 | 4172 | yallist@^2.1.2: 4173 | version "2.1.2" 4174 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4175 | 4176 | yargs-parser@^7.0.0: 4177 | version "7.0.0" 4178 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4179 | dependencies: 4180 | camelcase "^4.1.0" 4181 | 4182 | yargs@^8.0.2: 4183 | version "8.0.2" 4184 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 4185 | dependencies: 4186 | camelcase "^4.1.0" 4187 | cliui "^3.2.0" 4188 | decamelize "^1.1.1" 4189 | get-caller-file "^1.0.1" 4190 | os-locale "^2.0.0" 4191 | read-pkg-up "^2.0.0" 4192 | require-directory "^2.1.1" 4193 | require-main-filename "^1.0.1" 4194 | set-blocking "^2.0.0" 4195 | string-width "^2.0.0" 4196 | which-module "^2.0.0" 4197 | y18n "^3.2.1" 4198 | yargs-parser "^7.0.0" 4199 | 4200 | yargs@^9.0.1: 4201 | version "9.0.1" 4202 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 4203 | dependencies: 4204 | camelcase "^4.1.0" 4205 | cliui "^3.2.0" 4206 | decamelize "^1.1.1" 4207 | get-caller-file "^1.0.1" 4208 | os-locale "^2.0.0" 4209 | read-pkg-up "^2.0.0" 4210 | require-directory "^2.1.1" 4211 | require-main-filename "^1.0.1" 4212 | set-blocking "^2.0.0" 4213 | string-width "^2.0.0" 4214 | which-module "^2.0.0" 4215 | y18n "^3.2.1" 4216 | yargs-parser "^7.0.0" 4217 | 4218 | yargs@~3.10.0: 4219 | version "3.10.0" 4220 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4221 | dependencies: 4222 | camelcase "^1.0.2" 4223 | cliui "^2.1.0" 4224 | decamelize "^1.0.0" 4225 | window-size "0.1.0" 4226 | 4227 | yesno@^0.0.1: 4228 | version "0.0.1" 4229 | resolved "https://registry.yarnpkg.com/yesno/-/yesno-0.0.1.tgz#ffbc04ff3d6f99dad24f7463134e9b92ae41bef6" 4230 | --------------------------------------------------------------------------------