├── README.md ├── entrypoint.sh ├── .dockerignore ├── renderer.js ├── Dockerfile ├── dev-app-update.yml ├── package.json ├── LICENSE ├── .gitignore ├── index.html ├── main.js ├── LICENSE.md └── yarn.lock /README.md: -------------------------------------------------------------------------------- 1 | # electron-autoupdate-testing -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | ./node_modules/.bin/build --win --ia32 -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | **/app/dist 2 | **/.git 3 | **/node_modules 4 | **/www -------------------------------------------------------------------------------- /renderer.js: -------------------------------------------------------------------------------- 1 | // This file is required by the index.html file and will 2 | // be executed in the renderer process for that window. 3 | // All of the Node.js APIs are available in this process. 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM electronuserland/builder:wine 2 | 3 | WORKDIR /project 4 | 5 | ADD package.json /project 6 | RUN npm install 7 | 8 | ADD . /project 9 | 10 | ENTRYPOINT /project/entrypoint.sh -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- 1 | version: 1.0.3 2 | files: 3 | - url: electron-quick-start Setup 1.0.3.exe 4 | sha512: d+h28jgcX/bbxN9m91Syr/yy3uZ0Pr4uA1KL7MCMrvIojwXvuIWzTe/RYS7KW6oyGbshcYpb3ym7YTv6NWYfMw== 5 | size: 30117557 6 | path: electron-quick-start Setup 1.0.3.exe 7 | sha512: d+h28jgcX/bbxN9m91Syr/yy3uZ0Pr4uA1KL7MCMrvIojwXvuIWzTe/RYS7KW6oyGbshcYpb3ym7YTv6NWYfMw== 8 | sha2: b50a286d151aa5d5a72288c1e8c94471a85de11d55d425246dfb771d021ac475 9 | releaseDate: '2018-05-01T20:46:43.887Z' 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "electron-quick-start", 3 | "version": "1.0.3", 4 | "description": "A minimal Electron application", 5 | "main": "main.js", 6 | "scripts": { 7 | "start": "electron .", 8 | "build": "docker build -t electronupdate . && docker run --rm -v ${PWD}/dist:/project/dist electronupdate && sudo chown $USER:users dist/ -R" 9 | }, 10 | "repository": "https://github.com/electron/electron-quick-start", 11 | "keywords": [ 12 | "Electron", 13 | "quick", 14 | "start", 15 | "tutorial", 16 | "demo" 17 | ], 18 | "author": "GitHub", 19 | "license": "CC0-1.0", 20 | "devDependencies": { 21 | "electron": "^1.8.4", 22 | "electron-builder": "^20.11.1" 23 | }, 24 | "dependencies": { 25 | "electron-log": "^2.2.14", 26 | "electron-updater": "^2.21.8" 27 | }, 28 | "build": { 29 | "publish": [ 30 | { 31 | "provider": "generic", 32 | "url": "http://192.168.1.154:8000/" 33 | } 34 | ], 35 | "appId": "com.github.iffy.electronupdatergenericexample", 36 | "nsis": { 37 | "perMachine": true 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Fellipe Pinheiro 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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | www/ 61 | dist/ -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hello World! 6 | 7 | 8 |

Hello World!

