├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cases ├── babel │ ├── file-to-annotate.js │ ├── reference │ │ ├── build.js │ │ └── sourcemap-checkpoints.js │ ├── to-import.js │ └── webpack.config.js ├── simple │ ├── file-to-annotate.js │ ├── reference │ │ ├── build.js │ │ └── sourcemap-checkpoints.js │ └── webpack.config.js ├── typescript │ ├── file-to-annotate.ts │ ├── reference │ │ ├── build.js │ │ └── sourcemap-checkpoints.js │ ├── to-import.ts │ └── webpack.config.js └── uglifyjs │ ├── file-to-annotate.ts │ ├── reference │ ├── build.js │ └── sourcemap-checkpoints.js │ ├── to-import.ts │ └── webpack.config.js ├── loader.js ├── package.json ├── run-tests.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "8" 5 | - "9" 6 | - "10" 7 | - "11" 8 | - "12" 9 | - "13" 10 | 11 | script: 12 | - npm test 13 | 14 | cache: 15 | yarn: true 16 | directories: 17 | - node_modules 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015-2018 Andrey 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 all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 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 THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ng-annotate-loader [![Build Status](https://img.shields.io/travis/huston007/ng-annotate-loader.svg?style=flat-square)](https://travis-ci.org/huston007/ng-annotate-loader) 2 | 3 | Webpack loader to annotate angular applications. Generates a sourcemaps as well. 4 | 5 | ## Installation 6 | 7 | ``` 8 | npm install --save-dev ng-annotate-loader 9 | ``` 10 | 11 | ## Usage: 12 | 13 | ```js 14 | module: { 15 | loaders: [ 16 | { 17 | test: /src.*\.js$/, 18 | use: [{ loader: 'ng-annotate-loader' }], 19 | } 20 | ] 21 | } 22 | ``` 23 | 24 | #### Passing parameters: 25 | 26 | ```js 27 | { 28 | test: /src.*\.js$/, 29 | use: [ 30 | { 31 | loader: 'ng-annotate-loader', 32 | options: { 33 | add: false, 34 | map: false, 35 | } 36 | } 37 | ] 38 | } 39 | ``` 40 | 41 | [More about `ng-annotate` parameters](https://github.com/olov/ng-annotate/blob/master/OPTIONS.md) 42 | 43 | #### Using ng-annotate plugins: 44 | 45 | ```js 46 | { 47 | test: /src.*\.js$/, 48 | use: [ 49 | { 50 | loader: 'ng-annotate-loader', 51 | options: { 52 | plugin: ['ng-annotate-adf-plugin'] 53 | } 54 | } 55 | ] 56 | } 57 | ``` 58 | 59 | #### Using a fork of ng-annotate: 60 | 61 | ```js 62 | { 63 | test: /src.*\.js$/, 64 | use: [ 65 | { 66 | loader: 'ng-annotate-loader', 67 | options: { 68 | ngAnnotate: 'my-ng-annotate-fork' 69 | } 70 | } 71 | ] 72 | } 73 | ``` 74 | 75 | #### Works great with js compilers, `babel` for example: 76 | 77 | ```js 78 | { 79 | test: /src.*\.js$/, 80 | use: [ 81 | { loader: 'ng-annotate-loader' }, 82 | { loader: 'babel-loader' }, 83 | ] 84 | }, 85 | ``` 86 | 87 | ## Contributing 88 | 89 | #### Compiling examples and run acceptance test 90 | 91 | Run on the root folder: 92 | 93 | ``` 94 | npm install 95 | npm test 96 | ``` 97 | 98 | [Using loaders](https://webpack.js.org/concepts/loaders/) 99 | -------------------------------------------------------------------------------- /cases/babel/file-to-annotate.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | import babelTestMsg from './to-import'; 4 | console.log(babelTestMsg); 5 | 6 | class someCtrl { 7 | constructor($scope) { 8 | this.doSomething(); 9 | } 10 | doSomething() { 11 | } 12 | } 13 | 14 | angular.module('test', []) 15 | .controller('testCtrl', function($scope) { 16 | }) 17 | .factory('testFactory', function($cacheFactory) { 18 | return {}; 19 | }) 20 | .service('testNotAnnotated', function() { 21 | return {}; 22 | }) 23 | .directive('testDirective', function ($timeout) { 24 | return { 25 | restrict: 'E', 26 | controller: function($scope) { 27 | }, 28 | }; 29 | }) 30 | .controller('someCtrl', someCtrl); 31 | 32 | function toAnnotate($scope) { 33 | 'ngInject'; 34 | console.log('hi'); // should be function body, otherwise babel remove directive prologue 35 | } 36 | 37 | console.log('after annotated function'); 38 | -------------------------------------------------------------------------------- /cases/babel/reference/build.js: -------------------------------------------------------------------------------- 1 | /******/ (function(modules) { // webpackBootstrap 2 | /******/ // The module cache 3 | /******/ var installedModules = {}; 4 | /******/ 5 | /******/ // The require function 6 | /******/ function __webpack_require__(moduleId) { 7 | /******/ 8 | /******/ // Check if module is in cache 9 | /******/ if(installedModules[moduleId]) { 10 | /******/ return installedModules[moduleId].exports; 11 | /******/ } 12 | /******/ // Create a new module (and put it into the cache) 13 | /******/ var module = installedModules[moduleId] = { 14 | /******/ i: moduleId, 15 | /******/ l: false, 16 | /******/ exports: {} 17 | /******/ }; 18 | /******/ 19 | /******/ // Execute the module function 20 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); 21 | /******/ 22 | /******/ // Flag the module as loaded 23 | /******/ module.l = true; 24 | /******/ 25 | /******/ // Return the exports of the module 26 | /******/ return module.exports; 27 | /******/ } 28 | /******/ 29 | /******/ 30 | /******/ // expose the modules object (__webpack_modules__) 31 | /******/ __webpack_require__.m = modules; 32 | /******/ 33 | /******/ // expose the module cache 34 | /******/ __webpack_require__.c = installedModules; 35 | /******/ 36 | /******/ // identity function for calling harmony imports with the correct context 37 | /******/ __webpack_require__.i = function(value) { return value; }; 38 | /******/ 39 | /******/ // define getter function for harmony exports 40 | /******/ __webpack_require__.d = function(exports, name, getter) { 41 | /******/ if(!__webpack_require__.o(exports, name)) { 42 | /******/ Object.defineProperty(exports, name, { 43 | /******/ configurable: false, 44 | /******/ enumerable: true, 45 | /******/ get: getter 46 | /******/ }); 47 | /******/ } 48 | /******/ }; 49 | /******/ 50 | /******/ // getDefaultExport function for compatibility with non-harmony modules 51 | /******/ __webpack_require__.n = function(module) { 52 | /******/ var getter = module && module.__esModule ? 53 | /******/ function getDefault() { return module['default']; } : 54 | /******/ function getModuleExports() { return module; }; 55 | /******/ __webpack_require__.d(getter, 'a', getter); 56 | /******/ return getter; 57 | /******/ }; 58 | /******/ 59 | /******/ // Object.prototype.hasOwnProperty.call 60 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; 61 | /******/ 62 | /******/ // __webpack_public_path__ 63 | /******/ __webpack_require__.p = ""; 64 | /******/ 65 | /******/ // Load entry module and return exports 66 | /******/ return __webpack_require__(__webpack_require__.s = 1); 67 | /******/ }) 68 | /************************************************************************/ 69 | /******/ ([ 70 | /* 0 */ 71 | /***/ (function(module, exports, __webpack_require__) { 72 | 73 | "use strict"; 74 | 75 | 76 | Object.defineProperty(exports, "__esModule", { 77 | value: true 78 | }); 79 | exports.default = 'babel-test'; 80 | 81 | /***/ }), 82 | /* 1 */ 83 | /***/ (function(module, exports, __webpack_require__) { 84 | 85 | "use strict"; 86 | 87 | 88 | toAnnotate.$inject = ["$scope"]; 89 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); 90 | 91 | var _toImport = __webpack_require__(0); 92 | 93 | var _toImport2 = _interopRequireDefault(_toImport); 94 | 95 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 96 | 97 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 98 | 99 | console.log(_toImport2.default); 100 | 101 | var someCtrl = function () { 102 | someCtrl.$inject = ["$scope"]; 103 | function someCtrl($scope) { 104 | _classCallCheck(this, someCtrl); 105 | 106 | this.doSomething(); 107 | } 108 | 109 | _createClass(someCtrl, [{ 110 | key: 'doSomething', 111 | value: function doSomething() {} 112 | }]); 113 | 114 | return someCtrl; 115 | }(); 116 | 117 | angular.module('test', []).controller('testCtrl', ["$scope", function ($scope) {}]).factory('testFactory', ["$cacheFactory", function ($cacheFactory) { 118 | return {}; 119 | }]).service('testNotAnnotated', function () { 120 | return {}; 121 | }).directive('testDirective', ["$timeout", function ($timeout) { 122 | return { 123 | restrict: 'E', 124 | controller: ["$scope", function controller($scope) {}] 125 | }; 126 | }]).controller('someCtrl', someCtrl); 127 | 128 | function toAnnotate($scope) { 129 | 'ngInject'; 130 | 131 | console.log('hi'); // should be function body, otherwise babel remove directive prologue 132 | } 133 | 134 | console.log('after annotated function'); 135 | 136 | /***/ }) 137 | /******/ ]); 138 | //# sourceMappingURL=build.js.map -------------------------------------------------------------------------------- /cases/babel/reference/sourcemap-checkpoints.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | { 3 | original: { source: 'webpack:///file-to-annotate.js', line: 33, column: 2 }, 4 | generated: { line: 129, column: 2 }, 5 | }, 6 | { 7 | original: { source: 'webpack:///file-to-annotate.js', line: 41, column: 0 }, 8 | generated: { line: 134, column: 12 }, 9 | }, 10 | ]; 11 | -------------------------------------------------------------------------------- /cases/babel/to-import.js: -------------------------------------------------------------------------------- 1 | export default 'babel-test'; 2 | -------------------------------------------------------------------------------- /cases/babel/webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = { 4 | context: __dirname, 5 | entry: './file-to-annotate.js', 6 | output: { 7 | path: __dirname + '/dist', 8 | filename: 'build.js', 9 | }, 10 | resolveLoader: { 11 | modules: [ 12 | 'node_modules', 13 | path.resolve(__dirname, '../../'), 14 | ], 15 | }, 16 | module: { 17 | rules: [ 18 | { 19 | test: /\.js$/, 20 | use: [ 21 | { loader: 'loader' }, 22 | { loader: 'babel-loader', options: { presets: ['es2015'] } }, 23 | ], 24 | }, 25 | ], 26 | }, 27 | devtool: 'source-map', 28 | }; 29 | -------------------------------------------------------------------------------- /cases/simple/file-to-annotate.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function namedFunction($dep) { 4 | $dep.do(); 5 | } 6 | 7 | angular.module('test', []) 8 | .controller('testCtrl', function($scope) { 9 | }) 10 | .factory('testFactory', function($cacheFactory) { 11 | return {}; 12 | }) 13 | .service('testNotAnnotated', function() { 14 | return {}; 15 | }) 16 | .directive('testDirective', function ($timeout) { 17 | return { 18 | restrict: 'E', 19 | controller: function($scope) { 20 | }, 21 | }; 22 | }) 23 | .service('namedFunction', namedFunction); 24 | -------------------------------------------------------------------------------- /cases/simple/reference/build.js: -------------------------------------------------------------------------------- 1 | /******/ (function(modules) { // webpackBootstrap 2 | /******/ // The module cache 3 | /******/ var installedModules = {}; 4 | /******/ 5 | /******/ // The require function 6 | /******/ function __webpack_require__(moduleId) { 7 | /******/ 8 | /******/ // Check if module is in cache 9 | /******/ if(installedModules[moduleId]) { 10 | /******/ return installedModules[moduleId].exports; 11 | /******/ } 12 | /******/ // Create a new module (and put it into the cache) 13 | /******/ var module = installedModules[moduleId] = { 14 | /******/ i: moduleId, 15 | /******/ l: false, 16 | /******/ exports: {} 17 | /******/ }; 18 | /******/ 19 | /******/ // Execute the module function 20 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); 21 | /******/ 22 | /******/ // Flag the module as loaded 23 | /******/ module.l = true; 24 | /******/ 25 | /******/ // Return the exports of the module 26 | /******/ return module.exports; 27 | /******/ } 28 | /******/ 29 | /******/ 30 | /******/ // expose the modules object (__webpack_modules__) 31 | /******/ __webpack_require__.m = modules; 32 | /******/ 33 | /******/ // expose the module cache 34 | /******/ __webpack_require__.c = installedModules; 35 | /******/ 36 | /******/ // identity function for calling harmony imports with the correct context 37 | /******/ __webpack_require__.i = function(value) { return value; }; 38 | /******/ 39 | /******/ // define getter function for harmony exports 40 | /******/ __webpack_require__.d = function(exports, name, getter) { 41 | /******/ if(!__webpack_require__.o(exports, name)) { 42 | /******/ Object.defineProperty(exports, name, { 43 | /******/ configurable: false, 44 | /******/ enumerable: true, 45 | /******/ get: getter 46 | /******/ }); 47 | /******/ } 48 | /******/ }; 49 | /******/ 50 | /******/ // getDefaultExport function for compatibility with non-harmony modules 51 | /******/ __webpack_require__.n = function(module) { 52 | /******/ var getter = module && module.__esModule ? 53 | /******/ function getDefault() { return module['default']; } : 54 | /******/ function getModuleExports() { return module; }; 55 | /******/ __webpack_require__.d(getter, 'a', getter); 56 | /******/ return getter; 57 | /******/ }; 58 | /******/ 59 | /******/ // Object.prototype.hasOwnProperty.call 60 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; 61 | /******/ 62 | /******/ // __webpack_public_path__ 63 | /******/ __webpack_require__.p = ""; 64 | /******/ 65 | /******/ // Load entry module and return exports 66 | /******/ return __webpack_require__(__webpack_require__.s = 0); 67 | /******/ }) 68 | /************************************************************************/ 69 | /******/ ([ 70 | /* 0 */ 71 | /***/ (function(module, exports, __webpack_require__) { 72 | 73 | "use strict"; 74 | 75 | 76 | namedFunction.$inject = ["$dep"]; 77 | function namedFunction($dep) { 78 | $dep.do(); 79 | } 80 | 81 | angular.module('test', []) 82 | .controller('testCtrl', ["$scope", function($scope) { 83 | }]) 84 | .factory('testFactory', ["$cacheFactory", function($cacheFactory) { 85 | return {}; 86 | }]) 87 | .service('testNotAnnotated', function() { 88 | return {}; 89 | }) 90 | .directive('testDirective', ["$timeout", function ($timeout) { 91 | return { 92 | restrict: 'E', 93 | controller: ["$scope", function($scope) { 94 | }], 95 | }; 96 | }]) 97 | .service('namedFunction', namedFunction); 98 | 99 | 100 | /***/ }) 101 | /******/ ]); 102 | //# sourceMappingURL=build.js.map -------------------------------------------------------------------------------- /cases/simple/reference/sourcemap-checkpoints.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | { 3 | original: { source: 'webpack:///file-to-annotate.js', line: 24, column: 5 }, 4 | generated: { line: 97, column: 28 }, 5 | }, 6 | { 7 | original: { source: 'webpack:///file-to-annotate.js', line: 11, column: 5 }, 8 | generated: { line: 85, column: 4 }, 9 | }, 10 | ]; 11 | -------------------------------------------------------------------------------- /cases/simple/webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = { 4 | context: __dirname, 5 | entry: './file-to-annotate', 6 | output: { 7 | path: __dirname + '/dist', 8 | filename: 'build.js', 9 | }, 10 | resolveLoader: { 11 | modules: [ 12 | 'node_modules', 13 | path.resolve(__dirname, '../../'), 14 | ], 15 | }, 16 | module: { 17 | rules: [ 18 | { 19 | test: /\.js$/, 20 | use: [{ loader: 'loader' }], 21 | }, 22 | ], 23 | }, 24 | devtool: 'source-map', 25 | }; 26 | -------------------------------------------------------------------------------- /cases/typescript/file-to-annotate.ts: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | declare const angular: any; 4 | 5 | import babelTestMsg from './to-import'; 6 | console.log(babelTestMsg); 7 | 8 | class someCtrl { 9 | constructor($scope) { 10 | this.doSomething(); 11 | } 12 | doSomething() { 13 | } 14 | } 15 | 16 | angular.module('test', []) 17 | .controller('testCtrl', function($scope) { 18 | }) 19 | .factory('testFactory', function($cacheFactory) { 20 | return {}; 21 | }) 22 | .service('testNotAnnotated', function() { 23 | return {}; 24 | }) 25 | .directive('testDirective', function ($timeout) { 26 | return { 27 | restrict: 'E', 28 | controller: function($scope) { 29 | }, 30 | }; 31 | }) 32 | .controller('someCtrl', someCtrl); 33 | 34 | function toAnnotate($scope) { 35 | 'ngInject'; 36 | console.log('hi'); // should be function body, otherwise babel remove directive prologue 37 | } 38 | 39 | console.log('after annotated function'); 40 | -------------------------------------------------------------------------------- /cases/typescript/reference/build.js: -------------------------------------------------------------------------------- 1 | /******/ (function(modules) { // webpackBootstrap 2 | /******/ // The module cache 3 | /******/ var installedModules = {}; 4 | /******/ 5 | /******/ // The require function 6 | /******/ function __webpack_require__(moduleId) { 7 | /******/ 8 | /******/ // Check if module is in cache 9 | /******/ if(installedModules[moduleId]) { 10 | /******/ return installedModules[moduleId].exports; 11 | /******/ } 12 | /******/ // Create a new module (and put it into the cache) 13 | /******/ var module = installedModules[moduleId] = { 14 | /******/ i: moduleId, 15 | /******/ l: false, 16 | /******/ exports: {} 17 | /******/ }; 18 | /******/ 19 | /******/ // Execute the module function 20 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); 21 | /******/ 22 | /******/ // Flag the module as loaded 23 | /******/ module.l = true; 24 | /******/ 25 | /******/ // Return the exports of the module 26 | /******/ return module.exports; 27 | /******/ } 28 | /******/ 29 | /******/ 30 | /******/ // expose the modules object (__webpack_modules__) 31 | /******/ __webpack_require__.m = modules; 32 | /******/ 33 | /******/ // expose the module cache 34 | /******/ __webpack_require__.c = installedModules; 35 | /******/ 36 | /******/ // identity function for calling harmony imports with the correct context 37 | /******/ __webpack_require__.i = function(value) { return value; }; 38 | /******/ 39 | /******/ // define getter function for harmony exports 40 | /******/ __webpack_require__.d = function(exports, name, getter) { 41 | /******/ if(!__webpack_require__.o(exports, name)) { 42 | /******/ Object.defineProperty(exports, name, { 43 | /******/ configurable: false, 44 | /******/ enumerable: true, 45 | /******/ get: getter 46 | /******/ }); 47 | /******/ } 48 | /******/ }; 49 | /******/ 50 | /******/ // getDefaultExport function for compatibility with non-harmony modules 51 | /******/ __webpack_require__.n = function(module) { 52 | /******/ var getter = module && module.__esModule ? 53 | /******/ function getDefault() { return module['default']; } : 54 | /******/ function getModuleExports() { return module; }; 55 | /******/ __webpack_require__.d(getter, 'a', getter); 56 | /******/ return getter; 57 | /******/ }; 58 | /******/ 59 | /******/ // Object.prototype.hasOwnProperty.call 60 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; 61 | /******/ 62 | /******/ // __webpack_public_path__ 63 | /******/ __webpack_require__.p = ""; 64 | /******/ 65 | /******/ // Load entry module and return exports 66 | /******/ return __webpack_require__(__webpack_require__.s = 1); 67 | /******/ }) 68 | /************************************************************************/ 69 | /******/ ([ 70 | /* 0 */ 71 | /***/ (function(module, exports, __webpack_require__) { 72 | 73 | "use strict"; 74 | 75 | Object.defineProperty(exports, "__esModule", { value: true }); 76 | exports.default = 'babel-test'; 77 | 78 | 79 | /***/ }), 80 | /* 1 */ 81 | /***/ (function(module, exports, __webpack_require__) { 82 | 83 | "use strict"; 84 | 85 | toAnnotate.$inject = ["$scope"]; 86 | Object.defineProperty(exports, "__esModule", { value: true }); 87 | var to_import_1 = __webpack_require__(0); 88 | console.log(to_import_1.default); 89 | var someCtrl = (function () { 90 | someCtrl.$inject = ["$scope"]; 91 | function someCtrl($scope) { 92 | this.doSomething(); 93 | } 94 | someCtrl.prototype.doSomething = function () { 95 | }; 96 | return someCtrl; 97 | }()); 98 | angular.module('test', []) 99 | .controller('testCtrl', ["$scope", function ($scope) { 100 | }]) 101 | .factory('testFactory', ["$cacheFactory", function ($cacheFactory) { 102 | return {}; 103 | }]) 104 | .service('testNotAnnotated', function () { 105 | return {}; 106 | }) 107 | .directive('testDirective', ["$timeout", function ($timeout) { 108 | return { 109 | restrict: 'E', 110 | controller: ["$scope", function ($scope) { 111 | }], 112 | }; 113 | }]) 114 | .controller('someCtrl', someCtrl); 115 | function toAnnotate($scope) { 116 | 'ngInject'; 117 | console.log('hi'); // should be function body, otherwise babel remove directive prologue 118 | } 119 | console.log('after annotated function'); 120 | 121 | 122 | /***/ }) 123 | /******/ ]); 124 | //# sourceMappingURL=build.js.map -------------------------------------------------------------------------------- /cases/typescript/reference/sourcemap-checkpoints.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | { 3 | original: { source: 'webpack:///file-to-annotate.ts', line: 6, column: 0 }, 4 | generated: { line: 88, column: 0 }, 5 | }, 6 | { 7 | original: { source: 'webpack:///file-to-annotate.ts', line: 16, column: 5 }, 8 | generated: { line: 98, column: 0 }, 9 | }, 10 | { 11 | original: { source: 'webpack:///file-to-annotate.ts', line: 30, column: 3 }, 12 | generated: { line: 110, column: 0 }, 13 | }, 14 | ]; 15 | -------------------------------------------------------------------------------- /cases/typescript/to-import.ts: -------------------------------------------------------------------------------- 1 | export default 'babel-test'; 2 | -------------------------------------------------------------------------------- /cases/typescript/webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = { 4 | context: __dirname, 5 | entry: './file-to-annotate', 6 | output: { 7 | path: __dirname + '/dist', 8 | filename: 'build.js', 9 | }, 10 | resolveLoader: { 11 | modules: [ 12 | 'node_modules', 13 | path.resolve(__dirname, '../../'), 14 | ], 15 | }, 16 | resolve: { 17 | extensions: ['.ts'], 18 | modules: [ 19 | __dirname, 20 | 'node_modules', 21 | ], 22 | }, 23 | module: { 24 | rules: [ 25 | { 26 | test: /\.ts$/, 27 | enforce: 'pre', 28 | exclude: /node_modules/, 29 | use: [ 30 | { 31 | loader: 'tslint-loader', 32 | options: { 33 | configuration: { 34 | rules: { 35 | quotemark: [true, 'double'], 36 | }, 37 | }, 38 | }, 39 | }, 40 | ], 41 | }, 42 | { 43 | test: /\.ts$/, 44 | use: [ 45 | { loader: 'loader' }, 46 | { loader: 'awesome-typescript-loader' }, 47 | ], 48 | }, 49 | ], 50 | }, 51 | devtool: 'cheap-module-source-map', 52 | }; 53 | -------------------------------------------------------------------------------- /cases/uglifyjs/file-to-annotate.ts: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | declare const angular: any; 4 | 5 | import babelTestMsg from './to-import'; 6 | console.log(babelTestMsg); 7 | 8 | class someCtrl { 9 | constructor($scope) { 10 | this.doSomething(); 11 | } 12 | doSomething() { 13 | } 14 | } 15 | 16 | angular.module('test', []) 17 | .controller('testCtrl', function($scope) { 18 | }) 19 | .factory('testFactory', function($cacheFactory) { 20 | return {}; 21 | }) 22 | .service('testNotAnnotated', function() { 23 | return {}; 24 | }) 25 | .directive('testDirective', function ($timeout) { 26 | return { 27 | restrict: 'E', 28 | controller: function($scope) { 29 | }, 30 | }; 31 | }) 32 | .controller('someCtrl', someCtrl); 33 | 34 | function toAnnotate($scope) { 35 | 'ngInject'; 36 | console.log('hi'); // should be function body, otherwise babel remove directive prologue 37 | } 38 | 39 | console.log('after annotated function'); 40 | -------------------------------------------------------------------------------- /cases/uglifyjs/reference/build.js: -------------------------------------------------------------------------------- 1 | !function(t){function e(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{}};return t[o].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var n={};e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,o){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:o})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=1)}([function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default="babel-test"},function(t,e,n){"use strict";function o(t){"ngInject";console.log("hi")}o.$inject=["$scope"],Object.defineProperty(e,"__esModule",{value:!0});var r=n(0);console.log(r.default);var c=function(){function t(t){this.doSomething()}return t.$inject=["$scope"],t.prototype.doSomething=function(){},t}();angular.module("test",[]).controller("testCtrl",["$scope",function(t){}]).factory("testFactory",["$cacheFactory",function(t){return{}}]).service("testNotAnnotated",function(){return{}}).directive("testDirective",["$timeout",function(t){return{restrict:"E",controller:["$scope",function(t){}]}}]).controller("someCtrl",c),console.log("after annotated function")}]); 2 | //# sourceMappingURL=build.js.map -------------------------------------------------------------------------------- /cases/uglifyjs/reference/sourcemap-checkpoints.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | { 3 | original: { source: 'webpack:///file-to-annotate.ts', line: 6, column: 0 }, 4 | generated: { line: 1, column: 741 }, 5 | }, 6 | { 7 | original: { source: 'webpack:///file-to-annotate.ts', line: 16, column: 5 }, 8 | generated: { line: 1, column: 884 }, 9 | }, 10 | { 11 | original: { source: 'webpack:///file-to-annotate.ts', line: 30, column: 3 }, 12 | generated: { line: 1, column: 1171 }, 13 | }, 14 | ]; 15 | -------------------------------------------------------------------------------- /cases/uglifyjs/to-import.ts: -------------------------------------------------------------------------------- 1 | export default 'babel-test'; 2 | -------------------------------------------------------------------------------- /cases/uglifyjs/webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | var UglifyJsPlugin = require('webpack/lib/optimize/UglifyJsPlugin'); 3 | 4 | module.exports = { 5 | context: __dirname, 6 | entry: './file-to-annotate', 7 | output: { 8 | path: __dirname + '/dist', 9 | filename: 'build.js', 10 | }, 11 | resolveLoader: { 12 | modules: [ 13 | 'node_modules', 14 | path.resolve(__dirname, '../../'), 15 | ], 16 | }, 17 | resolve: { 18 | extensions: ['.ts'], 19 | modules: [ 20 | __dirname, 21 | 'node_modules', 22 | ], 23 | }, 24 | plugins: [ 25 | /** 26 | * Plugin: UglifyJsPlugin 27 | * Description: Minimize all JavaScript output of chunks. 28 | * Loaders are switched into minimizing mode. 29 | * 30 | * See: https://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin 31 | */ 32 | new UglifyJsPlugin({ 33 | beautify: false, 34 | mangle: {screw_ie8: true}, 35 | compress: { 36 | screw_ie8: true, 37 | }, 38 | sourceMap: true, 39 | comments: false, 40 | }), 41 | ], 42 | module: { 43 | rules: [ 44 | { 45 | test: /\.ts$/, 46 | use: [ 47 | { loader: 'loader' }, 48 | { loader: 'awesome-typescript-loader' }, 49 | ], 50 | }, 51 | ], 52 | }, 53 | devtool: 'source-map', 54 | }; 55 | -------------------------------------------------------------------------------- /loader.js: -------------------------------------------------------------------------------- 1 | var utils = require('loader-utils'); 2 | var clone = require('clone'); 3 | var SourceMapConsumer = require('source-map').SourceMapConsumer; 4 | var SourceMapGenerator = require('source-map').SourceMapGenerator; 5 | var normalizePath = require('normalize-path'); 6 | 7 | function loadPlugins(pluginNames) { 8 | pluginNames = pluginNames || []; 9 | return pluginNames.map(function(name) { 10 | return require(name); 11 | }); 12 | } 13 | 14 | function getOptions(sourceMapEnabled, filename) { 15 | // options object may be re-used across multiple invocations. 16 | var options = clone(utils.getOptions(this) || {}); 17 | 18 | //"add" should be a default option if not overrided in query 19 | if (options.add === undefined) { 20 | options.add = true; 21 | } 22 | 23 | if (options.ngAnnotate === undefined) { 24 | options.ngAnnotate = 'ng-annotate'; 25 | } 26 | 27 | if (sourceMapEnabled && options.map === undefined) { 28 | options.map = { 29 | inline: false, 30 | inFile: filename, 31 | }; 32 | } 33 | 34 | if (options.plugin) { 35 | options.plugin = loadPlugins(options.plugin); 36 | } 37 | 38 | return options; 39 | } 40 | 41 | function mergeSourceMaps(inputSourceMap, annotateMap) { 42 | var outputSourceMap; 43 | var sourceMapEnabled = this.sourceMap; 44 | var filename = normalizePath(this.resourcePath); 45 | this.cacheable && this.cacheable(); 46 | 47 | if (sourceMapEnabled && !inputSourceMap && annotateMap) { 48 | outputSourceMap = annotateMap; 49 | } 50 | 51 | // Using BabelJS as an example, 52 | // https://github.com/babel/babel/blob/d3a73b87e9007104cb4fec343f0cfb9e1c67a4ec/packages/babel/src/transformation/file/index.js#L465 53 | // See also vinyl-sourcemaps-apply (used by gulp-ng-annotate) - https://github.com/floridoo/vinyl-sourcemaps-apply/blob/master/index.js 54 | if (sourceMapEnabled && inputSourceMap) { 55 | inputSourceMap.sourceRoot = ''; 56 | inputSourceMap.sources[0] = filename; 57 | 58 | if (annotateMap) { 59 | var generator = SourceMapGenerator.fromSourceMap(new SourceMapConsumer(annotateMap)); 60 | generator.applySourceMap(new SourceMapConsumer(inputSourceMap), filename); 61 | 62 | outputSourceMap = generator.toJSON(); 63 | 64 | //Should be set to avoid '../../file is not in SourceMap error https://github.com/huston007/ng-annotate-loader/pull/11' 65 | outputSourceMap.sourceRoot = ''; 66 | //Copy file name from incoming file because it is empty by some unknown reaon 67 | outputSourceMap.file = normalizePath(this.resourcePath); 68 | } else { 69 | outputSourceMap = inputSourceMap; 70 | } 71 | } 72 | 73 | if (typeof outputSourceMap == 'string') { 74 | return JSON.parse(outputSourceMap); 75 | } else { 76 | return outputSourceMap; 77 | } 78 | } 79 | 80 | module.exports = function(source, inputSourceMap) { 81 | var sourceMapEnabled = this.sourceMap; 82 | var filename = normalizePath(this.resourcePath); 83 | this.cacheable && this.cacheable(); 84 | 85 | var options = getOptions.call(this, sourceMapEnabled, filename); 86 | 87 | var ngAnnotate = require(options.ngAnnotate); 88 | var annotateResult = ngAnnotate(source, options); 89 | 90 | if (annotateResult.errors) { 91 | this.callback(annotateResult.errors); 92 | } else if (annotateResult.src !== source) { 93 | var outputSourceMap = mergeSourceMaps.call(this, inputSourceMap, annotateResult.map); 94 | this.callback(null, annotateResult.src || source, outputSourceMap); 95 | } else { 96 | // if ngAnnotate did nothing, return map and result untouched 97 | this.callback(null, source, inputSourceMap); 98 | } 99 | }; 100 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ng-annotate-loader", 3 | "version": "0.7.0", 4 | "description": "Webpack loader that runs ng-annotate on your bundles", 5 | "main": "loader.js", 6 | "scripts": { 7 | "test": "node run-tests.js" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/huston007/ng-annotate-loader.git" 12 | }, 13 | "keywords": [ 14 | "webpack", 15 | "ng-annotate", 16 | "angular" 17 | ], 18 | "author": "Andrey Skladchikov", 19 | "license": "MIT", 20 | "bugs": { 21 | "url": "https://github.com/huston007/ng-annotate-loader/issues" 22 | }, 23 | "homepage": "https://github.com/huston007/ng-annotate-loader", 24 | "dependencies": { 25 | "clone": "^2.1.1", 26 | "loader-utils": "1.1.0", 27 | "ng-annotate": "1.2.1", 28 | "normalize-path": "2.0.1", 29 | "source-map": "0.5.6" 30 | }, 31 | "devDependencies": { 32 | "awesome-typescript-loader": "3.1.2", 33 | "babel-core": "6.24.1", 34 | "babel-loader": "6.4.1", 35 | "babel-preset-es2015": "6.24.1", 36 | "tap-spec": "4.1.1", 37 | "tape": "4.6.0", 38 | "tslint": "4.5.1", 39 | "tslint-loader": "3.5.2", 40 | "typescript": "2.2.2", 41 | "webpack": "^2.3.3" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /run-tests.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const test = require('tape'); 4 | const webpack = require('webpack'); 5 | const fs = require('fs'); 6 | const SourceMapConsumer = require('source-map').SourceMapConsumer; 7 | 8 | test.createStream() 9 | .pipe(require('tap-spec')()) 10 | .pipe(process.stdout); 11 | 12 | const cases = ['typescript', 'simple', 'babel', 'uglifyjs']; 13 | 14 | for (let testCase of cases) { 15 | test('Acceptance tests. Case ' + testCase, (t) => { 16 | const folder = './cases/' + testCase; 17 | 18 | webpack(require(folder + '/webpack.config.js'), (err, stats) => { 19 | if (err) { 20 | throw err; // hard error 21 | } 22 | 23 | if (stats.hasErrors()) { 24 | console.error(stats.toString({ 25 | version: false, 26 | hash: false, 27 | assets: true, 28 | chunks: false, 29 | colors: true, 30 | })); 31 | } 32 | 33 | const actualSource = fs.readFileSync(folder + '/dist/build.js', 'utf8').replace(/\r\n/g, "\n"); 34 | const expectedSource = fs.readFileSync(folder + '/reference/build.js', 'utf8'); 35 | 36 | t.equal(actualSource, expectedSource, 'Test annotated source'); 37 | 38 | const actualMap = fs.readFileSync(folder + '/dist/build.js.map', 'utf8'); 39 | testMap(t, actualMap, require(folder + '/reference/sourcemap-checkpoints')); 40 | }); 41 | 42 | t.plan(2); 43 | }); 44 | } 45 | 46 | /** 47 | * 48 | * @param t 49 | * @param content 50 | * @param {array<{original, generated}>} checkpoints 51 | */ 52 | function testMap(t, content, checkpoints){ 53 | t.test('Check source map cases', (t) => { 54 | const rawMap = JSON.parse(content); 55 | const map = new SourceMapConsumer(rawMap); 56 | 57 | const sources = rawMap.sources.map((source) => { 58 | const matches = source.match(/[^/]+\..+$/); 59 | return matches ? matches[0] : source; 60 | }); 61 | 62 | t.equal(sources.length, uniq(sources).length, 'No duplicates in sourcemap sources'); 63 | 64 | for(let point of checkpoints) { 65 | const result = map.generatedPositionFor(point.original); 66 | 67 | t.deepEqual({ line: result.line, column: result.column }, point.generated); 68 | } 69 | }); 70 | 71 | t.end(); 72 | } 73 | 74 | function uniq(a) { 75 | return Array.from(new Set(a)); 76 | } 77 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | acorn-dynamic-import@^2.0.0: 6 | version "2.0.2" 7 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 8 | integrity sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ= 9 | dependencies: 10 | acorn "^4.0.3" 11 | 12 | acorn@^4.0.3: 13 | version "4.0.13" 14 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 15 | integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= 16 | 17 | acorn@^5.0.0: 18 | version "5.7.4" 19 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" 20 | integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== 21 | 22 | acorn@~2.6.4: 23 | version "2.6.4" 24 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.6.4.tgz#eb1f45b4a43fa31d03701a5ec46f3b52673e90ee" 25 | integrity sha1-6x9FtKQ/ox0DcBpexG87Umc+kO4= 26 | 27 | ajv-keywords@^1.1.1: 28 | version "1.5.1" 29 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 30 | integrity sha1-MU3QpLM2j609/NxU7eYXG4htrzw= 31 | 32 | ajv@^4.7.0: 33 | version "4.11.8" 34 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 35 | integrity sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY= 36 | dependencies: 37 | co "^4.6.0" 38 | json-stable-stringify "^1.0.1" 39 | 40 | align-text@^0.1.1, align-text@^0.1.3: 41 | version "0.1.4" 42 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 43 | integrity sha1-DNkKVhCT810KmSVsIrcGlDP60Rc= 44 | dependencies: 45 | kind-of "^3.0.2" 46 | longest "^1.0.1" 47 | repeat-string "^1.5.2" 48 | 49 | alter@~0.2.0: 50 | version "0.2.0" 51 | resolved "https://registry.yarnpkg.com/alter/-/alter-0.2.0.tgz#c7588808617572034aae62480af26b1d4d1cb3cd" 52 | integrity sha1-x1iICGF1cgNKrmJICvJrHU0cs80= 53 | dependencies: 54 | stable "~0.1.3" 55 | 56 | ansi-align@^2.0.0: 57 | version "2.0.0" 58 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 59 | integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= 60 | dependencies: 61 | string-width "^2.0.0" 62 | 63 | ansi-regex@^2.0.0: 64 | version "2.1.1" 65 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 66 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 67 | 68 | ansi-regex@^3.0.0: 69 | version "3.0.0" 70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 71 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 72 | 73 | ansi-styles@^2.2.1: 74 | version "2.2.1" 75 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 76 | integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 77 | 78 | ansi-styles@^3.2.1: 79 | version "3.2.1" 80 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 81 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 82 | dependencies: 83 | color-convert "^1.9.0" 84 | 85 | anymatch@^2.0.0: 86 | version "2.0.0" 87 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 88 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 89 | dependencies: 90 | micromatch "^3.1.4" 91 | normalize-path "^2.1.1" 92 | 93 | anymatch@~3.1.1: 94 | version "3.1.1" 95 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 96 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 97 | dependencies: 98 | normalize-path "^3.0.0" 99 | picomatch "^2.0.4" 100 | 101 | arr-diff@^4.0.0: 102 | version "4.0.0" 103 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 104 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 105 | 106 | arr-flatten@^1.1.0: 107 | version "1.1.0" 108 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 109 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 110 | 111 | arr-union@^3.1.0: 112 | version "3.1.0" 113 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 114 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 115 | 116 | array-unique@^0.3.2: 117 | version "0.3.2" 118 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 119 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 120 | 121 | asn1.js@^4.0.0: 122 | version "4.10.1" 123 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" 124 | integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== 125 | dependencies: 126 | bn.js "^4.0.0" 127 | inherits "^2.0.1" 128 | minimalistic-assert "^1.0.0" 129 | 130 | assert@^1.1.1: 131 | version "1.5.0" 132 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" 133 | integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== 134 | dependencies: 135 | object-assign "^4.1.1" 136 | util "0.10.3" 137 | 138 | assign-symbols@^1.0.0: 139 | version "1.0.0" 140 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 141 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 142 | 143 | async-each@^1.0.1: 144 | version "1.0.3" 145 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 146 | integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== 147 | 148 | async@^2.1.2: 149 | version "2.6.3" 150 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" 151 | integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== 152 | dependencies: 153 | lodash "^4.17.14" 154 | 155 | atob@^2.1.2: 156 | version "2.1.2" 157 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 158 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 159 | 160 | awesome-typescript-loader@3.1.2: 161 | version "3.1.2" 162 | resolved "https://registry.yarnpkg.com/awesome-typescript-loader/-/awesome-typescript-loader-3.1.2.tgz#3df192b91a6285f795ca65e63aad114fbb44f710" 163 | integrity sha1-PfGSuRpihfeVymXmOq0RT7tE9xA= 164 | dependencies: 165 | colors "^1.1.2" 166 | enhanced-resolve "^3.1.0" 167 | loader-utils "^1.0.2" 168 | lodash "^4.17.4" 169 | mkdirp "^0.5.1" 170 | object-assign "^4.1.1" 171 | source-map-support "^0.4.11" 172 | 173 | babel-code-frame@^6.20.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 174 | version "6.26.0" 175 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 176 | integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= 177 | dependencies: 178 | chalk "^1.1.3" 179 | esutils "^2.0.2" 180 | js-tokens "^3.0.2" 181 | 182 | babel-core@6.24.1: 183 | version "6.24.1" 184 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 185 | integrity sha1-jEKFZNzh4fQfszfsNPTDsCK1rYM= 186 | dependencies: 187 | babel-code-frame "^6.22.0" 188 | babel-generator "^6.24.1" 189 | babel-helpers "^6.24.1" 190 | babel-messages "^6.23.0" 191 | babel-register "^6.24.1" 192 | babel-runtime "^6.22.0" 193 | babel-template "^6.24.1" 194 | babel-traverse "^6.24.1" 195 | babel-types "^6.24.1" 196 | babylon "^6.11.0" 197 | convert-source-map "^1.1.0" 198 | debug "^2.1.1" 199 | json5 "^0.5.0" 200 | lodash "^4.2.0" 201 | minimatch "^3.0.2" 202 | path-is-absolute "^1.0.0" 203 | private "^0.1.6" 204 | slash "^1.0.0" 205 | source-map "^0.5.0" 206 | 207 | babel-core@^6.26.0: 208 | version "6.26.3" 209 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 210 | integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== 211 | dependencies: 212 | babel-code-frame "^6.26.0" 213 | babel-generator "^6.26.0" 214 | babel-helpers "^6.24.1" 215 | babel-messages "^6.23.0" 216 | babel-register "^6.26.0" 217 | babel-runtime "^6.26.0" 218 | babel-template "^6.26.0" 219 | babel-traverse "^6.26.0" 220 | babel-types "^6.26.0" 221 | babylon "^6.18.0" 222 | convert-source-map "^1.5.1" 223 | debug "^2.6.9" 224 | json5 "^0.5.1" 225 | lodash "^4.17.4" 226 | minimatch "^3.0.4" 227 | path-is-absolute "^1.0.1" 228 | private "^0.1.8" 229 | slash "^1.0.0" 230 | source-map "^0.5.7" 231 | 232 | babel-generator@^6.24.1, babel-generator@^6.26.0: 233 | version "6.26.1" 234 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 235 | integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== 236 | dependencies: 237 | babel-messages "^6.23.0" 238 | babel-runtime "^6.26.0" 239 | babel-types "^6.26.0" 240 | detect-indent "^4.0.0" 241 | jsesc "^1.3.0" 242 | lodash "^4.17.4" 243 | source-map "^0.5.7" 244 | trim-right "^1.0.1" 245 | 246 | babel-helper-call-delegate@^6.24.1: 247 | version "6.24.1" 248 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 249 | integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340= 250 | dependencies: 251 | babel-helper-hoist-variables "^6.24.1" 252 | babel-runtime "^6.22.0" 253 | babel-traverse "^6.24.1" 254 | babel-types "^6.24.1" 255 | 256 | babel-helper-define-map@^6.24.1: 257 | version "6.26.0" 258 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 259 | integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8= 260 | dependencies: 261 | babel-helper-function-name "^6.24.1" 262 | babel-runtime "^6.26.0" 263 | babel-types "^6.26.0" 264 | lodash "^4.17.4" 265 | 266 | babel-helper-function-name@^6.24.1: 267 | version "6.24.1" 268 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 269 | integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk= 270 | dependencies: 271 | babel-helper-get-function-arity "^6.24.1" 272 | babel-runtime "^6.22.0" 273 | babel-template "^6.24.1" 274 | babel-traverse "^6.24.1" 275 | babel-types "^6.24.1" 276 | 277 | babel-helper-get-function-arity@^6.24.1: 278 | version "6.24.1" 279 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 280 | integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0= 281 | dependencies: 282 | babel-runtime "^6.22.0" 283 | babel-types "^6.24.1" 284 | 285 | babel-helper-hoist-variables@^6.24.1: 286 | version "6.24.1" 287 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 288 | integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY= 289 | dependencies: 290 | babel-runtime "^6.22.0" 291 | babel-types "^6.24.1" 292 | 293 | babel-helper-optimise-call-expression@^6.24.1: 294 | version "6.24.1" 295 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 296 | integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc= 297 | dependencies: 298 | babel-runtime "^6.22.0" 299 | babel-types "^6.24.1" 300 | 301 | babel-helper-regex@^6.24.1: 302 | version "6.26.0" 303 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 304 | integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI= 305 | dependencies: 306 | babel-runtime "^6.26.0" 307 | babel-types "^6.26.0" 308 | lodash "^4.17.4" 309 | 310 | babel-helper-replace-supers@^6.24.1: 311 | version "6.24.1" 312 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 313 | integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo= 314 | dependencies: 315 | babel-helper-optimise-call-expression "^6.24.1" 316 | babel-messages "^6.23.0" 317 | babel-runtime "^6.22.0" 318 | babel-template "^6.24.1" 319 | babel-traverse "^6.24.1" 320 | babel-types "^6.24.1" 321 | 322 | babel-helpers@^6.24.1: 323 | version "6.24.1" 324 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 325 | integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI= 326 | dependencies: 327 | babel-runtime "^6.22.0" 328 | babel-template "^6.24.1" 329 | 330 | babel-loader@6.4.1: 331 | version "6.4.1" 332 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca" 333 | integrity sha1-CzQRLVsHSKjc2/Uaz2+b1C1QuMo= 334 | dependencies: 335 | find-cache-dir "^0.1.1" 336 | loader-utils "^0.2.16" 337 | mkdirp "^0.5.1" 338 | object-assign "^4.0.1" 339 | 340 | babel-messages@^6.23.0: 341 | version "6.23.0" 342 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 343 | integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= 344 | dependencies: 345 | babel-runtime "^6.22.0" 346 | 347 | babel-plugin-check-es2015-constants@^6.22.0: 348 | version "6.22.0" 349 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 350 | integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o= 351 | dependencies: 352 | babel-runtime "^6.22.0" 353 | 354 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 355 | version "6.22.0" 356 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 357 | integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE= 358 | dependencies: 359 | babel-runtime "^6.22.0" 360 | 361 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 362 | version "6.22.0" 363 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 364 | integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE= 365 | dependencies: 366 | babel-runtime "^6.22.0" 367 | 368 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 369 | version "6.26.0" 370 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 371 | integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8= 372 | dependencies: 373 | babel-runtime "^6.26.0" 374 | babel-template "^6.26.0" 375 | babel-traverse "^6.26.0" 376 | babel-types "^6.26.0" 377 | lodash "^4.17.4" 378 | 379 | babel-plugin-transform-es2015-classes@^6.24.1: 380 | version "6.24.1" 381 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 382 | integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs= 383 | dependencies: 384 | babel-helper-define-map "^6.24.1" 385 | babel-helper-function-name "^6.24.1" 386 | babel-helper-optimise-call-expression "^6.24.1" 387 | babel-helper-replace-supers "^6.24.1" 388 | babel-messages "^6.23.0" 389 | babel-runtime "^6.22.0" 390 | babel-template "^6.24.1" 391 | babel-traverse "^6.24.1" 392 | babel-types "^6.24.1" 393 | 394 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 395 | version "6.24.1" 396 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 397 | integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM= 398 | dependencies: 399 | babel-runtime "^6.22.0" 400 | babel-template "^6.24.1" 401 | 402 | babel-plugin-transform-es2015-destructuring@^6.22.0: 403 | version "6.23.0" 404 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 405 | integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0= 406 | dependencies: 407 | babel-runtime "^6.22.0" 408 | 409 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 410 | version "6.24.1" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 412 | integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4= 413 | dependencies: 414 | babel-runtime "^6.22.0" 415 | babel-types "^6.24.1" 416 | 417 | babel-plugin-transform-es2015-for-of@^6.22.0: 418 | version "6.23.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 420 | integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE= 421 | dependencies: 422 | babel-runtime "^6.22.0" 423 | 424 | babel-plugin-transform-es2015-function-name@^6.24.1: 425 | version "6.24.1" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 427 | integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos= 428 | dependencies: 429 | babel-helper-function-name "^6.24.1" 430 | babel-runtime "^6.22.0" 431 | babel-types "^6.24.1" 432 | 433 | babel-plugin-transform-es2015-literals@^6.22.0: 434 | version "6.22.0" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 436 | integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4= 437 | dependencies: 438 | babel-runtime "^6.22.0" 439 | 440 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 441 | version "6.24.1" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 443 | integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ= 444 | dependencies: 445 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 446 | babel-runtime "^6.22.0" 447 | babel-template "^6.24.1" 448 | 449 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 450 | version "6.26.2" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 452 | integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== 453 | dependencies: 454 | babel-plugin-transform-strict-mode "^6.24.1" 455 | babel-runtime "^6.26.0" 456 | babel-template "^6.26.0" 457 | babel-types "^6.26.0" 458 | 459 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 460 | version "6.24.1" 461 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 462 | integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM= 463 | dependencies: 464 | babel-helper-hoist-variables "^6.24.1" 465 | babel-runtime "^6.22.0" 466 | babel-template "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 469 | version "6.24.1" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 471 | integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg= 472 | dependencies: 473 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 474 | babel-runtime "^6.22.0" 475 | babel-template "^6.24.1" 476 | 477 | babel-plugin-transform-es2015-object-super@^6.24.1: 478 | version "6.24.1" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 480 | integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40= 481 | dependencies: 482 | babel-helper-replace-supers "^6.24.1" 483 | babel-runtime "^6.22.0" 484 | 485 | babel-plugin-transform-es2015-parameters@^6.24.1: 486 | version "6.24.1" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 488 | integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys= 489 | dependencies: 490 | babel-helper-call-delegate "^6.24.1" 491 | babel-helper-get-function-arity "^6.24.1" 492 | babel-runtime "^6.22.0" 493 | babel-template "^6.24.1" 494 | babel-traverse "^6.24.1" 495 | babel-types "^6.24.1" 496 | 497 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 498 | version "6.24.1" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 500 | integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA= 501 | dependencies: 502 | babel-runtime "^6.22.0" 503 | babel-types "^6.24.1" 504 | 505 | babel-plugin-transform-es2015-spread@^6.22.0: 506 | version "6.22.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 508 | integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE= 509 | dependencies: 510 | babel-runtime "^6.22.0" 511 | 512 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 513 | version "6.24.1" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 515 | integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw= 516 | dependencies: 517 | babel-helper-regex "^6.24.1" 518 | babel-runtime "^6.22.0" 519 | babel-types "^6.24.1" 520 | 521 | babel-plugin-transform-es2015-template-literals@^6.22.0: 522 | version "6.22.0" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 524 | integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0= 525 | dependencies: 526 | babel-runtime "^6.22.0" 527 | 528 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 529 | version "6.23.0" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 531 | integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I= 532 | dependencies: 533 | babel-runtime "^6.22.0" 534 | 535 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 536 | version "6.24.1" 537 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 538 | integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek= 539 | dependencies: 540 | babel-helper-regex "^6.24.1" 541 | babel-runtime "^6.22.0" 542 | regexpu-core "^2.0.0" 543 | 544 | babel-plugin-transform-regenerator@^6.24.1: 545 | version "6.26.0" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 547 | integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8= 548 | dependencies: 549 | regenerator-transform "^0.10.0" 550 | 551 | babel-plugin-transform-strict-mode@^6.24.1: 552 | version "6.24.1" 553 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 554 | integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g= 555 | dependencies: 556 | babel-runtime "^6.22.0" 557 | babel-types "^6.24.1" 558 | 559 | babel-preset-es2015@6.24.1: 560 | version "6.24.1" 561 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 562 | integrity sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk= 563 | dependencies: 564 | babel-plugin-check-es2015-constants "^6.22.0" 565 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 566 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 567 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 568 | babel-plugin-transform-es2015-classes "^6.24.1" 569 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 570 | babel-plugin-transform-es2015-destructuring "^6.22.0" 571 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 572 | babel-plugin-transform-es2015-for-of "^6.22.0" 573 | babel-plugin-transform-es2015-function-name "^6.24.1" 574 | babel-plugin-transform-es2015-literals "^6.22.0" 575 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 576 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 577 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 578 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 579 | babel-plugin-transform-es2015-object-super "^6.24.1" 580 | babel-plugin-transform-es2015-parameters "^6.24.1" 581 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 582 | babel-plugin-transform-es2015-spread "^6.22.0" 583 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 584 | babel-plugin-transform-es2015-template-literals "^6.22.0" 585 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 586 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 587 | babel-plugin-transform-regenerator "^6.24.1" 588 | 589 | babel-register@^6.24.1, babel-register@^6.26.0: 590 | version "6.26.0" 591 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 592 | integrity sha1-btAhFz4vy0htestFxgCahW9kcHE= 593 | dependencies: 594 | babel-core "^6.26.0" 595 | babel-runtime "^6.26.0" 596 | core-js "^2.5.0" 597 | home-or-tmp "^2.0.0" 598 | lodash "^4.17.4" 599 | mkdirp "^0.5.1" 600 | source-map-support "^0.4.15" 601 | 602 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 603 | version "6.26.0" 604 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 605 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= 606 | dependencies: 607 | core-js "^2.4.0" 608 | regenerator-runtime "^0.11.0" 609 | 610 | babel-template@^6.24.1, babel-template@^6.26.0: 611 | version "6.26.0" 612 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 613 | integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= 614 | dependencies: 615 | babel-runtime "^6.26.0" 616 | babel-traverse "^6.26.0" 617 | babel-types "^6.26.0" 618 | babylon "^6.18.0" 619 | lodash "^4.17.4" 620 | 621 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 622 | version "6.26.0" 623 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 624 | integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= 625 | dependencies: 626 | babel-code-frame "^6.26.0" 627 | babel-messages "^6.23.0" 628 | babel-runtime "^6.26.0" 629 | babel-types "^6.26.0" 630 | babylon "^6.18.0" 631 | debug "^2.6.8" 632 | globals "^9.18.0" 633 | invariant "^2.2.2" 634 | lodash "^4.17.4" 635 | 636 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 637 | version "6.26.0" 638 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 639 | integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= 640 | dependencies: 641 | babel-runtime "^6.26.0" 642 | esutils "^2.0.2" 643 | lodash "^4.17.4" 644 | to-fast-properties "^1.0.3" 645 | 646 | babylon@^6.11.0, babylon@^6.18.0: 647 | version "6.18.0" 648 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 649 | integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== 650 | 651 | balanced-match@^1.0.0: 652 | version "1.0.0" 653 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 654 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 655 | 656 | base64-js@^1.0.2: 657 | version "1.3.1" 658 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" 659 | integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== 660 | 661 | base@^0.11.1: 662 | version "0.11.2" 663 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 664 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 665 | dependencies: 666 | cache-base "^1.0.1" 667 | class-utils "^0.3.5" 668 | component-emitter "^1.2.1" 669 | define-property "^1.0.0" 670 | isobject "^3.0.1" 671 | mixin-deep "^1.2.0" 672 | pascalcase "^0.1.1" 673 | 674 | big.js@^3.1.3: 675 | version "3.2.0" 676 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 677 | integrity sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q== 678 | 679 | big.js@^5.2.2: 680 | version "5.2.2" 681 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 682 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 683 | 684 | binary-extensions@^1.0.0: 685 | version "1.13.1" 686 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" 687 | integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== 688 | 689 | binary-extensions@^2.0.0: 690 | version "2.0.0" 691 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" 692 | integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== 693 | 694 | bindings@^1.5.0: 695 | version "1.5.0" 696 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" 697 | integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== 698 | dependencies: 699 | file-uri-to-path "1.0.0" 700 | 701 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: 702 | version "4.11.9" 703 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" 704 | integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== 705 | 706 | bn.js@^5.1.1: 707 | version "5.1.2" 708 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" 709 | integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== 710 | 711 | boxen@^1.2.1: 712 | version "1.3.0" 713 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 714 | integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== 715 | dependencies: 716 | ansi-align "^2.0.0" 717 | camelcase "^4.0.0" 718 | chalk "^2.0.1" 719 | cli-boxes "^1.0.0" 720 | string-width "^2.0.0" 721 | term-size "^1.2.0" 722 | widest-line "^2.0.0" 723 | 724 | brace-expansion@^1.1.7: 725 | version "1.1.11" 726 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 727 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 728 | dependencies: 729 | balanced-match "^1.0.0" 730 | concat-map "0.0.1" 731 | 732 | braces@^2.3.1, braces@^2.3.2: 733 | version "2.3.2" 734 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 735 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 736 | dependencies: 737 | arr-flatten "^1.1.0" 738 | array-unique "^0.3.2" 739 | extend-shallow "^2.0.1" 740 | fill-range "^4.0.0" 741 | isobject "^3.0.1" 742 | repeat-element "^1.1.2" 743 | snapdragon "^0.8.1" 744 | snapdragon-node "^2.0.1" 745 | split-string "^3.0.2" 746 | to-regex "^3.0.1" 747 | 748 | braces@~3.0.2: 749 | version "3.0.2" 750 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 751 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 752 | dependencies: 753 | fill-range "^7.0.1" 754 | 755 | brorand@^1.0.1: 756 | version "1.1.0" 757 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 758 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= 759 | 760 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 761 | version "1.2.0" 762 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 763 | integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== 764 | dependencies: 765 | buffer-xor "^1.0.3" 766 | cipher-base "^1.0.0" 767 | create-hash "^1.1.0" 768 | evp_bytestokey "^1.0.3" 769 | inherits "^2.0.1" 770 | safe-buffer "^5.0.1" 771 | 772 | browserify-cipher@^1.0.0: 773 | version "1.0.1" 774 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" 775 | integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== 776 | dependencies: 777 | browserify-aes "^1.0.4" 778 | browserify-des "^1.0.0" 779 | evp_bytestokey "^1.0.0" 780 | 781 | browserify-des@^1.0.0: 782 | version "1.0.2" 783 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" 784 | integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== 785 | dependencies: 786 | cipher-base "^1.0.1" 787 | des.js "^1.0.0" 788 | inherits "^2.0.1" 789 | safe-buffer "^5.1.2" 790 | 791 | browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: 792 | version "4.0.1" 793 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 794 | integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= 795 | dependencies: 796 | bn.js "^4.1.0" 797 | randombytes "^2.0.1" 798 | 799 | browserify-sign@^4.0.0: 800 | version "4.2.0" 801 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" 802 | integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== 803 | dependencies: 804 | bn.js "^5.1.1" 805 | browserify-rsa "^4.0.1" 806 | create-hash "^1.2.0" 807 | create-hmac "^1.1.7" 808 | elliptic "^6.5.2" 809 | inherits "^2.0.4" 810 | parse-asn1 "^5.1.5" 811 | readable-stream "^3.6.0" 812 | safe-buffer "^5.2.0" 813 | 814 | browserify-zlib@^0.2.0: 815 | version "0.2.0" 816 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 817 | integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== 818 | dependencies: 819 | pako "~1.0.5" 820 | 821 | buffer-xor@^1.0.3: 822 | version "1.0.3" 823 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 824 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= 825 | 826 | buffer@^4.3.0: 827 | version "4.9.2" 828 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" 829 | integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== 830 | dependencies: 831 | base64-js "^1.0.2" 832 | ieee754 "^1.1.4" 833 | isarray "^1.0.0" 834 | 835 | builtin-status-codes@^3.0.0: 836 | version "3.0.0" 837 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 838 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= 839 | 840 | cache-base@^1.0.1: 841 | version "1.0.1" 842 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 843 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 844 | dependencies: 845 | collection-visit "^1.0.0" 846 | component-emitter "^1.2.1" 847 | get-value "^2.0.6" 848 | has-value "^1.0.0" 849 | isobject "^3.0.1" 850 | set-value "^2.0.0" 851 | to-object-path "^0.3.0" 852 | union-value "^1.0.0" 853 | unset-value "^1.0.0" 854 | 855 | camelcase@^1.0.2: 856 | version "1.2.1" 857 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 858 | integrity sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk= 859 | 860 | camelcase@^3.0.0: 861 | version "3.0.0" 862 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 863 | integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= 864 | 865 | camelcase@^4.0.0: 866 | version "4.1.0" 867 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 868 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 869 | 870 | capture-stack-trace@^1.0.0: 871 | version "1.0.1" 872 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" 873 | integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== 874 | 875 | center-align@^0.1.1: 876 | version "0.1.3" 877 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 878 | integrity sha1-qg0yYptu6XIgBBHL1EYckHvCt60= 879 | dependencies: 880 | align-text "^0.1.3" 881 | lazy-cache "^1.0.3" 882 | 883 | chalk@^1.0.0, chalk@^1.1.3: 884 | version "1.1.3" 885 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 886 | integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= 887 | dependencies: 888 | ansi-styles "^2.2.1" 889 | escape-string-regexp "^1.0.2" 890 | has-ansi "^2.0.0" 891 | strip-ansi "^3.0.0" 892 | supports-color "^2.0.0" 893 | 894 | chalk@^2.0.1: 895 | version "2.4.2" 896 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 897 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 898 | dependencies: 899 | ansi-styles "^3.2.1" 900 | escape-string-regexp "^1.0.5" 901 | supports-color "^5.3.0" 902 | 903 | chokidar@^2.1.8: 904 | version "2.1.8" 905 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" 906 | integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== 907 | dependencies: 908 | anymatch "^2.0.0" 909 | async-each "^1.0.1" 910 | braces "^2.3.2" 911 | glob-parent "^3.1.0" 912 | inherits "^2.0.3" 913 | is-binary-path "^1.0.0" 914 | is-glob "^4.0.0" 915 | normalize-path "^3.0.0" 916 | path-is-absolute "^1.0.0" 917 | readdirp "^2.2.1" 918 | upath "^1.1.1" 919 | optionalDependencies: 920 | fsevents "^1.2.7" 921 | 922 | chokidar@^3.4.0: 923 | version "3.4.0" 924 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" 925 | integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== 926 | dependencies: 927 | anymatch "~3.1.1" 928 | braces "~3.0.2" 929 | glob-parent "~5.1.0" 930 | is-binary-path "~2.1.0" 931 | is-glob "~4.0.1" 932 | normalize-path "~3.0.0" 933 | readdirp "~3.4.0" 934 | optionalDependencies: 935 | fsevents "~2.1.2" 936 | 937 | ci-info@^1.5.0: 938 | version "1.6.0" 939 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" 940 | integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== 941 | 942 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 943 | version "1.0.4" 944 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 945 | integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== 946 | dependencies: 947 | inherits "^2.0.1" 948 | safe-buffer "^5.0.1" 949 | 950 | class-utils@^0.3.5: 951 | version "0.3.6" 952 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 953 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 954 | dependencies: 955 | arr-union "^3.1.0" 956 | define-property "^0.2.5" 957 | isobject "^3.0.0" 958 | static-extend "^0.1.1" 959 | 960 | cli-boxes@^1.0.0: 961 | version "1.0.0" 962 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 963 | integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= 964 | 965 | cliui@^2.1.0: 966 | version "2.1.0" 967 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 968 | integrity sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE= 969 | dependencies: 970 | center-align "^0.1.1" 971 | right-align "^0.1.1" 972 | wordwrap "0.0.2" 973 | 974 | cliui@^3.2.0: 975 | version "3.2.0" 976 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 977 | integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= 978 | dependencies: 979 | string-width "^1.0.1" 980 | strip-ansi "^3.0.1" 981 | wrap-ansi "^2.0.0" 982 | 983 | clone@^2.1.1: 984 | version "2.1.2" 985 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" 986 | integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= 987 | 988 | co@^4.6.0: 989 | version "4.6.0" 990 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 991 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 992 | 993 | code-point-at@^1.0.0: 994 | version "1.1.0" 995 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 996 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 997 | 998 | collection-visit@^1.0.0: 999 | version "1.0.0" 1000 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 1001 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 1002 | dependencies: 1003 | map-visit "^1.0.0" 1004 | object-visit "^1.0.0" 1005 | 1006 | color-convert@^1.9.0: 1007 | version "1.9.3" 1008 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1009 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1010 | dependencies: 1011 | color-name "1.1.3" 1012 | 1013 | color-name@1.1.3: 1014 | version "1.1.3" 1015 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1016 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1017 | 1018 | colors@^1.1.2: 1019 | version "1.4.0" 1020 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" 1021 | integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== 1022 | 1023 | commondir@^1.0.1: 1024 | version "1.0.1" 1025 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1026 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1027 | 1028 | component-emitter@^1.2.1: 1029 | version "1.3.0" 1030 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 1031 | integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 1032 | 1033 | concat-map@0.0.1: 1034 | version "0.0.1" 1035 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1036 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1037 | 1038 | configstore@^3.0.0: 1039 | version "3.1.2" 1040 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" 1041 | integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw== 1042 | dependencies: 1043 | dot-prop "^4.1.0" 1044 | graceful-fs "^4.1.2" 1045 | make-dir "^1.0.0" 1046 | unique-string "^1.0.0" 1047 | write-file-atomic "^2.0.0" 1048 | xdg-basedir "^3.0.0" 1049 | 1050 | console-browserify@^1.1.0: 1051 | version "1.2.0" 1052 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" 1053 | integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== 1054 | 1055 | constants-browserify@^1.0.0: 1056 | version "1.0.0" 1057 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1058 | integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= 1059 | 1060 | convert-source-map@^1.1.0, convert-source-map@^1.5.1: 1061 | version "1.7.0" 1062 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1063 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1064 | dependencies: 1065 | safe-buffer "~5.1.1" 1066 | 1067 | convert-source-map@~1.1.2: 1068 | version "1.1.3" 1069 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 1070 | integrity sha1-SCnId+n+SbMWHzvzZziI4gRpmGA= 1071 | 1072 | copy-descriptor@^0.1.0: 1073 | version "0.1.1" 1074 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 1075 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1076 | 1077 | core-js@^2.4.0, core-js@^2.5.0: 1078 | version "2.6.11" 1079 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" 1080 | integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== 1081 | 1082 | core-util-is@~1.0.0: 1083 | version "1.0.2" 1084 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1085 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 1086 | 1087 | create-ecdh@^4.0.0: 1088 | version "4.0.3" 1089 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" 1090 | integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== 1091 | dependencies: 1092 | bn.js "^4.1.0" 1093 | elliptic "^6.0.0" 1094 | 1095 | create-error-class@^3.0.0: 1096 | version "3.0.2" 1097 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1098 | integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= 1099 | dependencies: 1100 | capture-stack-trace "^1.0.0" 1101 | 1102 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: 1103 | version "1.2.0" 1104 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 1105 | integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== 1106 | dependencies: 1107 | cipher-base "^1.0.1" 1108 | inherits "^2.0.1" 1109 | md5.js "^1.3.4" 1110 | ripemd160 "^2.0.1" 1111 | sha.js "^2.4.0" 1112 | 1113 | create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: 1114 | version "1.1.7" 1115 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 1116 | integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== 1117 | dependencies: 1118 | cipher-base "^1.0.3" 1119 | create-hash "^1.1.0" 1120 | inherits "^2.0.1" 1121 | ripemd160 "^2.0.0" 1122 | safe-buffer "^5.0.1" 1123 | sha.js "^2.4.8" 1124 | 1125 | cross-spawn@^5.0.1: 1126 | version "5.1.0" 1127 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1128 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 1129 | dependencies: 1130 | lru-cache "^4.0.1" 1131 | shebang-command "^1.2.0" 1132 | which "^1.2.9" 1133 | 1134 | crypto-browserify@^3.11.0: 1135 | version "3.12.0" 1136 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 1137 | integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== 1138 | dependencies: 1139 | browserify-cipher "^1.0.0" 1140 | browserify-sign "^4.0.0" 1141 | create-ecdh "^4.0.0" 1142 | create-hash "^1.1.0" 1143 | create-hmac "^1.1.0" 1144 | diffie-hellman "^5.0.0" 1145 | inherits "^2.0.1" 1146 | pbkdf2 "^3.0.3" 1147 | public-encrypt "^4.0.0" 1148 | randombytes "^2.0.0" 1149 | randomfill "^1.0.3" 1150 | 1151 | crypto-random-string@^1.0.0: 1152 | version "1.0.0" 1153 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1154 | integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= 1155 | 1156 | debug@^2.1.1, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 1157 | version "2.6.9" 1158 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1159 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1160 | dependencies: 1161 | ms "2.0.0" 1162 | 1163 | decamelize@^1.0.0, decamelize@^1.1.1: 1164 | version "1.2.0" 1165 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1166 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 1167 | 1168 | decode-uri-component@^0.2.0: 1169 | version "0.2.0" 1170 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 1171 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 1172 | 1173 | deep-equal@~1.0.1: 1174 | version "1.0.1" 1175 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1176 | integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= 1177 | 1178 | deep-extend@^0.6.0: 1179 | version "0.6.0" 1180 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1181 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 1182 | 1183 | define-properties@^1.1.2, define-properties@^1.1.3: 1184 | version "1.1.3" 1185 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 1186 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1187 | dependencies: 1188 | object-keys "^1.0.12" 1189 | 1190 | define-property@^0.2.5: 1191 | version "0.2.5" 1192 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1193 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 1194 | dependencies: 1195 | is-descriptor "^0.1.0" 1196 | 1197 | define-property@^1.0.0: 1198 | version "1.0.0" 1199 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1200 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 1201 | dependencies: 1202 | is-descriptor "^1.0.0" 1203 | 1204 | define-property@^2.0.2: 1205 | version "2.0.2" 1206 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1207 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 1208 | dependencies: 1209 | is-descriptor "^1.0.2" 1210 | isobject "^3.0.1" 1211 | 1212 | defined@~1.0.0: 1213 | version "1.0.0" 1214 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1215 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 1216 | 1217 | des.js@^1.0.0: 1218 | version "1.0.1" 1219 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" 1220 | integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== 1221 | dependencies: 1222 | inherits "^2.0.1" 1223 | minimalistic-assert "^1.0.0" 1224 | 1225 | detect-indent@^4.0.0: 1226 | version "4.0.0" 1227 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1228 | integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg= 1229 | dependencies: 1230 | repeating "^2.0.0" 1231 | 1232 | diff@^3.0.1: 1233 | version "3.5.0" 1234 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1235 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 1236 | 1237 | diffie-hellman@^5.0.0: 1238 | version "5.0.3" 1239 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" 1240 | integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== 1241 | dependencies: 1242 | bn.js "^4.1.0" 1243 | miller-rabin "^4.0.0" 1244 | randombytes "^2.0.0" 1245 | 1246 | domain-browser@^1.1.1: 1247 | version "1.2.0" 1248 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 1249 | integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== 1250 | 1251 | dot-prop@^4.1.0: 1252 | version "4.2.0" 1253 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 1254 | integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== 1255 | dependencies: 1256 | is-obj "^1.0.0" 1257 | 1258 | duplexer3@^0.1.4: 1259 | version "0.1.4" 1260 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1261 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 1262 | 1263 | duplexer@^0.1.1: 1264 | version "0.1.1" 1265 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1266 | integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= 1267 | 1268 | elliptic@^6.0.0, elliptic@^6.5.2: 1269 | version "6.5.2" 1270 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762" 1271 | integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw== 1272 | dependencies: 1273 | bn.js "^4.4.0" 1274 | brorand "^1.0.1" 1275 | hash.js "^1.0.0" 1276 | hmac-drbg "^1.0.0" 1277 | inherits "^2.0.1" 1278 | minimalistic-assert "^1.0.0" 1279 | minimalistic-crypto-utils "^1.0.0" 1280 | 1281 | emojis-list@^2.0.0: 1282 | version "2.1.0" 1283 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1284 | integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= 1285 | 1286 | emojis-list@^3.0.0: 1287 | version "3.0.0" 1288 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 1289 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 1290 | 1291 | enhanced-resolve@^3.1.0, enhanced-resolve@^3.3.0: 1292 | version "3.4.1" 1293 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 1294 | integrity sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24= 1295 | dependencies: 1296 | graceful-fs "^4.1.2" 1297 | memory-fs "^0.4.0" 1298 | object-assign "^4.0.1" 1299 | tapable "^0.2.7" 1300 | 1301 | errno@^0.1.3: 1302 | version "0.1.7" 1303 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" 1304 | integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== 1305 | dependencies: 1306 | prr "~1.0.1" 1307 | 1308 | error-ex@^1.2.0: 1309 | version "1.3.2" 1310 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1311 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1312 | dependencies: 1313 | is-arrayish "^0.2.1" 1314 | 1315 | es-abstract@^1.17.5, es-abstract@^1.5.0: 1316 | version "1.17.5" 1317 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" 1318 | integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== 1319 | dependencies: 1320 | es-to-primitive "^1.2.1" 1321 | function-bind "^1.1.1" 1322 | has "^1.0.3" 1323 | has-symbols "^1.0.1" 1324 | is-callable "^1.1.5" 1325 | is-regex "^1.0.5" 1326 | object-inspect "^1.7.0" 1327 | object-keys "^1.1.1" 1328 | object.assign "^4.1.0" 1329 | string.prototype.trimleft "^2.1.1" 1330 | string.prototype.trimright "^2.1.1" 1331 | 1332 | es-to-primitive@^1.2.1: 1333 | version "1.2.1" 1334 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1335 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1336 | dependencies: 1337 | is-callable "^1.1.4" 1338 | is-date-object "^1.0.1" 1339 | is-symbol "^1.0.2" 1340 | 1341 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1342 | version "1.0.5" 1343 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1344 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1345 | 1346 | esutils@^2.0.2: 1347 | version "2.0.3" 1348 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1349 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1350 | 1351 | events@^3.0.0: 1352 | version "3.1.0" 1353 | resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" 1354 | integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg== 1355 | 1356 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 1357 | version "1.0.3" 1358 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 1359 | integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== 1360 | dependencies: 1361 | md5.js "^1.3.4" 1362 | safe-buffer "^5.1.1" 1363 | 1364 | execa@^0.7.0: 1365 | version "0.7.0" 1366 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1367 | integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= 1368 | dependencies: 1369 | cross-spawn "^5.0.1" 1370 | get-stream "^3.0.0" 1371 | is-stream "^1.1.0" 1372 | npm-run-path "^2.0.0" 1373 | p-finally "^1.0.0" 1374 | signal-exit "^3.0.0" 1375 | strip-eof "^1.0.0" 1376 | 1377 | expand-brackets@^2.1.4: 1378 | version "2.1.4" 1379 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1380 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1381 | dependencies: 1382 | debug "^2.3.3" 1383 | define-property "^0.2.5" 1384 | extend-shallow "^2.0.1" 1385 | posix-character-classes "^0.1.0" 1386 | regex-not "^1.0.0" 1387 | snapdragon "^0.8.1" 1388 | to-regex "^3.0.1" 1389 | 1390 | extend-shallow@^2.0.1: 1391 | version "2.0.1" 1392 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1393 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1394 | dependencies: 1395 | is-extendable "^0.1.0" 1396 | 1397 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1398 | version "3.0.2" 1399 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1400 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1401 | dependencies: 1402 | assign-symbols "^1.0.0" 1403 | is-extendable "^1.0.1" 1404 | 1405 | extglob@^2.0.4: 1406 | version "2.0.4" 1407 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1408 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1409 | dependencies: 1410 | array-unique "^0.3.2" 1411 | define-property "^1.0.0" 1412 | expand-brackets "^2.1.4" 1413 | extend-shallow "^2.0.1" 1414 | fragment-cache "^0.2.1" 1415 | regex-not "^1.0.0" 1416 | snapdragon "^0.8.1" 1417 | to-regex "^3.0.1" 1418 | 1419 | figures@^1.4.0: 1420 | version "1.7.0" 1421 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1422 | integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= 1423 | dependencies: 1424 | escape-string-regexp "^1.0.5" 1425 | object-assign "^4.1.0" 1426 | 1427 | file-uri-to-path@1.0.0: 1428 | version "1.0.0" 1429 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 1430 | integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 1431 | 1432 | fill-range@^4.0.0: 1433 | version "4.0.0" 1434 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1435 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1436 | dependencies: 1437 | extend-shallow "^2.0.1" 1438 | is-number "^3.0.0" 1439 | repeat-string "^1.6.1" 1440 | to-regex-range "^2.1.0" 1441 | 1442 | fill-range@^7.0.1: 1443 | version "7.0.1" 1444 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1445 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1446 | dependencies: 1447 | to-regex-range "^5.0.1" 1448 | 1449 | find-cache-dir@^0.1.1: 1450 | version "0.1.1" 1451 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1452 | integrity sha1-yN765XyKUqinhPnjHFfHQumToLk= 1453 | dependencies: 1454 | commondir "^1.0.1" 1455 | mkdirp "^0.5.1" 1456 | pkg-dir "^1.0.0" 1457 | 1458 | find-up@^1.0.0: 1459 | version "1.1.2" 1460 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1461 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= 1462 | dependencies: 1463 | path-exists "^2.0.0" 1464 | pinkie-promise "^2.0.0" 1465 | 1466 | findup-sync@~0.3.0: 1467 | version "0.3.0" 1468 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" 1469 | integrity sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY= 1470 | dependencies: 1471 | glob "~5.0.0" 1472 | 1473 | for-in@^1.0.2: 1474 | version "1.0.2" 1475 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1476 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1477 | 1478 | fragment-cache@^0.2.1: 1479 | version "0.2.1" 1480 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1481 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1482 | dependencies: 1483 | map-cache "^0.2.2" 1484 | 1485 | fs.realpath@^1.0.0: 1486 | version "1.0.0" 1487 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1488 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1489 | 1490 | fsevents@^1.2.7: 1491 | version "1.2.13" 1492 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" 1493 | integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== 1494 | dependencies: 1495 | bindings "^1.5.0" 1496 | nan "^2.12.1" 1497 | 1498 | fsevents@~2.1.2: 1499 | version "2.1.3" 1500 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 1501 | integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== 1502 | 1503 | function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0: 1504 | version "1.1.1" 1505 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1506 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1507 | 1508 | get-caller-file@^1.0.1: 1509 | version "1.0.3" 1510 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1511 | integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 1512 | 1513 | get-stream@^3.0.0: 1514 | version "3.0.0" 1515 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1516 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= 1517 | 1518 | get-value@^2.0.3, get-value@^2.0.6: 1519 | version "2.0.6" 1520 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1521 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1522 | 1523 | glob-parent@^3.1.0: 1524 | version "3.1.0" 1525 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1526 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= 1527 | dependencies: 1528 | is-glob "^3.1.0" 1529 | path-dirname "^1.0.0" 1530 | 1531 | glob-parent@~5.1.0: 1532 | version "5.1.1" 1533 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 1534 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 1535 | dependencies: 1536 | is-glob "^4.0.1" 1537 | 1538 | glob@^7.1.1, glob@^7.1.3: 1539 | version "7.1.6" 1540 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1541 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1542 | dependencies: 1543 | fs.realpath "^1.0.0" 1544 | inflight "^1.0.4" 1545 | inherits "2" 1546 | minimatch "^3.0.4" 1547 | once "^1.3.0" 1548 | path-is-absolute "^1.0.0" 1549 | 1550 | glob@~5.0.0: 1551 | version "5.0.15" 1552 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1553 | integrity sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E= 1554 | dependencies: 1555 | inflight "^1.0.4" 1556 | inherits "2" 1557 | minimatch "2 || 3" 1558 | once "^1.3.0" 1559 | path-is-absolute "^1.0.0" 1560 | 1561 | glob@~7.0.4: 1562 | version "7.0.6" 1563 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" 1564 | integrity sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo= 1565 | dependencies: 1566 | fs.realpath "^1.0.0" 1567 | inflight "^1.0.4" 1568 | inherits "2" 1569 | minimatch "^3.0.2" 1570 | once "^1.3.0" 1571 | path-is-absolute "^1.0.0" 1572 | 1573 | global-dirs@^0.1.0: 1574 | version "0.1.1" 1575 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 1576 | integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= 1577 | dependencies: 1578 | ini "^1.3.4" 1579 | 1580 | globals@^9.18.0: 1581 | version "9.18.0" 1582 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1583 | integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== 1584 | 1585 | got@^6.7.1: 1586 | version "6.7.1" 1587 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1588 | integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= 1589 | dependencies: 1590 | create-error-class "^3.0.0" 1591 | duplexer3 "^0.1.4" 1592 | get-stream "^3.0.0" 1593 | is-redirect "^1.0.0" 1594 | is-retry-allowed "^1.0.0" 1595 | is-stream "^1.0.0" 1596 | lowercase-keys "^1.0.0" 1597 | safe-buffer "^5.0.1" 1598 | timed-out "^4.0.0" 1599 | unzip-response "^2.0.1" 1600 | url-parse-lax "^1.0.0" 1601 | 1602 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1603 | version "4.2.4" 1604 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1605 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 1606 | 1607 | has-ansi@^2.0.0: 1608 | version "2.0.0" 1609 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1610 | integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= 1611 | dependencies: 1612 | ansi-regex "^2.0.0" 1613 | 1614 | has-flag@^1.0.0: 1615 | version "1.0.0" 1616 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1617 | integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= 1618 | 1619 | has-flag@^3.0.0: 1620 | version "3.0.0" 1621 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1622 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1623 | 1624 | has-symbols@^1.0.0, has-symbols@^1.0.1: 1625 | version "1.0.1" 1626 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1627 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1628 | 1629 | has-value@^0.3.1: 1630 | version "0.3.1" 1631 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1632 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1633 | dependencies: 1634 | get-value "^2.0.3" 1635 | has-values "^0.1.4" 1636 | isobject "^2.0.0" 1637 | 1638 | has-value@^1.0.0: 1639 | version "1.0.0" 1640 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1641 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1642 | dependencies: 1643 | get-value "^2.0.6" 1644 | has-values "^1.0.0" 1645 | isobject "^3.0.0" 1646 | 1647 | has-values@^0.1.4: 1648 | version "0.1.4" 1649 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1650 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1651 | 1652 | has-values@^1.0.0: 1653 | version "1.0.0" 1654 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1655 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1656 | dependencies: 1657 | is-number "^3.0.0" 1658 | kind-of "^4.0.0" 1659 | 1660 | has@^1.0.3, has@~1.0.1: 1661 | version "1.0.3" 1662 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1663 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1664 | dependencies: 1665 | function-bind "^1.1.1" 1666 | 1667 | hash-base@^3.0.0: 1668 | version "3.1.0" 1669 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" 1670 | integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== 1671 | dependencies: 1672 | inherits "^2.0.4" 1673 | readable-stream "^3.6.0" 1674 | safe-buffer "^5.2.0" 1675 | 1676 | hash.js@^1.0.0, hash.js@^1.0.3: 1677 | version "1.1.7" 1678 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1679 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 1680 | dependencies: 1681 | inherits "^2.0.3" 1682 | minimalistic-assert "^1.0.1" 1683 | 1684 | hmac-drbg@^1.0.0: 1685 | version "1.0.1" 1686 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1687 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= 1688 | dependencies: 1689 | hash.js "^1.0.3" 1690 | minimalistic-assert "^1.0.0" 1691 | minimalistic-crypto-utils "^1.0.1" 1692 | 1693 | home-or-tmp@^2.0.0: 1694 | version "2.0.0" 1695 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1696 | integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg= 1697 | dependencies: 1698 | os-homedir "^1.0.0" 1699 | os-tmpdir "^1.0.1" 1700 | 1701 | hosted-git-info@^2.1.4: 1702 | version "2.8.8" 1703 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 1704 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 1705 | 1706 | https-browserify@^1.0.0: 1707 | version "1.0.0" 1708 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 1709 | integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= 1710 | 1711 | ieee754@^1.1.4: 1712 | version "1.1.13" 1713 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" 1714 | integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== 1715 | 1716 | import-lazy@^2.1.0: 1717 | version "2.1.0" 1718 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1719 | integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= 1720 | 1721 | imurmurhash@^0.1.4: 1722 | version "0.1.4" 1723 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1724 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1725 | 1726 | inflight@^1.0.4: 1727 | version "1.0.6" 1728 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1729 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1730 | dependencies: 1731 | once "^1.3.0" 1732 | wrappy "1" 1733 | 1734 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: 1735 | version "2.0.4" 1736 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1737 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1738 | 1739 | inherits@2.0.1: 1740 | version "2.0.1" 1741 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1742 | integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= 1743 | 1744 | inherits@2.0.3: 1745 | version "2.0.3" 1746 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1747 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1748 | 1749 | ini@^1.3.4, ini@~1.3.0: 1750 | version "1.3.5" 1751 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1752 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 1753 | 1754 | interpret@^1.0.0: 1755 | version "1.4.0" 1756 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" 1757 | integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== 1758 | 1759 | invariant@^2.2.2: 1760 | version "2.2.4" 1761 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1762 | integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== 1763 | dependencies: 1764 | loose-envify "^1.0.0" 1765 | 1766 | invert-kv@^1.0.0: 1767 | version "1.0.0" 1768 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1769 | integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= 1770 | 1771 | is-accessor-descriptor@^0.1.6: 1772 | version "0.1.6" 1773 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1774 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1775 | dependencies: 1776 | kind-of "^3.0.2" 1777 | 1778 | is-accessor-descriptor@^1.0.0: 1779 | version "1.0.0" 1780 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1781 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1782 | dependencies: 1783 | kind-of "^6.0.0" 1784 | 1785 | is-arrayish@^0.2.1: 1786 | version "0.2.1" 1787 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1788 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1789 | 1790 | is-binary-path@^1.0.0: 1791 | version "1.0.1" 1792 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1793 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 1794 | dependencies: 1795 | binary-extensions "^1.0.0" 1796 | 1797 | is-binary-path@~2.1.0: 1798 | version "2.1.0" 1799 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1800 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1801 | dependencies: 1802 | binary-extensions "^2.0.0" 1803 | 1804 | is-buffer@^1.1.5: 1805 | version "1.1.6" 1806 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1807 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1808 | 1809 | is-callable@^1.1.4, is-callable@^1.1.5: 1810 | version "1.2.0" 1811 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" 1812 | integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== 1813 | 1814 | is-ci@^1.0.10: 1815 | version "1.2.1" 1816 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" 1817 | integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== 1818 | dependencies: 1819 | ci-info "^1.5.0" 1820 | 1821 | is-data-descriptor@^0.1.4: 1822 | version "0.1.4" 1823 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1824 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1825 | dependencies: 1826 | kind-of "^3.0.2" 1827 | 1828 | is-data-descriptor@^1.0.0: 1829 | version "1.0.0" 1830 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1831 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1832 | dependencies: 1833 | kind-of "^6.0.0" 1834 | 1835 | is-date-object@^1.0.1: 1836 | version "1.0.2" 1837 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1838 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1839 | 1840 | is-descriptor@^0.1.0: 1841 | version "0.1.6" 1842 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1843 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 1844 | dependencies: 1845 | is-accessor-descriptor "^0.1.6" 1846 | is-data-descriptor "^0.1.4" 1847 | kind-of "^5.0.0" 1848 | 1849 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1850 | version "1.0.2" 1851 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1852 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 1853 | dependencies: 1854 | is-accessor-descriptor "^1.0.0" 1855 | is-data-descriptor "^1.0.0" 1856 | kind-of "^6.0.2" 1857 | 1858 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1859 | version "0.1.1" 1860 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1861 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1862 | 1863 | is-extendable@^1.0.1: 1864 | version "1.0.1" 1865 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1866 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 1867 | dependencies: 1868 | is-plain-object "^2.0.4" 1869 | 1870 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1871 | version "2.1.1" 1872 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1873 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1874 | 1875 | is-finite@^1.0.0, is-finite@^1.0.1: 1876 | version "1.1.0" 1877 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" 1878 | integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== 1879 | 1880 | is-fullwidth-code-point@^1.0.0: 1881 | version "1.0.0" 1882 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1883 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 1884 | dependencies: 1885 | number-is-nan "^1.0.0" 1886 | 1887 | is-fullwidth-code-point@^2.0.0: 1888 | version "2.0.0" 1889 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1890 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1891 | 1892 | is-glob@^3.1.0: 1893 | version "3.1.0" 1894 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1895 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= 1896 | dependencies: 1897 | is-extglob "^2.1.0" 1898 | 1899 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: 1900 | version "4.0.1" 1901 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1902 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1903 | dependencies: 1904 | is-extglob "^2.1.1" 1905 | 1906 | is-installed-globally@^0.1.0: 1907 | version "0.1.0" 1908 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1909 | integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= 1910 | dependencies: 1911 | global-dirs "^0.1.0" 1912 | is-path-inside "^1.0.0" 1913 | 1914 | is-npm@^1.0.0: 1915 | version "1.0.0" 1916 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1917 | integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= 1918 | 1919 | is-number@^3.0.0: 1920 | version "3.0.0" 1921 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1922 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 1923 | dependencies: 1924 | kind-of "^3.0.2" 1925 | 1926 | is-number@^7.0.0: 1927 | version "7.0.0" 1928 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1929 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1930 | 1931 | is-obj@^1.0.0: 1932 | version "1.0.1" 1933 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1934 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 1935 | 1936 | is-path-inside@^1.0.0: 1937 | version "1.0.1" 1938 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1939 | integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= 1940 | dependencies: 1941 | path-is-inside "^1.0.1" 1942 | 1943 | is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1944 | version "2.0.4" 1945 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1946 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1947 | dependencies: 1948 | isobject "^3.0.1" 1949 | 1950 | is-redirect@^1.0.0: 1951 | version "1.0.0" 1952 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1953 | integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= 1954 | 1955 | is-regex@^1.0.5: 1956 | version "1.1.0" 1957 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" 1958 | integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== 1959 | dependencies: 1960 | has-symbols "^1.0.1" 1961 | 1962 | is-retry-allowed@^1.0.0: 1963 | version "1.2.0" 1964 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" 1965 | integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== 1966 | 1967 | is-stream@^1.0.0, is-stream@^1.1.0: 1968 | version "1.1.0" 1969 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1970 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1971 | 1972 | is-symbol@^1.0.2: 1973 | version "1.0.3" 1974 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1975 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1976 | dependencies: 1977 | has-symbols "^1.0.1" 1978 | 1979 | is-utf8@^0.2.0: 1980 | version "0.2.1" 1981 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1982 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= 1983 | 1984 | is-windows@^1.0.2: 1985 | version "1.0.2" 1986 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1987 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1988 | 1989 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1990 | version "1.0.0" 1991 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1992 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1993 | 1994 | isexe@^2.0.0: 1995 | version "2.0.0" 1996 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1997 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1998 | 1999 | isobject@^2.0.0: 2000 | version "2.1.0" 2001 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2002 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 2003 | dependencies: 2004 | isarray "1.0.0" 2005 | 2006 | isobject@^3.0.0, isobject@^3.0.1: 2007 | version "3.0.1" 2008 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 2009 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 2010 | 2011 | "js-tokens@^3.0.0 || ^4.0.0": 2012 | version "4.0.0" 2013 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2014 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2015 | 2016 | js-tokens@^3.0.2: 2017 | version "3.0.2" 2018 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2019 | integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 2020 | 2021 | jsesc@^1.3.0: 2022 | version "1.3.0" 2023 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2024 | integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s= 2025 | 2026 | jsesc@~0.5.0: 2027 | version "0.5.0" 2028 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2029 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 2030 | 2031 | json-loader@^0.5.4: 2032 | version "0.5.7" 2033 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 2034 | integrity sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w== 2035 | 2036 | json-stable-stringify@^1.0.1: 2037 | version "1.0.1" 2038 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2039 | integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8= 2040 | dependencies: 2041 | jsonify "~0.0.0" 2042 | 2043 | json5@^0.5.0, json5@^0.5.1: 2044 | version "0.5.1" 2045 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2046 | integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= 2047 | 2048 | json5@^1.0.1: 2049 | version "1.0.1" 2050 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 2051 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 2052 | dependencies: 2053 | minimist "^1.2.0" 2054 | 2055 | jsonify@~0.0.0: 2056 | version "0.0.0" 2057 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2058 | integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= 2059 | 2060 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2061 | version "3.2.2" 2062 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2063 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 2064 | dependencies: 2065 | is-buffer "^1.1.5" 2066 | 2067 | kind-of@^4.0.0: 2068 | version "4.0.0" 2069 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2070 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 2071 | dependencies: 2072 | is-buffer "^1.1.5" 2073 | 2074 | kind-of@^5.0.0: 2075 | version "5.1.0" 2076 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2077 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 2078 | 2079 | kind-of@^6.0.0, kind-of@^6.0.2: 2080 | version "6.0.3" 2081 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 2082 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 2083 | 2084 | latest-version@^3.0.0: 2085 | version "3.1.0" 2086 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2087 | integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= 2088 | dependencies: 2089 | package-json "^4.0.0" 2090 | 2091 | lazy-cache@^1.0.3: 2092 | version "1.0.4" 2093 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2094 | integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4= 2095 | 2096 | lcid@^1.0.0: 2097 | version "1.0.0" 2098 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2099 | integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= 2100 | dependencies: 2101 | invert-kv "^1.0.0" 2102 | 2103 | load-json-file@^1.0.0: 2104 | version "1.1.0" 2105 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2106 | integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= 2107 | dependencies: 2108 | graceful-fs "^4.1.2" 2109 | parse-json "^2.2.0" 2110 | pify "^2.0.0" 2111 | pinkie-promise "^2.0.0" 2112 | strip-bom "^2.0.0" 2113 | 2114 | loader-runner@^2.3.0: 2115 | version "2.4.0" 2116 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" 2117 | integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== 2118 | 2119 | loader-utils@1.1.0: 2120 | version "1.1.0" 2121 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2122 | integrity sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0= 2123 | dependencies: 2124 | big.js "^3.1.3" 2125 | emojis-list "^2.0.0" 2126 | json5 "^0.5.0" 2127 | 2128 | loader-utils@^0.2.16: 2129 | version "0.2.17" 2130 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 2131 | integrity sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g= 2132 | dependencies: 2133 | big.js "^3.1.3" 2134 | emojis-list "^2.0.0" 2135 | json5 "^0.5.0" 2136 | object-assign "^4.0.1" 2137 | 2138 | loader-utils@^1.0.2: 2139 | version "1.4.0" 2140 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" 2141 | integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== 2142 | dependencies: 2143 | big.js "^5.2.2" 2144 | emojis-list "^3.0.0" 2145 | json5 "^1.0.1" 2146 | 2147 | lodash@^3.6.0: 2148 | version "3.10.1" 2149 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2150 | integrity sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y= 2151 | 2152 | lodash@^4.17.14, lodash@^4.17.4, lodash@^4.2.0: 2153 | version "4.17.15" 2154 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2155 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 2156 | 2157 | longest@^1.0.1: 2158 | version "1.0.1" 2159 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2160 | integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc= 2161 | 2162 | loose-envify@^1.0.0: 2163 | version "1.4.0" 2164 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2165 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2166 | dependencies: 2167 | js-tokens "^3.0.0 || ^4.0.0" 2168 | 2169 | lowercase-keys@^1.0.0: 2170 | version "1.0.1" 2171 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 2172 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 2173 | 2174 | lru-cache@^4.0.1: 2175 | version "4.1.5" 2176 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 2177 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 2178 | dependencies: 2179 | pseudomap "^1.0.2" 2180 | yallist "^2.1.2" 2181 | 2182 | make-dir@^1.0.0: 2183 | version "1.3.0" 2184 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 2185 | integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== 2186 | dependencies: 2187 | pify "^3.0.0" 2188 | 2189 | map-cache@^0.2.2: 2190 | version "0.2.2" 2191 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2192 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2193 | 2194 | map-visit@^1.0.0: 2195 | version "1.0.0" 2196 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2197 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2198 | dependencies: 2199 | object-visit "^1.0.0" 2200 | 2201 | md5.js@^1.3.4: 2202 | version "1.3.5" 2203 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" 2204 | integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== 2205 | dependencies: 2206 | hash-base "^3.0.0" 2207 | inherits "^2.0.1" 2208 | safe-buffer "^5.1.2" 2209 | 2210 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2211 | version "0.4.1" 2212 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2213 | integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= 2214 | dependencies: 2215 | errno "^0.1.3" 2216 | readable-stream "^2.0.1" 2217 | 2218 | micromatch@^3.1.10, micromatch@^3.1.4: 2219 | version "3.1.10" 2220 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2221 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2222 | dependencies: 2223 | arr-diff "^4.0.0" 2224 | array-unique "^0.3.2" 2225 | braces "^2.3.1" 2226 | define-property "^2.0.2" 2227 | extend-shallow "^3.0.2" 2228 | extglob "^2.0.4" 2229 | fragment-cache "^0.2.1" 2230 | kind-of "^6.0.2" 2231 | nanomatch "^1.2.9" 2232 | object.pick "^1.3.0" 2233 | regex-not "^1.0.0" 2234 | snapdragon "^0.8.1" 2235 | to-regex "^3.0.2" 2236 | 2237 | miller-rabin@^4.0.0: 2238 | version "4.0.1" 2239 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 2240 | integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== 2241 | dependencies: 2242 | bn.js "^4.0.0" 2243 | brorand "^1.0.1" 2244 | 2245 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 2246 | version "1.0.1" 2247 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 2248 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 2249 | 2250 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2251 | version "1.0.1" 2252 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2253 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 2254 | 2255 | "minimatch@2 || 3", minimatch@^3.0.2, minimatch@^3.0.4: 2256 | version "3.0.4" 2257 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2258 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2259 | dependencies: 2260 | brace-expansion "^1.1.7" 2261 | 2262 | minimist@^1.2.0, minimist@^1.2.5, minimist@~1.2.0: 2263 | version "1.2.5" 2264 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2265 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2266 | 2267 | minimist@~0.0.1: 2268 | version "0.0.10" 2269 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2270 | integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= 2271 | 2272 | mixin-deep@^1.2.0: 2273 | version "1.3.2" 2274 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2275 | integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== 2276 | dependencies: 2277 | for-in "^1.0.2" 2278 | is-extendable "^1.0.1" 2279 | 2280 | mkdirp@^0.5.1, mkdirp@~0.5.0: 2281 | version "0.5.5" 2282 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 2283 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 2284 | dependencies: 2285 | minimist "^1.2.5" 2286 | 2287 | ms@2.0.0: 2288 | version "2.0.0" 2289 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2290 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2291 | 2292 | nan@^2.12.1: 2293 | version "2.14.1" 2294 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" 2295 | integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== 2296 | 2297 | nanomatch@^1.2.9: 2298 | version "1.2.13" 2299 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2300 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 2301 | dependencies: 2302 | arr-diff "^4.0.0" 2303 | array-unique "^0.3.2" 2304 | define-property "^2.0.2" 2305 | extend-shallow "^3.0.2" 2306 | fragment-cache "^0.2.1" 2307 | is-windows "^1.0.2" 2308 | kind-of "^6.0.2" 2309 | object.pick "^1.3.0" 2310 | regex-not "^1.0.0" 2311 | snapdragon "^0.8.1" 2312 | to-regex "^3.0.1" 2313 | 2314 | neo-async@^2.5.0: 2315 | version "2.6.1" 2316 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" 2317 | integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== 2318 | 2319 | ng-annotate@1.2.1: 2320 | version "1.2.1" 2321 | resolved "https://registry.yarnpkg.com/ng-annotate/-/ng-annotate-1.2.1.tgz#eb8bc1a6731c70d08af6b02c3eaf1a6e3fb9e6bb" 2322 | integrity sha1-64vBpnMccNCK9rAsPq8abj+55rs= 2323 | dependencies: 2324 | acorn "~2.6.4" 2325 | alter "~0.2.0" 2326 | convert-source-map "~1.1.2" 2327 | optimist "~0.6.1" 2328 | ordered-ast-traverse "~1.1.1" 2329 | simple-fmt "~0.1.0" 2330 | simple-is "~0.2.0" 2331 | source-map "~0.5.3" 2332 | stable "~0.1.5" 2333 | stringmap "~0.2.2" 2334 | stringset "~0.2.1" 2335 | tryor "~0.1.2" 2336 | 2337 | node-libs-browser@^2.0.0: 2338 | version "2.2.1" 2339 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" 2340 | integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== 2341 | dependencies: 2342 | assert "^1.1.1" 2343 | browserify-zlib "^0.2.0" 2344 | buffer "^4.3.0" 2345 | console-browserify "^1.1.0" 2346 | constants-browserify "^1.0.0" 2347 | crypto-browserify "^3.11.0" 2348 | domain-browser "^1.1.1" 2349 | events "^3.0.0" 2350 | https-browserify "^1.0.0" 2351 | os-browserify "^0.3.0" 2352 | path-browserify "0.0.1" 2353 | process "^0.11.10" 2354 | punycode "^1.2.4" 2355 | querystring-es3 "^0.2.0" 2356 | readable-stream "^2.3.3" 2357 | stream-browserify "^2.0.1" 2358 | stream-http "^2.7.2" 2359 | string_decoder "^1.0.0" 2360 | timers-browserify "^2.0.4" 2361 | tty-browserify "0.0.0" 2362 | url "^0.11.0" 2363 | util "^0.11.0" 2364 | vm-browserify "^1.0.1" 2365 | 2366 | normalize-package-data@^2.3.2: 2367 | version "2.5.0" 2368 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 2369 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 2370 | dependencies: 2371 | hosted-git-info "^2.1.4" 2372 | resolve "^1.10.0" 2373 | semver "2 || 3 || 4 || 5" 2374 | validate-npm-package-license "^3.0.1" 2375 | 2376 | normalize-path@2.0.1: 2377 | version "2.0.1" 2378 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2379 | integrity sha1-R4hqwWYnYNQmG32XnSQXCdPOP3o= 2380 | 2381 | normalize-path@^2.1.1: 2382 | version "2.1.1" 2383 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2384 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2385 | dependencies: 2386 | remove-trailing-separator "^1.0.1" 2387 | 2388 | normalize-path@^3.0.0, normalize-path@~3.0.0: 2389 | version "3.0.0" 2390 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2391 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2392 | 2393 | npm-run-path@^2.0.0: 2394 | version "2.0.2" 2395 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2396 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 2397 | dependencies: 2398 | path-key "^2.0.0" 2399 | 2400 | number-is-nan@^1.0.0: 2401 | version "1.0.1" 2402 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2403 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 2404 | 2405 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2406 | version "4.1.1" 2407 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2408 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2409 | 2410 | object-copy@^0.1.0: 2411 | version "0.1.0" 2412 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2413 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2414 | dependencies: 2415 | copy-descriptor "^0.1.0" 2416 | define-property "^0.2.5" 2417 | kind-of "^3.0.3" 2418 | 2419 | object-inspect@^1.7.0: 2420 | version "1.7.0" 2421 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" 2422 | integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== 2423 | 2424 | object-inspect@~1.2.1: 2425 | version "1.2.2" 2426 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.2.tgz#c82115e4fcc888aea14d64c22e4f17f6a70d5e5a" 2427 | integrity sha1-yCEV5PzIiK6hTWTCLk8X9qcNXlo= 2428 | 2429 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 2430 | version "1.1.1" 2431 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2432 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2433 | 2434 | object-visit@^1.0.0: 2435 | version "1.0.1" 2436 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2437 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2438 | dependencies: 2439 | isobject "^3.0.0" 2440 | 2441 | object.assign@^4.1.0: 2442 | version "4.1.0" 2443 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2444 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 2445 | dependencies: 2446 | define-properties "^1.1.2" 2447 | function-bind "^1.1.1" 2448 | has-symbols "^1.0.0" 2449 | object-keys "^1.0.11" 2450 | 2451 | object.pick@^1.3.0: 2452 | version "1.3.0" 2453 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2454 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2455 | dependencies: 2456 | isobject "^3.0.1" 2457 | 2458 | once@^1.3.0: 2459 | version "1.4.0" 2460 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2461 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2462 | dependencies: 2463 | wrappy "1" 2464 | 2465 | optimist@~0.6.0, optimist@~0.6.1: 2466 | version "0.6.1" 2467 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2468 | integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= 2469 | dependencies: 2470 | minimist "~0.0.1" 2471 | wordwrap "~0.0.2" 2472 | 2473 | ordered-ast-traverse@~1.1.1: 2474 | version "1.1.1" 2475 | resolved "https://registry.yarnpkg.com/ordered-ast-traverse/-/ordered-ast-traverse-1.1.1.tgz#6843a170bc0eee8b520cc8ddc1ddd3aa30fa057c" 2476 | integrity sha1-aEOhcLwO7otSDMjdwd3TqjD6BXw= 2477 | dependencies: 2478 | ordered-esprima-props "~1.1.0" 2479 | 2480 | ordered-esprima-props@~1.1.0: 2481 | version "1.1.0" 2482 | resolved "https://registry.yarnpkg.com/ordered-esprima-props/-/ordered-esprima-props-1.1.0.tgz#a9827086df5f010aa60e9bd02b6e0335cea2ffcb" 2483 | integrity sha1-qYJwht9fAQqmDpvQK24DNc6i/8s= 2484 | 2485 | os-browserify@^0.3.0: 2486 | version "0.3.0" 2487 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 2488 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= 2489 | 2490 | os-homedir@^1.0.0: 2491 | version "1.0.2" 2492 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2493 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 2494 | 2495 | os-locale@^1.4.0: 2496 | version "1.4.0" 2497 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2498 | integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= 2499 | dependencies: 2500 | lcid "^1.0.0" 2501 | 2502 | os-tmpdir@^1.0.1: 2503 | version "1.0.2" 2504 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2505 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2506 | 2507 | p-finally@^1.0.0: 2508 | version "1.0.0" 2509 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2510 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 2511 | 2512 | package-json@^4.0.0: 2513 | version "4.0.1" 2514 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2515 | integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= 2516 | dependencies: 2517 | got "^6.7.1" 2518 | registry-auth-token "^3.0.1" 2519 | registry-url "^3.0.3" 2520 | semver "^5.1.0" 2521 | 2522 | pako@~1.0.5: 2523 | version "1.0.11" 2524 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" 2525 | integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== 2526 | 2527 | parse-asn1@^5.0.0, parse-asn1@^5.1.5: 2528 | version "5.1.5" 2529 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" 2530 | integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== 2531 | dependencies: 2532 | asn1.js "^4.0.0" 2533 | browserify-aes "^1.0.0" 2534 | create-hash "^1.1.0" 2535 | evp_bytestokey "^1.0.0" 2536 | pbkdf2 "^3.0.3" 2537 | safe-buffer "^5.1.1" 2538 | 2539 | parse-json@^2.2.0: 2540 | version "2.2.0" 2541 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2542 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 2543 | dependencies: 2544 | error-ex "^1.2.0" 2545 | 2546 | parse-ms@^1.0.0: 2547 | version "1.0.1" 2548 | resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d" 2549 | integrity sha1-VjRtR0nXjyNDDKDHE4UK75GqNh0= 2550 | 2551 | pascalcase@^0.1.1: 2552 | version "0.1.1" 2553 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2554 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2555 | 2556 | path-browserify@0.0.1: 2557 | version "0.0.1" 2558 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" 2559 | integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== 2560 | 2561 | path-dirname@^1.0.0: 2562 | version "1.0.2" 2563 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2564 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= 2565 | 2566 | path-exists@^2.0.0: 2567 | version "2.1.0" 2568 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2569 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= 2570 | dependencies: 2571 | pinkie-promise "^2.0.0" 2572 | 2573 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2574 | version "1.0.1" 2575 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2576 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2577 | 2578 | path-is-inside@^1.0.1: 2579 | version "1.0.2" 2580 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2581 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 2582 | 2583 | path-key@^2.0.0: 2584 | version "2.0.1" 2585 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2586 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2587 | 2588 | path-parse@^1.0.6: 2589 | version "1.0.6" 2590 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2591 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2592 | 2593 | path-type@^1.0.0: 2594 | version "1.1.0" 2595 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2596 | integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= 2597 | dependencies: 2598 | graceful-fs "^4.1.2" 2599 | pify "^2.0.0" 2600 | pinkie-promise "^2.0.0" 2601 | 2602 | pbkdf2@^3.0.3: 2603 | version "3.1.1" 2604 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94" 2605 | integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg== 2606 | dependencies: 2607 | create-hash "^1.1.2" 2608 | create-hmac "^1.1.4" 2609 | ripemd160 "^2.0.1" 2610 | safe-buffer "^5.0.1" 2611 | sha.js "^2.4.8" 2612 | 2613 | picomatch@^2.0.4, picomatch@^2.2.1: 2614 | version "2.2.2" 2615 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 2616 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 2617 | 2618 | pify@^2.0.0: 2619 | version "2.3.0" 2620 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2621 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 2622 | 2623 | pify@^3.0.0: 2624 | version "3.0.0" 2625 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2626 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 2627 | 2628 | pinkie-promise@^2.0.0: 2629 | version "2.0.1" 2630 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2631 | integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= 2632 | dependencies: 2633 | pinkie "^2.0.0" 2634 | 2635 | pinkie@^2.0.0: 2636 | version "2.0.4" 2637 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2638 | integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= 2639 | 2640 | pkg-dir@^1.0.0: 2641 | version "1.0.0" 2642 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2643 | integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q= 2644 | dependencies: 2645 | find-up "^1.0.0" 2646 | 2647 | plur@^1.0.0: 2648 | version "1.0.0" 2649 | resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156" 2650 | integrity sha1-24XGgU9eXlo7Se/CjWBP7GKXUVY= 2651 | 2652 | posix-character-classes@^0.1.0: 2653 | version "0.1.1" 2654 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2655 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2656 | 2657 | prepend-http@^1.0.1: 2658 | version "1.0.4" 2659 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2660 | integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= 2661 | 2662 | pretty-ms@^2.1.0: 2663 | version "2.1.0" 2664 | resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc" 2665 | integrity sha1-QlfCVt8/sLRR1q/6qwIYhBJpgdw= 2666 | dependencies: 2667 | is-finite "^1.0.1" 2668 | parse-ms "^1.0.0" 2669 | plur "^1.0.0" 2670 | 2671 | private@^0.1.6, private@^0.1.8: 2672 | version "0.1.8" 2673 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2674 | integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== 2675 | 2676 | process-nextick-args@~2.0.0: 2677 | version "2.0.1" 2678 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 2679 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 2680 | 2681 | process@^0.11.10: 2682 | version "0.11.10" 2683 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2684 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= 2685 | 2686 | prr@~1.0.1: 2687 | version "1.0.1" 2688 | resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" 2689 | integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= 2690 | 2691 | pseudomap@^1.0.2: 2692 | version "1.0.2" 2693 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2694 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 2695 | 2696 | public-encrypt@^4.0.0: 2697 | version "4.0.3" 2698 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" 2699 | integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== 2700 | dependencies: 2701 | bn.js "^4.1.0" 2702 | browserify-rsa "^4.0.0" 2703 | create-hash "^1.1.0" 2704 | parse-asn1 "^5.0.0" 2705 | randombytes "^2.0.1" 2706 | safe-buffer "^5.1.2" 2707 | 2708 | punycode@1.3.2: 2709 | version "1.3.2" 2710 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2711 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= 2712 | 2713 | punycode@^1.2.4: 2714 | version "1.4.1" 2715 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2716 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 2717 | 2718 | querystring-es3@^0.2.0: 2719 | version "0.2.1" 2720 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2721 | integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= 2722 | 2723 | querystring@0.2.0: 2724 | version "0.2.0" 2725 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2726 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= 2727 | 2728 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: 2729 | version "2.1.0" 2730 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 2731 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 2732 | dependencies: 2733 | safe-buffer "^5.1.0" 2734 | 2735 | randomfill@^1.0.3: 2736 | version "1.0.4" 2737 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 2738 | integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== 2739 | dependencies: 2740 | randombytes "^2.0.5" 2741 | safe-buffer "^5.1.0" 2742 | 2743 | rc@^1.0.1, rc@^1.1.6: 2744 | version "1.2.8" 2745 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2746 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 2747 | dependencies: 2748 | deep-extend "^0.6.0" 2749 | ini "~1.3.0" 2750 | minimist "^1.2.0" 2751 | strip-json-comments "~2.0.1" 2752 | 2753 | re-emitter@^1.0.0: 2754 | version "1.1.4" 2755 | resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.4.tgz#15bdefca3d47e05d6442838fd26759c8a4eaa236" 2756 | integrity sha512-C0SIXdXDSus2yqqvV7qifnb4NoWP7mEBXJq3axci301mXHCZb8Djwm4hrEZo4UeXRaEnfjH98uQ8EBppk2oNWA== 2757 | 2758 | read-pkg-up@^1.0.1: 2759 | version "1.0.1" 2760 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2761 | integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= 2762 | dependencies: 2763 | find-up "^1.0.0" 2764 | read-pkg "^1.0.0" 2765 | 2766 | read-pkg@^1.0.0: 2767 | version "1.1.0" 2768 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2769 | integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= 2770 | dependencies: 2771 | load-json-file "^1.0.0" 2772 | normalize-package-data "^2.3.2" 2773 | path-type "^1.0.0" 2774 | 2775 | readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: 2776 | version "2.3.7" 2777 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 2778 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 2779 | dependencies: 2780 | core-util-is "~1.0.0" 2781 | inherits "~2.0.3" 2782 | isarray "~1.0.0" 2783 | process-nextick-args "~2.0.0" 2784 | safe-buffer "~5.1.1" 2785 | string_decoder "~1.1.1" 2786 | util-deprecate "~1.0.1" 2787 | 2788 | readable-stream@^3.6.0: 2789 | version "3.6.0" 2790 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 2791 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 2792 | dependencies: 2793 | inherits "^2.0.3" 2794 | string_decoder "^1.1.1" 2795 | util-deprecate "^1.0.1" 2796 | 2797 | readdirp@^2.2.1: 2798 | version "2.2.1" 2799 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2800 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== 2801 | dependencies: 2802 | graceful-fs "^4.1.11" 2803 | micromatch "^3.1.10" 2804 | readable-stream "^2.0.2" 2805 | 2806 | readdirp@~3.4.0: 2807 | version "3.4.0" 2808 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" 2809 | integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== 2810 | dependencies: 2811 | picomatch "^2.2.1" 2812 | 2813 | regenerate@^1.2.1: 2814 | version "1.4.1" 2815 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f" 2816 | integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A== 2817 | 2818 | regenerator-runtime@^0.11.0: 2819 | version "0.11.1" 2820 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2821 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== 2822 | 2823 | regenerator-transform@^0.10.0: 2824 | version "0.10.1" 2825 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2826 | integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q== 2827 | dependencies: 2828 | babel-runtime "^6.18.0" 2829 | babel-types "^6.19.0" 2830 | private "^0.1.6" 2831 | 2832 | regex-not@^1.0.0, regex-not@^1.0.2: 2833 | version "1.0.2" 2834 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2835 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 2836 | dependencies: 2837 | extend-shallow "^3.0.2" 2838 | safe-regex "^1.1.0" 2839 | 2840 | regexpu-core@^2.0.0: 2841 | version "2.0.0" 2842 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2843 | integrity sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA= 2844 | dependencies: 2845 | regenerate "^1.2.1" 2846 | regjsgen "^0.2.0" 2847 | regjsparser "^0.1.4" 2848 | 2849 | registry-auth-token@^3.0.1: 2850 | version "3.4.0" 2851 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" 2852 | integrity sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A== 2853 | dependencies: 2854 | rc "^1.1.6" 2855 | safe-buffer "^5.0.1" 2856 | 2857 | registry-url@^3.0.3: 2858 | version "3.1.0" 2859 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2860 | integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= 2861 | dependencies: 2862 | rc "^1.0.1" 2863 | 2864 | regjsgen@^0.2.0: 2865 | version "0.2.0" 2866 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2867 | integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc= 2868 | 2869 | regjsparser@^0.1.4: 2870 | version "0.1.5" 2871 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2872 | integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw= 2873 | dependencies: 2874 | jsesc "~0.5.0" 2875 | 2876 | remove-trailing-separator@^1.0.1: 2877 | version "1.1.0" 2878 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2879 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 2880 | 2881 | repeat-element@^1.1.2: 2882 | version "1.1.3" 2883 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2884 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 2885 | 2886 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2887 | version "1.6.1" 2888 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2889 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 2890 | 2891 | repeating@^2.0.0: 2892 | version "2.0.1" 2893 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2894 | integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= 2895 | dependencies: 2896 | is-finite "^1.0.0" 2897 | 2898 | require-directory@^2.1.1: 2899 | version "2.1.1" 2900 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2901 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2902 | 2903 | require-main-filename@^1.0.1: 2904 | version "1.0.1" 2905 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2906 | integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= 2907 | 2908 | resolve-url@^0.2.1: 2909 | version "0.2.1" 2910 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2911 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 2912 | 2913 | resolve@^1.1.7, resolve@^1.10.0: 2914 | version "1.17.0" 2915 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 2916 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 2917 | dependencies: 2918 | path-parse "^1.0.6" 2919 | 2920 | resolve@~1.1.7: 2921 | version "1.1.7" 2922 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2923 | integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= 2924 | 2925 | resumer@~0.0.0: 2926 | version "0.0.0" 2927 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 2928 | integrity sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k= 2929 | dependencies: 2930 | through "~2.3.4" 2931 | 2932 | ret@~0.1.10: 2933 | version "0.1.15" 2934 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2935 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 2936 | 2937 | right-align@^0.1.1: 2938 | version "0.1.3" 2939 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2940 | integrity sha1-YTObci/mo1FWiSENJOFMlhSGE+8= 2941 | dependencies: 2942 | align-text "^0.1.1" 2943 | 2944 | rimraf@^2.4.4: 2945 | version "2.7.1" 2946 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2947 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 2948 | dependencies: 2949 | glob "^7.1.3" 2950 | 2951 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2952 | version "2.0.2" 2953 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 2954 | integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== 2955 | dependencies: 2956 | hash-base "^3.0.0" 2957 | inherits "^2.0.1" 2958 | 2959 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: 2960 | version "5.2.1" 2961 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 2962 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2963 | 2964 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2965 | version "5.1.2" 2966 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2967 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2968 | 2969 | safe-regex@^1.1.0: 2970 | version "1.1.0" 2971 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2972 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 2973 | dependencies: 2974 | ret "~0.1.10" 2975 | 2976 | semver-diff@^2.0.0: 2977 | version "2.1.0" 2978 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 2979 | integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= 2980 | dependencies: 2981 | semver "^5.0.3" 2982 | 2983 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 2984 | version "5.7.1" 2985 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2986 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2987 | 2988 | set-blocking@^2.0.0: 2989 | version "2.0.0" 2990 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2991 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2992 | 2993 | set-value@^2.0.0, set-value@^2.0.1: 2994 | version "2.0.1" 2995 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 2996 | integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== 2997 | dependencies: 2998 | extend-shallow "^2.0.1" 2999 | is-extendable "^0.1.1" 3000 | is-plain-object "^2.0.3" 3001 | split-string "^3.0.1" 3002 | 3003 | setimmediate@^1.0.4: 3004 | version "1.0.5" 3005 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3006 | integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= 3007 | 3008 | sha.js@^2.4.0, sha.js@^2.4.8: 3009 | version "2.4.11" 3010 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 3011 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== 3012 | dependencies: 3013 | inherits "^2.0.1" 3014 | safe-buffer "^5.0.1" 3015 | 3016 | shebang-command@^1.2.0: 3017 | version "1.2.0" 3018 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3019 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 3020 | dependencies: 3021 | shebang-regex "^1.0.0" 3022 | 3023 | shebang-regex@^1.0.0: 3024 | version "1.0.0" 3025 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3026 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 3027 | 3028 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3029 | version "3.0.3" 3030 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 3031 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 3032 | 3033 | simple-fmt@~0.1.0: 3034 | version "0.1.0" 3035 | resolved "https://registry.yarnpkg.com/simple-fmt/-/simple-fmt-0.1.0.tgz#191bf566a59e6530482cb25ab53b4a8dc85c3a6b" 3036 | integrity sha1-GRv1ZqWeZTBILLJatTtKjchcOms= 3037 | 3038 | simple-is@~0.2.0: 3039 | version "0.2.0" 3040 | resolved "https://registry.yarnpkg.com/simple-is/-/simple-is-0.2.0.tgz#2abb75aade39deb5cc815ce10e6191164850baf0" 3041 | integrity sha1-Krt1qt453rXMgVzhDmGRFkhQuvA= 3042 | 3043 | slash@^1.0.0: 3044 | version "1.0.0" 3045 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3046 | integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= 3047 | 3048 | snapdragon-node@^2.0.1: 3049 | version "2.1.1" 3050 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3051 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 3052 | dependencies: 3053 | define-property "^1.0.0" 3054 | isobject "^3.0.0" 3055 | snapdragon-util "^3.0.1" 3056 | 3057 | snapdragon-util@^3.0.1: 3058 | version "3.0.1" 3059 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3060 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 3061 | dependencies: 3062 | kind-of "^3.2.0" 3063 | 3064 | snapdragon@^0.8.1: 3065 | version "0.8.2" 3066 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3067 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 3068 | dependencies: 3069 | base "^0.11.1" 3070 | debug "^2.2.0" 3071 | define-property "^0.2.5" 3072 | extend-shallow "^2.0.1" 3073 | map-cache "^0.2.2" 3074 | source-map "^0.5.6" 3075 | source-map-resolve "^0.5.0" 3076 | use "^3.1.0" 3077 | 3078 | source-list-map@^2.0.0: 3079 | version "2.0.1" 3080 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" 3081 | integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== 3082 | 3083 | source-map-resolve@^0.5.0: 3084 | version "0.5.3" 3085 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" 3086 | integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== 3087 | dependencies: 3088 | atob "^2.1.2" 3089 | decode-uri-component "^0.2.0" 3090 | resolve-url "^0.2.1" 3091 | source-map-url "^0.4.0" 3092 | urix "^0.1.0" 3093 | 3094 | source-map-support@^0.4.11, source-map-support@^0.4.15: 3095 | version "0.4.18" 3096 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3097 | integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== 3098 | dependencies: 3099 | source-map "^0.5.6" 3100 | 3101 | source-map-url@^0.4.0: 3102 | version "0.4.0" 3103 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3104 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 3105 | 3106 | source-map@0.5.6: 3107 | version "0.5.6" 3108 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3109 | integrity sha1-dc449SvwczxafwwRjYEzSiu19BI= 3110 | 3111 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1, source-map@~0.5.3: 3112 | version "0.5.7" 3113 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3114 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3115 | 3116 | source-map@~0.6.1: 3117 | version "0.6.1" 3118 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3119 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3120 | 3121 | spdx-correct@^3.0.0: 3122 | version "3.1.1" 3123 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 3124 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 3125 | dependencies: 3126 | spdx-expression-parse "^3.0.0" 3127 | spdx-license-ids "^3.0.0" 3128 | 3129 | spdx-exceptions@^2.1.0: 3130 | version "2.3.0" 3131 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 3132 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 3133 | 3134 | spdx-expression-parse@^3.0.0: 3135 | version "3.0.1" 3136 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 3137 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 3138 | dependencies: 3139 | spdx-exceptions "^2.1.0" 3140 | spdx-license-ids "^3.0.0" 3141 | 3142 | spdx-license-ids@^3.0.0: 3143 | version "3.0.5" 3144 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 3145 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== 3146 | 3147 | split-string@^3.0.1, split-string@^3.0.2: 3148 | version "3.1.0" 3149 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3150 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 3151 | dependencies: 3152 | extend-shallow "^3.0.0" 3153 | 3154 | split@^1.0.0: 3155 | version "1.0.1" 3156 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 3157 | integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== 3158 | dependencies: 3159 | through "2" 3160 | 3161 | stable@~0.1.3, stable@~0.1.5: 3162 | version "0.1.8" 3163 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 3164 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 3165 | 3166 | static-extend@^0.1.1: 3167 | version "0.1.2" 3168 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3169 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 3170 | dependencies: 3171 | define-property "^0.2.5" 3172 | object-copy "^0.1.0" 3173 | 3174 | stream-browserify@^2.0.1: 3175 | version "2.0.2" 3176 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" 3177 | integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== 3178 | dependencies: 3179 | inherits "~2.0.1" 3180 | readable-stream "^2.0.2" 3181 | 3182 | stream-http@^2.7.2: 3183 | version "2.8.3" 3184 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" 3185 | integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== 3186 | dependencies: 3187 | builtin-status-codes "^3.0.0" 3188 | inherits "^2.0.1" 3189 | readable-stream "^2.3.6" 3190 | to-arraybuffer "^1.0.0" 3191 | xtend "^4.0.0" 3192 | 3193 | string-width@^1.0.1, string-width@^1.0.2: 3194 | version "1.0.2" 3195 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3196 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 3197 | dependencies: 3198 | code-point-at "^1.0.0" 3199 | is-fullwidth-code-point "^1.0.0" 3200 | strip-ansi "^3.0.0" 3201 | 3202 | string-width@^2.0.0, string-width@^2.1.1: 3203 | version "2.1.1" 3204 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3205 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 3206 | dependencies: 3207 | is-fullwidth-code-point "^2.0.0" 3208 | strip-ansi "^4.0.0" 3209 | 3210 | string.prototype.trim@~1.1.2: 3211 | version "1.1.2" 3212 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 3213 | integrity sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo= 3214 | dependencies: 3215 | define-properties "^1.1.2" 3216 | es-abstract "^1.5.0" 3217 | function-bind "^1.0.2" 3218 | 3219 | string.prototype.trimend@^1.0.0: 3220 | version "1.0.1" 3221 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 3222 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 3223 | dependencies: 3224 | define-properties "^1.1.3" 3225 | es-abstract "^1.17.5" 3226 | 3227 | string.prototype.trimleft@^2.1.1: 3228 | version "2.1.2" 3229 | resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" 3230 | integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== 3231 | dependencies: 3232 | define-properties "^1.1.3" 3233 | es-abstract "^1.17.5" 3234 | string.prototype.trimstart "^1.0.0" 3235 | 3236 | string.prototype.trimright@^2.1.1: 3237 | version "2.1.2" 3238 | resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" 3239 | integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== 3240 | dependencies: 3241 | define-properties "^1.1.3" 3242 | es-abstract "^1.17.5" 3243 | string.prototype.trimend "^1.0.0" 3244 | 3245 | string.prototype.trimstart@^1.0.0: 3246 | version "1.0.1" 3247 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 3248 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 3249 | dependencies: 3250 | define-properties "^1.1.3" 3251 | es-abstract "^1.17.5" 3252 | 3253 | string_decoder@^1.0.0, string_decoder@^1.1.1: 3254 | version "1.3.0" 3255 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 3256 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 3257 | dependencies: 3258 | safe-buffer "~5.2.0" 3259 | 3260 | string_decoder@~1.1.1: 3261 | version "1.1.1" 3262 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3263 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 3264 | dependencies: 3265 | safe-buffer "~5.1.0" 3266 | 3267 | stringmap@~0.2.2: 3268 | version "0.2.2" 3269 | resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" 3270 | integrity sha1-VWwTeyWPlCuHdvWy71gqoGnX0bE= 3271 | 3272 | stringset@~0.2.1: 3273 | version "0.2.1" 3274 | resolved "https://registry.yarnpkg.com/stringset/-/stringset-0.2.1.tgz#ef259c4e349344377fcd1c913dd2e848c9c042b5" 3275 | integrity sha1-7yWcTjSTRDd/zRyRPdLoSMnAQrU= 3276 | 3277 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3278 | version "3.0.1" 3279 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3280 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 3281 | dependencies: 3282 | ansi-regex "^2.0.0" 3283 | 3284 | strip-ansi@^4.0.0: 3285 | version "4.0.0" 3286 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3287 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 3288 | dependencies: 3289 | ansi-regex "^3.0.0" 3290 | 3291 | strip-bom@^2.0.0: 3292 | version "2.0.0" 3293 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3294 | integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= 3295 | dependencies: 3296 | is-utf8 "^0.2.0" 3297 | 3298 | strip-eof@^1.0.0: 3299 | version "1.0.0" 3300 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3301 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 3302 | 3303 | strip-json-comments@~2.0.1: 3304 | version "2.0.1" 3305 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3306 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 3307 | 3308 | supports-color@^2.0.0: 3309 | version "2.0.0" 3310 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3311 | integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= 3312 | 3313 | supports-color@^3.1.0: 3314 | version "3.2.3" 3315 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3316 | integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= 3317 | dependencies: 3318 | has-flag "^1.0.0" 3319 | 3320 | supports-color@^5.3.0: 3321 | version "5.5.0" 3322 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3323 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3324 | dependencies: 3325 | has-flag "^3.0.0" 3326 | 3327 | tap-out@^1.4.1: 3328 | version "1.4.2" 3329 | resolved "https://registry.yarnpkg.com/tap-out/-/tap-out-1.4.2.tgz#c907ec1bf9405111d088263e92f5608b88cbb37a" 3330 | integrity sha1-yQfsG/lAURHQiCY+kvVgi4jLs3o= 3331 | dependencies: 3332 | re-emitter "^1.0.0" 3333 | readable-stream "^2.0.0" 3334 | split "^1.0.0" 3335 | trim "0.0.1" 3336 | 3337 | tap-spec@4.1.1: 3338 | version "4.1.1" 3339 | resolved "https://registry.yarnpkg.com/tap-spec/-/tap-spec-4.1.1.tgz#e2e9f26f5208232b1f562288c97624d58a88f05a" 3340 | integrity sha1-4unyb1IIIysfViKIyXYk1YqI8Fo= 3341 | dependencies: 3342 | chalk "^1.0.0" 3343 | duplexer "^0.1.1" 3344 | figures "^1.4.0" 3345 | lodash "^3.6.0" 3346 | pretty-ms "^2.1.0" 3347 | repeat-string "^1.5.2" 3348 | tap-out "^1.4.1" 3349 | through2 "^2.0.0" 3350 | 3351 | tapable@^0.2.7, tapable@~0.2.5: 3352 | version "0.2.9" 3353 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.9.tgz#af2d8bbc9b04f74ee17af2b4d9048f807acd18a8" 3354 | integrity sha512-2wsvQ+4GwBvLPLWsNfLCDYGsW6xb7aeC6utq2Qh0PFwgEy7K7dsma9Jsmb2zSQj7GvYAyUGSntLtsv++GmgL1A== 3355 | 3356 | tape@4.6.0: 3357 | version "4.6.0" 3358 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.6.0.tgz#0188641150e4fa28ba791114190733f47e3743bf" 3359 | integrity sha1-AYhkEVDk+ii6eREUGQcz9H43Q78= 3360 | dependencies: 3361 | deep-equal "~1.0.1" 3362 | defined "~1.0.0" 3363 | function-bind "~1.1.0" 3364 | glob "~7.0.4" 3365 | has "~1.0.1" 3366 | inherits "~2.0.1" 3367 | minimist "~1.2.0" 3368 | object-inspect "~1.2.1" 3369 | resolve "~1.1.7" 3370 | resumer "~0.0.0" 3371 | string.prototype.trim "~1.1.2" 3372 | through "~2.3.8" 3373 | 3374 | term-size@^1.2.0: 3375 | version "1.2.0" 3376 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 3377 | integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= 3378 | dependencies: 3379 | execa "^0.7.0" 3380 | 3381 | through2@^2.0.0: 3382 | version "2.0.5" 3383 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 3384 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== 3385 | dependencies: 3386 | readable-stream "~2.3.6" 3387 | xtend "~4.0.1" 3388 | 3389 | through@2, through@~2.3.4, through@~2.3.8: 3390 | version "2.3.8" 3391 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3392 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 3393 | 3394 | timed-out@^4.0.0: 3395 | version "4.0.1" 3396 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3397 | integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= 3398 | 3399 | timers-browserify@^2.0.4: 3400 | version "2.0.11" 3401 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" 3402 | integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== 3403 | dependencies: 3404 | setimmediate "^1.0.4" 3405 | 3406 | to-arraybuffer@^1.0.0: 3407 | version "1.0.1" 3408 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3409 | integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= 3410 | 3411 | to-fast-properties@^1.0.3: 3412 | version "1.0.3" 3413 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3414 | integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= 3415 | 3416 | to-object-path@^0.3.0: 3417 | version "0.3.0" 3418 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3419 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3420 | dependencies: 3421 | kind-of "^3.0.2" 3422 | 3423 | to-regex-range@^2.1.0: 3424 | version "2.1.1" 3425 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3426 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3427 | dependencies: 3428 | is-number "^3.0.0" 3429 | repeat-string "^1.6.1" 3430 | 3431 | to-regex-range@^5.0.1: 3432 | version "5.0.1" 3433 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 3434 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3435 | dependencies: 3436 | is-number "^7.0.0" 3437 | 3438 | to-regex@^3.0.1, to-regex@^3.0.2: 3439 | version "3.0.2" 3440 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3441 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 3442 | dependencies: 3443 | define-property "^2.0.2" 3444 | extend-shallow "^3.0.2" 3445 | regex-not "^1.0.2" 3446 | safe-regex "^1.1.0" 3447 | 3448 | trim-right@^1.0.1: 3449 | version "1.0.1" 3450 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3451 | integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= 3452 | 3453 | trim@0.0.1: 3454 | version "0.0.1" 3455 | resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 3456 | integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0= 3457 | 3458 | tryor@~0.1.2: 3459 | version "0.1.2" 3460 | resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" 3461 | integrity sha1-gUXkynyv9ArN48z5Rui4u3W0Fys= 3462 | 3463 | tslint-loader@3.5.2: 3464 | version "3.5.2" 3465 | resolved "https://registry.yarnpkg.com/tslint-loader/-/tslint-loader-3.5.2.tgz#ef2f512c05a96fb1a22d94c32d22fb7975ef9917" 3466 | integrity sha1-7y9RLAWpb7GiLZTDLSL7eXXvmRc= 3467 | dependencies: 3468 | loader-utils "^1.0.2" 3469 | mkdirp "^0.5.1" 3470 | object-assign "^4.1.1" 3471 | rimraf "^2.4.4" 3472 | semver "^5.3.0" 3473 | 3474 | tslint@4.5.1: 3475 | version "4.5.1" 3476 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-4.5.1.tgz#05356871bef23a434906734006fc188336ba824b" 3477 | integrity sha1-BTVocb7yOkNJBnNABvwYgza6gks= 3478 | dependencies: 3479 | babel-code-frame "^6.20.0" 3480 | colors "^1.1.2" 3481 | diff "^3.0.1" 3482 | findup-sync "~0.3.0" 3483 | glob "^7.1.1" 3484 | optimist "~0.6.0" 3485 | resolve "^1.1.7" 3486 | tsutils "^1.1.0" 3487 | update-notifier "^2.0.0" 3488 | 3489 | tsutils@^1.1.0: 3490 | version "1.9.1" 3491 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-1.9.1.tgz#b9f9ab44e55af9681831d5f28d0aeeaf5c750cb0" 3492 | integrity sha1-ufmrROVa+WgYMdXyjQrur1x1DLA= 3493 | 3494 | tty-browserify@0.0.0: 3495 | version "0.0.0" 3496 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3497 | integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= 3498 | 3499 | typescript@2.2.2: 3500 | version "2.2.2" 3501 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.2.2.tgz#606022508479b55ffa368b58fee963a03dfd7b0c" 3502 | integrity sha1-YGAiUIR5tV/6NotY/uljoD39eww= 3503 | 3504 | uglify-js@^2.8.27: 3505 | version "2.8.29" 3506 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3507 | integrity sha1-KcVzMUgFe7Th913zW3qcty5qWd0= 3508 | dependencies: 3509 | source-map "~0.5.1" 3510 | yargs "~3.10.0" 3511 | optionalDependencies: 3512 | uglify-to-browserify "~1.0.0" 3513 | 3514 | uglify-to-browserify@~1.0.0: 3515 | version "1.0.2" 3516 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3517 | integrity sha1-bgkk1r2mta/jSeOabWMoUKD4grc= 3518 | 3519 | union-value@^1.0.0: 3520 | version "1.0.1" 3521 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 3522 | integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== 3523 | dependencies: 3524 | arr-union "^3.1.0" 3525 | get-value "^2.0.6" 3526 | is-extendable "^0.1.1" 3527 | set-value "^2.0.1" 3528 | 3529 | unique-string@^1.0.0: 3530 | version "1.0.0" 3531 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3532 | integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= 3533 | dependencies: 3534 | crypto-random-string "^1.0.0" 3535 | 3536 | unset-value@^1.0.0: 3537 | version "1.0.0" 3538 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3539 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3540 | dependencies: 3541 | has-value "^0.3.1" 3542 | isobject "^3.0.0" 3543 | 3544 | unzip-response@^2.0.1: 3545 | version "2.0.1" 3546 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3547 | integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= 3548 | 3549 | upath@^1.1.1: 3550 | version "1.2.0" 3551 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" 3552 | integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== 3553 | 3554 | update-notifier@^2.0.0: 3555 | version "2.5.0" 3556 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" 3557 | integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw== 3558 | dependencies: 3559 | boxen "^1.2.1" 3560 | chalk "^2.0.1" 3561 | configstore "^3.0.0" 3562 | import-lazy "^2.1.0" 3563 | is-ci "^1.0.10" 3564 | is-installed-globally "^0.1.0" 3565 | is-npm "^1.0.0" 3566 | latest-version "^3.0.0" 3567 | semver-diff "^2.0.0" 3568 | xdg-basedir "^3.0.0" 3569 | 3570 | urix@^0.1.0: 3571 | version "0.1.0" 3572 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3573 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3574 | 3575 | url-parse-lax@^1.0.0: 3576 | version "1.0.0" 3577 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3578 | integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= 3579 | dependencies: 3580 | prepend-http "^1.0.1" 3581 | 3582 | url@^0.11.0: 3583 | version "0.11.0" 3584 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3585 | integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= 3586 | dependencies: 3587 | punycode "1.3.2" 3588 | querystring "0.2.0" 3589 | 3590 | use@^3.1.0: 3591 | version "3.1.1" 3592 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3593 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3594 | 3595 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 3596 | version "1.0.2" 3597 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3598 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3599 | 3600 | util@0.10.3: 3601 | version "0.10.3" 3602 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3603 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= 3604 | dependencies: 3605 | inherits "2.0.1" 3606 | 3607 | util@^0.11.0: 3608 | version "0.11.1" 3609 | resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" 3610 | integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== 3611 | dependencies: 3612 | inherits "2.0.3" 3613 | 3614 | validate-npm-package-license@^3.0.1: 3615 | version "3.0.4" 3616 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3617 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 3618 | dependencies: 3619 | spdx-correct "^3.0.0" 3620 | spdx-expression-parse "^3.0.0" 3621 | 3622 | vm-browserify@^1.0.1: 3623 | version "1.1.2" 3624 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" 3625 | integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== 3626 | 3627 | watchpack-chokidar2@^2.0.0: 3628 | version "2.0.0" 3629 | resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0" 3630 | integrity sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA== 3631 | dependencies: 3632 | chokidar "^2.1.8" 3633 | 3634 | watchpack@^1.3.1: 3635 | version "1.7.2" 3636 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa" 3637 | integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g== 3638 | dependencies: 3639 | graceful-fs "^4.1.2" 3640 | neo-async "^2.5.0" 3641 | optionalDependencies: 3642 | chokidar "^3.4.0" 3643 | watchpack-chokidar2 "^2.0.0" 3644 | 3645 | webpack-sources@^1.0.1: 3646 | version "1.4.3" 3647 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" 3648 | integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== 3649 | dependencies: 3650 | source-list-map "^2.0.0" 3651 | source-map "~0.6.1" 3652 | 3653 | webpack@^2.3.3: 3654 | version "2.7.0" 3655 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.7.0.tgz#b2a1226804373ffd3d03ea9c6bd525067034f6b1" 3656 | integrity sha512-MjAA0ZqO1ba7ZQJRnoCdbM56mmFpipOPUv/vQpwwfSI42p5PVDdoiuK2AL2FwFUVgT859Jr43bFZXRg/LNsqvg== 3657 | dependencies: 3658 | acorn "^5.0.0" 3659 | acorn-dynamic-import "^2.0.0" 3660 | ajv "^4.7.0" 3661 | ajv-keywords "^1.1.1" 3662 | async "^2.1.2" 3663 | enhanced-resolve "^3.3.0" 3664 | interpret "^1.0.0" 3665 | json-loader "^0.5.4" 3666 | json5 "^0.5.1" 3667 | loader-runner "^2.3.0" 3668 | loader-utils "^0.2.16" 3669 | memory-fs "~0.4.1" 3670 | mkdirp "~0.5.0" 3671 | node-libs-browser "^2.0.0" 3672 | source-map "^0.5.3" 3673 | supports-color "^3.1.0" 3674 | tapable "~0.2.5" 3675 | uglify-js "^2.8.27" 3676 | watchpack "^1.3.1" 3677 | webpack-sources "^1.0.1" 3678 | yargs "^6.0.0" 3679 | 3680 | which-module@^1.0.0: 3681 | version "1.0.0" 3682 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3683 | integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= 3684 | 3685 | which@^1.2.9: 3686 | version "1.3.1" 3687 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3688 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3689 | dependencies: 3690 | isexe "^2.0.0" 3691 | 3692 | widest-line@^2.0.0: 3693 | version "2.0.1" 3694 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" 3695 | integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== 3696 | dependencies: 3697 | string-width "^2.1.1" 3698 | 3699 | window-size@0.1.0: 3700 | version "0.1.0" 3701 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3702 | integrity sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0= 3703 | 3704 | wordwrap@0.0.2: 3705 | version "0.0.2" 3706 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3707 | integrity sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8= 3708 | 3709 | wordwrap@~0.0.2: 3710 | version "0.0.3" 3711 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3712 | integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= 3713 | 3714 | wrap-ansi@^2.0.0: 3715 | version "2.1.0" 3716 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3717 | integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= 3718 | dependencies: 3719 | string-width "^1.0.1" 3720 | strip-ansi "^3.0.1" 3721 | 3722 | wrappy@1: 3723 | version "1.0.2" 3724 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3725 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3726 | 3727 | write-file-atomic@^2.0.0: 3728 | version "2.4.3" 3729 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" 3730 | integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== 3731 | dependencies: 3732 | graceful-fs "^4.1.11" 3733 | imurmurhash "^0.1.4" 3734 | signal-exit "^3.0.2" 3735 | 3736 | xdg-basedir@^3.0.0: 3737 | version "3.0.0" 3738 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3739 | integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= 3740 | 3741 | xtend@^4.0.0, xtend@~4.0.1: 3742 | version "4.0.2" 3743 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 3744 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 3745 | 3746 | y18n@^3.2.1: 3747 | version "3.2.1" 3748 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3749 | integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= 3750 | 3751 | yallist@^2.1.2: 3752 | version "2.1.2" 3753 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3754 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 3755 | 3756 | yargs-parser@^4.2.0: 3757 | version "4.2.1" 3758 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3759 | integrity sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw= 3760 | dependencies: 3761 | camelcase "^3.0.0" 3762 | 3763 | yargs@^6.0.0: 3764 | version "6.6.0" 3765 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3766 | integrity sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg= 3767 | dependencies: 3768 | camelcase "^3.0.0" 3769 | cliui "^3.2.0" 3770 | decamelize "^1.1.1" 3771 | get-caller-file "^1.0.1" 3772 | os-locale "^1.4.0" 3773 | read-pkg-up "^1.0.1" 3774 | require-directory "^2.1.1" 3775 | require-main-filename "^1.0.1" 3776 | set-blocking "^2.0.0" 3777 | string-width "^1.0.2" 3778 | which-module "^1.0.0" 3779 | y18n "^3.2.1" 3780 | yargs-parser "^4.2.0" 3781 | 3782 | yargs@~3.10.0: 3783 | version "3.10.0" 3784 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3785 | integrity sha1-9+572FfdfB0tOMDnTvvWgdFDH9E= 3786 | dependencies: 3787 | camelcase "^1.0.2" 3788 | cliui "^2.1.0" 3789 | decamelize "^1.0.0" 3790 | window-size "0.1.0" 3791 | --------------------------------------------------------------------------------