├── .npmignore ├── .babelrc ├── .gitignore ├── .travis.yml ├── .github └── workflows │ └── actions.yml ├── License.md ├── package.json ├── Readme.md ├── src └── index.js ├── test └── index.js └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | lib 3 | node_modules 4 | npm-debug.log 5 | tmp 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | 2 | language: node_js 3 | node_js: 4 | - stable 5 | cache: 6 | yarn: true 7 | -------------------------------------------------------------------------------- /.github/workflows/actions.yml: -------------------------------------------------------------------------------- 1 | name: actions 2 | on: [push, pull_request] 3 | jobs: 4 | ci: 5 | runs-on: ubuntu-latest 6 | steps: 7 | - uses: actions/checkout@v1 8 | - uses: actions/setup-node@v1 9 | - run: yarn && yarn build && yarn test 10 | env: 11 | CI: true 12 | -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright © 2017, [Ian Storm Taylor](https://ianstormtaylor.com) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "is-hotkey", 3 | "description": "Check whether a browser event matches a hotkey.", 4 | "version": "0.2.0", 5 | "license": "MIT", 6 | "repository": "git://github.com/ianstormtaylor/is-hotkey.git", 7 | "main": "./lib/index.js", 8 | "scripts": { 9 | "build": "babel ./src --out-dir ./lib", 10 | "build:umd": "babel --plugins transform-es2015-modules-umd ./src -o ./lib/is-hotkey.umd.js", 11 | "clean": "rm -rf ./lib ./node_modules", 12 | "prepublish": "yarn run build && yarn run build:umd", 13 | "release": "np", 14 | "test": "yarn run build && mocha", 15 | "watch": "babel ./lib --out-dir ./lib --watch" 16 | }, 17 | "devDependencies": { 18 | "babel-cli": "^6.10.1", 19 | "babel-plugin-transform-es2015-modules-umd": "^6.24.1", 20 | "babel-preset-env": "^1.6.1", 21 | "mocha": "^3.2.0" 22 | }, 23 | "keywords": [ 24 | "code", 25 | "combo", 26 | "event", 27 | "hotkey", 28 | "key", 29 | "keycode", 30 | "keycodes", 31 | "keycombo", 32 | "keydown", 33 | "keyup", 34 | "mousetrap", 35 | "shortcut", 36 | "which" 37 | ] 38 | } 39 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | 2 | ### `is-hotkey` 3 | 4 | A simple way to check whether a browser event matches a hotkey. 5 | 6 |
7 | 8 | ### Features 9 | 10 | - Uses a simple, natural syntax for expressing hotkeys—`mod+s`, `cmd+alt+space`, etc. 11 | - Accepts `mod` for the classic "`cmd` on Mac, `ctrl` on Windows" use case. 12 | - Can use either `event.which` (default) or `event.key` to work regardless of keyboard layout. 13 | - Can be curried to reduce parsing and increase performance when needed. 14 | - Is very lightweight, weighing in at `< 1kb` minified and gzipped. 15 | 16 |
17 | 18 | ### Example 19 | 20 | The most basic usage... 21 | 22 | ```js 23 | import isHotkey from 'is-hotkey' 24 | 25 | function onKeyDown(e) { 26 | if (isHotkey('mod+s', e)) { 27 | ... 28 | } 29 | } 30 | ``` 31 | 32 | Or, you can curry the hotkey string for better performance, since it is only parsed once... 33 | 34 | ```js 35 | import isHotkey from 'is-hotkey' 36 | 37 | const isSaveHotkey = isHotkey('mod+s') 38 | 39 | function onKeyDown(e) { 40 | if (isSaveHotkey(e)) { 41 | ... 42 | } 43 | } 44 | ``` 45 | 46 | For multiple keys, you can pass an array instead: 47 | 48 | ```js 49 | 50 | import isHotkey from 'is-hotkey' 51 | 52 | function onKeyDown(e) { 53 | if (isHotkey(['delete', 'backspace'], e)) { 54 | ... 55 | } 56 | } 57 | ``` 58 | 59 | You can also use optional modifiers by adding `?` at the end of them. 60 | For instance, here `isHotKey` will return `true` for both: `mod+shift+left` and `shift+left`: 61 | 62 | ```js 63 | 64 | import isHotkey from 'is-hotkey' 65 | 66 | function onKeyDown(e) { 67 | if (isHotkey('mod?+shift+left', e)) { 68 | ... 69 | } 70 | } 71 | ``` 72 | 73 | That's it! 74 | 75 |
76 | 77 | ### Why? 78 | 79 | There are tons of hotkey libraries, but they're often coupled to the view layer, or they bind events globally, or all kinds of weird things. You don't really want them to bind the events for you, you can do that yourself. 80 | 81 | Instead, you want to just check whether a single event matches a hotkey. And you want to define your hotkeys in the standard-but-non-trivial-to-parse syntax that everyone knows. 82 | 83 | But most libraries don't expose their parsing logic. And even for the ones that do expose their hotkey parsing logic, pulling in an entire library just to check a hotkey string is overkill. 84 | 85 | So... this is a simple and lightweight hotkey checker! 86 | 87 |
88 | 89 | ### API 90 | 91 | ```js 92 | import isHotkey from 'is-hotkey' 93 | 94 | isHotkey('mod+s')(event) 95 | isHotkey('mod+s', { byKey: true })(event) 96 | 97 | isHotkey('mod+s', event) 98 | isHotkey('mod+s', { byKey: true }, event) 99 | ``` 100 | 101 | You can either pass `hotkey, [options], event` in which case the hotkey will be parsed and compared immediately. Or you can passed just `hotkey, [options]` to receive a curried checking function that you can re-use for multiple events. 102 | 103 | ```js 104 | isHotkey('mod+a') 105 | isHotkey('Control+S') 106 | isHotkey('cmd+opt+d') 107 | isHotkey('Meta+ArrowDown') 108 | isHotkey('cmd+down') 109 | ``` 110 | 111 | The API is case-insensitive, and has all of the conveniences you'd expect—`cmd` vs. `Meta`, `opt` vs. `Alt`, `down` vs. `ArrowDown`, etc. 112 | 113 | It also accepts `mod` for the classic "`cmd` on Mac, `ctrl` on Windows" use case. 114 | 115 | ```js 116 | import isHotkey from 'is-hotkey' 117 | import { isCodeHotkey, isKeyHotkey } from 'is-hotkey' 118 | 119 | isHotkey('mod+s')(event) 120 | isHotkey('mod+s', { byKey: true })(event) 121 | 122 | isCodeHotkey('mod+s', event) 123 | isKeyHotkey('mod+s', event) 124 | ``` 125 | 126 | By default the hotkey string is checked using `event.which`. But you can also pass in `byKey: true` to compare using the [`KeyboardEvent.key`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key) API, which stays the same regardless of keyboard layout. 127 | 128 | Or to reduce the noise if you are defining lots of hotkeys, you can use the `isCodeHotkey` and `isKeyHotkey` helpers that are exported. 129 | 130 | ```js 131 | import { toKeyName, toKeyCode } from 'is-hotkey' 132 | 133 | toKeyName('cmd') // "meta" 134 | toKeyName('a') // "a" 135 | 136 | toKeyCode('shift') // 16 137 | toKeyCode('a') // 65 138 | ``` 139 | 140 | You can also use the exposed `toKeyName` and `toKeyCode` helpers, in case you want to add the same level of convenience to your own APIs. 141 | 142 | ```js 143 | import { parseHotkey, compareHotkey } from 'is-hotkey' 144 | 145 | const hotkey = parseHotkey('mod+s', { byKey: true }) 146 | const passes = compareHotkey(hotkey, event) 147 | ``` 148 | 149 | You can also go even more low-level with the exposed `parseHotkey` and `compareHotkey` functions, which are what the default `isHotkey` export uses under the covers, in case you have more advanced needs. 150 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Constants. 4 | */ 5 | 6 | const IS_MAC = ( 7 | typeof window != 'undefined' && 8 | /Mac|iPod|iPhone|iPad/.test(window.navigator.platform) 9 | ) 10 | 11 | const MODIFIERS = { 12 | alt: 'altKey', 13 | control: 'ctrlKey', 14 | meta: 'metaKey', 15 | shift: 'shiftKey', 16 | } 17 | 18 | const ALIASES = { 19 | add: '+', 20 | break: 'pause', 21 | cmd: 'meta', 22 | command: 'meta', 23 | ctl: 'control', 24 | ctrl: 'control', 25 | del: 'delete', 26 | down: 'arrowdown', 27 | esc: 'escape', 28 | ins: 'insert', 29 | left: 'arrowleft', 30 | mod: IS_MAC ? 'meta' : 'control', 31 | opt: 'alt', 32 | option: 'alt', 33 | return: 'enter', 34 | right: 'arrowright', 35 | space: ' ', 36 | spacebar: ' ', 37 | up: 'arrowup', 38 | win: 'meta', 39 | windows: 'meta', 40 | } 41 | 42 | const CODES = { 43 | backspace: 8, 44 | tab: 9, 45 | enter: 13, 46 | shift: 16, 47 | control: 17, 48 | alt: 18, 49 | pause: 19, 50 | capslock: 20, 51 | escape: 27, 52 | ' ': 32, 53 | pageup: 33, 54 | pagedown: 34, 55 | end: 35, 56 | home: 36, 57 | arrowleft: 37, 58 | arrowup: 38, 59 | arrowright: 39, 60 | arrowdown: 40, 61 | insert: 45, 62 | delete: 46, 63 | meta: 91, 64 | numlock: 144, 65 | scrolllock: 145, 66 | ';': 186, 67 | '=': 187, 68 | ',': 188, 69 | '-': 189, 70 | '.': 190, 71 | '/': 191, 72 | '`': 192, 73 | '[': 219, 74 | '\\': 220, 75 | ']': 221, 76 | '\'': 222, 77 | } 78 | 79 | for (var f = 1; f < 20; f++) { 80 | CODES['f' + f] = 111 + f 81 | } 82 | 83 | /** 84 | * Is hotkey? 85 | */ 86 | 87 | function isHotkey(hotkey, options, event) { 88 | if (options && !('byKey' in options)) { 89 | event = options 90 | options = null 91 | } 92 | 93 | if (!Array.isArray(hotkey)) { 94 | hotkey = [hotkey] 95 | } 96 | 97 | const array = hotkey.map(string => parseHotkey(string, options)) 98 | const check = e => array.some(object => compareHotkey(object, e)) 99 | const ret = event == null ? check : check(event) 100 | return ret 101 | } 102 | 103 | function isCodeHotkey(hotkey, event) { 104 | return isHotkey(hotkey, event) 105 | } 106 | 107 | function isKeyHotkey(hotkey, event) { 108 | return isHotkey(hotkey, { byKey: true }, event) 109 | } 110 | 111 | /** 112 | * Parse. 113 | */ 114 | 115 | function parseHotkey(hotkey, options) { 116 | const byKey = options && options.byKey 117 | const ret = {} 118 | 119 | // Special case to handle the `+` key since we use it as a separator. 120 | hotkey = hotkey.replace('++', '+add') 121 | const values = hotkey.split('+') 122 | const { length } = values 123 | 124 | // Ensure that all the modifiers are set to false unless the hotkey has them. 125 | for (const k in MODIFIERS) { 126 | ret[MODIFIERS[k]] = false 127 | } 128 | 129 | for (let value of values) { 130 | const optional = value.endsWith('?') && value.length > 1; 131 | 132 | if (optional) { 133 | value = value.slice(0, -1) 134 | } 135 | 136 | const name = toKeyName(value) 137 | const modifier = MODIFIERS[name] 138 | 139 | if (value.length > 1 && !modifier && !ALIASES[value] && !CODES[name]) { 140 | throw new TypeError(`Unknown modifier: "${value}"`) 141 | } 142 | 143 | if (length === 1 || !modifier) { 144 | if (byKey) { 145 | ret.key = name 146 | } else { 147 | ret.which = toKeyCode(value) 148 | } 149 | } 150 | 151 | if (modifier) { 152 | ret[modifier] = optional ? null : true 153 | } 154 | } 155 | 156 | return ret 157 | } 158 | 159 | /** 160 | * Compare. 161 | */ 162 | 163 | function compareHotkey(object, event) { 164 | for (const key in object) { 165 | const expected = object[key] 166 | let actual 167 | 168 | if (expected == null) { 169 | continue 170 | } 171 | 172 | if (key === 'key' && event.key != null) { 173 | actual = event.key.toLowerCase() 174 | } else if (key === 'which') { 175 | actual = expected === 91 && event.which === 93 ? 91 : event.which 176 | } else { 177 | actual = event[key] 178 | } 179 | 180 | if (actual == null && expected === false) { 181 | continue 182 | } 183 | 184 | if (actual !== expected) { 185 | return false 186 | } 187 | } 188 | 189 | return true 190 | } 191 | 192 | /** 193 | * Utils. 194 | */ 195 | 196 | function toKeyCode(name) { 197 | name = toKeyName(name) 198 | const code = CODES[name] || name.toUpperCase().charCodeAt(0) 199 | return code 200 | } 201 | 202 | function toKeyName(name) { 203 | name = name.toLowerCase() 204 | name = ALIASES[name] || name 205 | return name 206 | } 207 | 208 | /** 209 | * Export. 210 | */ 211 | 212 | export default isHotkey 213 | 214 | export { 215 | isHotkey, 216 | isCodeHotkey, 217 | isKeyHotkey, 218 | parseHotkey, 219 | compareHotkey, 220 | toKeyCode, 221 | toKeyName, 222 | } 223 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | 2 | const isHotkey = require('..').default 3 | const assert = require('assert') 4 | 5 | /** 6 | * Utils 7 | */ 8 | 9 | function e(value, ...modifiers) { 10 | return { 11 | which: typeof value == 'number' ? value : null, 12 | key: typeof value == 'string' ? value : null, 13 | altKey: modifiers.includes('alt'), 14 | ctrlKey: modifiers.includes('ctrl'), 15 | metaKey: modifiers.includes('meta'), 16 | shiftKey: modifiers.includes('shift'), 17 | } 18 | } 19 | 20 | /** 21 | * Tests. 22 | */ 23 | 24 | describe('is-hotkey', () => { 25 | 26 | describe('byCode', () => { 27 | it('matches one modifier', () => { 28 | const event = e(83, 'meta') 29 | const value = isHotkey('Meta+S', event) 30 | assert.equal(value, true) 31 | }) 32 | 33 | it('matches two modifiers', () => { 34 | const event = e(83, 'alt', 'meta') 35 | const value = isHotkey('Meta+Alt+s', event) 36 | assert.equal(value, true) 37 | }) 38 | 39 | it('matches lowercase', () => { 40 | const event = e(83, 'meta') 41 | const value = isHotkey('meta+s', event) 42 | assert.equal(value, true) 43 | }) 44 | 45 | it('matches modifier convenience aliases', () => { 46 | const event = e(83, 'meta') 47 | const value = isHotkey('cmd+s', event) 48 | assert.equal(value, true) 49 | }) 50 | 51 | it('matches key convenience aliases', () => { 52 | const event = e(32, 'meta') 53 | const value = isHotkey('cmd+space', event) 54 | assert.equal(value, true) 55 | }) 56 | 57 | it('matches "add" key', () => { 58 | const event = e(187, 'meta') 59 | const value = isHotkey('cmd+=', event) 60 | assert.equal(value, true) 61 | }) 62 | 63 | it('matches "mod" key', () => { 64 | const event = e(83, 'ctrl') 65 | const value = isHotkey('mod+s', event) 66 | assert.equal(value, true) 67 | }) 68 | 69 | it('matches individual modifiers', () => { 70 | const event = e(16, 'shift') 71 | const value = isHotkey('shift', event) 72 | assert.equal(value, true) 73 | }) 74 | 75 | it('matches right meta key', () => { 76 | const event = e(93, 'meta') 77 | const value = isHotkey('meta', event) 78 | assert.equal(value, true) 79 | }) 80 | 81 | it('matches individual keys', () => { 82 | const event = e(65) 83 | const value = isHotkey('a', event) 84 | assert.equal(value, true) 85 | }) 86 | 87 | it('does not match extra modifiers', () => { 88 | const event = e(83, 'alt', 'meta') 89 | const value = isHotkey('cmd+s', event) 90 | assert.equal(value, false) 91 | }) 92 | 93 | it('does not match extra modifiers with individual keys', () => { 94 | const event = e('a', 'ctrl') 95 | const value = isHotkey('a', event) 96 | assert.equal(value, false) 97 | }) 98 | 99 | it('matches optional modifiers', () => { 100 | const event = e(83, 'alt', 'meta') 101 | const value = isHotkey('cmd+alt?+s', event) 102 | assert.equal(value, true) 103 | }) 104 | 105 | it('matches missing optional modifiers', () => { 106 | const event = e(83, 'meta') 107 | const value = isHotkey('cmd+alt?+s', event) 108 | assert.equal(value, true) 109 | }) 110 | 111 | it("matches question mark key", () => { 112 | const event = e("?"); 113 | const value = isHotkey("?", { byKey: true }, event); 114 | assert.equal(value, true); 115 | }); 116 | 117 | it('can be curried', () => { 118 | const event = e(83, 'meta') 119 | const curried = isHotkey('cmd+s') 120 | const value = curried(event) 121 | assert.equal(value, true) 122 | }) 123 | 124 | it('matches mocked event', () => { 125 | const event = { which: 13 } 126 | const value = isHotkey('enter', event) 127 | assert.equal(value, true) 128 | }) 129 | 130 | it('matches multiple hotkeys', () => { 131 | const check = isHotkey(['meta+a', 'meta+s']) 132 | const a = check(e(65, 'meta')) 133 | const s = check(e(83, 'meta')) 134 | assert.equal(a, true) 135 | assert.equal(s, true) 136 | }) 137 | 138 | it('fails on non-modifier keys', () => { 139 | assert.throws( 140 | () => { 141 | isHotkey('ctrlalt+k') 142 | }, 143 | (err) => err instanceof TypeError && err.message === 'Unknown modifier: "ctrlalt"' 144 | ) 145 | }) 146 | }) 147 | 148 | describe('byKey', () => { 149 | it('matches one modifier', () => { 150 | const event = e('s', 'meta') 151 | const value = isHotkey('Meta+S', { byKey: true }, event) 152 | assert.equal(value, true) 153 | }) 154 | 155 | it('matches two modifiers', () => { 156 | const event = e('ß', 'alt', 'meta') 157 | const value = isHotkey('Meta+Alt+ß', { byKey: true }, event) 158 | assert.equal(value, true) 159 | }) 160 | 161 | it('matches lowercase', () => { 162 | const event = e('s', 'meta') 163 | const value = isHotkey('meta+s', { byKey: true }, event) 164 | assert.equal(value, true) 165 | }) 166 | 167 | it('matches modifier convenience aliases', () => { 168 | const event = e('s', 'meta') 169 | const value = isHotkey('cmd+s', { byKey: true }, event) 170 | assert.equal(value, true) 171 | }) 172 | 173 | it('matches key convenience aliases', () => { 174 | const event = e(' ', 'meta') 175 | const value = isHotkey('cmd+space', { byKey: true }, event) 176 | assert.equal(value, true) 177 | }) 178 | 179 | it('matches "add" key', () => { 180 | const event = e('+', 'meta') 181 | const value = isHotkey('cmd++', { byKey: true }, event) 182 | assert.equal(value, true) 183 | }) 184 | 185 | it('matches "mod" key', () => { 186 | const event = e('s', 'ctrl') 187 | const value = isHotkey('mod+s', { byKey: true }, event) 188 | assert.equal(value, true) 189 | }) 190 | 191 | it('matches individual modifiers', () => { 192 | const event = e('Shift', 'shift') 193 | const value = isHotkey('shift', { byKey: true }, event) 194 | assert.equal(value, true) 195 | }) 196 | 197 | it('matches individual keys', () => { 198 | const event = e('a') 199 | const value = isHotkey('a', { byKey: true }, event) 200 | assert.equal(value, true) 201 | }) 202 | 203 | it('does not match extra modifiers', () => { 204 | const event = e('s', 'alt', 'meta') 205 | const value = isHotkey('cmd+s', { byKey: true }, event) 206 | assert.equal(value, false) 207 | }) 208 | 209 | it('does not match extra modifiers with individual keys', () => { 210 | const event = e('a', 'ctrl') 211 | const value = isHotkey('a', { byKey: true }, event) 212 | assert.equal(value, false) 213 | }) 214 | 215 | it('matches optional modifiers', () => { 216 | const event = e('s', 'alt', 'meta') 217 | const value = isHotkey('cmd+alt?+s', { byKey: true }, event) 218 | assert.equal(value, true) 219 | }) 220 | 221 | it('matches missing optional modifiers', () => { 222 | const event = e('s', 'meta') 223 | const value = isHotkey('cmd+alt?+s', { byKey: true }, event) 224 | assert.equal(value, true) 225 | }) 226 | 227 | it('can be curried', () => { 228 | const event = e('s', 'meta') 229 | const curried = isHotkey('cmd+s', { byKey: true }) 230 | const value = curried(event) 231 | assert.equal(value, true) 232 | }) 233 | 234 | it('matches mocked event', () => { 235 | const event = { key: 'Enter' } 236 | const value = isHotkey('enter', { byKey: true }, event) 237 | assert.equal(value, true) 238 | }) 239 | 240 | it('matches multiple hotkeys', () => { 241 | const check = isHotkey(['meta+a', 'meta+s'], { byKey: true }) 242 | const a = check(e('a', 'meta')) 243 | const s = check(e('s', 'meta')) 244 | assert.equal(a, true) 245 | assert.equal(s, true) 246 | }) 247 | 248 | it('fails on non-modifier keys', () => { 249 | const event = e('k', 'ctrl', 'alt') 250 | assert.throws( 251 | () => { 252 | isHotkey('ctrlalt+k', { byKey: true }, event) 253 | }, 254 | (err) => err instanceof TypeError && err.message === 'Unknown modifier: "ctrlalt"' 255 | ) 256 | }) 257 | }) 258 | 259 | }) 260 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | ajv@^4.9.1: 10 | version "4.11.8" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ansi-regex@^2.0.0: 17 | version "2.1.1" 18 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 19 | 20 | ansi-styles@^2.2.1: 21 | version "2.2.1" 22 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 23 | 24 | anymatch@^1.3.0: 25 | version "1.3.2" 26 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 27 | dependencies: 28 | micromatch "^2.1.5" 29 | normalize-path "^2.0.0" 30 | 31 | aproba@^1.0.3: 32 | version "1.2.0" 33 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 34 | 35 | are-we-there-yet@~1.1.2: 36 | version "1.1.4" 37 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 38 | dependencies: 39 | delegates "^1.0.0" 40 | readable-stream "^2.0.6" 41 | 42 | arr-diff@^2.0.0: 43 | version "2.0.0" 44 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 45 | dependencies: 46 | arr-flatten "^1.0.1" 47 | 48 | arr-flatten@^1.0.1: 49 | version "1.1.0" 50 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 51 | 52 | array-unique@^0.2.1: 53 | version "0.2.1" 54 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 55 | 56 | asn1@~0.2.3: 57 | version "0.2.4" 58 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 59 | dependencies: 60 | safer-buffer "~2.1.0" 61 | 62 | assert-plus@1.0.0, assert-plus@^1.0.0: 63 | version "1.0.0" 64 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 65 | 66 | assert-plus@^0.2.0: 67 | version "0.2.0" 68 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 69 | 70 | async-each@^1.0.0: 71 | version "1.0.1" 72 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 73 | 74 | asynckit@^0.4.0: 75 | version "0.4.0" 76 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 77 | 78 | aws-sign2@~0.6.0: 79 | version "0.6.0" 80 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 81 | 82 | aws4@^1.2.1: 83 | version "1.6.0" 84 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 85 | 86 | babel-cli@^6.10.1: 87 | version "6.26.0" 88 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 89 | dependencies: 90 | babel-core "^6.26.0" 91 | babel-polyfill "^6.26.0" 92 | babel-register "^6.26.0" 93 | babel-runtime "^6.26.0" 94 | commander "^2.11.0" 95 | convert-source-map "^1.5.0" 96 | fs-readdir-recursive "^1.0.0" 97 | glob "^7.1.2" 98 | lodash "^4.17.4" 99 | output-file-sync "^1.1.2" 100 | path-is-absolute "^1.0.1" 101 | slash "^1.0.0" 102 | source-map "^0.5.6" 103 | v8flags "^2.1.1" 104 | optionalDependencies: 105 | chokidar "^1.6.1" 106 | 107 | babel-code-frame@^6.22.0: 108 | version "6.22.0" 109 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 110 | dependencies: 111 | chalk "^1.1.0" 112 | esutils "^2.0.2" 113 | js-tokens "^3.0.0" 114 | 115 | babel-code-frame@^6.26.0: 116 | version "6.26.0" 117 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 118 | dependencies: 119 | chalk "^1.1.3" 120 | esutils "^2.0.2" 121 | js-tokens "^3.0.2" 122 | 123 | babel-core@^6.26.0: 124 | version "6.26.0" 125 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 126 | dependencies: 127 | babel-code-frame "^6.26.0" 128 | babel-generator "^6.26.0" 129 | babel-helpers "^6.24.1" 130 | babel-messages "^6.23.0" 131 | babel-register "^6.26.0" 132 | babel-runtime "^6.26.0" 133 | babel-template "^6.26.0" 134 | babel-traverse "^6.26.0" 135 | babel-types "^6.26.0" 136 | babylon "^6.18.0" 137 | convert-source-map "^1.5.0" 138 | debug "^2.6.8" 139 | json5 "^0.5.1" 140 | lodash "^4.17.4" 141 | minimatch "^3.0.4" 142 | path-is-absolute "^1.0.1" 143 | private "^0.1.7" 144 | slash "^1.0.0" 145 | source-map "^0.5.6" 146 | 147 | babel-generator@^6.26.0: 148 | version "6.26.0" 149 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 150 | dependencies: 151 | babel-messages "^6.23.0" 152 | babel-runtime "^6.26.0" 153 | babel-types "^6.26.0" 154 | detect-indent "^4.0.0" 155 | jsesc "^1.3.0" 156 | lodash "^4.17.4" 157 | source-map "^0.5.6" 158 | trim-right "^1.0.1" 159 | 160 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 161 | version "6.24.1" 162 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 163 | dependencies: 164 | babel-helper-explode-assignable-expression "^6.24.1" 165 | babel-runtime "^6.22.0" 166 | babel-types "^6.24.1" 167 | 168 | babel-helper-call-delegate@^6.24.1: 169 | version "6.24.1" 170 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 171 | dependencies: 172 | babel-helper-hoist-variables "^6.24.1" 173 | babel-runtime "^6.22.0" 174 | babel-traverse "^6.24.1" 175 | babel-types "^6.24.1" 176 | 177 | babel-helper-define-map@^6.24.1: 178 | version "6.24.1" 179 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 180 | dependencies: 181 | babel-helper-function-name "^6.24.1" 182 | babel-runtime "^6.22.0" 183 | babel-types "^6.24.1" 184 | lodash "^4.2.0" 185 | 186 | babel-helper-explode-assignable-expression@^6.24.1: 187 | version "6.24.1" 188 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 189 | dependencies: 190 | babel-runtime "^6.22.0" 191 | babel-traverse "^6.24.1" 192 | babel-types "^6.24.1" 193 | 194 | babel-helper-function-name@^6.24.1: 195 | version "6.24.1" 196 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 197 | dependencies: 198 | babel-helper-get-function-arity "^6.24.1" 199 | babel-runtime "^6.22.0" 200 | babel-template "^6.24.1" 201 | babel-traverse "^6.24.1" 202 | babel-types "^6.24.1" 203 | 204 | babel-helper-get-function-arity@^6.24.1: 205 | version "6.24.1" 206 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 207 | dependencies: 208 | babel-runtime "^6.22.0" 209 | babel-types "^6.24.1" 210 | 211 | babel-helper-hoist-variables@^6.24.1: 212 | version "6.24.1" 213 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 214 | dependencies: 215 | babel-runtime "^6.22.0" 216 | babel-types "^6.24.1" 217 | 218 | babel-helper-optimise-call-expression@^6.24.1: 219 | version "6.24.1" 220 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 221 | dependencies: 222 | babel-runtime "^6.22.0" 223 | babel-types "^6.24.1" 224 | 225 | babel-helper-regex@^6.24.1: 226 | version "6.24.1" 227 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 228 | dependencies: 229 | babel-runtime "^6.22.0" 230 | babel-types "^6.24.1" 231 | lodash "^4.2.0" 232 | 233 | babel-helper-remap-async-to-generator@^6.24.1: 234 | version "6.24.1" 235 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 236 | dependencies: 237 | babel-helper-function-name "^6.24.1" 238 | babel-runtime "^6.22.0" 239 | babel-template "^6.24.1" 240 | babel-traverse "^6.24.1" 241 | babel-types "^6.24.1" 242 | 243 | babel-helper-replace-supers@^6.24.1: 244 | version "6.24.1" 245 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 246 | dependencies: 247 | babel-helper-optimise-call-expression "^6.24.1" 248 | babel-messages "^6.23.0" 249 | babel-runtime "^6.22.0" 250 | babel-template "^6.24.1" 251 | babel-traverse "^6.24.1" 252 | babel-types "^6.24.1" 253 | 254 | babel-helpers@^6.24.1: 255 | version "6.24.1" 256 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 257 | dependencies: 258 | babel-runtime "^6.22.0" 259 | babel-template "^6.24.1" 260 | 261 | babel-messages@^6.23.0: 262 | version "6.23.0" 263 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 264 | dependencies: 265 | babel-runtime "^6.22.0" 266 | 267 | babel-plugin-check-es2015-constants@^6.22.0: 268 | version "6.22.0" 269 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 270 | dependencies: 271 | babel-runtime "^6.22.0" 272 | 273 | babel-plugin-syntax-async-functions@^6.8.0: 274 | version "6.13.0" 275 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 276 | 277 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 278 | version "6.13.0" 279 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 280 | 281 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 282 | version "6.22.0" 283 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 284 | 285 | babel-plugin-transform-async-to-generator@^6.22.0: 286 | version "6.24.1" 287 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 288 | dependencies: 289 | babel-helper-remap-async-to-generator "^6.24.1" 290 | babel-plugin-syntax-async-functions "^6.8.0" 291 | babel-runtime "^6.22.0" 292 | 293 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 294 | version "6.22.0" 295 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 296 | dependencies: 297 | babel-runtime "^6.22.0" 298 | 299 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 300 | version "6.22.0" 301 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 302 | dependencies: 303 | babel-runtime "^6.22.0" 304 | 305 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 306 | version "6.26.0" 307 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 308 | dependencies: 309 | babel-runtime "^6.26.0" 310 | babel-template "^6.26.0" 311 | babel-traverse "^6.26.0" 312 | babel-types "^6.26.0" 313 | lodash "^4.17.4" 314 | 315 | babel-plugin-transform-es2015-classes@^6.23.0: 316 | version "6.24.1" 317 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 318 | dependencies: 319 | babel-helper-define-map "^6.24.1" 320 | babel-helper-function-name "^6.24.1" 321 | babel-helper-optimise-call-expression "^6.24.1" 322 | babel-helper-replace-supers "^6.24.1" 323 | babel-messages "^6.23.0" 324 | babel-runtime "^6.22.0" 325 | babel-template "^6.24.1" 326 | babel-traverse "^6.24.1" 327 | babel-types "^6.24.1" 328 | 329 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 330 | version "6.24.1" 331 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 332 | dependencies: 333 | babel-runtime "^6.22.0" 334 | babel-template "^6.24.1" 335 | 336 | babel-plugin-transform-es2015-destructuring@^6.23.0: 337 | version "6.23.0" 338 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 339 | dependencies: 340 | babel-runtime "^6.22.0" 341 | 342 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 343 | version "6.24.1" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 345 | dependencies: 346 | babel-runtime "^6.22.0" 347 | babel-types "^6.24.1" 348 | 349 | babel-plugin-transform-es2015-for-of@^6.23.0: 350 | version "6.23.0" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 352 | dependencies: 353 | babel-runtime "^6.22.0" 354 | 355 | babel-plugin-transform-es2015-function-name@^6.22.0: 356 | version "6.24.1" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 358 | dependencies: 359 | babel-helper-function-name "^6.24.1" 360 | babel-runtime "^6.22.0" 361 | babel-types "^6.24.1" 362 | 363 | babel-plugin-transform-es2015-literals@^6.22.0: 364 | version "6.22.0" 365 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 366 | dependencies: 367 | babel-runtime "^6.22.0" 368 | 369 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 370 | version "6.24.1" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 372 | dependencies: 373 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 374 | babel-runtime "^6.22.0" 375 | babel-template "^6.24.1" 376 | 377 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0: 378 | version "6.26.0" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 380 | dependencies: 381 | babel-plugin-transform-strict-mode "^6.24.1" 382 | babel-runtime "^6.26.0" 383 | babel-template "^6.26.0" 384 | babel-types "^6.26.0" 385 | 386 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 387 | version "6.24.1" 388 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 389 | dependencies: 390 | babel-plugin-transform-strict-mode "^6.24.1" 391 | babel-runtime "^6.22.0" 392 | babel-template "^6.24.1" 393 | babel-types "^6.24.1" 394 | 395 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 396 | version "6.24.1" 397 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 398 | dependencies: 399 | babel-helper-hoist-variables "^6.24.1" 400 | babel-runtime "^6.22.0" 401 | babel-template "^6.24.1" 402 | 403 | babel-plugin-transform-es2015-modules-umd@^6.23.0, babel-plugin-transform-es2015-modules-umd@^6.24.1: 404 | version "6.24.1" 405 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 406 | dependencies: 407 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 408 | babel-runtime "^6.22.0" 409 | babel-template "^6.24.1" 410 | 411 | babel-plugin-transform-es2015-object-super@^6.22.0: 412 | version "6.24.1" 413 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 414 | dependencies: 415 | babel-helper-replace-supers "^6.24.1" 416 | babel-runtime "^6.22.0" 417 | 418 | babel-plugin-transform-es2015-parameters@^6.23.0: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 421 | dependencies: 422 | babel-helper-call-delegate "^6.24.1" 423 | babel-helper-get-function-arity "^6.24.1" 424 | babel-runtime "^6.22.0" 425 | babel-template "^6.24.1" 426 | babel-traverse "^6.24.1" 427 | babel-types "^6.24.1" 428 | 429 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 430 | version "6.24.1" 431 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 432 | dependencies: 433 | babel-runtime "^6.22.0" 434 | babel-types "^6.24.1" 435 | 436 | babel-plugin-transform-es2015-spread@^6.22.0: 437 | version "6.22.0" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 439 | dependencies: 440 | babel-runtime "^6.22.0" 441 | 442 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 443 | version "6.24.1" 444 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 445 | dependencies: 446 | babel-helper-regex "^6.24.1" 447 | babel-runtime "^6.22.0" 448 | babel-types "^6.24.1" 449 | 450 | babel-plugin-transform-es2015-template-literals@^6.22.0: 451 | version "6.22.0" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 453 | dependencies: 454 | babel-runtime "^6.22.0" 455 | 456 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 457 | version "6.23.0" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 459 | dependencies: 460 | babel-runtime "^6.22.0" 461 | 462 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 463 | version "6.24.1" 464 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 465 | dependencies: 466 | babel-helper-regex "^6.24.1" 467 | babel-runtime "^6.22.0" 468 | regexpu-core "^2.0.0" 469 | 470 | babel-plugin-transform-exponentiation-operator@^6.22.0: 471 | version "6.24.1" 472 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 473 | dependencies: 474 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 475 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 476 | babel-runtime "^6.22.0" 477 | 478 | babel-plugin-transform-regenerator@^6.22.0: 479 | version "6.26.0" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 481 | dependencies: 482 | regenerator-transform "^0.10.0" 483 | 484 | babel-plugin-transform-strict-mode@^6.24.1: 485 | version "6.24.1" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 487 | dependencies: 488 | babel-runtime "^6.22.0" 489 | babel-types "^6.24.1" 490 | 491 | babel-polyfill@^6.26.0: 492 | version "6.26.0" 493 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 494 | dependencies: 495 | babel-runtime "^6.26.0" 496 | core-js "^2.5.0" 497 | regenerator-runtime "^0.10.5" 498 | 499 | babel-preset-env@^1.6.1: 500 | version "1.6.1" 501 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 502 | dependencies: 503 | babel-plugin-check-es2015-constants "^6.22.0" 504 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 505 | babel-plugin-transform-async-to-generator "^6.22.0" 506 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 507 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 508 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 509 | babel-plugin-transform-es2015-classes "^6.23.0" 510 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 511 | babel-plugin-transform-es2015-destructuring "^6.23.0" 512 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 513 | babel-plugin-transform-es2015-for-of "^6.23.0" 514 | babel-plugin-transform-es2015-function-name "^6.22.0" 515 | babel-plugin-transform-es2015-literals "^6.22.0" 516 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 517 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 518 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 519 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 520 | babel-plugin-transform-es2015-object-super "^6.22.0" 521 | babel-plugin-transform-es2015-parameters "^6.23.0" 522 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 523 | babel-plugin-transform-es2015-spread "^6.22.0" 524 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 525 | babel-plugin-transform-es2015-template-literals "^6.22.0" 526 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 527 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 528 | babel-plugin-transform-exponentiation-operator "^6.22.0" 529 | babel-plugin-transform-regenerator "^6.22.0" 530 | browserslist "^2.1.2" 531 | invariant "^2.2.2" 532 | semver "^5.3.0" 533 | 534 | babel-register@^6.26.0: 535 | version "6.26.0" 536 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 537 | dependencies: 538 | babel-core "^6.26.0" 539 | babel-runtime "^6.26.0" 540 | core-js "^2.5.0" 541 | home-or-tmp "^2.0.0" 542 | lodash "^4.17.4" 543 | mkdirp "^0.5.1" 544 | source-map-support "^0.4.15" 545 | 546 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 547 | version "6.23.0" 548 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 549 | dependencies: 550 | core-js "^2.4.0" 551 | regenerator-runtime "^0.10.0" 552 | 553 | babel-runtime@^6.26.0: 554 | version "6.26.0" 555 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 556 | dependencies: 557 | core-js "^2.4.0" 558 | regenerator-runtime "^0.11.0" 559 | 560 | babel-template@^6.24.1: 561 | version "6.24.1" 562 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 563 | dependencies: 564 | babel-runtime "^6.22.0" 565 | babel-traverse "^6.24.1" 566 | babel-types "^6.24.1" 567 | babylon "^6.11.0" 568 | lodash "^4.2.0" 569 | 570 | babel-template@^6.26.0: 571 | version "6.26.0" 572 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 573 | dependencies: 574 | babel-runtime "^6.26.0" 575 | babel-traverse "^6.26.0" 576 | babel-types "^6.26.0" 577 | babylon "^6.18.0" 578 | lodash "^4.17.4" 579 | 580 | babel-traverse@^6.24.1: 581 | version "6.24.1" 582 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 583 | dependencies: 584 | babel-code-frame "^6.22.0" 585 | babel-messages "^6.23.0" 586 | babel-runtime "^6.22.0" 587 | babel-types "^6.24.1" 588 | babylon "^6.15.0" 589 | debug "^2.2.0" 590 | globals "^9.0.0" 591 | invariant "^2.2.0" 592 | lodash "^4.2.0" 593 | 594 | babel-traverse@^6.26.0: 595 | version "6.26.0" 596 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 597 | dependencies: 598 | babel-code-frame "^6.26.0" 599 | babel-messages "^6.23.0" 600 | babel-runtime "^6.26.0" 601 | babel-types "^6.26.0" 602 | babylon "^6.18.0" 603 | debug "^2.6.8" 604 | globals "^9.18.0" 605 | invariant "^2.2.2" 606 | lodash "^4.17.4" 607 | 608 | babel-types@^6.19.0, babel-types@^6.24.1: 609 | version "6.24.1" 610 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 611 | dependencies: 612 | babel-runtime "^6.22.0" 613 | esutils "^2.0.2" 614 | lodash "^4.2.0" 615 | to-fast-properties "^1.0.1" 616 | 617 | babel-types@^6.26.0: 618 | version "6.26.0" 619 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 620 | dependencies: 621 | babel-runtime "^6.26.0" 622 | esutils "^2.0.2" 623 | lodash "^4.17.4" 624 | to-fast-properties "^1.0.3" 625 | 626 | babylon@^6.11.0, babylon@^6.15.0: 627 | version "6.17.0" 628 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 629 | 630 | babylon@^6.18.0: 631 | version "6.18.0" 632 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 633 | 634 | balanced-match@^1.0.0: 635 | version "1.0.0" 636 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 637 | 638 | bcrypt-pbkdf@^1.0.0: 639 | version "1.0.2" 640 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 641 | dependencies: 642 | tweetnacl "^0.14.3" 643 | 644 | binary-extensions@^1.0.0: 645 | version "1.10.0" 646 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 647 | 648 | block-stream@*: 649 | version "0.0.9" 650 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 651 | dependencies: 652 | inherits "~2.0.0" 653 | 654 | boom@2.x.x: 655 | version "2.10.1" 656 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 657 | dependencies: 658 | hoek "2.x.x" 659 | 660 | brace-expansion@^1.1.7: 661 | version "1.1.11" 662 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 663 | dependencies: 664 | balanced-match "^1.0.0" 665 | concat-map "0.0.1" 666 | 667 | braces@^1.8.2: 668 | version "1.8.5" 669 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 670 | dependencies: 671 | expand-range "^1.8.1" 672 | preserve "^0.2.0" 673 | repeat-element "^1.1.2" 674 | 675 | browser-stdout@1.3.0: 676 | version "1.3.0" 677 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 678 | 679 | browserslist@^2.1.2: 680 | version "2.8.0" 681 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.8.0.tgz#27d64028130a2e8585ca96f7c3b7730eff4de493" 682 | dependencies: 683 | caniuse-lite "^1.0.30000758" 684 | electron-to-chromium "^1.3.27" 685 | 686 | caniuse-lite@^1.0.30000758: 687 | version "1.0.30000760" 688 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000760.tgz#ec720395742f1c7ec8947fd6dd2604e77a8f98ff" 689 | 690 | caseless@~0.12.0: 691 | version "0.12.0" 692 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 693 | 694 | chalk@^1.1.0, chalk@^1.1.3: 695 | version "1.1.3" 696 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 697 | dependencies: 698 | ansi-styles "^2.2.1" 699 | escape-string-regexp "^1.0.2" 700 | has-ansi "^2.0.0" 701 | strip-ansi "^3.0.0" 702 | supports-color "^2.0.0" 703 | 704 | chokidar@^1.6.1: 705 | version "1.7.0" 706 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 707 | dependencies: 708 | anymatch "^1.3.0" 709 | async-each "^1.0.0" 710 | glob-parent "^2.0.0" 711 | inherits "^2.0.1" 712 | is-binary-path "^1.0.0" 713 | is-glob "^2.0.0" 714 | path-is-absolute "^1.0.0" 715 | readdirp "^2.0.0" 716 | optionalDependencies: 717 | fsevents "^1.0.0" 718 | 719 | co@^4.6.0: 720 | version "4.6.0" 721 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 722 | 723 | code-point-at@^1.0.0: 724 | version "1.1.0" 725 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 726 | 727 | combined-stream@^1.0.5, combined-stream@~1.0.5: 728 | version "1.0.5" 729 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 730 | dependencies: 731 | delayed-stream "~1.0.0" 732 | 733 | commander@2.9.0: 734 | version "2.9.0" 735 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 736 | dependencies: 737 | graceful-readlink ">= 1.0.0" 738 | 739 | commander@^2.11.0: 740 | version "2.11.0" 741 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 742 | 743 | concat-map@0.0.1: 744 | version "0.0.1" 745 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 746 | 747 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 748 | version "1.1.0" 749 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 750 | 751 | convert-source-map@^1.5.0: 752 | version "1.5.0" 753 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 754 | 755 | core-js@^2.4.0: 756 | version "2.4.1" 757 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 758 | 759 | core-js@^2.5.0: 760 | version "2.5.1" 761 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 762 | 763 | core-util-is@1.0.2, core-util-is@~1.0.0: 764 | version "1.0.2" 765 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 766 | 767 | cryptiles@2.x.x: 768 | version "2.0.5" 769 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 770 | dependencies: 771 | boom "2.x.x" 772 | 773 | dashdash@^1.12.0: 774 | version "1.14.1" 775 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 776 | dependencies: 777 | assert-plus "^1.0.0" 778 | 779 | debug@2.6.0, debug@^2.2.0: 780 | version "2.6.0" 781 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 782 | dependencies: 783 | ms "0.7.2" 784 | 785 | debug@^2.6.8: 786 | version "2.6.9" 787 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 788 | dependencies: 789 | ms "2.0.0" 790 | 791 | deep-extend@~0.4.0: 792 | version "0.4.1" 793 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 794 | 795 | delayed-stream@~1.0.0: 796 | version "1.0.0" 797 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 798 | 799 | delegates@^1.0.0: 800 | version "1.0.0" 801 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 802 | 803 | detect-indent@^4.0.0: 804 | version "4.0.0" 805 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 806 | dependencies: 807 | repeating "^2.0.0" 808 | 809 | diff@3.2.0: 810 | version "3.2.0" 811 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 812 | 813 | ecc-jsbn@~0.1.1: 814 | version "0.1.2" 815 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 816 | dependencies: 817 | jsbn "~0.1.0" 818 | safer-buffer "^2.1.0" 819 | 820 | electron-to-chromium@^1.3.27: 821 | version "1.3.27" 822 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz#78ecb8a399066187bb374eede35d9c70565a803d" 823 | 824 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 825 | version "1.0.5" 826 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 827 | 828 | esutils@^2.0.2: 829 | version "2.0.2" 830 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 831 | 832 | expand-brackets@^0.1.4: 833 | version "0.1.5" 834 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 835 | dependencies: 836 | is-posix-bracket "^0.1.0" 837 | 838 | expand-range@^1.8.1: 839 | version "1.8.2" 840 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 841 | dependencies: 842 | fill-range "^2.1.0" 843 | 844 | extend@~3.0.0: 845 | version "3.0.2" 846 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 847 | 848 | extglob@^0.3.1: 849 | version "0.3.2" 850 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 851 | dependencies: 852 | is-extglob "^1.0.0" 853 | 854 | extsprintf@1.3.0, extsprintf@^1.2.0: 855 | version "1.3.0" 856 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 857 | 858 | filename-regex@^2.0.0: 859 | version "2.0.1" 860 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 861 | 862 | fill-range@^2.1.0: 863 | version "2.2.3" 864 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 865 | dependencies: 866 | is-number "^2.1.0" 867 | isobject "^2.0.0" 868 | randomatic "^1.1.3" 869 | repeat-element "^1.1.2" 870 | repeat-string "^1.5.2" 871 | 872 | for-in@^1.0.1: 873 | version "1.0.2" 874 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 875 | 876 | for-own@^0.1.4: 877 | version "0.1.5" 878 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 879 | dependencies: 880 | for-in "^1.0.1" 881 | 882 | forever-agent@~0.6.1: 883 | version "0.6.1" 884 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 885 | 886 | form-data@~2.1.1: 887 | version "2.1.4" 888 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 889 | dependencies: 890 | asynckit "^0.4.0" 891 | combined-stream "^1.0.5" 892 | mime-types "^2.1.12" 893 | 894 | fs-readdir-recursive@^1.0.0: 895 | version "1.0.0" 896 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 897 | 898 | fs.realpath@^1.0.0: 899 | version "1.0.0" 900 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 901 | 902 | fsevents@^1.0.0: 903 | version "1.1.2" 904 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 905 | dependencies: 906 | nan "^2.3.0" 907 | node-pre-gyp "^0.6.36" 908 | 909 | fstream-ignore@^1.0.5: 910 | version "1.0.5" 911 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 912 | dependencies: 913 | fstream "^1.0.0" 914 | inherits "2" 915 | minimatch "^3.0.0" 916 | 917 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.12: 918 | version "1.0.12" 919 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 920 | dependencies: 921 | graceful-fs "^4.1.2" 922 | inherits "~2.0.0" 923 | mkdirp ">=0.5 0" 924 | rimraf "2" 925 | 926 | gauge@~2.7.3: 927 | version "2.7.4" 928 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 929 | dependencies: 930 | aproba "^1.0.3" 931 | console-control-strings "^1.0.0" 932 | has-unicode "^2.0.0" 933 | object-assign "^4.1.0" 934 | signal-exit "^3.0.0" 935 | string-width "^1.0.1" 936 | strip-ansi "^3.0.1" 937 | wide-align "^1.1.0" 938 | 939 | getpass@^0.1.1: 940 | version "0.1.7" 941 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 942 | dependencies: 943 | assert-plus "^1.0.0" 944 | 945 | glob-base@^0.3.0: 946 | version "0.3.0" 947 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 948 | dependencies: 949 | glob-parent "^2.0.0" 950 | is-glob "^2.0.0" 951 | 952 | glob-parent@^2.0.0: 953 | version "2.0.0" 954 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 955 | dependencies: 956 | is-glob "^2.0.0" 957 | 958 | glob@7.1.1, glob@^7.0.5: 959 | version "7.1.1" 960 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 961 | dependencies: 962 | fs.realpath "^1.0.0" 963 | inflight "^1.0.4" 964 | inherits "2" 965 | minimatch "^3.0.2" 966 | once "^1.3.0" 967 | path-is-absolute "^1.0.0" 968 | 969 | glob@^7.1.2: 970 | version "7.1.2" 971 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 972 | dependencies: 973 | fs.realpath "^1.0.0" 974 | inflight "^1.0.4" 975 | inherits "2" 976 | minimatch "^3.0.4" 977 | once "^1.3.0" 978 | path-is-absolute "^1.0.0" 979 | 980 | glob@^7.1.3: 981 | version "7.1.6" 982 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 983 | dependencies: 984 | fs.realpath "^1.0.0" 985 | inflight "^1.0.4" 986 | inherits "2" 987 | minimatch "^3.0.4" 988 | once "^1.3.0" 989 | path-is-absolute "^1.0.0" 990 | 991 | globals@^9.0.0: 992 | version "9.17.0" 993 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 994 | 995 | globals@^9.18.0: 996 | version "9.18.0" 997 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 998 | 999 | graceful-fs@^4.1.2: 1000 | version "4.2.3" 1001 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 1002 | 1003 | graceful-fs@^4.1.4: 1004 | version "4.1.11" 1005 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1006 | 1007 | "graceful-readlink@>= 1.0.0": 1008 | version "1.0.1" 1009 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1010 | 1011 | growl@1.9.2: 1012 | version "1.9.2" 1013 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1014 | 1015 | har-schema@^1.0.5: 1016 | version "1.0.5" 1017 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1018 | 1019 | har-validator@~4.2.1: 1020 | version "4.2.1" 1021 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1022 | dependencies: 1023 | ajv "^4.9.1" 1024 | har-schema "^1.0.5" 1025 | 1026 | has-ansi@^2.0.0: 1027 | version "2.0.0" 1028 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1029 | dependencies: 1030 | ansi-regex "^2.0.0" 1031 | 1032 | has-flag@^1.0.0: 1033 | version "1.0.0" 1034 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1035 | 1036 | has-unicode@^2.0.0: 1037 | version "2.0.1" 1038 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1039 | 1040 | hawk@3.1.3, hawk@~3.1.3: 1041 | version "3.1.3" 1042 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1043 | dependencies: 1044 | boom "2.x.x" 1045 | cryptiles "2.x.x" 1046 | hoek "2.x.x" 1047 | sntp "1.x.x" 1048 | 1049 | hoek@2.x.x: 1050 | version "2.16.3" 1051 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1052 | 1053 | home-or-tmp@^2.0.0: 1054 | version "2.0.0" 1055 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1056 | dependencies: 1057 | os-homedir "^1.0.0" 1058 | os-tmpdir "^1.0.1" 1059 | 1060 | http-signature@~1.1.0: 1061 | version "1.1.1" 1062 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1063 | dependencies: 1064 | assert-plus "^0.2.0" 1065 | jsprim "^1.2.2" 1066 | sshpk "^1.7.0" 1067 | 1068 | inflight@^1.0.4: 1069 | version "1.0.6" 1070 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1071 | dependencies: 1072 | once "^1.3.0" 1073 | wrappy "1" 1074 | 1075 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1076 | version "2.0.4" 1077 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1078 | 1079 | ini@~1.3.0: 1080 | version "1.3.7" 1081 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1082 | 1083 | invariant@^2.2.0, invariant@^2.2.2: 1084 | version "2.2.2" 1085 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1086 | dependencies: 1087 | loose-envify "^1.0.0" 1088 | 1089 | is-binary-path@^1.0.0: 1090 | version "1.0.1" 1091 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1092 | dependencies: 1093 | binary-extensions "^1.0.0" 1094 | 1095 | is-buffer@^1.1.5: 1096 | version "1.1.5" 1097 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1098 | 1099 | is-dotfile@^1.0.0: 1100 | version "1.0.3" 1101 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1102 | 1103 | is-equal-shallow@^0.1.3: 1104 | version "0.1.3" 1105 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1106 | dependencies: 1107 | is-primitive "^2.0.0" 1108 | 1109 | is-extendable@^0.1.1: 1110 | version "0.1.1" 1111 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1112 | 1113 | is-extglob@^1.0.0: 1114 | version "1.0.0" 1115 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1116 | 1117 | is-finite@^1.0.0: 1118 | version "1.0.2" 1119 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1120 | dependencies: 1121 | number-is-nan "^1.0.0" 1122 | 1123 | is-fullwidth-code-point@^1.0.0: 1124 | version "1.0.0" 1125 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1126 | dependencies: 1127 | number-is-nan "^1.0.0" 1128 | 1129 | is-glob@^2.0.0, is-glob@^2.0.1: 1130 | version "2.0.1" 1131 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1132 | dependencies: 1133 | is-extglob "^1.0.0" 1134 | 1135 | is-number@^2.1.0: 1136 | version "2.1.0" 1137 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1138 | dependencies: 1139 | kind-of "^3.0.2" 1140 | 1141 | is-number@^3.0.0: 1142 | version "3.0.0" 1143 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1144 | dependencies: 1145 | kind-of "^3.0.2" 1146 | 1147 | is-posix-bracket@^0.1.0: 1148 | version "0.1.1" 1149 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1150 | 1151 | is-primitive@^2.0.0: 1152 | version "2.0.0" 1153 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1154 | 1155 | is-typedarray@~1.0.0: 1156 | version "1.0.0" 1157 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1158 | 1159 | isarray@1.0.0, isarray@~1.0.0: 1160 | version "1.0.0" 1161 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1162 | 1163 | isobject@^2.0.0: 1164 | version "2.1.0" 1165 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1166 | dependencies: 1167 | isarray "1.0.0" 1168 | 1169 | isstream@~0.1.2: 1170 | version "0.1.2" 1171 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1172 | 1173 | js-tokens@^3.0.0: 1174 | version "3.0.1" 1175 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1176 | 1177 | js-tokens@^3.0.2: 1178 | version "3.0.2" 1179 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1180 | 1181 | jsbn@~0.1.0: 1182 | version "0.1.1" 1183 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1184 | 1185 | jsesc@^1.3.0: 1186 | version "1.3.0" 1187 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1188 | 1189 | jsesc@~0.5.0: 1190 | version "0.5.0" 1191 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1192 | 1193 | json-schema@0.2.3: 1194 | version "0.2.3" 1195 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1196 | 1197 | json-stable-stringify@^1.0.1: 1198 | version "1.0.1" 1199 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1200 | dependencies: 1201 | jsonify "~0.0.0" 1202 | 1203 | json-stringify-safe@~5.0.1: 1204 | version "5.0.1" 1205 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1206 | 1207 | json3@3.3.2: 1208 | version "3.3.2" 1209 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1210 | 1211 | json5@^0.5.1: 1212 | version "0.5.1" 1213 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1214 | 1215 | jsonify@~0.0.0: 1216 | version "0.0.0" 1217 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1218 | 1219 | jsprim@^1.2.2: 1220 | version "1.4.1" 1221 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1222 | dependencies: 1223 | assert-plus "1.0.0" 1224 | extsprintf "1.3.0" 1225 | json-schema "0.2.3" 1226 | verror "1.10.0" 1227 | 1228 | kind-of@^3.0.2: 1229 | version "3.2.2" 1230 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1231 | dependencies: 1232 | is-buffer "^1.1.5" 1233 | 1234 | kind-of@^4.0.0: 1235 | version "4.0.0" 1236 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1237 | dependencies: 1238 | is-buffer "^1.1.5" 1239 | 1240 | lodash._baseassign@^3.0.0: 1241 | version "3.2.0" 1242 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1243 | dependencies: 1244 | lodash._basecopy "^3.0.0" 1245 | lodash.keys "^3.0.0" 1246 | 1247 | lodash._basecopy@^3.0.0: 1248 | version "3.0.1" 1249 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1250 | 1251 | lodash._basecreate@^3.0.0: 1252 | version "3.0.3" 1253 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1254 | 1255 | lodash._getnative@^3.0.0: 1256 | version "3.9.1" 1257 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1258 | 1259 | lodash._isiterateecall@^3.0.0: 1260 | version "3.0.9" 1261 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1262 | 1263 | lodash.create@3.1.1: 1264 | version "3.1.1" 1265 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1266 | dependencies: 1267 | lodash._baseassign "^3.0.0" 1268 | lodash._basecreate "^3.0.0" 1269 | lodash._isiterateecall "^3.0.0" 1270 | 1271 | lodash.isarguments@^3.0.0: 1272 | version "3.1.0" 1273 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1274 | 1275 | lodash.isarray@^3.0.0: 1276 | version "3.0.4" 1277 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1278 | 1279 | lodash.keys@^3.0.0: 1280 | version "3.1.2" 1281 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1282 | dependencies: 1283 | lodash._getnative "^3.0.0" 1284 | lodash.isarguments "^3.0.0" 1285 | lodash.isarray "^3.0.0" 1286 | 1287 | lodash@^4.17.4, lodash@^4.2.0: 1288 | version "4.17.21" 1289 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1290 | 1291 | loose-envify@^1.0.0: 1292 | version "1.3.1" 1293 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1294 | dependencies: 1295 | js-tokens "^3.0.0" 1296 | 1297 | micromatch@^2.1.5: 1298 | version "2.3.11" 1299 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1300 | dependencies: 1301 | arr-diff "^2.0.0" 1302 | array-unique "^0.2.1" 1303 | braces "^1.8.2" 1304 | expand-brackets "^0.1.4" 1305 | extglob "^0.3.1" 1306 | filename-regex "^2.0.0" 1307 | is-extglob "^1.0.0" 1308 | is-glob "^2.0.1" 1309 | kind-of "^3.0.2" 1310 | normalize-path "^2.0.1" 1311 | object.omit "^2.0.0" 1312 | parse-glob "^3.0.4" 1313 | regex-cache "^0.4.2" 1314 | 1315 | mime-db@~1.30.0: 1316 | version "1.30.0" 1317 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1318 | 1319 | mime-types@^2.1.12, mime-types@~2.1.7: 1320 | version "2.1.17" 1321 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1322 | dependencies: 1323 | mime-db "~1.30.0" 1324 | 1325 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1326 | version "3.0.4" 1327 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1328 | dependencies: 1329 | brace-expansion "^1.1.7" 1330 | 1331 | minimist@0.0.8: 1332 | version "0.0.8" 1333 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1334 | 1335 | minimist@^1.2.0: 1336 | version "1.2.0" 1337 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1338 | 1339 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1340 | version "0.5.1" 1341 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1342 | dependencies: 1343 | minimist "0.0.8" 1344 | 1345 | mocha@^3.2.0: 1346 | version "3.3.0" 1347 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.3.0.tgz#d29b7428d3f52c82e2e65df1ecb7064e1aabbfb5" 1348 | dependencies: 1349 | browser-stdout "1.3.0" 1350 | commander "2.9.0" 1351 | debug "2.6.0" 1352 | diff "3.2.0" 1353 | escape-string-regexp "1.0.5" 1354 | glob "7.1.1" 1355 | growl "1.9.2" 1356 | json3 "3.3.2" 1357 | lodash.create "3.1.1" 1358 | mkdirp "0.5.1" 1359 | supports-color "3.1.2" 1360 | 1361 | ms@0.7.2: 1362 | version "0.7.2" 1363 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 1364 | 1365 | ms@2.0.0: 1366 | version "2.0.0" 1367 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1368 | 1369 | nan@^2.3.0: 1370 | version "2.7.0" 1371 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1372 | 1373 | node-pre-gyp@^0.6.36: 1374 | version "0.6.38" 1375 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" 1376 | dependencies: 1377 | hawk "3.1.3" 1378 | mkdirp "^0.5.1" 1379 | nopt "^4.0.1" 1380 | npmlog "^4.0.2" 1381 | rc "^1.1.7" 1382 | request "2.81.0" 1383 | rimraf "^2.6.1" 1384 | semver "^5.3.0" 1385 | tar "^2.2.1" 1386 | tar-pack "^3.4.0" 1387 | 1388 | nopt@^4.0.1: 1389 | version "4.0.1" 1390 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1391 | dependencies: 1392 | abbrev "1" 1393 | osenv "^0.1.4" 1394 | 1395 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1396 | version "2.1.1" 1397 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1398 | dependencies: 1399 | remove-trailing-separator "^1.0.1" 1400 | 1401 | npmlog@^4.0.2: 1402 | version "4.1.2" 1403 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1404 | dependencies: 1405 | are-we-there-yet "~1.1.2" 1406 | console-control-strings "~1.1.0" 1407 | gauge "~2.7.3" 1408 | set-blocking "~2.0.0" 1409 | 1410 | number-is-nan@^1.0.0: 1411 | version "1.0.1" 1412 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1413 | 1414 | oauth-sign@~0.8.1: 1415 | version "0.8.2" 1416 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1417 | 1418 | object-assign@^4.1.0: 1419 | version "4.1.1" 1420 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1421 | 1422 | object.omit@^2.0.0: 1423 | version "2.0.1" 1424 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1425 | dependencies: 1426 | for-own "^0.1.4" 1427 | is-extendable "^0.1.1" 1428 | 1429 | once@^1.3.0, once@^1.3.3: 1430 | version "1.4.0" 1431 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1432 | dependencies: 1433 | wrappy "1" 1434 | 1435 | os-homedir@^1.0.0: 1436 | version "1.0.2" 1437 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1438 | 1439 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1440 | version "1.0.2" 1441 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1442 | 1443 | osenv@^0.1.4: 1444 | version "0.1.4" 1445 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1446 | dependencies: 1447 | os-homedir "^1.0.0" 1448 | os-tmpdir "^1.0.0" 1449 | 1450 | output-file-sync@^1.1.2: 1451 | version "1.1.2" 1452 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1453 | dependencies: 1454 | graceful-fs "^4.1.4" 1455 | mkdirp "^0.5.1" 1456 | object-assign "^4.1.0" 1457 | 1458 | parse-glob@^3.0.4: 1459 | version "3.0.4" 1460 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1461 | dependencies: 1462 | glob-base "^0.3.0" 1463 | is-dotfile "^1.0.0" 1464 | is-extglob "^1.0.0" 1465 | is-glob "^2.0.0" 1466 | 1467 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1468 | version "1.0.1" 1469 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1470 | 1471 | performance-now@^0.2.0: 1472 | version "0.2.0" 1473 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1474 | 1475 | preserve@^0.2.0: 1476 | version "0.2.0" 1477 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1478 | 1479 | private@^0.1.6: 1480 | version "0.1.7" 1481 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 1482 | 1483 | private@^0.1.7: 1484 | version "0.1.8" 1485 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1486 | 1487 | process-nextick-args@~1.0.6: 1488 | version "1.0.7" 1489 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1490 | 1491 | punycode@^1.4.1: 1492 | version "1.4.1" 1493 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1494 | 1495 | qs@~6.4.0: 1496 | version "6.4.1" 1497 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.1.tgz#2bad97710a5b661c366b378b1e3a44a592ff45e6" 1498 | 1499 | randomatic@^1.1.3: 1500 | version "1.1.7" 1501 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1502 | dependencies: 1503 | is-number "^3.0.0" 1504 | kind-of "^4.0.0" 1505 | 1506 | rc@^1.1.7: 1507 | version "1.2.2" 1508 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 1509 | dependencies: 1510 | deep-extend "~0.4.0" 1511 | ini "~1.3.0" 1512 | minimist "^1.2.0" 1513 | strip-json-comments "~2.0.1" 1514 | 1515 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1516 | version "2.3.3" 1517 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1518 | dependencies: 1519 | core-util-is "~1.0.0" 1520 | inherits "~2.0.3" 1521 | isarray "~1.0.0" 1522 | process-nextick-args "~1.0.6" 1523 | safe-buffer "~5.1.1" 1524 | string_decoder "~1.0.3" 1525 | util-deprecate "~1.0.1" 1526 | 1527 | readdirp@^2.0.0: 1528 | version "2.1.0" 1529 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1530 | dependencies: 1531 | graceful-fs "^4.1.2" 1532 | minimatch "^3.0.2" 1533 | readable-stream "^2.0.2" 1534 | set-immediate-shim "^1.0.1" 1535 | 1536 | regenerate@^1.2.1: 1537 | version "1.3.2" 1538 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 1539 | 1540 | regenerator-runtime@^0.10.0, regenerator-runtime@^0.10.5: 1541 | version "0.10.5" 1542 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1543 | 1544 | regenerator-runtime@^0.11.0: 1545 | version "0.11.0" 1546 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 1547 | 1548 | regenerator-transform@^0.10.0: 1549 | version "0.10.1" 1550 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1551 | dependencies: 1552 | babel-runtime "^6.18.0" 1553 | babel-types "^6.19.0" 1554 | private "^0.1.6" 1555 | 1556 | regex-cache@^0.4.2: 1557 | version "0.4.4" 1558 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1559 | dependencies: 1560 | is-equal-shallow "^0.1.3" 1561 | 1562 | regexpu-core@^2.0.0: 1563 | version "2.0.0" 1564 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1565 | dependencies: 1566 | regenerate "^1.2.1" 1567 | regjsgen "^0.2.0" 1568 | regjsparser "^0.1.4" 1569 | 1570 | regjsgen@^0.2.0: 1571 | version "0.2.0" 1572 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1573 | 1574 | regjsparser@^0.1.4: 1575 | version "0.1.5" 1576 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1577 | dependencies: 1578 | jsesc "~0.5.0" 1579 | 1580 | remove-trailing-separator@^1.0.1: 1581 | version "1.1.0" 1582 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1583 | 1584 | repeat-element@^1.1.2: 1585 | version "1.1.2" 1586 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1587 | 1588 | repeat-string@^1.5.2: 1589 | version "1.6.1" 1590 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1591 | 1592 | repeating@^2.0.0: 1593 | version "2.0.1" 1594 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1595 | dependencies: 1596 | is-finite "^1.0.0" 1597 | 1598 | request@2.81.0: 1599 | version "2.81.0" 1600 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1601 | dependencies: 1602 | aws-sign2 "~0.6.0" 1603 | aws4 "^1.2.1" 1604 | caseless "~0.12.0" 1605 | combined-stream "~1.0.5" 1606 | extend "~3.0.0" 1607 | forever-agent "~0.6.1" 1608 | form-data "~2.1.1" 1609 | har-validator "~4.2.1" 1610 | hawk "~3.1.3" 1611 | http-signature "~1.1.0" 1612 | is-typedarray "~1.0.0" 1613 | isstream "~0.1.2" 1614 | json-stringify-safe "~5.0.1" 1615 | mime-types "~2.1.7" 1616 | oauth-sign "~0.8.1" 1617 | performance-now "^0.2.0" 1618 | qs "~6.4.0" 1619 | safe-buffer "^5.0.1" 1620 | stringstream "~0.0.4" 1621 | tough-cookie "~2.3.0" 1622 | tunnel-agent "^0.6.0" 1623 | uuid "^3.0.0" 1624 | 1625 | rimraf@2: 1626 | version "2.7.1" 1627 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 1628 | dependencies: 1629 | glob "^7.1.3" 1630 | 1631 | rimraf@^2.5.1, rimraf@^2.6.1: 1632 | version "2.6.2" 1633 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1634 | dependencies: 1635 | glob "^7.0.5" 1636 | 1637 | safe-buffer@^5.0.1: 1638 | version "5.0.1" 1639 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 1640 | 1641 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1642 | version "5.1.1" 1643 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1644 | 1645 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 1646 | version "2.1.2" 1647 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1648 | 1649 | semver@^5.3.0: 1650 | version "5.4.1" 1651 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1652 | 1653 | set-blocking@~2.0.0: 1654 | version "2.0.0" 1655 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1656 | 1657 | set-immediate-shim@^1.0.1: 1658 | version "1.0.1" 1659 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1660 | 1661 | signal-exit@^3.0.0: 1662 | version "3.0.2" 1663 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1664 | 1665 | slash@^1.0.0: 1666 | version "1.0.0" 1667 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1668 | 1669 | sntp@1.x.x: 1670 | version "1.0.9" 1671 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1672 | dependencies: 1673 | hoek "2.x.x" 1674 | 1675 | source-map-support@^0.4.15: 1676 | version "0.4.18" 1677 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 1678 | dependencies: 1679 | source-map "^0.5.6" 1680 | 1681 | source-map@^0.5.6: 1682 | version "0.5.7" 1683 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1684 | 1685 | sshpk@^1.7.0: 1686 | version "1.16.1" 1687 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 1688 | dependencies: 1689 | asn1 "~0.2.3" 1690 | assert-plus "^1.0.0" 1691 | bcrypt-pbkdf "^1.0.0" 1692 | dashdash "^1.12.0" 1693 | ecc-jsbn "~0.1.1" 1694 | getpass "^0.1.1" 1695 | jsbn "~0.1.0" 1696 | safer-buffer "^2.0.2" 1697 | tweetnacl "~0.14.0" 1698 | 1699 | string-width@^1.0.1, string-width@^1.0.2: 1700 | version "1.0.2" 1701 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1702 | dependencies: 1703 | code-point-at "^1.0.0" 1704 | is-fullwidth-code-point "^1.0.0" 1705 | strip-ansi "^3.0.0" 1706 | 1707 | string_decoder@~1.0.3: 1708 | version "1.0.3" 1709 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1710 | dependencies: 1711 | safe-buffer "~5.1.0" 1712 | 1713 | stringstream@~0.0.4: 1714 | version "0.0.6" 1715 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 1716 | 1717 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1718 | version "3.0.1" 1719 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1720 | dependencies: 1721 | ansi-regex "^2.0.0" 1722 | 1723 | strip-json-comments@~2.0.1: 1724 | version "2.0.1" 1725 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1726 | 1727 | supports-color@3.1.2: 1728 | version "3.1.2" 1729 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 1730 | dependencies: 1731 | has-flag "^1.0.0" 1732 | 1733 | supports-color@^2.0.0: 1734 | version "2.0.0" 1735 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1736 | 1737 | tar-pack@^3.4.0: 1738 | version "3.4.0" 1739 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 1740 | dependencies: 1741 | debug "^2.2.0" 1742 | fstream "^1.0.10" 1743 | fstream-ignore "^1.0.5" 1744 | once "^1.3.3" 1745 | readable-stream "^2.1.4" 1746 | rimraf "^2.5.1" 1747 | tar "^2.2.1" 1748 | uid-number "^0.0.6" 1749 | 1750 | tar@^2.2.1: 1751 | version "2.2.2" 1752 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 1753 | dependencies: 1754 | block-stream "*" 1755 | fstream "^1.0.12" 1756 | inherits "2" 1757 | 1758 | to-fast-properties@^1.0.1, to-fast-properties@^1.0.3: 1759 | version "1.0.3" 1760 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1761 | 1762 | tough-cookie@~2.3.0: 1763 | version "2.3.3" 1764 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1765 | dependencies: 1766 | punycode "^1.4.1" 1767 | 1768 | trim-right@^1.0.1: 1769 | version "1.0.1" 1770 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1771 | 1772 | tunnel-agent@^0.6.0: 1773 | version "0.6.0" 1774 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1775 | dependencies: 1776 | safe-buffer "^5.0.1" 1777 | 1778 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1779 | version "0.14.5" 1780 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1781 | 1782 | uid-number@^0.0.6: 1783 | version "0.0.6" 1784 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1785 | 1786 | user-home@^1.1.1: 1787 | version "1.1.1" 1788 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1789 | 1790 | util-deprecate@~1.0.1: 1791 | version "1.0.2" 1792 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1793 | 1794 | uuid@^3.0.0: 1795 | version "3.1.0" 1796 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1797 | 1798 | v8flags@^2.1.1: 1799 | version "2.1.1" 1800 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1801 | dependencies: 1802 | user-home "^1.1.1" 1803 | 1804 | verror@1.10.0: 1805 | version "1.10.0" 1806 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1807 | dependencies: 1808 | assert-plus "^1.0.0" 1809 | core-util-is "1.0.2" 1810 | extsprintf "^1.2.0" 1811 | 1812 | wide-align@^1.1.0: 1813 | version "1.1.2" 1814 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1815 | dependencies: 1816 | string-width "^1.0.2" 1817 | 1818 | wrappy@1: 1819 | version "1.0.2" 1820 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1821 | --------------------------------------------------------------------------------