├── .gitignore ├── .test-hyper.js ├── .travis.yml ├── LICENSE.md ├── README.md ├── fetch-hyper.sh ├── index.js ├── package.json ├── test.js ├── travis-build.sh └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | Hyper.app 5 | -------------------------------------------------------------------------------- /.test-hyper.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | config: { 3 | fontSize: 12, 4 | fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', 5 | cursorColor: '#F81CE5', 6 | foregroundColor: '#fff', 7 | backgroundColor: '#000', 8 | borderColor: '#333', 9 | css: '', 10 | termCSS: '', 11 | padding: '12px 14px', 12 | colors: [ 13 | '#000000', 14 | '#ff0000', 15 | '#33ff00', 16 | '#ffff00', 17 | '#0066ff', 18 | '#cc00ff', 19 | '#00ffff', 20 | '#d0d0d0', 21 | '#808080', 22 | '#ff0000', 23 | '#33ff00', 24 | '#ffff00', 25 | '#0066ff', 26 | '#cc00ff', 27 | '#00ffff', 28 | '#ffffff' 29 | ], 30 | openDevToolsKey: 'CommandOrControl+Alt+K', 31 | }, 32 | plugins: [], 33 | localPlugins: ['LOCAL_PACKAGE'] 34 | }; 35 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | os: 2 | - osx 3 | env: 4 | - NODE_VERSION="6" 5 | cache: 6 | directories: 7 | - node_modules 8 | script: 9 | - ./travis-build.sh 10 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | The MIT License (MIT) 3 | 4 | Copyright (c) 2016 Jhen-Jie Hong 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hyperterm-open-devtools [![Build Status](https://travis-ci.org/jhen0409/hyperterm-open-devtools.svg?branch=master)](https://travis-ci.org/jhen0409/hyperterm-open-devtools) 2 | 3 | > Open DevTools for currently showing web page with a hotkey on [Hyper](https://hyper.is) 4 | 5 | ![Screenshot](https://cloud.githubusercontent.com/assets/3001525/16934145/35968d36-4d86-11e6-8f1f-affcc9c07543.gif) 6 | 7 | ## Install 8 | 9 | Add `hyperterm-open-devtools` to the plugins list in your `~/.hyper.js` config file. 10 | 11 | ## Config of hotkey 12 | 13 | The hotkey is default by `CommandOrControl+Alt+J`, you can set `openDevToolsKey` in `~/.hyper.js` config file: 14 | 15 | ``` 16 | config: { 17 | ... 18 | openDevToolsKey: 'CommandOrControl+Alt+K' 19 | } 20 | ``` 21 | 22 | You need restart app to apply the config. 23 | 24 | ## How to install extension to devtools of webview use? 25 | 26 | You can use [hyperterm-install-devtools](https://github.com/jhen0409/hyperterm-install-devtools) to install devtools extension in Hyper. 27 | 28 | ## Test 29 | 30 | ```bash 31 | $ ./fetch-hyper.sh 32 | $ npm test 33 | ``` 34 | 35 | ## License 36 | 37 | [MIT](LICENSE.md) 38 | -------------------------------------------------------------------------------- /fetch-hyper.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wget https://github.com/zeit/hyper/releases/download/1.0.1/hyper-1.0.1-mac.zip -O hyper.zip 4 | unzip hyper.zip 5 | rm hyper.zip 6 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const { app, BrowserWindow, globalShortcut } = require('electron') 2 | const defaultKey = 'CommandOrControl+Alt+J' 3 | 4 | const openDevTools = () => { 5 | const win = BrowserWindow.getFocusedWindow() 6 | if (!win) return 7 | 8 | win.webContents.executeJavaScript(`{ 9 | let webview = document.querySelector('.term_active webview'); 10 | if (!webview) { 11 | // backward compatibility 12 | webview = document.querySelector('.terms_termActive webview'); 13 | } 14 | if (webview && webview.openDevTools) { 15 | !webview.isDevToolsOpened() ? 16 | webview.openDevTools() : 17 | webview.closeDevTools(); 18 | } 19 | }`) 20 | } 21 | 22 | const getKey = () => app.config.getConfig().openDevToolsKey || defaultKey 23 | 24 | exports.onApp = () => { 25 | globalShortcut.register(getKey(), openDevTools) 26 | } 27 | 28 | exports.onUnload = () => { 29 | globalShortcut.unregister(getKey()) 30 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hyperterm-open-devtools", 3 | "version": "1.0.4", 4 | "description": "Open DevTools for currently showing web page with a hotkey on HyperTerm", 5 | "main": "index.js", 6 | "files": [ 7 | "index.js" 8 | ], 9 | "scripts": { 10 | "test": "cp .test-hyper.js $HOME/.test-hyper.js && mocha" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/jhen0409/hyperterm-open-devtools.git" 15 | }, 16 | "keywords": [ 17 | "hyperterm", 18 | "devtools" 19 | ], 20 | "author": "Jhen ", 21 | "license": "MIT", 22 | "devDependencies": { 23 | "chai": "^3.5.0", 24 | "mocha": "^3.0.2", 25 | "robotjs": "^0.4.4", 26 | "spectron": "^3.3.0" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs') 2 | const path = require('path') 3 | const { homedir } = require('os'); 4 | const { expect } = require('chai') 5 | const { Application } = require('spectron'); 6 | const robot = require('robotjs') 7 | 8 | const delay = time => new Promise(resolve => setTimeout(resolve, time)) 9 | const typeKeys = keys => { 10 | for (const key of keys) { 11 | robot.keyTap(key) 12 | } 13 | } 14 | 15 | const hyperPath = path.join(__dirname, 'Hyper.app/Contents') 16 | 17 | const replaceCode = (filePath, from, to) => { 18 | fs.writeFileSync( 19 | filePath, 20 | fs.readFileSync(filePath, 'utf-8') 21 | .replace(from, to) 22 | ) 23 | } 24 | 25 | [ 26 | [`${homedir()}/.test-hyper.js`, 'LOCAL_PACKAGE', process.cwd()], 27 | [`${hyperPath}/Resources/app/config.js`, '.hyper.js', '.test-hyper.js'], 28 | [`${hyperPath}/Resources/app/plugins.js`, '.hyper_plugins', '.test-hyper_plugins'] 29 | ].forEach(args => replaceCode.apply(this, args)) 30 | 31 | describe('Open devtools', function spec() { 32 | this.timeout(10000) 33 | 34 | before(() => { 35 | this.app = new Application({ 36 | path: `${hyperPath}/MacOS/Hyper`, 37 | args: [], 38 | }) 39 | return this.app.start() 40 | }) 41 | 42 | after(() => { 43 | if (this.app && this.app.isRunning()) { 44 | return this.app.stop() 45 | } 46 | }) 47 | 48 | it('should open devtools on web page', () => { 49 | const { client } = this.app 50 | let oldCount 51 | return client.waitUntilWindowLoaded() 52 | .then(() => delay(2000)) 53 | .then(() => client.windowByIndex(1)) 54 | .then(() => { 55 | typeKeys('http') 56 | robot.keyTap(';', 'shift') // type `:`` 57 | typeKeys('//www.github.com') 58 | robot.keyTap('enter') 59 | }) 60 | .then(() => delay(1000)) 61 | .then(this.app.client.getWindowCount) 62 | .then(count => { 63 | oldCount = count 64 | // Custom openDevToolsKey by .test-hyper.js 65 | robot.keyTap('k', ['command', 'alt']) 66 | }) 67 | .then(this.app.client.getWindowCount) 68 | .then(count => { 69 | expect(count).to.equal(oldCount + 1) 70 | }) 71 | .then(() => delay(2000)) 72 | }) 73 | }) 74 | -------------------------------------------------------------------------------- /travis-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git clone https://github.com/creationix/nvm.git /tmp/.nvm 4 | source /tmp/.nvm/nvm.sh 5 | nvm install "$NODE_VERSION" 6 | nvm use --delete-prefix "$NODE_VERSION" 7 | 8 | node --version 9 | npm --version 10 | 11 | ./fetch-hyper.sh 12 | 13 | npm install 14 | npm test 15 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.0.9" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 8 | 9 | after@~0.8.1: 10 | version "0.8.2" 11 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" 12 | 13 | amdefine@>=0.0.4: 14 | version "1.0.1" 15 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 16 | 17 | ansi-escapes@^1.1.0: 18 | version "1.4.0" 19 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 20 | 21 | ansi-regex@^2.0.0: 22 | version "2.0.0" 23 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 24 | 25 | ansi-styles@^2.2.1: 26 | version "2.2.1" 27 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 28 | 29 | ansi@^0.3.0, ansi@~0.3.1: 30 | version "0.3.1" 31 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 32 | 33 | archiver-utils@^1.0.0, archiver-utils@^1.3.0: 34 | version "1.3.0" 35 | resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz#e50b4c09c70bf3d680e32ff1b7994e9f9d895174" 36 | dependencies: 37 | glob "^7.0.0" 38 | graceful-fs "^4.1.0" 39 | lazystream "^1.0.0" 40 | lodash "^4.8.0" 41 | normalize-path "^2.0.0" 42 | readable-stream "^2.0.0" 43 | 44 | archiver@1.0.0: 45 | version "1.0.0" 46 | resolved "https://registry.yarnpkg.com/archiver/-/archiver-1.0.0.tgz#de1d61082e947755b599bb3bc27130a4c859fc83" 47 | dependencies: 48 | archiver-utils "^1.0.0" 49 | async "^1.5.0" 50 | buffer-crc32 "^0.2.1" 51 | glob "^7.0.0" 52 | lodash "^4.8.0" 53 | readable-stream "^2.0.0" 54 | tar-stream "^1.5.0" 55 | zip-stream "^1.0.0" 56 | 57 | are-we-there-yet@~1.1.2: 58 | version "1.1.2" 59 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 60 | dependencies: 61 | delegates "^1.0.0" 62 | readable-stream "^2.0.0 || ^1.1.13" 63 | 64 | array-find-index@^1.0.1: 65 | version "1.0.2" 66 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 67 | 68 | array-index@^1.0.0: 69 | version "1.0.0" 70 | resolved "https://registry.yarnpkg.com/array-index/-/array-index-1.0.0.tgz#ec56a749ee103e4e08c790b9c353df16055b97f9" 71 | dependencies: 72 | debug "^2.2.0" 73 | es6-symbol "^3.0.2" 74 | 75 | asn1@~0.2.3: 76 | version "0.2.3" 77 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 78 | 79 | assert-plus@^0.2.0: 80 | version "0.2.0" 81 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 82 | 83 | assert-plus@^1.0.0: 84 | version "1.0.0" 85 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 86 | 87 | assertion-error@^1.0.1: 88 | version "1.0.2" 89 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 90 | 91 | async@^1.4.0, async@^1.5.0: 92 | version "1.5.2" 93 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 94 | 95 | async@^2.0.1: 96 | version "2.1.4" 97 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" 98 | dependencies: 99 | lodash "^4.14.0" 100 | 101 | asynckit@^0.4.0: 102 | version "0.4.0" 103 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 104 | 105 | atob@~1.1.0: 106 | version "1.1.3" 107 | resolved "https://registry.yarnpkg.com/atob/-/atob-1.1.3.tgz#95f13629b12c3a51a5d215abdce2aa9f32f80773" 108 | 109 | aws-sign2@~0.6.0: 110 | version "0.6.0" 111 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 112 | 113 | aws4@^1.2.1: 114 | version "1.5.0" 115 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 116 | 117 | babel-runtime@^5.8.25: 118 | version "5.8.38" 119 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-5.8.38.tgz#1c0b02eb63312f5f087ff20450827b425c9d4c19" 120 | dependencies: 121 | core-js "^1.0.0" 122 | 123 | babel-runtime@^6.9.2: 124 | version "6.20.0" 125 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f" 126 | dependencies: 127 | core-js "^2.4.0" 128 | regenerator-runtime "^0.10.0" 129 | 130 | balanced-match@^0.4.1: 131 | version "0.4.2" 132 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 133 | 134 | bcrypt-pbkdf@^1.0.0: 135 | version "1.0.0" 136 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 137 | dependencies: 138 | tweetnacl "^0.14.3" 139 | 140 | bl@^1.0.0, bl@~1.1.2: 141 | version "1.1.2" 142 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 143 | dependencies: 144 | readable-stream "~2.0.5" 145 | 146 | bl@~1.0.0: 147 | version "1.0.3" 148 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.0.3.tgz#fc5421a28fd4226036c3b3891a66a25bc64d226e" 149 | dependencies: 150 | readable-stream "~2.0.5" 151 | 152 | block-stream@*: 153 | version "0.0.9" 154 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 155 | dependencies: 156 | inherits "~2.0.0" 157 | 158 | boom@2.x.x: 159 | version "2.10.1" 160 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 161 | dependencies: 162 | hoek "2.x.x" 163 | 164 | brace-expansion@^1.0.0: 165 | version "1.1.6" 166 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 167 | dependencies: 168 | balanced-match "^0.4.1" 169 | concat-map "0.0.1" 170 | 171 | browser-stdout@1.3.0: 172 | version "1.3.0" 173 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 174 | 175 | buffer-crc32@^0.2.1: 176 | version "0.2.13" 177 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 178 | 179 | builtin-modules@^1.0.0: 180 | version "1.1.1" 181 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 182 | 183 | camelcase-keys@^2.0.0: 184 | version "2.1.0" 185 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 186 | dependencies: 187 | camelcase "^2.0.0" 188 | map-obj "^1.0.0" 189 | 190 | camelcase@^2.0.0: 191 | version "2.1.1" 192 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 193 | 194 | caseless@~0.11.0: 195 | version "0.11.0" 196 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 197 | 198 | chai@^3.5.0: 199 | version "3.5.0" 200 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 201 | dependencies: 202 | assertion-error "^1.0.1" 203 | deep-eql "^0.1.3" 204 | type-detect "^1.0.0" 205 | 206 | chalk@^1.0.0, chalk@^1.1.1: 207 | version "1.1.3" 208 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 209 | dependencies: 210 | ansi-styles "^2.2.1" 211 | escape-string-regexp "^1.0.2" 212 | has-ansi "^2.0.0" 213 | strip-ansi "^3.0.0" 214 | supports-color "^2.0.0" 215 | 216 | cli-cursor@^1.0.1: 217 | version "1.0.2" 218 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 219 | dependencies: 220 | restore-cursor "^1.0.1" 221 | 222 | cli-width@^2.0.0: 223 | version "2.1.0" 224 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 225 | 226 | code-point-at@^1.0.0: 227 | version "1.1.0" 228 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 229 | 230 | combined-stream@^1.0.5, combined-stream@~1.0.5: 231 | version "1.0.5" 232 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 233 | dependencies: 234 | delayed-stream "~1.0.0" 235 | 236 | commander@2.9.0, commander@^2.9.0: 237 | version "2.9.0" 238 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 239 | dependencies: 240 | graceful-readlink ">= 1.0.0" 241 | 242 | compress-commons@^1.1.0: 243 | version "1.1.0" 244 | resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-1.1.0.tgz#9f4460bb1288564c7473916e0298aa3c320dcadb" 245 | dependencies: 246 | buffer-crc32 "^0.2.1" 247 | crc32-stream "^1.0.0" 248 | normalize-path "^2.0.0" 249 | readable-stream "^2.0.0" 250 | 251 | concat-map@0.0.1: 252 | version "0.0.1" 253 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 254 | 255 | concat-stream@1.5.0, concat-stream@^1.4.7: 256 | version "1.5.0" 257 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.0.tgz#53f7d43c51c5e43f81c8fdd03321c631be68d611" 258 | dependencies: 259 | inherits "~2.0.1" 260 | readable-stream "~2.0.0" 261 | typedarray "~0.0.5" 262 | 263 | core-js@^1.0.0: 264 | version "1.2.7" 265 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 266 | 267 | core-js@^2.4.0: 268 | version "2.4.1" 269 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 270 | 271 | core-util-is@~1.0.0: 272 | version "1.0.2" 273 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 274 | 275 | crc32-stream@^1.0.0: 276 | version "1.0.0" 277 | resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-1.0.0.tgz#ea155e5e1d738ed3778438ffe92ffe2a141aeb3f" 278 | dependencies: 279 | buffer-crc32 "^0.2.1" 280 | readable-stream "^2.0.0" 281 | 282 | cryptiles@2.x.x: 283 | version "2.0.5" 284 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 285 | dependencies: 286 | boom "2.x.x" 287 | 288 | css-parse@~2.0.0: 289 | version "2.0.0" 290 | resolved "https://registry.yarnpkg.com/css-parse/-/css-parse-2.0.0.tgz#a468ee667c16d81ccf05c58c38d2a97c780dbfd4" 291 | dependencies: 292 | css "^2.0.0" 293 | 294 | css-value@~0.0.1: 295 | version "0.0.1" 296 | resolved "https://registry.yarnpkg.com/css-value/-/css-value-0.0.1.tgz#5efd6c2eea5ea1fd6b6ac57ec0427b18452424ea" 297 | 298 | css@^2.0.0: 299 | version "2.2.1" 300 | resolved "https://registry.yarnpkg.com/css/-/css-2.2.1.tgz#73a4c81de85db664d4ee674f7d47085e3b2d55dc" 301 | dependencies: 302 | inherits "^2.0.1" 303 | source-map "^0.1.38" 304 | source-map-resolve "^0.3.0" 305 | urix "^0.1.0" 306 | 307 | currently-unhandled@^0.4.1: 308 | version "0.4.1" 309 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 310 | dependencies: 311 | array-find-index "^1.0.1" 312 | 313 | d@^0.1.1, d@~0.1.1: 314 | version "0.1.1" 315 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 316 | dependencies: 317 | es5-ext "~0.10.2" 318 | 319 | dashdash@^1.12.0: 320 | version "1.14.1" 321 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 322 | dependencies: 323 | assert-plus "^1.0.0" 324 | 325 | debug@0.7.4: 326 | version "0.7.4" 327 | resolved "https://registry.yarnpkg.com/debug/-/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39" 328 | 329 | debug@2.2.0, debug@^2.1.3, debug@^2.2.0: 330 | version "2.2.0" 331 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 332 | dependencies: 333 | ms "0.7.1" 334 | 335 | decamelize@^1.1.2: 336 | version "1.2.0" 337 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 338 | 339 | deep-eql@^0.1.3: 340 | version "0.1.3" 341 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 342 | dependencies: 343 | type-detect "0.1.1" 344 | 345 | deep-extend@~0.4.0: 346 | version "0.4.1" 347 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 348 | 349 | deepmerge@^0.2.10: 350 | version "0.2.10" 351 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-0.2.10.tgz#8906bf9e525a4fbf1b203b2afcb4640249821219" 352 | 353 | delayed-stream@~1.0.0: 354 | version "1.0.0" 355 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 356 | 357 | delegates@^1.0.0: 358 | version "1.0.0" 359 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 360 | 361 | dev-null@^0.1.1: 362 | version "0.1.1" 363 | resolved "https://registry.yarnpkg.com/dev-null/-/dev-null-0.1.1.tgz#5a205ce3c2b2ef77b6238d6ba179eb74c6a0e818" 364 | 365 | diff@1.4.0: 366 | version "1.4.0" 367 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 368 | 369 | duplexer2@~0.0.2: 370 | version "0.0.2" 371 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" 372 | dependencies: 373 | readable-stream "~1.1.9" 374 | 375 | ecc-jsbn@~0.1.1: 376 | version "0.1.1" 377 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 378 | dependencies: 379 | jsbn "~0.1.0" 380 | 381 | ejs@^2.3.1: 382 | version "2.5.5" 383 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.5.5.tgz#6ef4e954ea7dcf54f66aad2fe7aa421932d9ed77" 384 | 385 | electron-chromedriver@~1.4.0: 386 | version "1.4.1" 387 | resolved "https://registry.yarnpkg.com/electron-chromedriver/-/electron-chromedriver-1.4.1.tgz#3339281b82971347bb0399ad2534092ee07cdc0a" 388 | dependencies: 389 | electron-download "^3.1.0" 390 | extract-zip "^1.6.0" 391 | 392 | electron-download@^3.1.0: 393 | version "3.2.0" 394 | resolved "https://registry.yarnpkg.com/electron-download/-/electron-download-3.2.0.tgz#d7509b686b77855f2e6fe0014acc9cce6379c4b1" 395 | dependencies: 396 | debug "^2.2.0" 397 | fs-extra "^0.30.0" 398 | home-path "^1.0.1" 399 | minimist "^1.2.0" 400 | nugget "^2.0.0" 401 | path-exists "^2.1.0" 402 | rc "^1.1.2" 403 | semver "^5.3.0" 404 | sumchecker "^1.2.0" 405 | 406 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 407 | version "1.1.0" 408 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.1.0.tgz#e9353258baa9108965efc41cb0ef8ade2f3cfb07" 409 | dependencies: 410 | once "~1.3.0" 411 | 412 | error-ex@^1.2.0: 413 | version "1.3.0" 414 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 415 | dependencies: 416 | is-arrayish "^0.2.1" 417 | 418 | es5-ext@^0.10.7, es5-ext@~0.10.11, es5-ext@~0.10.2: 419 | version "0.10.12" 420 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 421 | dependencies: 422 | es6-iterator "2" 423 | es6-symbol "~3.1" 424 | 425 | es6-iterator@2: 426 | version "2.0.0" 427 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 428 | dependencies: 429 | d "^0.1.1" 430 | es5-ext "^0.10.7" 431 | es6-symbol "3" 432 | 433 | es6-promise@^4.0.5: 434 | version "4.0.5" 435 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.0.5.tgz#7882f30adde5b240ccfa7f7d78c548330951ae42" 436 | 437 | es6-symbol@3, es6-symbol@^3.0.2, es6-symbol@~3.1: 438 | version "3.1.0" 439 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 440 | dependencies: 441 | d "~0.1.1" 442 | es5-ext "~0.10.11" 443 | 444 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 445 | version "1.0.5" 446 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 447 | 448 | execspawn@^1.0.1: 449 | version "1.0.1" 450 | resolved "http://registry.npmjs.org/execspawn/-/execspawn-1.0.1.tgz#8286f9dde7cecde7905fbdc04e24f368f23f8da6" 451 | dependencies: 452 | util-extend "^1.0.1" 453 | 454 | exit-hook@^1.0.0: 455 | version "1.1.1" 456 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 457 | 458 | expand-template@^1.0.0: 459 | version "1.0.3" 460 | resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-1.0.3.tgz#6c303323177a62b1b22c070279f7861287b69b1a" 461 | 462 | extend@^3.0.0, extend@~3.0.0: 463 | version "3.0.0" 464 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 465 | 466 | external-editor@^1.1.0: 467 | version "1.1.1" 468 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" 469 | dependencies: 470 | extend "^3.0.0" 471 | spawn-sync "^1.0.15" 472 | tmp "^0.0.29" 473 | 474 | extract-zip@^1.6.0: 475 | version "1.6.0" 476 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.0.tgz#7f400c9607ea866ecab7aa6d54fb978eeb11621a" 477 | dependencies: 478 | concat-stream "1.5.0" 479 | debug "0.7.4" 480 | mkdirp "0.5.0" 481 | yauzl "2.4.1" 482 | 483 | extsprintf@1.0.2: 484 | version "1.0.2" 485 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 486 | 487 | fd-slicer@~1.0.1: 488 | version "1.0.1" 489 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" 490 | dependencies: 491 | pend "~1.2.0" 492 | 493 | figures@^1.3.5: 494 | version "1.7.0" 495 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 496 | dependencies: 497 | escape-string-regexp "^1.0.5" 498 | object-assign "^4.1.0" 499 | 500 | find-up@^1.0.0: 501 | version "1.1.2" 502 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 503 | dependencies: 504 | path-exists "^2.0.0" 505 | pinkie-promise "^2.0.0" 506 | 507 | forever-agent@~0.6.1: 508 | version "0.6.1" 509 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 510 | 511 | form-data@~1.0.0-rc4: 512 | version "1.0.1" 513 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c" 514 | dependencies: 515 | async "^2.0.1" 516 | combined-stream "^1.0.5" 517 | mime-types "^2.1.11" 518 | 519 | form-data@~2.1.1: 520 | version "2.1.2" 521 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 522 | dependencies: 523 | asynckit "^0.4.0" 524 | combined-stream "^1.0.5" 525 | mime-types "^2.1.12" 526 | 527 | fs-extra@^0.30.0: 528 | version "0.30.0" 529 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 530 | dependencies: 531 | graceful-fs "^4.1.2" 532 | jsonfile "^2.1.0" 533 | klaw "^1.0.0" 534 | path-is-absolute "^1.0.0" 535 | rimraf "^2.2.8" 536 | 537 | fs.realpath@^1.0.0: 538 | version "1.0.0" 539 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 540 | 541 | fstream@^1.0.0, fstream@^1.0.2: 542 | version "1.0.10" 543 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 544 | dependencies: 545 | graceful-fs "^4.1.2" 546 | inherits "~2.0.0" 547 | mkdirp ">=0.5 0" 548 | rimraf "2" 549 | 550 | gauge@~1.2.5: 551 | version "1.2.7" 552 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 553 | dependencies: 554 | ansi "^0.3.0" 555 | has-unicode "^2.0.0" 556 | lodash.pad "^4.1.0" 557 | lodash.padend "^4.1.0" 558 | lodash.padstart "^4.1.0" 559 | 560 | generate-function@^2.0.0: 561 | version "2.0.0" 562 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 563 | 564 | generate-object-property@^1.1.0: 565 | version "1.2.0" 566 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 567 | dependencies: 568 | is-property "^1.0.0" 569 | 570 | get-stdin@^4.0.1: 571 | version "4.0.1" 572 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 573 | 574 | getpass@^0.1.1: 575 | version "0.1.6" 576 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 577 | dependencies: 578 | assert-plus "^1.0.0" 579 | 580 | ghreleases@^1.0.2: 581 | version "1.0.5" 582 | resolved "https://registry.yarnpkg.com/ghreleases/-/ghreleases-1.0.5.tgz#a20f8194074311e19d84ccba7a6e08c4b434fd80" 583 | dependencies: 584 | after "~0.8.1" 585 | ghrepos "~2.0.0" 586 | ghutils "~3.2.0" 587 | simple-mime "~0.1.0" 588 | url-template "~2.0.6" 589 | xtend "~4.0.0" 590 | 591 | ghrepos@~2.0.0: 592 | version "2.0.0" 593 | resolved "https://registry.yarnpkg.com/ghrepos/-/ghrepos-2.0.0.tgz#d66eae9d98a3b5398e460d6db7e10a742692e81b" 594 | dependencies: 595 | ghutils "~3.2.0" 596 | 597 | ghutils@~3.2.0: 598 | version "3.2.1" 599 | resolved "https://registry.yarnpkg.com/ghutils/-/ghutils-3.2.1.tgz#4fcedffac935fcace06e12a17c6174e2c29ffe4f" 600 | dependencies: 601 | jsonist "~1.3.0" 602 | xtend "~4.0.1" 603 | 604 | github-from-package@0.0.0: 605 | version "0.0.0" 606 | resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 607 | 608 | "glob@3 || 4 || 5 || 6 || 7", glob@7.0.5, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 609 | version "7.0.5" 610 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 611 | dependencies: 612 | fs.realpath "^1.0.0" 613 | inflight "^1.0.4" 614 | inherits "2" 615 | minimatch "^3.0.2" 616 | once "^1.3.0" 617 | path-is-absolute "^1.0.0" 618 | 619 | graceful-fs@^4.1.0, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 620 | version "4.1.11" 621 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 622 | 623 | "graceful-readlink@>= 1.0.0": 624 | version "1.0.1" 625 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 626 | 627 | growl@1.9.2: 628 | version "1.9.2" 629 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 630 | 631 | har-validator@~2.0.6: 632 | version "2.0.6" 633 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 634 | dependencies: 635 | chalk "^1.1.1" 636 | commander "^2.9.0" 637 | is-my-json-valid "^2.12.4" 638 | pinkie-promise "^2.0.0" 639 | 640 | has-ansi@^2.0.0: 641 | version "2.0.0" 642 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 643 | dependencies: 644 | ansi-regex "^2.0.0" 645 | 646 | has-flag@^1.0.0: 647 | version "1.0.0" 648 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 649 | 650 | has-unicode@^2.0.0: 651 | version "2.0.1" 652 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 653 | 654 | hawk@~3.1.3: 655 | version "3.1.3" 656 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 657 | dependencies: 658 | boom "2.x.x" 659 | cryptiles "2.x.x" 660 | hoek "2.x.x" 661 | sntp "1.x.x" 662 | 663 | hoek@2.x.x: 664 | version "2.16.3" 665 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 666 | 667 | home-path@^1.0.1: 668 | version "1.0.3" 669 | resolved "https://registry.yarnpkg.com/home-path/-/home-path-1.0.3.tgz#9ece59fec3f032e6d10b5434fee264df4c2de32f" 670 | 671 | hosted-git-info@^2.1.4: 672 | version "2.1.5" 673 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 674 | 675 | http-signature@~1.1.0: 676 | version "1.1.1" 677 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 678 | dependencies: 679 | assert-plus "^0.2.0" 680 | jsprim "^1.2.2" 681 | sshpk "^1.7.0" 682 | 683 | hyperquest@~1.2.0: 684 | version "1.2.0" 685 | resolved "https://registry.yarnpkg.com/hyperquest/-/hyperquest-1.2.0.tgz#39e1fef66888dc7ce0dec6c0dd814f6fc8944ad5" 686 | dependencies: 687 | duplexer2 "~0.0.2" 688 | through2 "~0.6.3" 689 | 690 | indent-string@^2.1.0: 691 | version "2.1.0" 692 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 693 | dependencies: 694 | repeating "^2.0.0" 695 | 696 | inflight@^1.0.4: 697 | version "1.0.6" 698 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 699 | dependencies: 700 | once "^1.3.0" 701 | wrappy "1" 702 | 703 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 704 | version "2.0.3" 705 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 706 | 707 | ini@~1.3.0: 708 | version "1.3.4" 709 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 710 | 711 | inquirer@^1.1.2: 712 | version "1.2.3" 713 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.3.tgz#4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918" 714 | dependencies: 715 | ansi-escapes "^1.1.0" 716 | chalk "^1.0.0" 717 | cli-cursor "^1.0.1" 718 | cli-width "^2.0.0" 719 | external-editor "^1.1.0" 720 | figures "^1.3.5" 721 | lodash "^4.3.0" 722 | mute-stream "0.0.6" 723 | pinkie-promise "^2.0.0" 724 | run-async "^2.2.0" 725 | rx "^4.1.0" 726 | string-width "^1.0.1" 727 | strip-ansi "^3.0.0" 728 | through "^2.3.6" 729 | 730 | is-arrayish@^0.2.1: 731 | version "0.2.1" 732 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 733 | 734 | is-builtin-module@^1.0.0: 735 | version "1.0.0" 736 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 737 | dependencies: 738 | builtin-modules "^1.0.0" 739 | 740 | is-finite@^1.0.0: 741 | version "1.0.2" 742 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 743 | dependencies: 744 | number-is-nan "^1.0.0" 745 | 746 | is-fullwidth-code-point@^1.0.0: 747 | version "1.0.0" 748 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 749 | dependencies: 750 | number-is-nan "^1.0.0" 751 | 752 | is-my-json-valid@^2.12.4: 753 | version "2.15.0" 754 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 755 | dependencies: 756 | generate-function "^2.0.0" 757 | generate-object-property "^1.1.0" 758 | jsonpointer "^4.0.0" 759 | xtend "^4.0.0" 760 | 761 | is-promise@^2.1.0: 762 | version "2.1.0" 763 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 764 | 765 | is-property@^1.0.0: 766 | version "1.0.2" 767 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 768 | 769 | is-typedarray@~1.0.0: 770 | version "1.0.0" 771 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 772 | 773 | is-utf8@^0.2.0: 774 | version "0.2.1" 775 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 776 | 777 | isarray@0.0.1: 778 | version "0.0.1" 779 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 780 | 781 | isarray@~1.0.0: 782 | version "1.0.0" 783 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 784 | 785 | isexe@^1.1.1: 786 | version "1.1.2" 787 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 788 | 789 | isstream@~0.1.2: 790 | version "0.1.2" 791 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 792 | 793 | jodid25519@^1.0.0: 794 | version "1.0.2" 795 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 796 | dependencies: 797 | jsbn "~0.1.0" 798 | 799 | jsbn@~0.1.0: 800 | version "0.1.0" 801 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 802 | 803 | json-schema@0.2.3: 804 | version "0.2.3" 805 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 806 | 807 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.0, json-stringify-safe@~5.0.1: 808 | version "5.0.1" 809 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 810 | 811 | json3@3.3.2: 812 | version "3.3.2" 813 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 814 | 815 | jsonfile@^2.1.0: 816 | version "2.4.0" 817 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 818 | optionalDependencies: 819 | graceful-fs "^4.1.6" 820 | 821 | jsonist@~1.3.0: 822 | version "1.3.0" 823 | resolved "https://registry.yarnpkg.com/jsonist/-/jsonist-1.3.0.tgz#c0c74b95ef1c952038619b29efa520b1cc987556" 824 | dependencies: 825 | bl "~1.0.0" 826 | hyperquest "~1.2.0" 827 | json-stringify-safe "~5.0.0" 828 | xtend "~4.0.0" 829 | 830 | jsonpointer@^4.0.0: 831 | version "4.0.1" 832 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 833 | 834 | jsprim@^1.2.2: 835 | version "1.3.1" 836 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 837 | dependencies: 838 | extsprintf "1.0.2" 839 | json-schema "0.2.3" 840 | verror "1.3.6" 841 | 842 | klaw@^1.0.0: 843 | version "1.3.1" 844 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 845 | optionalDependencies: 846 | graceful-fs "^4.1.9" 847 | 848 | lazystream@^1.0.0: 849 | version "1.0.0" 850 | resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" 851 | dependencies: 852 | readable-stream "^2.0.5" 853 | 854 | load-json-file@^1.0.0: 855 | version "1.1.0" 856 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 857 | dependencies: 858 | graceful-fs "^4.1.2" 859 | parse-json "^2.2.0" 860 | pify "^2.0.0" 861 | pinkie-promise "^2.0.0" 862 | strip-bom "^2.0.0" 863 | 864 | lodash._baseassign@^3.0.0: 865 | version "3.2.0" 866 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 867 | dependencies: 868 | lodash._basecopy "^3.0.0" 869 | lodash.keys "^3.0.0" 870 | 871 | lodash._basecopy@^3.0.0: 872 | version "3.0.1" 873 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 874 | 875 | lodash._basecreate@^3.0.0: 876 | version "3.0.3" 877 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 878 | 879 | lodash._getnative@^3.0.0: 880 | version "3.9.1" 881 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 882 | 883 | lodash._isiterateecall@^3.0.0: 884 | version "3.0.9" 885 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 886 | 887 | lodash.create@3.1.1: 888 | version "3.1.1" 889 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 890 | dependencies: 891 | lodash._baseassign "^3.0.0" 892 | lodash._basecreate "^3.0.0" 893 | lodash._isiterateecall "^3.0.0" 894 | 895 | lodash.isarguments@^3.0.0: 896 | version "3.1.0" 897 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 898 | 899 | lodash.isarray@^3.0.0: 900 | version "3.0.4" 901 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 902 | 903 | lodash.keys@^3.0.0: 904 | version "3.1.2" 905 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 906 | dependencies: 907 | lodash._getnative "^3.0.0" 908 | lodash.isarguments "^3.0.0" 909 | lodash.isarray "^3.0.0" 910 | 911 | lodash.pad@^4.1.0: 912 | version "4.5.1" 913 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 914 | 915 | lodash.padend@^4.1.0: 916 | version "4.6.1" 917 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 918 | 919 | lodash.padstart@^4.1.0: 920 | version "4.6.1" 921 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 922 | 923 | lodash@^4.14.0, lodash@^4.3.0, lodash@^4.8.0: 924 | version "4.17.3" 925 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.3.tgz#557ed7d2a9438cac5fd5a43043ca60cb455e01f7" 926 | 927 | loud-rejection@^1.0.0: 928 | version "1.6.0" 929 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 930 | dependencies: 931 | currently-unhandled "^0.4.1" 932 | signal-exit "^3.0.0" 933 | 934 | map-obj@^1.0.0, map-obj@^1.0.1: 935 | version "1.0.1" 936 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 937 | 938 | meow@^3.1.0: 939 | version "3.7.0" 940 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 941 | dependencies: 942 | camelcase-keys "^2.0.0" 943 | decamelize "^1.1.2" 944 | loud-rejection "^1.0.0" 945 | map-obj "^1.0.1" 946 | minimist "^1.1.3" 947 | normalize-package-data "^2.3.4" 948 | object-assign "^4.0.1" 949 | read-pkg-up "^1.0.1" 950 | redent "^1.0.0" 951 | trim-newlines "^1.0.0" 952 | 953 | mime-db@~1.25.0: 954 | version "1.25.0" 955 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.25.0.tgz#c18dbd7c73a5dbf6f44a024dc0d165a1e7b1c392" 956 | 957 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.7: 958 | version "2.1.13" 959 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.13.tgz#e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88" 960 | dependencies: 961 | mime-db "~1.25.0" 962 | 963 | minimatch@3, minimatch@^3.0.2: 964 | version "3.0.3" 965 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 966 | dependencies: 967 | brace-expansion "^1.0.0" 968 | 969 | minimist@0.0.8, minimist@~0.0.1: 970 | version "0.0.8" 971 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 972 | 973 | minimist@^1.1.0, minimist@^1.1.2, minimist@^1.1.3, minimist@^1.2.0: 974 | version "1.2.0" 975 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 976 | 977 | mkdirp@0.5.0: 978 | version "0.5.0" 979 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" 980 | dependencies: 981 | minimist "0.0.8" 982 | 983 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 984 | version "0.5.1" 985 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 986 | dependencies: 987 | minimist "0.0.8" 988 | 989 | mocha@^3.0.2: 990 | version "3.2.0" 991 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" 992 | dependencies: 993 | browser-stdout "1.3.0" 994 | commander "2.9.0" 995 | debug "2.2.0" 996 | diff "1.4.0" 997 | escape-string-regexp "1.0.5" 998 | glob "7.0.5" 999 | growl "1.9.2" 1000 | json3 "3.3.2" 1001 | lodash.create "3.1.1" 1002 | mkdirp "0.5.1" 1003 | supports-color "3.1.2" 1004 | 1005 | ms@0.7.1: 1006 | version "0.7.1" 1007 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 1008 | 1009 | mute-stream@0.0.6: 1010 | version "0.0.6" 1011 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" 1012 | 1013 | nan@^2.2.1: 1014 | version "2.5.0" 1015 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.0.tgz#aa8f1e34531d807e9e27755b234b4a6ec0c152a8" 1016 | 1017 | node-gyp@^3.0.3: 1018 | version "3.4.0" 1019 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.4.0.tgz#dda558393b3ecbbe24c9e6b8703c71194c63fa36" 1020 | dependencies: 1021 | fstream "^1.0.0" 1022 | glob "^7.0.3" 1023 | graceful-fs "^4.1.2" 1024 | minimatch "^3.0.2" 1025 | mkdirp "^0.5.0" 1026 | nopt "2 || 3" 1027 | npmlog "0 || 1 || 2 || 3" 1028 | osenv "0" 1029 | path-array "^1.0.0" 1030 | request "2" 1031 | rimraf "2" 1032 | semver "2.x || 3.x || 4 || 5" 1033 | tar "^2.0.0" 1034 | which "1" 1035 | 1036 | node-ninja@^1.0.1: 1037 | version "1.0.2" 1038 | resolved "https://registry.yarnpkg.com/node-ninja/-/node-ninja-1.0.2.tgz#20a09e57b92e2df591993d4bf098ac3e727062b6" 1039 | dependencies: 1040 | fstream "^1.0.0" 1041 | glob "3 || 4 || 5 || 6 || 7" 1042 | graceful-fs "^4.1.2" 1043 | minimatch "3" 1044 | mkdirp "^0.5.0" 1045 | nopt "2 || 3" 1046 | npmlog "0 || 1 || 2" 1047 | osenv "0" 1048 | path-array "^1.0.0" 1049 | request "2" 1050 | rimraf "2" 1051 | semver "2.x || 3.x || 4 || 5" 1052 | tar "^2.0.0" 1053 | which "1" 1054 | 1055 | node-uuid@~1.4.7: 1056 | version "1.4.7" 1057 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 1058 | 1059 | noop-logger@^0.1.0: 1060 | version "0.1.1" 1061 | resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" 1062 | 1063 | noop2@^2.0.0: 1064 | version "2.0.0" 1065 | resolved "https://registry.yarnpkg.com/noop2/-/noop2-2.0.0.tgz#4b636015e9882b54783c02b412f699d8c5cd0a5b" 1066 | 1067 | "nopt@2 || 3": 1068 | version "3.0.6" 1069 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 1070 | dependencies: 1071 | abbrev "1" 1072 | 1073 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1074 | version "2.3.5" 1075 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 1076 | dependencies: 1077 | hosted-git-info "^2.1.4" 1078 | is-builtin-module "^1.0.0" 1079 | semver "2 || 3 || 4 || 5" 1080 | validate-npm-package-license "^3.0.1" 1081 | 1082 | normalize-path@^2.0.0: 1083 | version "2.0.1" 1084 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 1085 | 1086 | npm-install-package@^1.0.2: 1087 | version "1.1.0" 1088 | resolved "https://registry.yarnpkg.com/npm-install-package/-/npm-install-package-1.1.0.tgz#f9fc1f84c2d31f6105631e0b5f5f280d1151d97e" 1089 | dependencies: 1090 | noop2 "^2.0.0" 1091 | 1092 | "npmlog@0 || 1 || 2", "npmlog@0 || 1 || 2 || 3", npmlog@^2.0.0: 1093 | version "2.0.4" 1094 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" 1095 | dependencies: 1096 | ansi "~0.3.1" 1097 | are-we-there-yet "~1.1.2" 1098 | gauge "~1.2.5" 1099 | 1100 | nugget@^2.0.0: 1101 | version "2.0.1" 1102 | resolved "https://registry.yarnpkg.com/nugget/-/nugget-2.0.1.tgz#201095a487e1ad36081b3432fa3cada4f8d071b0" 1103 | dependencies: 1104 | debug "^2.1.3" 1105 | minimist "^1.1.0" 1106 | pretty-bytes "^1.0.2" 1107 | progress-stream "^1.1.0" 1108 | request "^2.45.0" 1109 | single-line-log "^1.1.2" 1110 | throttleit "0.0.2" 1111 | 1112 | number-is-nan@^1.0.0: 1113 | version "1.0.1" 1114 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1115 | 1116 | oauth-sign@~0.8.1: 1117 | version "0.8.2" 1118 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1119 | 1120 | object-assign@^4.0.1, object-assign@^4.1.0: 1121 | version "4.1.0" 1122 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 1123 | 1124 | object-keys@~0.4.0: 1125 | version "0.4.0" 1126 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" 1127 | 1128 | once@^1.3.0, once@^1.3.1: 1129 | version "1.4.0" 1130 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1131 | dependencies: 1132 | wrappy "1" 1133 | 1134 | once@~1.3.0: 1135 | version "1.3.3" 1136 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 1137 | dependencies: 1138 | wrappy "1" 1139 | 1140 | onetime@^1.0.0: 1141 | version "1.1.0" 1142 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1143 | 1144 | optimist@^0.6.1: 1145 | version "0.6.1" 1146 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1147 | dependencies: 1148 | minimist "~0.0.1" 1149 | wordwrap "~0.0.2" 1150 | 1151 | os-homedir@^1.0.0, os-homedir@^1.0.1: 1152 | version "1.0.2" 1153 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1154 | 1155 | os-shim@^0.1.2: 1156 | version "0.1.3" 1157 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 1158 | 1159 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.1: 1160 | version "1.0.2" 1161 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1162 | 1163 | osenv@0: 1164 | version "0.1.4" 1165 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1166 | dependencies: 1167 | os-homedir "^1.0.0" 1168 | os-tmpdir "^1.0.0" 1169 | 1170 | parse-json@^2.2.0: 1171 | version "2.2.0" 1172 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1173 | dependencies: 1174 | error-ex "^1.2.0" 1175 | 1176 | path-array@^1.0.0: 1177 | version "1.0.1" 1178 | resolved "https://registry.yarnpkg.com/path-array/-/path-array-1.0.1.tgz#7e2f0f35f07a2015122b868b7eac0eb2c4fec271" 1179 | dependencies: 1180 | array-index "^1.0.0" 1181 | 1182 | path-exists@^2.0.0, path-exists@^2.1.0: 1183 | version "2.1.0" 1184 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1185 | dependencies: 1186 | pinkie-promise "^2.0.0" 1187 | 1188 | path-is-absolute@^1.0.0: 1189 | version "1.0.1" 1190 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1191 | 1192 | path-type@^1.0.0: 1193 | version "1.1.0" 1194 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1195 | dependencies: 1196 | graceful-fs "^4.1.2" 1197 | pify "^2.0.0" 1198 | pinkie-promise "^2.0.0" 1199 | 1200 | pend@~1.2.0: 1201 | version "1.2.0" 1202 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1203 | 1204 | pify@^2.0.0: 1205 | version "2.3.0" 1206 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1207 | 1208 | pinkie-promise@^2.0.0: 1209 | version "2.0.1" 1210 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1211 | dependencies: 1212 | pinkie "^2.0.0" 1213 | 1214 | pinkie@^2.0.0: 1215 | version "2.0.4" 1216 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1217 | 1218 | prebuild@^4.1.1: 1219 | version "4.5.0" 1220 | resolved "https://registry.yarnpkg.com/prebuild/-/prebuild-4.5.0.tgz#2aaa0df2063bff814a803bd4dc94ff9b64e5df00" 1221 | dependencies: 1222 | async "^1.4.0" 1223 | execspawn "^1.0.1" 1224 | expand-template "^1.0.0" 1225 | ghreleases "^1.0.2" 1226 | github-from-package "0.0.0" 1227 | minimist "^1.1.2" 1228 | mkdirp "^0.5.1" 1229 | node-gyp "^3.0.3" 1230 | node-ninja "^1.0.1" 1231 | noop-logger "^0.1.0" 1232 | npmlog "^2.0.0" 1233 | os-homedir "^1.0.1" 1234 | pump "^1.0.0" 1235 | rc "^1.0.3" 1236 | simple-get "^1.4.2" 1237 | tar-fs "^1.7.0" 1238 | tar-stream "^1.2.1" 1239 | xtend "^4.0.1" 1240 | 1241 | pretty-bytes@^1.0.2: 1242 | version "1.0.4" 1243 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-1.0.4.tgz#0a22e8210609ad35542f8c8d5d2159aff0751c84" 1244 | dependencies: 1245 | get-stdin "^4.0.1" 1246 | meow "^3.1.0" 1247 | 1248 | process-nextick-args@~1.0.6: 1249 | version "1.0.7" 1250 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1251 | 1252 | progress-stream@^1.1.0: 1253 | version "1.2.0" 1254 | resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-1.2.0.tgz#2cd3cfea33ba3a89c9c121ec3347abe9ab125f77" 1255 | dependencies: 1256 | speedometer "~0.1.2" 1257 | through2 "~0.2.3" 1258 | 1259 | pump@^1.0.0: 1260 | version "1.0.2" 1261 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.2.tgz#3b3ee6512f94f0e575538c17995f9f16990a5d51" 1262 | dependencies: 1263 | end-of-stream "^1.1.0" 1264 | once "^1.3.1" 1265 | 1266 | punycode@1.3.2: 1267 | version "1.3.2" 1268 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1269 | 1270 | punycode@^1.4.1: 1271 | version "1.4.1" 1272 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1273 | 1274 | q@~1.4.1: 1275 | version "1.4.1" 1276 | resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" 1277 | 1278 | qs@~6.2.0: 1279 | version "6.2.1" 1280 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 1281 | 1282 | qs@~6.3.0: 1283 | version "6.3.0" 1284 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 1285 | 1286 | querystring@0.2.0: 1287 | version "0.2.0" 1288 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1289 | 1290 | rc@^1.0.3, rc@^1.1.2: 1291 | version "1.1.6" 1292 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 1293 | dependencies: 1294 | deep-extend "~0.4.0" 1295 | ini "~1.3.0" 1296 | minimist "^1.2.0" 1297 | strip-json-comments "~1.0.4" 1298 | 1299 | read-pkg-up@^1.0.1: 1300 | version "1.0.1" 1301 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1302 | dependencies: 1303 | find-up "^1.0.0" 1304 | read-pkg "^1.0.0" 1305 | 1306 | read-pkg@^1.0.0: 1307 | version "1.1.0" 1308 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1309 | dependencies: 1310 | load-json-file "^1.0.0" 1311 | normalize-package-data "^2.3.2" 1312 | path-type "^1.0.0" 1313 | 1314 | "readable-stream@>=1.0.33-1 <1.1.0-0": 1315 | version "1.0.34" 1316 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 1317 | dependencies: 1318 | core-util-is "~1.0.0" 1319 | inherits "~2.0.1" 1320 | isarray "0.0.1" 1321 | string_decoder "~0.10.x" 1322 | 1323 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.5, readable-stream@~2.0.0, readable-stream@~2.0.5: 1324 | version "2.0.6" 1325 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 1326 | dependencies: 1327 | core-util-is "~1.0.0" 1328 | inherits "~2.0.1" 1329 | isarray "~1.0.0" 1330 | process-nextick-args "~1.0.6" 1331 | string_decoder "~0.10.x" 1332 | util-deprecate "~1.0.1" 1333 | 1334 | readable-stream@~1.1.9: 1335 | version "1.1.14" 1336 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 1337 | dependencies: 1338 | core-util-is "~1.0.0" 1339 | inherits "~2.0.1" 1340 | isarray "0.0.1" 1341 | string_decoder "~0.10.x" 1342 | 1343 | redent@^1.0.0: 1344 | version "1.0.0" 1345 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1346 | dependencies: 1347 | indent-string "^2.1.0" 1348 | strip-indent "^1.0.1" 1349 | 1350 | regenerator-runtime@^0.10.0: 1351 | version "0.10.1" 1352 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb" 1353 | 1354 | repeating@^2.0.0: 1355 | version "2.0.1" 1356 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1357 | dependencies: 1358 | is-finite "^1.0.0" 1359 | 1360 | request@2, request@^2.45.0, request@^2.65.0: 1361 | version "2.79.0" 1362 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 1363 | dependencies: 1364 | aws-sign2 "~0.6.0" 1365 | aws4 "^1.2.1" 1366 | caseless "~0.11.0" 1367 | combined-stream "~1.0.5" 1368 | extend "~3.0.0" 1369 | forever-agent "~0.6.1" 1370 | form-data "~2.1.1" 1371 | har-validator "~2.0.6" 1372 | hawk "~3.1.3" 1373 | http-signature "~1.1.0" 1374 | is-typedarray "~1.0.0" 1375 | isstream "~0.1.2" 1376 | json-stringify-safe "~5.0.1" 1377 | mime-types "~2.1.7" 1378 | oauth-sign "~0.8.1" 1379 | qs "~6.3.0" 1380 | stringstream "~0.0.4" 1381 | tough-cookie "~2.3.0" 1382 | tunnel-agent "~0.4.1" 1383 | uuid "^3.0.0" 1384 | 1385 | request@2.74.0: 1386 | version "2.74.0" 1387 | resolved "https://registry.yarnpkg.com/request/-/request-2.74.0.tgz#7693ca768bbb0ea5c8ce08c084a45efa05b892ab" 1388 | dependencies: 1389 | aws-sign2 "~0.6.0" 1390 | aws4 "^1.2.1" 1391 | bl "~1.1.2" 1392 | caseless "~0.11.0" 1393 | combined-stream "~1.0.5" 1394 | extend "~3.0.0" 1395 | forever-agent "~0.6.1" 1396 | form-data "~1.0.0-rc4" 1397 | har-validator "~2.0.6" 1398 | hawk "~3.1.3" 1399 | http-signature "~1.1.0" 1400 | is-typedarray "~1.0.0" 1401 | isstream "~0.1.2" 1402 | json-stringify-safe "~5.0.1" 1403 | mime-types "~2.1.7" 1404 | node-uuid "~1.4.7" 1405 | oauth-sign "~0.8.1" 1406 | qs "~6.2.0" 1407 | stringstream "~0.0.4" 1408 | tough-cookie "~2.3.0" 1409 | tunnel-agent "~0.4.1" 1410 | 1411 | resolve-url@~0.2.1: 1412 | version "0.2.1" 1413 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 1414 | 1415 | restore-cursor@^1.0.1: 1416 | version "1.0.1" 1417 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 1418 | dependencies: 1419 | exit-hook "^1.0.0" 1420 | onetime "^1.0.0" 1421 | 1422 | rgb2hex@~0.1.0: 1423 | version "0.1.0" 1424 | resolved "https://registry.yarnpkg.com/rgb2hex/-/rgb2hex-0.1.0.tgz#ccd55f860ae0c5c4ea37504b958e442d8d12325b" 1425 | 1426 | rimraf@2, rimraf@^2.2.8: 1427 | version "2.5.4" 1428 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 1429 | dependencies: 1430 | glob "^7.0.5" 1431 | 1432 | robotjs@^0.4.4: 1433 | version "0.4.5" 1434 | resolved "https://registry.yarnpkg.com/robotjs/-/robotjs-0.4.5.tgz#71e55e0fe8f319f3f198d279cbd50722bc21f4d1" 1435 | dependencies: 1436 | nan "^2.2.1" 1437 | prebuild "^4.1.1" 1438 | 1439 | run-async@^2.2.0: 1440 | version "2.3.0" 1441 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 1442 | dependencies: 1443 | is-promise "^2.1.0" 1444 | 1445 | rx@^4.1.0: 1446 | version "4.1.0" 1447 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 1448 | 1449 | "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.3.0: 1450 | version "5.3.0" 1451 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 1452 | 1453 | signal-exit@^3.0.0: 1454 | version "3.0.2" 1455 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1456 | 1457 | simple-get@^1.4.2: 1458 | version "1.4.3" 1459 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-1.4.3.tgz#e9755eda407e96da40c5e5158c9ea37b33becbeb" 1460 | dependencies: 1461 | once "^1.3.1" 1462 | unzip-response "^1.0.0" 1463 | xtend "^4.0.0" 1464 | 1465 | simple-mime@~0.1.0: 1466 | version "0.1.0" 1467 | resolved "https://registry.yarnpkg.com/simple-mime/-/simple-mime-0.1.0.tgz#95f517c4f466d7cff561a71fc9dab2596ea9ef2e" 1468 | 1469 | single-line-log@^1.1.2: 1470 | version "1.1.2" 1471 | resolved "https://registry.yarnpkg.com/single-line-log/-/single-line-log-1.1.2.tgz#c2f83f273a3e1a16edb0995661da0ed5ef033364" 1472 | dependencies: 1473 | string-width "^1.0.1" 1474 | 1475 | sntp@1.x.x: 1476 | version "1.0.9" 1477 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1478 | dependencies: 1479 | hoek "2.x.x" 1480 | 1481 | source-map-resolve@^0.3.0: 1482 | version "0.3.1" 1483 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.3.1.tgz#610f6122a445b8dd51535a2a71b783dfc1248761" 1484 | dependencies: 1485 | atob "~1.1.0" 1486 | resolve-url "~0.2.1" 1487 | source-map-url "~0.3.0" 1488 | urix "~0.1.0" 1489 | 1490 | source-map-url@~0.3.0: 1491 | version "0.3.0" 1492 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9" 1493 | 1494 | source-map@^0.1.38: 1495 | version "0.1.43" 1496 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 1497 | dependencies: 1498 | amdefine ">=0.0.4" 1499 | 1500 | spawn-sync@^1.0.15: 1501 | version "1.0.15" 1502 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 1503 | dependencies: 1504 | concat-stream "^1.4.7" 1505 | os-shim "^0.1.2" 1506 | 1507 | spdx-correct@~1.0.0: 1508 | version "1.0.2" 1509 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 1510 | dependencies: 1511 | spdx-license-ids "^1.0.2" 1512 | 1513 | spdx-expression-parse@~1.0.0: 1514 | version "1.0.4" 1515 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 1516 | 1517 | spdx-license-ids@^1.0.2: 1518 | version "1.2.2" 1519 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 1520 | 1521 | spectron@^3.3.0: 1522 | version "3.4.1" 1523 | resolved "https://registry.yarnpkg.com/spectron/-/spectron-3.4.1.tgz#b4cee4ee9e858dd49c96bf4d2fb1ff94a99b53fa" 1524 | dependencies: 1525 | dev-null "^0.1.1" 1526 | electron-chromedriver "~1.4.0" 1527 | request "^2.65.0" 1528 | split "^1.0.0" 1529 | webdriverio "^4.0.4" 1530 | 1531 | speedometer@~0.1.2: 1532 | version "0.1.4" 1533 | resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-0.1.4.tgz#9876dbd2a169d3115402d48e6ea6329c8816a50d" 1534 | 1535 | split@^1.0.0: 1536 | version "1.0.0" 1537 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae" 1538 | dependencies: 1539 | through "2" 1540 | 1541 | sshpk@^1.7.0: 1542 | version "1.10.1" 1543 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 1544 | dependencies: 1545 | asn1 "~0.2.3" 1546 | assert-plus "^1.0.0" 1547 | dashdash "^1.12.0" 1548 | getpass "^0.1.1" 1549 | optionalDependencies: 1550 | bcrypt-pbkdf "^1.0.0" 1551 | ecc-jsbn "~0.1.1" 1552 | jodid25519 "^1.0.0" 1553 | jsbn "~0.1.0" 1554 | tweetnacl "~0.14.0" 1555 | 1556 | string-width@^1.0.1: 1557 | version "1.0.2" 1558 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1559 | dependencies: 1560 | code-point-at "^1.0.0" 1561 | is-fullwidth-code-point "^1.0.0" 1562 | strip-ansi "^3.0.0" 1563 | 1564 | string_decoder@~0.10.x: 1565 | version "0.10.31" 1566 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 1567 | 1568 | stringstream@~0.0.4: 1569 | version "0.0.5" 1570 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1571 | 1572 | strip-ansi@^3.0.0: 1573 | version "3.0.1" 1574 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1575 | dependencies: 1576 | ansi-regex "^2.0.0" 1577 | 1578 | strip-bom@^2.0.0: 1579 | version "2.0.0" 1580 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 1581 | dependencies: 1582 | is-utf8 "^0.2.0" 1583 | 1584 | strip-indent@^1.0.1: 1585 | version "1.0.1" 1586 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 1587 | dependencies: 1588 | get-stdin "^4.0.1" 1589 | 1590 | strip-json-comments@~1.0.4: 1591 | version "1.0.4" 1592 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 1593 | 1594 | sumchecker@^1.2.0: 1595 | version "1.3.0" 1596 | resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-1.3.0.tgz#6e3004d7bf3b5ad5567abf13a828946d8a19911b" 1597 | dependencies: 1598 | debug "^2.2.0" 1599 | es6-promise "^4.0.5" 1600 | 1601 | supports-color@3.1.2, supports-color@^3.1.2: 1602 | version "3.1.2" 1603 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 1604 | dependencies: 1605 | has-flag "^1.0.0" 1606 | 1607 | supports-color@^2.0.0: 1608 | version "2.0.0" 1609 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1610 | 1611 | tar-fs@^1.7.0: 1612 | version "1.15.0" 1613 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.15.0.tgz#74c97dc773737c2aeacbfff246c654d6528a5315" 1614 | dependencies: 1615 | mkdirp "^0.5.0" 1616 | pump "^1.0.0" 1617 | tar-stream "^1.1.2" 1618 | 1619 | tar-stream@^1.1.2, tar-stream@^1.2.1, tar-stream@^1.5.0: 1620 | version "1.5.2" 1621 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.5.2.tgz#fbc6c6e83c1a19d4cb48c7d96171fc248effc7bf" 1622 | dependencies: 1623 | bl "^1.0.0" 1624 | end-of-stream "^1.0.0" 1625 | readable-stream "^2.0.0" 1626 | xtend "^4.0.0" 1627 | 1628 | tar@^2.0.0: 1629 | version "2.2.1" 1630 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1631 | dependencies: 1632 | block-stream "*" 1633 | fstream "^1.0.2" 1634 | inherits "2" 1635 | 1636 | throttleit@0.0.2: 1637 | version "0.0.2" 1638 | resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" 1639 | 1640 | through2@~0.2.3: 1641 | version "0.2.3" 1642 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f" 1643 | dependencies: 1644 | readable-stream "~1.1.9" 1645 | xtend "~2.1.1" 1646 | 1647 | through2@~0.6.3: 1648 | version "0.6.5" 1649 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 1650 | dependencies: 1651 | readable-stream ">=1.0.33-1 <1.1.0-0" 1652 | xtend ">=4.0.0 <4.1.0-0" 1653 | 1654 | through@2, through@^2.3.6: 1655 | version "2.3.8" 1656 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1657 | 1658 | tmp@^0.0.29: 1659 | version "0.0.29" 1660 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" 1661 | dependencies: 1662 | os-tmpdir "~1.0.1" 1663 | 1664 | tough-cookie@~2.3.0: 1665 | version "2.3.2" 1666 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 1667 | dependencies: 1668 | punycode "^1.4.1" 1669 | 1670 | trim-newlines@^1.0.0: 1671 | version "1.0.0" 1672 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 1673 | 1674 | tunnel-agent@~0.4.1: 1675 | version "0.4.3" 1676 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 1677 | 1678 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1679 | version "0.14.5" 1680 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1681 | 1682 | type-detect@0.1.1: 1683 | version "0.1.1" 1684 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 1685 | 1686 | type-detect@^1.0.0: 1687 | version "1.0.0" 1688 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 1689 | 1690 | typedarray@~0.0.5: 1691 | version "0.0.6" 1692 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1693 | 1694 | unzip-response@^1.0.0: 1695 | version "1.0.2" 1696 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 1697 | 1698 | urix@^0.1.0, urix@~0.1.0: 1699 | version "0.1.0" 1700 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 1701 | 1702 | url-template@~2.0.6: 1703 | version "2.0.8" 1704 | resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" 1705 | 1706 | url@^0.11.0: 1707 | version "0.11.0" 1708 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 1709 | dependencies: 1710 | punycode "1.3.2" 1711 | querystring "0.2.0" 1712 | 1713 | util-deprecate@~1.0.1: 1714 | version "1.0.2" 1715 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1716 | 1717 | util-extend@^1.0.1: 1718 | version "1.0.3" 1719 | resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" 1720 | 1721 | uuid@^3.0.0: 1722 | version "3.0.1" 1723 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 1724 | 1725 | validate-npm-package-license@^3.0.1: 1726 | version "3.0.1" 1727 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 1728 | dependencies: 1729 | spdx-correct "~1.0.0" 1730 | spdx-expression-parse "~1.0.0" 1731 | 1732 | validator@^5.4.0: 1733 | version "5.7.0" 1734 | resolved "https://registry.yarnpkg.com/validator/-/validator-5.7.0.tgz#7a87a58146b695ac486071141c0c49d67da05e5c" 1735 | 1736 | verror@1.3.6: 1737 | version "1.3.6" 1738 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 1739 | dependencies: 1740 | extsprintf "1.0.2" 1741 | 1742 | wdio-dot-reporter@^0.0.6: 1743 | version "0.0.6" 1744 | resolved "https://registry.yarnpkg.com/wdio-dot-reporter/-/wdio-dot-reporter-0.0.6.tgz#153b3e1c5d76777190d893480ffa6f37833740f1" 1745 | dependencies: 1746 | babel-runtime "^5.8.25" 1747 | 1748 | webdriverio@^4.0.4: 1749 | version "4.5.2" 1750 | resolved "https://registry.yarnpkg.com/webdriverio/-/webdriverio-4.5.2.tgz#9321c099d2182074f3ff5984156633446a22406d" 1751 | dependencies: 1752 | archiver "1.0.0" 1753 | babel-runtime "^6.9.2" 1754 | css-parse "~2.0.0" 1755 | css-value "~0.0.1" 1756 | deepmerge "^0.2.10" 1757 | ejs "^2.3.1" 1758 | glob "^7.0.5" 1759 | inquirer "^1.1.2" 1760 | json-stringify-safe "^5.0.1" 1761 | mkdirp "^0.5.1" 1762 | npm-install-package "^1.0.2" 1763 | optimist "^0.6.1" 1764 | q "~1.4.1" 1765 | request "2.74.0" 1766 | rgb2hex "~0.1.0" 1767 | supports-color "^3.1.2" 1768 | url "^0.11.0" 1769 | validator "^5.4.0" 1770 | wdio-dot-reporter "^0.0.6" 1771 | wgxpath "~1.0.0" 1772 | 1773 | wgxpath@~1.0.0: 1774 | version "1.0.0" 1775 | resolved "https://registry.yarnpkg.com/wgxpath/-/wgxpath-1.0.0.tgz#eef8a4b9d558cc495ad3a9a2b751597ecd9af690" 1776 | 1777 | which@1: 1778 | version "1.2.12" 1779 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 1780 | dependencies: 1781 | isexe "^1.1.1" 1782 | 1783 | wordwrap@~0.0.2: 1784 | version "0.0.3" 1785 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 1786 | 1787 | wrappy@1: 1788 | version "1.0.2" 1789 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1790 | 1791 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0, xtend@~4.0.1: 1792 | version "4.0.1" 1793 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1794 | 1795 | xtend@~2.1.1: 1796 | version "2.1.2" 1797 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" 1798 | dependencies: 1799 | object-keys "~0.4.0" 1800 | 1801 | yauzl@2.4.1: 1802 | version "2.4.1" 1803 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" 1804 | dependencies: 1805 | fd-slicer "~1.0.1" 1806 | 1807 | zip-stream@^1.0.0: 1808 | version "1.1.0" 1809 | resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-1.1.0.tgz#2ad479fffc168e05a888e8c348ff6813b3f13733" 1810 | dependencies: 1811 | archiver-utils "^1.3.0" 1812 | compress-commons "^1.1.0" 1813 | lodash "^4.8.0" 1814 | readable-stream "^2.0.0" 1815 | --------------------------------------------------------------------------------