9 | 10 | We are using Node.js , 11 | Chromium , 12 | and Electron . 13 | 14 | Current version: 15 | vX.Y.Z 16 |
17 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | const electron = require('electron') 2 | const { autoUpdater } = require("electron-updater") 3 | // Module to control application life. 4 | const app = electron.app 5 | // Module to create native browser window. 6 | const BrowserWindow = electron.BrowserWindow 7 | 8 | const path = require('path') 9 | const url = require('url') 10 | const log = require('electron-log'); 11 | 12 | 13 | autoUpdater.logger = log; 14 | autoUpdater.logger.transports.file.level = 'info'; 15 | log.info('App starting...'); 16 | 17 | // Keep a global reference of the window object, if you don't, the window will 18 | // be closed automatically when the JavaScript object is garbage collected. 19 | let mainWindow 20 | 21 | 22 | function createWindow () { 23 | autoUpdater.checkForUpdates(); 24 | mainWindow = new BrowserWindow(); 25 | mainWindow.webContents.openDevTools(); 26 | mainWindow.on('closed', () => { 27 | mainWindow = null; 28 | }); 29 | mainWindow.loadURL(`file://${__dirname}/index.html`); 30 | } 31 | 32 | // This method will be called when Electron has finished 33 | // initialization and is ready to create browser windows. 34 | // Some APIs can only be used after this event occurs. 35 | app.on('ready', createWindow) 36 | 37 | // Quit when all windows are closed. 38 | app.on('window-all-closed', function () { 39 | // On OS X it is common for applications and their menu bar 40 | // to stay active until the user quits explicitly with Cmd + Q 41 | if (process.platform !== 'darwin') { 42 | app.quit() 43 | } 44 | }) 45 | 46 | app.on('activate', function () { 47 | // On OS X it's common to re-create a window in the app when the 48 | // dock icon is clicked and there are no other windows open. 49 | if (mainWindow === null) { 50 | createWindow() 51 | } 52 | }) 53 | 54 | function sendStatusToWindow(text) { 55 | log.info(text); 56 | mainWindow.webContents.send('message', text); 57 | } 58 | 59 | 60 | autoUpdater.on('checking-for-update', () => { 61 | sendStatusToWindow('Checking for update...'); 62 | }) 63 | autoUpdater.on('update-available', (ev, info) => { 64 | sendStatusToWindow('Update available.'); 65 | }) 66 | autoUpdater.on('update-not-available', (ev, info) => { 67 | sendStatusToWindow('Update not available.'); 68 | }) 69 | autoUpdater.on('error', (ev, err) => { 70 | sendStatusToWindow('Error in auto-updater.'); 71 | }) 72 | autoUpdater.on('download-progress', (ev, progressObj) => { 73 | sendStatusToWindow('Download progress...'); 74 | }) 75 | autoUpdater.on('update-downloaded', (ev, info) => { 76 | sendStatusToWindow('Update downloaded; will install in 5 seconds'); 77 | }); 78 | 79 | autoUpdater.on('update-downloaded', (ev, info) => { 80 | // Wait 5 seconds, then quit and install 81 | // In your application, you don't need to wait 5 seconds. 82 | // You could call autoUpdater.quitAndInstall(); immediately 83 | setTimeout(function () { 84 | autoUpdater.quitAndInstall(); 85 | }, 5000) 86 | }) 87 | 88 | // In this file you can include the rest of your app's specific main process 89 | // code. You can also put them in separate files and require them here. 90 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | ================== 3 | 4 | Statement of Purpose 5 | --------------------- 6 | 7 | The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). 8 | 9 | Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. 10 | 11 | For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 12 | 13 | 1. Copyright and Related Rights. 14 | -------------------------------- 15 | A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: 16 | 17 | i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; 18 | ii. moral rights retained by the original author(s) and/or performer(s); 19 | iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; 20 | iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; 21 | v. rights protecting the extraction, dissemination, use and reuse of data in a Work; 22 | vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and 23 | vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 24 | 25 | 2. Waiver. 26 | ----------- 27 | To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 28 | 29 | 3. Public License Fallback. 30 | ---------------------------- 31 | Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 32 | 33 | 4. Limitations and Disclaimers. 34 | -------------------------------- 35 | 36 | a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. 37 | b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. 38 | c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. 39 | d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. 40 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "7zip-bin-linux@~1.3.1": 6 | version "1.3.1" 7 | resolved "https://registry.yarnpkg.com/7zip-bin-linux/-/7zip-bin-linux-1.3.1.tgz#4856db1ab1bf5b6ee8444f93f5a8ad71446d00d5" 8 | 9 | "7zip-bin-mac@~1.0.1": 10 | version "1.0.1" 11 | resolved "https://registry.yarnpkg.com/7zip-bin-mac/-/7zip-bin-mac-1.0.1.tgz#3e68778bbf0926adc68159427074505d47555c02" 12 | 13 | "7zip-bin-win@~2.2.0": 14 | version "2.2.0" 15 | resolved "https://registry.yarnpkg.com/7zip-bin-win/-/7zip-bin-win-2.2.0.tgz#0b81c43e911100f3ece2ebac4f414ca95a572d5b" 16 | 17 | "7zip-bin@~3.1.0": 18 | version "3.1.0" 19 | resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-3.1.0.tgz#70814c6b6d44fef8b74be6fc64d3977a2eff59a5" 20 | optionalDependencies: 21 | "7zip-bin-linux" "~1.3.1" 22 | "7zip-bin-mac" "~1.0.1" 23 | "7zip-bin-win" "~2.2.0" 24 | 25 | "@types/node@^8.0.24": 26 | version "8.10.11" 27 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.11.tgz#971ea8cb91adbe0b74e3fbd867dec192d5893a5f" 28 | 29 | ajv-keywords@^3.1.0: 30 | version "3.2.0" 31 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" 32 | 33 | ajv@^5.1.0: 34 | version "5.5.2" 35 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 36 | dependencies: 37 | co "^4.6.0" 38 | fast-deep-equal "^1.0.0" 39 | fast-json-stable-stringify "^2.0.0" 40 | json-schema-traverse "^0.3.0" 41 | 42 | ajv@^6.1.1: 43 | version "6.4.0" 44 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.4.0.tgz#d3aff78e9277549771daf0164cff48482b754fc6" 45 | dependencies: 46 | fast-deep-equal "^1.0.0" 47 | fast-json-stable-stringify "^2.0.0" 48 | json-schema-traverse "^0.3.0" 49 | uri-js "^3.0.2" 50 | 51 | ansi-align@^2.0.0: 52 | version "2.0.0" 53 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 54 | dependencies: 55 | string-width "^2.0.0" 56 | 57 | ansi-regex@^2.0.0: 58 | version "2.1.1" 59 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 60 | 61 | ansi-regex@^3.0.0: 62 | version "3.0.0" 63 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 64 | 65 | ansi-styles@^3.2.1: 66 | version "3.2.1" 67 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 68 | dependencies: 69 | color-convert "^1.9.0" 70 | 71 | app-builder-bin-linux@1.8.6: 72 | version "1.8.6" 73 | resolved "https://registry.yarnpkg.com/app-builder-bin-linux/-/app-builder-bin-linux-1.8.6.tgz#81176bbcb2929958a90f2184afb54df90b7210a3" 74 | 75 | app-builder-bin-mac@1.8.6: 76 | version "1.8.6" 77 | resolved "https://registry.yarnpkg.com/app-builder-bin-mac/-/app-builder-bin-mac-1.8.6.tgz#20d7233c5cadf00472e7b0ccaf85627b53f90787" 78 | 79 | app-builder-bin-win@1.8.6: 80 | version "1.8.6" 81 | resolved "https://registry.yarnpkg.com/app-builder-bin-win/-/app-builder-bin-win-1.8.6.tgz#d09f78fb1dd5a5f8ea231294828fd5c9ad0358a5" 82 | 83 | app-builder-bin@1.8.6: 84 | version "1.8.6" 85 | resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-1.8.6.tgz#85604ece9c1b63ed0437abe92ddaf41c88c3f2e4" 86 | optionalDependencies: 87 | app-builder-bin-linux "1.8.6" 88 | app-builder-bin-mac "1.8.6" 89 | app-builder-bin-win "1.8.6" 90 | 91 | argparse@^1.0.7: 92 | version "1.0.10" 93 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 94 | dependencies: 95 | sprintf-js "~1.0.2" 96 | 97 | array-find-index@^1.0.1: 98 | version "1.0.2" 99 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 100 | 101 | asn1@~0.2.3: 102 | version "0.2.3" 103 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 104 | 105 | assert-plus@1.0.0, assert-plus@^1.0.0: 106 | version "1.0.0" 107 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 108 | 109 | async-exit-hook@^2.0.1: 110 | version "2.0.1" 111 | resolved "https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz#8bd8b024b0ec9b1c01cccb9af9db29bd717dfaf3" 112 | 113 | asynckit@^0.4.0: 114 | version "0.4.0" 115 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 116 | 117 | aws-sign2@~0.7.0: 118 | version "0.7.0" 119 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 120 | 121 | aws4@^1.6.0: 122 | version "1.7.0" 123 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 124 | 125 | balanced-match@^1.0.0: 126 | version "1.0.0" 127 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 128 | 129 | base64-js@1.2.0: 130 | version "1.2.0" 131 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 132 | 133 | base64-js@^1.2.3: 134 | version "1.3.0" 135 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" 136 | 137 | bcrypt-pbkdf@^1.0.0: 138 | version "1.0.1" 139 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 140 | dependencies: 141 | tweetnacl "^0.14.3" 142 | 143 | bluebird-lst@^1.0.5: 144 | version "1.0.5" 145 | resolved "https://registry.yarnpkg.com/bluebird-lst/-/bluebird-lst-1.0.5.tgz#bebc83026b7e92a72871a3dc599e219cbfb002a9" 146 | dependencies: 147 | bluebird "^3.5.1" 148 | 149 | bluebird@^3.5.0, bluebird@^3.5.1: 150 | version "3.5.1" 151 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 152 | 153 | boom@4.x.x: 154 | version "4.3.1" 155 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 156 | dependencies: 157 | hoek "4.x.x" 158 | 159 | boom@5.x.x: 160 | version "5.2.0" 161 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 162 | dependencies: 163 | hoek "4.x.x" 164 | 165 | boxen@^1.2.1: 166 | version "1.3.0" 167 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 168 | dependencies: 169 | ansi-align "^2.0.0" 170 | camelcase "^4.0.0" 171 | chalk "^2.0.1" 172 | cli-boxes "^1.0.0" 173 | string-width "^2.0.0" 174 | term-size "^1.2.0" 175 | widest-line "^2.0.0" 176 | 177 | brace-expansion@^1.1.7: 178 | version "1.1.11" 179 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 180 | dependencies: 181 | balanced-match "^1.0.0" 182 | concat-map "0.0.1" 183 | 184 | buffer-from@^1.0.0: 185 | version "1.0.0" 186 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 187 | 188 | builder-util-runtime@4.2.0, builder-util-runtime@^4.2.0, builder-util-runtime@~4.2.0: 189 | version "4.2.0" 190 | resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-4.2.0.tgz#c56aa18d34390143da031c418c9d3a055fbd3522" 191 | dependencies: 192 | bluebird-lst "^1.0.5" 193 | debug "^3.1.0" 194 | fs-extra-p "^4.5.2" 195 | sax "^1.2.4" 196 | 197 | builder-util@5.7.10, builder-util@^5.7.10, builder-util@^5.7.6: 198 | version "5.7.10" 199 | resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-5.7.10.tgz#cb49f3fd3b580bdc86bcf1a30be0d036665d127d" 200 | dependencies: 201 | "7zip-bin" "~3.1.0" 202 | app-builder-bin "1.8.6" 203 | bluebird-lst "^1.0.5" 204 | builder-util-runtime "^4.2.0" 205 | chalk "^2.4.1" 206 | debug "^3.1.0" 207 | fs-extra-p "^4.5.2" 208 | is-ci "^1.1.0" 209 | js-yaml "^3.11.0" 210 | lazy-val "^1.0.3" 211 | semver "^5.5.0" 212 | source-map-support "^0.5.5" 213 | stat-mode "^0.2.2" 214 | temp-file "^3.1.1" 215 | 216 | builder-util@5.7.8: 217 | version "5.7.8" 218 | resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-5.7.8.tgz#dcd590710ed6ad5fefb38f2300c764816c018c98" 219 | dependencies: 220 | "7zip-bin" "~3.1.0" 221 | app-builder-bin "1.8.6" 222 | bluebird-lst "^1.0.5" 223 | builder-util-runtime "^4.2.0" 224 | chalk "^2.3.2" 225 | debug "^3.1.0" 226 | fs-extra-p "^4.5.2" 227 | is-ci "^1.1.0" 228 | js-yaml "^3.11.0" 229 | lazy-val "^1.0.3" 230 | semver "^5.5.0" 231 | source-map-support "^0.5.4" 232 | stat-mode "^0.2.2" 233 | temp-file "^3.1.1" 234 | 235 | builtin-modules@^1.0.0: 236 | version "1.1.1" 237 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 238 | 239 | camelcase-keys@^2.0.0: 240 | version "2.1.0" 241 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 242 | dependencies: 243 | camelcase "^2.0.0" 244 | map-obj "^1.0.0" 245 | 246 | camelcase@^2.0.0: 247 | version "2.1.1" 248 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 249 | 250 | camelcase@^4.0.0, camelcase@^4.1.0: 251 | version "4.1.0" 252 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 253 | 254 | capture-stack-trace@^1.0.0: 255 | version "1.0.0" 256 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 257 | 258 | caseless@~0.12.0: 259 | version "0.12.0" 260 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 261 | 262 | chalk@^2.0.1, chalk@^2.3.2, chalk@^2.4.1: 263 | version "2.4.1" 264 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 265 | dependencies: 266 | ansi-styles "^3.2.1" 267 | escape-string-regexp "^1.0.5" 268 | supports-color "^5.3.0" 269 | 270 | chromium-pickle-js@^0.2.0: 271 | version "0.2.0" 272 | resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" 273 | 274 | ci-info@^1.0.0: 275 | version "1.1.3" 276 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 277 | 278 | cli-boxes@^1.0.0: 279 | version "1.0.0" 280 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 281 | 282 | cliui@^4.0.0: 283 | version "4.1.0" 284 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 285 | dependencies: 286 | string-width "^2.1.1" 287 | strip-ansi "^4.0.0" 288 | wrap-ansi "^2.0.0" 289 | 290 | co@^4.6.0: 291 | version "4.6.0" 292 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 293 | 294 | code-point-at@^1.0.0: 295 | version "1.1.0" 296 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 297 | 298 | color-convert@^1.9.0: 299 | version "1.9.1" 300 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 301 | dependencies: 302 | color-name "^1.1.1" 303 | 304 | color-convert@~0.5.0: 305 | version "0.5.3" 306 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-0.5.3.tgz#bdb6c69ce660fadffe0b0007cc447e1b9f7282bd" 307 | 308 | color-name@^1.1.1: 309 | version "1.1.3" 310 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 311 | 312 | combined-stream@1.0.6, combined-stream@~1.0.5: 313 | version "1.0.6" 314 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 315 | dependencies: 316 | delayed-stream "~1.0.0" 317 | 318 | compare-version@^0.1.2: 319 | version "0.1.2" 320 | resolved "https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz#0162ec2d9351f5ddd59a9202cba935366a725080" 321 | 322 | concat-map@0.0.1: 323 | version "0.0.1" 324 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 325 | 326 | concat-stream@1.6.0: 327 | version "1.6.0" 328 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 329 | dependencies: 330 | inherits "^2.0.3" 331 | readable-stream "^2.2.2" 332 | typedarray "^0.0.6" 333 | 334 | configstore@^3.0.0: 335 | version "3.1.2" 336 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" 337 | dependencies: 338 | dot-prop "^4.1.0" 339 | graceful-fs "^4.1.2" 340 | make-dir "^1.0.0" 341 | unique-string "^1.0.0" 342 | write-file-atomic "^2.0.0" 343 | xdg-basedir "^3.0.0" 344 | 345 | core-util-is@1.0.2, core-util-is@~1.0.0: 346 | version "1.0.2" 347 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 348 | 349 | create-error-class@^3.0.0: 350 | version "3.0.2" 351 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 352 | dependencies: 353 | capture-stack-trace "^1.0.0" 354 | 355 | cross-spawn@^5.0.1: 356 | version "5.1.0" 357 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 358 | dependencies: 359 | lru-cache "^4.0.1" 360 | shebang-command "^1.2.0" 361 | which "^1.2.9" 362 | 363 | cryptiles@3.x.x: 364 | version "3.1.2" 365 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 366 | dependencies: 367 | boom "5.x.x" 368 | 369 | crypto-random-string@^1.0.0: 370 | version "1.0.0" 371 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 372 | 373 | currently-unhandled@^0.4.1: 374 | version "0.4.1" 375 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 376 | dependencies: 377 | array-find-index "^1.0.1" 378 | 379 | dashdash@^1.12.0: 380 | version "1.14.1" 381 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 382 | dependencies: 383 | assert-plus "^1.0.0" 384 | 385 | debug@2.6.9, debug@^2.1.3, debug@^2.2.0, debug@^2.6.8: 386 | version "2.6.9" 387 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 388 | dependencies: 389 | ms "2.0.0" 390 | 391 | debug@^3.0.0, debug@^3.1.0: 392 | version "3.1.0" 393 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 394 | dependencies: 395 | ms "2.0.0" 396 | 397 | decamelize@^1.1.1, decamelize@^1.1.2: 398 | version "1.2.0" 399 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 400 | 401 | deep-extend@^0.5.1: 402 | version "0.5.1" 403 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f" 404 | 405 | delayed-stream@~1.0.0: 406 | version "1.0.0" 407 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 408 | 409 | dmg-builder@4.1.5: 410 | version "4.1.5" 411 | resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-4.1.5.tgz#f8dc24cd911e0e4a8cdcf9c8a2c829317403985a" 412 | dependencies: 413 | bluebird-lst "^1.0.5" 414 | builder-util "^5.7.6" 415 | electron-builder-lib "~20.9.0" 416 | fs-extra-p "^4.5.2" 417 | iconv-lite "^0.4.21" 418 | js-yaml "^3.11.0" 419 | parse-color "^1.0.0" 420 | sanitize-filename "^1.6.1" 421 | 422 | dot-prop@^4.1.0: 423 | version "4.2.0" 424 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 425 | dependencies: 426 | is-obj "^1.0.0" 427 | 428 | dotenv-expand@^4.0.1: 429 | version "4.2.0" 430 | resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-4.2.0.tgz#def1f1ca5d6059d24a766e587942c21106ce1275" 431 | 432 | dotenv@^5.0.0: 433 | version "5.0.1" 434 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-5.0.1.tgz#a5317459bd3d79ab88cff6e44057a6a3fbb1fcef" 435 | 436 | duplexer3@^0.1.4: 437 | version "0.1.4" 438 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 439 | 440 | ecc-jsbn@~0.1.1: 441 | version "0.1.1" 442 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 443 | dependencies: 444 | jsbn "~0.1.0" 445 | 446 | ejs@^2.5.9: 447 | version "2.5.9" 448 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.5.9.tgz#7ba254582a560d267437109a68354112475b0ce5" 449 | 450 | electron-builder-lib@20.11.1: 451 | version "20.11.1" 452 | resolved "https://registry.yarnpkg.com/electron-builder-lib/-/electron-builder-lib-20.11.1.tgz#0df9c1779d8018fa72c0c315b94b7283ac954515" 453 | dependencies: 454 | "7zip-bin" "~3.1.0" 455 | app-builder-bin "1.8.6" 456 | async-exit-hook "^2.0.1" 457 | bluebird-lst "^1.0.5" 458 | builder-util "5.7.10" 459 | builder-util-runtime "4.2.0" 460 | chromium-pickle-js "^0.2.0" 461 | debug "^3.1.0" 462 | ejs "^2.5.9" 463 | electron-osx-sign "0.4.10" 464 | electron-publish "20.11.0" 465 | fs-extra-p "^4.5.2" 466 | hosted-git-info "^2.6.0" 467 | is-ci "^1.1.0" 468 | isbinaryfile "^3.0.2" 469 | js-yaml "^3.11.0" 470 | lazy-val "^1.0.3" 471 | minimatch "^3.0.4" 472 | normalize-package-data "^2.4.0" 473 | plist "^3.0.1" 474 | read-config-file "3.0.0" 475 | sanitize-filename "^1.6.1" 476 | semver "^5.5.0" 477 | temp-file "^3.1.1" 478 | 479 | electron-builder-lib@~20.9.0: 480 | version "20.9.2" 481 | resolved "https://registry.yarnpkg.com/electron-builder-lib/-/electron-builder-lib-20.9.2.tgz#8c0cff79b79206e6bdb796615648c9b1556fe837" 482 | dependencies: 483 | "7zip-bin" "~3.1.0" 484 | app-builder-bin "1.8.6" 485 | async-exit-hook "^2.0.1" 486 | bluebird-lst "^1.0.5" 487 | builder-util "5.7.8" 488 | builder-util-runtime "4.2.0" 489 | chromium-pickle-js "^0.2.0" 490 | debug "^3.1.0" 491 | ejs "^2.5.9" 492 | electron-osx-sign "0.4.10" 493 | electron-publish "20.9.0" 494 | fs-extra-p "^4.5.2" 495 | hosted-git-info "^2.6.0" 496 | is-ci "^1.1.0" 497 | isbinaryfile "^3.0.2" 498 | js-yaml "^3.11.0" 499 | lazy-val "^1.0.3" 500 | minimatch "^3.0.4" 501 | normalize-package-data "^2.4.0" 502 | plist "^3.0.1" 503 | read-config-file "3.0.0" 504 | sanitize-filename "^1.6.1" 505 | semver "^5.5.0" 506 | temp-file "^3.1.1" 507 | 508 | electron-builder@^20.11.1: 509 | version "20.11.1" 510 | resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-20.11.1.tgz#a84feea424ac3abfa0dd1e4818dde8338250e543" 511 | dependencies: 512 | bluebird-lst "^1.0.5" 513 | builder-util "5.7.10" 514 | builder-util-runtime "4.2.0" 515 | chalk "^2.4.1" 516 | dmg-builder "4.1.5" 517 | electron-builder-lib "20.11.1" 518 | electron-download-tf "4.3.4" 519 | fs-extra-p "^4.5.2" 520 | is-ci "^1.1.0" 521 | lazy-val "^1.0.3" 522 | read-config-file "3.0.0" 523 | sanitize-filename "^1.6.1" 524 | update-notifier "^2.5.0" 525 | yargs "^11.0.0" 526 | 527 | electron-download-tf@4.3.4: 528 | version "4.3.4" 529 | resolved "https://registry.yarnpkg.com/electron-download-tf/-/electron-download-tf-4.3.4.tgz#b03740b2885aa2ad3f8784fae74df427f66d5165" 530 | dependencies: 531 | debug "^3.0.0" 532 | env-paths "^1.0.0" 533 | fs-extra "^4.0.1" 534 | minimist "^1.2.0" 535 | nugget "^2.0.1" 536 | path-exists "^3.0.0" 537 | rc "^1.2.1" 538 | semver "^5.4.1" 539 | sumchecker "^2.0.2" 540 | 541 | electron-download@^3.0.1: 542 | version "3.3.0" 543 | resolved "https://registry.yarnpkg.com/electron-download/-/electron-download-3.3.0.tgz#2cfd54d6966c019c4d49ad65fbe65cc9cdef68c8" 544 | dependencies: 545 | debug "^2.2.0" 546 | fs-extra "^0.30.0" 547 | home-path "^1.0.1" 548 | minimist "^1.2.0" 549 | nugget "^2.0.0" 550 | path-exists "^2.1.0" 551 | rc "^1.1.2" 552 | semver "^5.3.0" 553 | sumchecker "^1.2.0" 554 | 555 | electron-is-dev@^0.3.0: 556 | version "0.3.0" 557 | resolved "https://registry.yarnpkg.com/electron-is-dev/-/electron-is-dev-0.3.0.tgz#14e6fda5c68e9e4ecbeff9ccf037cbd7c05c5afe" 558 | 559 | electron-log@^2.2.14: 560 | version "2.2.14" 561 | resolved "https://registry.yarnpkg.com/electron-log/-/electron-log-2.2.14.tgz#2123319ccb8d70b0db07f0eda57d5823cb42b4b0" 562 | 563 | electron-osx-sign@0.4.10: 564 | version "0.4.10" 565 | resolved "https://registry.yarnpkg.com/electron-osx-sign/-/electron-osx-sign-0.4.10.tgz#be4f3b89b2a75a1dc5f1e7249081ab2929ca3a26" 566 | dependencies: 567 | bluebird "^3.5.0" 568 | compare-version "^0.1.2" 569 | debug "^2.6.8" 570 | isbinaryfile "^3.0.2" 571 | minimist "^1.2.0" 572 | plist "^2.1.0" 573 | 574 | electron-publish@20.11.0: 575 | version "20.11.0" 576 | resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-20.11.0.tgz#3c8e6fa1bd6c9c05cbd8b7ed4826d2ab3db4f46d" 577 | dependencies: 578 | bluebird-lst "^1.0.5" 579 | builder-util "^5.7.10" 580 | builder-util-runtime "^4.2.0" 581 | chalk "^2.4.1" 582 | fs-extra-p "^4.5.2" 583 | lazy-val "^1.0.3" 584 | mime "^2.3.1" 585 | 586 | electron-publish@20.9.0: 587 | version "20.9.0" 588 | resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-20.9.0.tgz#095c02fe39674079d90a29eb404dbc894188ca16" 589 | dependencies: 590 | bluebird-lst "^1.0.5" 591 | builder-util "^5.7.6" 592 | builder-util-runtime "^4.2.0" 593 | chalk "^2.3.2" 594 | fs-extra-p "^4.5.2" 595 | lazy-val "^1.0.3" 596 | mime "^2.3.1" 597 | 598 | electron-updater@^2.21.8: 599 | version "2.21.8" 600 | resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-2.21.8.tgz#3881fff1fc7c57a66be0665bd7ffe02b7ecb5566" 601 | dependencies: 602 | bluebird-lst "^1.0.5" 603 | builder-util-runtime "~4.2.0" 604 | electron-is-dev "^0.3.0" 605 | fs-extra-p "^4.5.2" 606 | js-yaml "^3.11.0" 607 | lazy-val "^1.0.3" 608 | lodash.isequal "^4.5.0" 609 | semver "^5.5.0" 610 | source-map-support "^0.5.4" 611 | 612 | electron@^1.8.4: 613 | version "1.8.6" 614 | resolved "https://registry.yarnpkg.com/electron/-/electron-1.8.6.tgz#6d45e377b321a35b78a794b64e40b2cf8face6ae" 615 | dependencies: 616 | "@types/node" "^8.0.24" 617 | electron-download "^3.0.1" 618 | extract-zip "^1.0.3" 619 | 620 | env-paths@^1.0.0: 621 | version "1.0.0" 622 | resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-1.0.0.tgz#4168133b42bb05c38a35b1ae4397c8298ab369e0" 623 | 624 | error-ex@^1.2.0: 625 | version "1.3.1" 626 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 627 | dependencies: 628 | is-arrayish "^0.2.1" 629 | 630 | es6-promise@^4.0.5: 631 | version "4.2.4" 632 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.4.tgz#dc4221c2b16518760bd8c39a52d8f356fc00ed29" 633 | 634 | escape-string-regexp@^1.0.5: 635 | version "1.0.5" 636 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 637 | 638 | esprima@^4.0.0: 639 | version "4.0.0" 640 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 641 | 642 | execa@^0.7.0: 643 | version "0.7.0" 644 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 645 | dependencies: 646 | cross-spawn "^5.0.1" 647 | get-stream "^3.0.0" 648 | is-stream "^1.1.0" 649 | npm-run-path "^2.0.0" 650 | p-finally "^1.0.0" 651 | signal-exit "^3.0.0" 652 | strip-eof "^1.0.0" 653 | 654 | extend@~3.0.1: 655 | version "3.0.1" 656 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 657 | 658 | extract-zip@^1.0.3: 659 | version "1.6.6" 660 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.6.tgz#1290ede8d20d0872b429fd3f351ca128ec5ef85c" 661 | dependencies: 662 | concat-stream "1.6.0" 663 | debug "2.6.9" 664 | mkdirp "0.5.0" 665 | yauzl "2.4.1" 666 | 667 | extsprintf@1.3.0: 668 | version "1.3.0" 669 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 670 | 671 | extsprintf@^1.2.0: 672 | version "1.4.0" 673 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 674 | 675 | fast-deep-equal@^1.0.0: 676 | version "1.1.0" 677 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 678 | 679 | fast-json-stable-stringify@^2.0.0: 680 | version "2.0.0" 681 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 682 | 683 | fd-slicer@~1.0.1: 684 | version "1.0.1" 685 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 686 | dependencies: 687 | pend "~1.2.0" 688 | 689 | find-up@^1.0.0: 690 | version "1.1.2" 691 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 692 | dependencies: 693 | path-exists "^2.0.0" 694 | pinkie-promise "^2.0.0" 695 | 696 | find-up@^2.1.0: 697 | version "2.1.0" 698 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 699 | dependencies: 700 | locate-path "^2.0.0" 701 | 702 | forever-agent@~0.6.1: 703 | version "0.6.1" 704 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 705 | 706 | form-data@~2.3.1: 707 | version "2.3.2" 708 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 709 | dependencies: 710 | asynckit "^0.4.0" 711 | combined-stream "1.0.6" 712 | mime-types "^2.1.12" 713 | 714 | fs-extra-p@^4.5.0, fs-extra-p@^4.5.2: 715 | version "4.5.2" 716 | resolved "https://registry.yarnpkg.com/fs-extra-p/-/fs-extra-p-4.5.2.tgz#0a22aba489284d17f375d5dc5139aa777fe2df51" 717 | dependencies: 718 | bluebird-lst "^1.0.5" 719 | fs-extra "^5.0.0" 720 | 721 | fs-extra@^0.30.0: 722 | version "0.30.0" 723 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 724 | dependencies: 725 | graceful-fs "^4.1.2" 726 | jsonfile "^2.1.0" 727 | klaw "^1.0.0" 728 | path-is-absolute "^1.0.0" 729 | rimraf "^2.2.8" 730 | 731 | fs-extra@^4.0.1: 732 | version "4.0.3" 733 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" 734 | dependencies: 735 | graceful-fs "^4.1.2" 736 | jsonfile "^4.0.0" 737 | universalify "^0.1.0" 738 | 739 | fs-extra@^5.0.0: 740 | version "5.0.0" 741 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd" 742 | dependencies: 743 | graceful-fs "^4.1.2" 744 | jsonfile "^4.0.0" 745 | universalify "^0.1.0" 746 | 747 | fs.realpath@^1.0.0: 748 | version "1.0.0" 749 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 750 | 751 | get-caller-file@^1.0.1: 752 | version "1.0.2" 753 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 754 | 755 | get-stdin@^4.0.1: 756 | version "4.0.1" 757 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 758 | 759 | get-stream@^3.0.0: 760 | version "3.0.0" 761 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 762 | 763 | getpass@^0.1.1: 764 | version "0.1.7" 765 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 766 | dependencies: 767 | assert-plus "^1.0.0" 768 | 769 | glob@^7.0.5: 770 | version "7.1.2" 771 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 772 | dependencies: 773 | fs.realpath "^1.0.0" 774 | inflight "^1.0.4" 775 | inherits "2" 776 | minimatch "^3.0.4" 777 | once "^1.3.0" 778 | path-is-absolute "^1.0.0" 779 | 780 | global-dirs@^0.1.0: 781 | version "0.1.1" 782 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 783 | dependencies: 784 | ini "^1.3.4" 785 | 786 | got@^6.7.1: 787 | version "6.7.1" 788 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 789 | dependencies: 790 | create-error-class "^3.0.0" 791 | duplexer3 "^0.1.4" 792 | get-stream "^3.0.0" 793 | is-redirect "^1.0.0" 794 | is-retry-allowed "^1.0.0" 795 | is-stream "^1.0.0" 796 | lowercase-keys "^1.0.0" 797 | safe-buffer "^5.0.1" 798 | timed-out "^4.0.0" 799 | unzip-response "^2.0.1" 800 | url-parse-lax "^1.0.0" 801 | 802 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 803 | version "4.1.11" 804 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 805 | 806 | har-schema@^2.0.0: 807 | version "2.0.0" 808 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 809 | 810 | har-validator@~5.0.3: 811 | version "5.0.3" 812 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 813 | dependencies: 814 | ajv "^5.1.0" 815 | har-schema "^2.0.0" 816 | 817 | has-flag@^3.0.0: 818 | version "3.0.0" 819 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 820 | 821 | hawk@~6.0.2: 822 | version "6.0.2" 823 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 824 | dependencies: 825 | boom "4.x.x" 826 | cryptiles "3.x.x" 827 | hoek "4.x.x" 828 | sntp "2.x.x" 829 | 830 | hoek@4.x.x: 831 | version "4.2.1" 832 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" 833 | 834 | home-path@^1.0.1: 835 | version "1.0.5" 836 | resolved "https://registry.yarnpkg.com/home-path/-/home-path-1.0.5.tgz#788b29815b12d53bacf575648476e6f9041d133f" 837 | 838 | hosted-git-info@^2.1.4, hosted-git-info@^2.6.0: 839 | version "2.6.0" 840 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 841 | 842 | http-signature@~1.2.0: 843 | version "1.2.0" 844 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 845 | dependencies: 846 | assert-plus "^1.0.0" 847 | jsprim "^1.2.2" 848 | sshpk "^1.7.0" 849 | 850 | iconv-lite@^0.4.21: 851 | version "0.4.21" 852 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.21.tgz#c47f8733d02171189ebc4a400f3218d348094798" 853 | dependencies: 854 | safer-buffer "^2.1.0" 855 | 856 | import-lazy@^2.1.0: 857 | version "2.1.0" 858 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 859 | 860 | imurmurhash@^0.1.4: 861 | version "0.1.4" 862 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 863 | 864 | indent-string@^2.1.0: 865 | version "2.1.0" 866 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 867 | dependencies: 868 | repeating "^2.0.0" 869 | 870 | inflight@^1.0.4: 871 | version "1.0.6" 872 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 873 | dependencies: 874 | once "^1.3.0" 875 | wrappy "1" 876 | 877 | inherits@2, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: 878 | version "2.0.3" 879 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 880 | 881 | ini@^1.3.4, ini@~1.3.0: 882 | version "1.3.5" 883 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 884 | 885 | invert-kv@^1.0.0: 886 | version "1.0.0" 887 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 888 | 889 | is-arrayish@^0.2.1: 890 | version "0.2.1" 891 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 892 | 893 | is-builtin-module@^1.0.0: 894 | version "1.0.0" 895 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 896 | dependencies: 897 | builtin-modules "^1.0.0" 898 | 899 | is-ci@^1.0.10, is-ci@^1.1.0: 900 | version "1.1.0" 901 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 902 | dependencies: 903 | ci-info "^1.0.0" 904 | 905 | is-finite@^1.0.0: 906 | version "1.0.2" 907 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 908 | dependencies: 909 | number-is-nan "^1.0.0" 910 | 911 | is-fullwidth-code-point@^1.0.0: 912 | version "1.0.0" 913 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 914 | dependencies: 915 | number-is-nan "^1.0.0" 916 | 917 | is-fullwidth-code-point@^2.0.0: 918 | version "2.0.0" 919 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 920 | 921 | is-installed-globally@^0.1.0: 922 | version "0.1.0" 923 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 924 | dependencies: 925 | global-dirs "^0.1.0" 926 | is-path-inside "^1.0.0" 927 | 928 | is-npm@^1.0.0: 929 | version "1.0.0" 930 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 931 | 932 | is-obj@^1.0.0: 933 | version "1.0.1" 934 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 935 | 936 | is-path-inside@^1.0.0: 937 | version "1.0.1" 938 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 939 | dependencies: 940 | path-is-inside "^1.0.1" 941 | 942 | is-redirect@^1.0.0: 943 | version "1.0.0" 944 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 945 | 946 | is-retry-allowed@^1.0.0: 947 | version "1.1.0" 948 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 949 | 950 | is-stream@^1.0.0, is-stream@^1.1.0: 951 | version "1.1.0" 952 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 953 | 954 | is-typedarray@~1.0.0: 955 | version "1.0.0" 956 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 957 | 958 | is-utf8@^0.2.0: 959 | version "0.2.1" 960 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 961 | 962 | isarray@0.0.1: 963 | version "0.0.1" 964 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 965 | 966 | isarray@~1.0.0: 967 | version "1.0.0" 968 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 969 | 970 | isbinaryfile@^3.0.2: 971 | version "3.0.2" 972 | resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" 973 | 974 | isexe@^2.0.0: 975 | version "2.0.0" 976 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 977 | 978 | isstream@~0.1.2: 979 | version "0.1.2" 980 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 981 | 982 | js-yaml@^3.10.0, js-yaml@^3.11.0: 983 | version "3.11.0" 984 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 985 | dependencies: 986 | argparse "^1.0.7" 987 | esprima "^4.0.0" 988 | 989 | jsbn@~0.1.0: 990 | version "0.1.1" 991 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 992 | 993 | json-schema-traverse@^0.3.0: 994 | version "0.3.1" 995 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 996 | 997 | json-schema@0.2.3: 998 | version "0.2.3" 999 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1000 | 1001 | json-stringify-safe@~5.0.1: 1002 | version "5.0.1" 1003 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1004 | 1005 | json5@^0.5.1: 1006 | version "0.5.1" 1007 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1008 | 1009 | jsonfile@^2.1.0: 1010 | version "2.4.0" 1011 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1012 | optionalDependencies: 1013 | graceful-fs "^4.1.6" 1014 | 1015 | jsonfile@^4.0.0: 1016 | version "4.0.0" 1017 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1018 | optionalDependencies: 1019 | graceful-fs "^4.1.6" 1020 | 1021 | jsprim@^1.2.2: 1022 | version "1.4.1" 1023 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1024 | dependencies: 1025 | assert-plus "1.0.0" 1026 | extsprintf "1.3.0" 1027 | json-schema "0.2.3" 1028 | verror "1.10.0" 1029 | 1030 | klaw@^1.0.0: 1031 | version "1.3.1" 1032 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1033 | optionalDependencies: 1034 | graceful-fs "^4.1.9" 1035 | 1036 | latest-version@^3.0.0: 1037 | version "3.1.0" 1038 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1039 | dependencies: 1040 | package-json "^4.0.0" 1041 | 1042 | lazy-val@^1.0.3: 1043 | version "1.0.3" 1044 | resolved "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.3.tgz#bb97b200ef00801d94c317e29dc6ed39e31c5edc" 1045 | 1046 | lcid@^1.0.0: 1047 | version "1.0.0" 1048 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1049 | dependencies: 1050 | invert-kv "^1.0.0" 1051 | 1052 | load-json-file@^1.0.0: 1053 | version "1.1.0" 1054 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1055 | dependencies: 1056 | graceful-fs "^4.1.2" 1057 | parse-json "^2.2.0" 1058 | pify "^2.0.0" 1059 | pinkie-promise "^2.0.0" 1060 | strip-bom "^2.0.0" 1061 | 1062 | locate-path@^2.0.0: 1063 | version "2.0.0" 1064 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1065 | dependencies: 1066 | p-locate "^2.0.0" 1067 | path-exists "^3.0.0" 1068 | 1069 | lodash.isequal@^4.5.0: 1070 | version "4.5.0" 1071 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 1072 | 1073 | loud-rejection@^1.0.0: 1074 | version "1.6.0" 1075 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1076 | dependencies: 1077 | currently-unhandled "^0.4.1" 1078 | signal-exit "^3.0.0" 1079 | 1080 | lowercase-keys@^1.0.0: 1081 | version "1.0.1" 1082 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1083 | 1084 | lru-cache@^4.0.1: 1085 | version "4.1.2" 1086 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 1087 | dependencies: 1088 | pseudomap "^1.0.2" 1089 | yallist "^2.1.2" 1090 | 1091 | make-dir@^1.0.0: 1092 | version "1.2.0" 1093 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" 1094 | dependencies: 1095 | pify "^3.0.0" 1096 | 1097 | map-obj@^1.0.0, map-obj@^1.0.1: 1098 | version "1.0.1" 1099 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1100 | 1101 | mem@^1.1.0: 1102 | version "1.1.0" 1103 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1104 | dependencies: 1105 | mimic-fn "^1.0.0" 1106 | 1107 | meow@^3.1.0: 1108 | version "3.7.0" 1109 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1110 | dependencies: 1111 | camelcase-keys "^2.0.0" 1112 | decamelize "^1.1.2" 1113 | loud-rejection "^1.0.0" 1114 | map-obj "^1.0.1" 1115 | minimist "^1.1.3" 1116 | normalize-package-data "^2.3.4" 1117 | object-assign "^4.0.1" 1118 | read-pkg-up "^1.0.1" 1119 | redent "^1.0.0" 1120 | trim-newlines "^1.0.0" 1121 | 1122 | mime-db@~1.33.0: 1123 | version "1.33.0" 1124 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 1125 | 1126 | mime-types@^2.1.12, mime-types@~2.1.17: 1127 | version "2.1.18" 1128 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 1129 | dependencies: 1130 | mime-db "~1.33.0" 1131 | 1132 | mime@^2.3.1: 1133 | version "2.3.1" 1134 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.3.1.tgz#b1621c54d63b97c47d3cfe7f7215f7d64517c369" 1135 | 1136 | mimic-fn@^1.0.0: 1137 | version "1.2.0" 1138 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1139 | 1140 | minimatch@^3.0.4: 1141 | version "3.0.4" 1142 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1143 | dependencies: 1144 | brace-expansion "^1.1.7" 1145 | 1146 | minimist@0.0.8: 1147 | version "0.0.8" 1148 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1149 | 1150 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 1151 | version "1.2.0" 1152 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1153 | 1154 | mkdirp@0.5.0: 1155 | version "0.5.0" 1156 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" 1157 | dependencies: 1158 | minimist "0.0.8" 1159 | 1160 | ms@2.0.0: 1161 | version "2.0.0" 1162 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1163 | 1164 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.4.0: 1165 | version "2.4.0" 1166 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1167 | dependencies: 1168 | hosted-git-info "^2.1.4" 1169 | is-builtin-module "^1.0.0" 1170 | semver "2 || 3 || 4 || 5" 1171 | validate-npm-package-license "^3.0.1" 1172 | 1173 | npm-run-path@^2.0.0: 1174 | version "2.0.2" 1175 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1176 | dependencies: 1177 | path-key "^2.0.0" 1178 | 1179 | nugget@^2.0.0, nugget@^2.0.1: 1180 | version "2.0.1" 1181 | resolved "https://registry.yarnpkg.com/nugget/-/nugget-2.0.1.tgz#201095a487e1ad36081b3432fa3cada4f8d071b0" 1182 | dependencies: 1183 | debug "^2.1.3" 1184 | minimist "^1.1.0" 1185 | pretty-bytes "^1.0.2" 1186 | progress-stream "^1.1.0" 1187 | request "^2.45.0" 1188 | single-line-log "^1.1.2" 1189 | throttleit "0.0.2" 1190 | 1191 | number-is-nan@^1.0.0: 1192 | version "1.0.1" 1193 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1194 | 1195 | oauth-sign@~0.8.2: 1196 | version "0.8.2" 1197 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1198 | 1199 | object-assign@^4.0.1: 1200 | version "4.1.1" 1201 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1202 | 1203 | object-keys@~0.4.0: 1204 | version "0.4.0" 1205 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" 1206 | 1207 | once@^1.3.0: 1208 | version "1.4.0" 1209 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1210 | dependencies: 1211 | wrappy "1" 1212 | 1213 | os-locale@^2.0.0: 1214 | version "2.1.0" 1215 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1216 | dependencies: 1217 | execa "^0.7.0" 1218 | lcid "^1.0.0" 1219 | mem "^1.1.0" 1220 | 1221 | p-finally@^1.0.0: 1222 | version "1.0.0" 1223 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1224 | 1225 | p-limit@^1.1.0: 1226 | version "1.2.0" 1227 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 1228 | dependencies: 1229 | p-try "^1.0.0" 1230 | 1231 | p-locate@^2.0.0: 1232 | version "2.0.0" 1233 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1234 | dependencies: 1235 | p-limit "^1.1.0" 1236 | 1237 | p-try@^1.0.0: 1238 | version "1.0.0" 1239 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1240 | 1241 | package-json@^4.0.0: 1242 | version "4.0.1" 1243 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 1244 | dependencies: 1245 | got "^6.7.1" 1246 | registry-auth-token "^3.0.1" 1247 | registry-url "^3.0.3" 1248 | semver "^5.1.0" 1249 | 1250 | parse-color@^1.0.0: 1251 | version "1.0.0" 1252 | resolved "https://registry.yarnpkg.com/parse-color/-/parse-color-1.0.0.tgz#7b748b95a83f03f16a94f535e52d7f3d94658619" 1253 | dependencies: 1254 | color-convert "~0.5.0" 1255 | 1256 | parse-json@^2.2.0: 1257 | version "2.2.0" 1258 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1259 | dependencies: 1260 | error-ex "^1.2.0" 1261 | 1262 | path-exists@^2.0.0, path-exists@^2.1.0: 1263 | version "2.1.0" 1264 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1265 | dependencies: 1266 | pinkie-promise "^2.0.0" 1267 | 1268 | path-exists@^3.0.0: 1269 | version "3.0.0" 1270 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1271 | 1272 | path-is-absolute@^1.0.0: 1273 | version "1.0.1" 1274 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1275 | 1276 | path-is-inside@^1.0.1: 1277 | version "1.0.2" 1278 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1279 | 1280 | path-key@^2.0.0: 1281 | version "2.0.1" 1282 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1283 | 1284 | path-type@^1.0.0: 1285 | version "1.1.0" 1286 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1287 | dependencies: 1288 | graceful-fs "^4.1.2" 1289 | pify "^2.0.0" 1290 | pinkie-promise "^2.0.0" 1291 | 1292 | pend@~1.2.0: 1293 | version "1.2.0" 1294 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1295 | 1296 | performance-now@^2.1.0: 1297 | version "2.1.0" 1298 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 1299 | 1300 | pify@^2.0.0: 1301 | version "2.3.0" 1302 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1303 | 1304 | pify@^3.0.0: 1305 | version "3.0.0" 1306 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1307 | 1308 | pinkie-promise@^2.0.0: 1309 | version "2.0.1" 1310 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1311 | dependencies: 1312 | pinkie "^2.0.0" 1313 | 1314 | pinkie@^2.0.0: 1315 | version "2.0.4" 1316 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1317 | 1318 | plist@^2.1.0: 1319 | version "2.1.0" 1320 | resolved "https://registry.yarnpkg.com/plist/-/plist-2.1.0.tgz#57ccdb7a0821df21831217a3cad54e3e146a1025" 1321 | dependencies: 1322 | base64-js "1.2.0" 1323 | xmlbuilder "8.2.2" 1324 | xmldom "0.1.x" 1325 | 1326 | plist@^3.0.1: 1327 | version "3.0.1" 1328 | resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.1.tgz#a9b931d17c304e8912ef0ba3bdd6182baf2e1f8c" 1329 | dependencies: 1330 | base64-js "^1.2.3" 1331 | xmlbuilder "^9.0.7" 1332 | xmldom "0.1.x" 1333 | 1334 | prepend-http@^1.0.1: 1335 | version "1.0.4" 1336 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1337 | 1338 | pretty-bytes@^1.0.2: 1339 | version "1.0.4" 1340 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-1.0.4.tgz#0a22e8210609ad35542f8c8d5d2159aff0751c84" 1341 | dependencies: 1342 | get-stdin "^4.0.1" 1343 | meow "^3.1.0" 1344 | 1345 | process-nextick-args@~2.0.0: 1346 | version "2.0.0" 1347 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1348 | 1349 | progress-stream@^1.1.0: 1350 | version "1.2.0" 1351 | resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-1.2.0.tgz#2cd3cfea33ba3a89c9c121ec3347abe9ab125f77" 1352 | dependencies: 1353 | speedometer "~0.1.2" 1354 | through2 "~0.2.3" 1355 | 1356 | pseudomap@^1.0.2: 1357 | version "1.0.2" 1358 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1359 | 1360 | punycode@^1.4.1: 1361 | version "1.4.1" 1362 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1363 | 1364 | punycode@^2.1.0: 1365 | version "2.1.0" 1366 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.0.tgz#5f863edc89b96db09074bad7947bf09056ca4e7d" 1367 | 1368 | qs@~6.5.1: 1369 | version "6.5.1" 1370 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 1371 | 1372 | rc@^1.0.1, rc@^1.1.2, rc@^1.1.6, rc@^1.2.1: 1373 | version "1.2.7" 1374 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.7.tgz#8a10ca30d588d00464360372b890d06dacd02297" 1375 | dependencies: 1376 | deep-extend "^0.5.1" 1377 | ini "~1.3.0" 1378 | minimist "^1.2.0" 1379 | strip-json-comments "~2.0.1" 1380 | 1381 | read-config-file@3.0.0: 1382 | version "3.0.0" 1383 | resolved "https://registry.yarnpkg.com/read-config-file/-/read-config-file-3.0.0.tgz#771def5184a7f76abaf6b2c82f20cb983775b8ea" 1384 | dependencies: 1385 | ajv "^6.1.1" 1386 | ajv-keywords "^3.1.0" 1387 | bluebird-lst "^1.0.5" 1388 | dotenv "^5.0.0" 1389 | dotenv-expand "^4.0.1" 1390 | fs-extra-p "^4.5.0" 1391 | js-yaml "^3.10.0" 1392 | json5 "^0.5.1" 1393 | lazy-val "^1.0.3" 1394 | 1395 | read-pkg-up@^1.0.1: 1396 | version "1.0.1" 1397 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1398 | dependencies: 1399 | find-up "^1.0.0" 1400 | read-pkg "^1.0.0" 1401 | 1402 | read-pkg@^1.0.0: 1403 | version "1.1.0" 1404 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1405 | dependencies: 1406 | load-json-file "^1.0.0" 1407 | normalize-package-data "^2.3.2" 1408 | path-type "^1.0.0" 1409 | 1410 | readable-stream@^2.2.2: 1411 | version "2.3.6" 1412 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1413 | dependencies: 1414 | core-util-is "~1.0.0" 1415 | inherits "~2.0.3" 1416 | isarray "~1.0.0" 1417 | process-nextick-args "~2.0.0" 1418 | safe-buffer "~5.1.1" 1419 | string_decoder "~1.1.1" 1420 | util-deprecate "~1.0.1" 1421 | 1422 | readable-stream@~1.1.9: 1423 | version "1.1.14" 1424 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 1425 | dependencies: 1426 | core-util-is "~1.0.0" 1427 | inherits "~2.0.1" 1428 | isarray "0.0.1" 1429 | string_decoder "~0.10.x" 1430 | 1431 | redent@^1.0.0: 1432 | version "1.0.0" 1433 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1434 | dependencies: 1435 | indent-string "^2.1.0" 1436 | strip-indent "^1.0.1" 1437 | 1438 | registry-auth-token@^3.0.1: 1439 | version "3.3.2" 1440 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 1441 | dependencies: 1442 | rc "^1.1.6" 1443 | safe-buffer "^5.0.1" 1444 | 1445 | registry-url@^3.0.3: 1446 | version "3.1.0" 1447 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1448 | dependencies: 1449 | rc "^1.0.1" 1450 | 1451 | repeating@^2.0.0: 1452 | version "2.0.1" 1453 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1454 | dependencies: 1455 | is-finite "^1.0.0" 1456 | 1457 | request@^2.45.0: 1458 | version "2.85.0" 1459 | resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa" 1460 | dependencies: 1461 | aws-sign2 "~0.7.0" 1462 | aws4 "^1.6.0" 1463 | caseless "~0.12.0" 1464 | combined-stream "~1.0.5" 1465 | extend "~3.0.1" 1466 | forever-agent "~0.6.1" 1467 | form-data "~2.3.1" 1468 | har-validator "~5.0.3" 1469 | hawk "~6.0.2" 1470 | http-signature "~1.2.0" 1471 | is-typedarray "~1.0.0" 1472 | isstream "~0.1.2" 1473 | json-stringify-safe "~5.0.1" 1474 | mime-types "~2.1.17" 1475 | oauth-sign "~0.8.2" 1476 | performance-now "^2.1.0" 1477 | qs "~6.5.1" 1478 | safe-buffer "^5.1.1" 1479 | stringstream "~0.0.5" 1480 | tough-cookie "~2.3.3" 1481 | tunnel-agent "^0.6.0" 1482 | uuid "^3.1.0" 1483 | 1484 | require-directory@^2.1.1: 1485 | version "2.1.1" 1486 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1487 | 1488 | require-main-filename@^1.0.1: 1489 | version "1.0.1" 1490 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1491 | 1492 | rimraf@^2.2.8: 1493 | version "2.6.2" 1494 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1495 | dependencies: 1496 | glob "^7.0.5" 1497 | 1498 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1499 | version "5.1.2" 1500 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1501 | 1502 | safer-buffer@^2.1.0: 1503 | version "2.1.2" 1504 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1505 | 1506 | sanitize-filename@^1.6.1: 1507 | version "1.6.1" 1508 | resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.1.tgz#612da1c96473fa02dccda92dcd5b4ab164a6772a" 1509 | dependencies: 1510 | truncate-utf8-bytes "^1.0.0" 1511 | 1512 | sax@^1.2.4: 1513 | version "1.2.4" 1514 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1515 | 1516 | semver-diff@^2.0.0: 1517 | version "2.1.0" 1518 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1519 | dependencies: 1520 | semver "^5.0.3" 1521 | 1522 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: 1523 | version "5.5.0" 1524 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1525 | 1526 | set-blocking@^2.0.0: 1527 | version "2.0.0" 1528 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1529 | 1530 | shebang-command@^1.2.0: 1531 | version "1.2.0" 1532 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1533 | dependencies: 1534 | shebang-regex "^1.0.0" 1535 | 1536 | shebang-regex@^1.0.0: 1537 | version "1.0.0" 1538 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1539 | 1540 | signal-exit@^3.0.0, signal-exit@^3.0.2: 1541 | version "3.0.2" 1542 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1543 | 1544 | single-line-log@^1.1.2: 1545 | version "1.1.2" 1546 | resolved "https://registry.yarnpkg.com/single-line-log/-/single-line-log-1.1.2.tgz#c2f83f273a3e1a16edb0995661da0ed5ef033364" 1547 | dependencies: 1548 | string-width "^1.0.1" 1549 | 1550 | sntp@2.x.x: 1551 | version "2.1.0" 1552 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 1553 | dependencies: 1554 | hoek "4.x.x" 1555 | 1556 | source-map-support@^0.5.4, source-map-support@^0.5.5: 1557 | version "0.5.5" 1558 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.5.tgz#0d4af9e00493e855402e8ec36ebed2d266fceb90" 1559 | dependencies: 1560 | buffer-from "^1.0.0" 1561 | source-map "^0.6.0" 1562 | 1563 | source-map@^0.6.0: 1564 | version "0.6.1" 1565 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1566 | 1567 | spdx-correct@^3.0.0: 1568 | version "3.0.0" 1569 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 1570 | dependencies: 1571 | spdx-expression-parse "^3.0.0" 1572 | spdx-license-ids "^3.0.0" 1573 | 1574 | spdx-exceptions@^2.1.0: 1575 | version "2.1.0" 1576 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 1577 | 1578 | spdx-expression-parse@^3.0.0: 1579 | version "3.0.0" 1580 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 1581 | dependencies: 1582 | spdx-exceptions "^2.1.0" 1583 | spdx-license-ids "^3.0.0" 1584 | 1585 | spdx-license-ids@^3.0.0: 1586 | version "3.0.0" 1587 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 1588 | 1589 | speedometer@~0.1.2: 1590 | version "0.1.4" 1591 | resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-0.1.4.tgz#9876dbd2a169d3115402d48e6ea6329c8816a50d" 1592 | 1593 | sprintf-js@~1.0.2: 1594 | version "1.0.3" 1595 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1596 | 1597 | sshpk@^1.7.0: 1598 | version "1.14.1" 1599 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 1600 | dependencies: 1601 | asn1 "~0.2.3" 1602 | assert-plus "^1.0.0" 1603 | dashdash "^1.12.0" 1604 | getpass "^0.1.1" 1605 | optionalDependencies: 1606 | bcrypt-pbkdf "^1.0.0" 1607 | ecc-jsbn "~0.1.1" 1608 | jsbn "~0.1.0" 1609 | tweetnacl "~0.14.0" 1610 | 1611 | stat-mode@^0.2.2: 1612 | version "0.2.2" 1613 | resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-0.2.2.tgz#e6c80b623123d7d80cf132ce538f346289072502" 1614 | 1615 | string-width@^1.0.1: 1616 | version "1.0.2" 1617 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1618 | dependencies: 1619 | code-point-at "^1.0.0" 1620 | is-fullwidth-code-point "^1.0.0" 1621 | strip-ansi "^3.0.0" 1622 | 1623 | string-width@^2.0.0, string-width@^2.1.1: 1624 | version "2.1.1" 1625 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1626 | dependencies: 1627 | is-fullwidth-code-point "^2.0.0" 1628 | strip-ansi "^4.0.0" 1629 | 1630 | string_decoder@~0.10.x: 1631 | version "0.10.31" 1632 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1633 | 1634 | string_decoder@~1.1.1: 1635 | version "1.1.1" 1636 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1637 | dependencies: 1638 | safe-buffer "~5.1.0" 1639 | 1640 | stringstream@~0.0.5: 1641 | version "0.0.5" 1642 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1643 | 1644 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1645 | version "3.0.1" 1646 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1647 | dependencies: 1648 | ansi-regex "^2.0.0" 1649 | 1650 | strip-ansi@^4.0.0: 1651 | version "4.0.0" 1652 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1653 | dependencies: 1654 | ansi-regex "^3.0.0" 1655 | 1656 | strip-bom@^2.0.0: 1657 | version "2.0.0" 1658 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1659 | dependencies: 1660 | is-utf8 "^0.2.0" 1661 | 1662 | strip-eof@^1.0.0: 1663 | version "1.0.0" 1664 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1665 | 1666 | strip-indent@^1.0.1: 1667 | version "1.0.1" 1668 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 1669 | dependencies: 1670 | get-stdin "^4.0.1" 1671 | 1672 | strip-json-comments@~2.0.1: 1673 | version "2.0.1" 1674 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1675 | 1676 | sumchecker@^1.2.0: 1677 | version "1.3.1" 1678 | resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-1.3.1.tgz#79bb3b4456dd04f18ebdbc0d703a1d1daec5105d" 1679 | dependencies: 1680 | debug "^2.2.0" 1681 | es6-promise "^4.0.5" 1682 | 1683 | sumchecker@^2.0.2: 1684 | version "2.0.2" 1685 | resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-2.0.2.tgz#0f42c10e5d05da5d42eea3e56c3399a37d6c5b3e" 1686 | dependencies: 1687 | debug "^2.2.0" 1688 | 1689 | supports-color@^5.3.0: 1690 | version "5.4.0" 1691 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 1692 | dependencies: 1693 | has-flag "^3.0.0" 1694 | 1695 | temp-file@^3.1.1: 1696 | version "3.1.1" 1697 | resolved "https://registry.yarnpkg.com/temp-file/-/temp-file-3.1.1.tgz#8823649aa4e8a6e419eb71b601a2e4d472b0f24f" 1698 | dependencies: 1699 | async-exit-hook "^2.0.1" 1700 | bluebird-lst "^1.0.5" 1701 | fs-extra-p "^4.5.0" 1702 | lazy-val "^1.0.3" 1703 | 1704 | term-size@^1.2.0: 1705 | version "1.2.0" 1706 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 1707 | dependencies: 1708 | execa "^0.7.0" 1709 | 1710 | throttleit@0.0.2: 1711 | version "0.0.2" 1712 | resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" 1713 | 1714 | through2@~0.2.3: 1715 | version "0.2.3" 1716 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f" 1717 | dependencies: 1718 | readable-stream "~1.1.9" 1719 | xtend "~2.1.1" 1720 | 1721 | timed-out@^4.0.0: 1722 | version "4.0.1" 1723 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 1724 | 1725 | tough-cookie@~2.3.3: 1726 | version "2.3.4" 1727 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 1728 | dependencies: 1729 | punycode "^1.4.1" 1730 | 1731 | trim-newlines@^1.0.0: 1732 | version "1.0.0" 1733 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 1734 | 1735 | truncate-utf8-bytes@^1.0.0: 1736 | version "1.0.2" 1737 | resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" 1738 | dependencies: 1739 | utf8-byte-length "^1.0.1" 1740 | 1741 | tunnel-agent@^0.6.0: 1742 | version "0.6.0" 1743 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1744 | dependencies: 1745 | safe-buffer "^5.0.1" 1746 | 1747 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1748 | version "0.14.5" 1749 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1750 | 1751 | typedarray@^0.0.6: 1752 | version "0.0.6" 1753 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1754 | 1755 | unique-string@^1.0.0: 1756 | version "1.0.0" 1757 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 1758 | dependencies: 1759 | crypto-random-string "^1.0.0" 1760 | 1761 | universalify@^0.1.0: 1762 | version "0.1.1" 1763 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 1764 | 1765 | unzip-response@^2.0.1: 1766 | version "2.0.1" 1767 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 1768 | 1769 | update-notifier@^2.5.0: 1770 | version "2.5.0" 1771 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" 1772 | dependencies: 1773 | boxen "^1.2.1" 1774 | chalk "^2.0.1" 1775 | configstore "^3.0.0" 1776 | import-lazy "^2.1.0" 1777 | is-ci "^1.0.10" 1778 | is-installed-globally "^0.1.0" 1779 | is-npm "^1.0.0" 1780 | latest-version "^3.0.0" 1781 | semver-diff "^2.0.0" 1782 | xdg-basedir "^3.0.0" 1783 | 1784 | uri-js@^3.0.2: 1785 | version "3.0.2" 1786 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-3.0.2.tgz#f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa" 1787 | dependencies: 1788 | punycode "^2.1.0" 1789 | 1790 | url-parse-lax@^1.0.0: 1791 | version "1.0.0" 1792 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 1793 | dependencies: 1794 | prepend-http "^1.0.1" 1795 | 1796 | utf8-byte-length@^1.0.1: 1797 | version "1.0.4" 1798 | resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61" 1799 | 1800 | util-deprecate@~1.0.1: 1801 | version "1.0.2" 1802 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1803 | 1804 | uuid@^3.1.0: 1805 | version "3.2.1" 1806 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 1807 | 1808 | validate-npm-package-license@^3.0.1: 1809 | version "3.0.3" 1810 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 1811 | dependencies: 1812 | spdx-correct "^3.0.0" 1813 | spdx-expression-parse "^3.0.0" 1814 | 1815 | verror@1.10.0: 1816 | version "1.10.0" 1817 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1818 | dependencies: 1819 | assert-plus "^1.0.0" 1820 | core-util-is "1.0.2" 1821 | extsprintf "^1.2.0" 1822 | 1823 | which-module@^2.0.0: 1824 | version "2.0.0" 1825 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1826 | 1827 | which@^1.2.9: 1828 | version "1.3.0" 1829 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1830 | dependencies: 1831 | isexe "^2.0.0" 1832 | 1833 | widest-line@^2.0.0: 1834 | version "2.0.0" 1835 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.0.tgz#0142a4e8a243f8882c0233aa0e0281aa76152273" 1836 | dependencies: 1837 | string-width "^2.1.1" 1838 | 1839 | wrap-ansi@^2.0.0: 1840 | version "2.1.0" 1841 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 1842 | dependencies: 1843 | string-width "^1.0.1" 1844 | strip-ansi "^3.0.1" 1845 | 1846 | wrappy@1: 1847 | version "1.0.2" 1848 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1849 | 1850 | write-file-atomic@^2.0.0: 1851 | version "2.3.0" 1852 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 1853 | dependencies: 1854 | graceful-fs "^4.1.11" 1855 | imurmurhash "^0.1.4" 1856 | signal-exit "^3.0.2" 1857 | 1858 | xdg-basedir@^3.0.0: 1859 | version "3.0.0" 1860 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 1861 | 1862 | xmlbuilder@8.2.2: 1863 | version "8.2.2" 1864 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773" 1865 | 1866 | xmlbuilder@^9.0.7: 1867 | version "9.0.7" 1868 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 1869 | 1870 | xmldom@0.1.x: 1871 | version "0.1.27" 1872 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 1873 | 1874 | xtend@~2.1.1: 1875 | version "2.1.2" 1876 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" 1877 | dependencies: 1878 | object-keys "~0.4.0" 1879 | 1880 | y18n@^3.2.1: 1881 | version "3.2.1" 1882 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 1883 | 1884 | yallist@^2.1.2: 1885 | version "2.1.2" 1886 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1887 | 1888 | yargs-parser@^9.0.2: 1889 | version "9.0.2" 1890 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 1891 | dependencies: 1892 | camelcase "^4.1.0" 1893 | 1894 | yargs@^11.0.0: 1895 | version "11.0.0" 1896 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 1897 | dependencies: 1898 | cliui "^4.0.0" 1899 | decamelize "^1.1.1" 1900 | find-up "^2.1.0" 1901 | get-caller-file "^1.0.1" 1902 | os-locale "^2.0.0" 1903 | require-directory "^2.1.1" 1904 | require-main-filename "^1.0.1" 1905 | set-blocking "^2.0.0" 1906 | string-width "^2.0.0" 1907 | which-module "^2.0.0" 1908 | y18n "^3.2.1" 1909 | yargs-parser "^9.0.2" 1910 | 1911 | yauzl@2.4.1: 1912 | version "2.4.1" 1913 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" 1914 | dependencies: 1915 | fd-slicer "~1.0.1" 1916 | --------------------------------------------------------------------------------