├── .editorconfig ├── .gitignore ├── .travis.yml ├── flyfile.js ├── license ├── package.json ├── readme.md ├── src ├── basic.html ├── extras │ ├── favicon.ico │ ├── humans.txt │ ├── manifest.json │ ├── manifest.webapp │ └── robots.txt ├── fonts │ └── .gitkeep ├── images │ └── touch │ │ ├── apple-touch-icon.png │ │ ├── chrome-touch-icon-192x192.png │ │ ├── icon-128x128.png │ │ └── ms-touch-icon-144x144-precomposed.png ├── index.html ├── scripts │ ├── app.js │ └── demo.js └── styles │ ├── _demo.scss │ └── app.sass └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.{json,yml,md}] 12 | indent_style = space 13 | indent_size = 2 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | *.log 4 | dist 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 7 5 | - 6 6 | -------------------------------------------------------------------------------- /flyfile.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const bs = require('browser-sync'); 4 | const reload = () => isWatch && isServer && bs.reload(); 5 | 6 | let isWatch = 0; 7 | let isServer = 0; 8 | 9 | const tar = 'dist'; 10 | const rel = 'release'; 11 | const node = 'node_modules'; 12 | const bower = 'bower_components'; 13 | 14 | const src = { 15 | css: 'src/styles/**/*.sass', 16 | js: 'src/scripts/**/*.js', 17 | img: 'src/images/**/*.*', 18 | copy: [ 19 | 'src/*.html', 20 | 'src/extras/**.*' 21 | ], 22 | vendor: [ 23 | // javascript vendors to be merged 24 | ] 25 | }; 26 | 27 | export default async function (fly) { 28 | isWatch = 1; 29 | await fly.clear([tar, rel]).start('build'); 30 | await fly.watch(src.js, 'scripts'); 31 | await fly.watch(src.vendor, 'vendor'); 32 | await fly.watch(src.copy, 'copies'); 33 | await fly.watch(src.img, 'images'); 34 | await fly.watch(src.css, 'styles'); 35 | await fly.start('serve'); 36 | } 37 | 38 | export async function build(fly) { 39 | await fly.clear([tar, rel]); 40 | await fly.parallel(['copies', 'images', 'vendor', 'scripts', 'styles']); 41 | await fly.start('uglify'); 42 | } 43 | 44 | export async function release(fly) { 45 | await fly.source(`${tar}/**/*`) 46 | .rev({ignores: ['.html', '.png', 'jpg', '.jpeg', '.svg', '.ico', '.gif', '.json', '.webapp', '.txt']}) 47 | .revManifest({dest: rel, trim: tar}).revReplace().target(rel); 48 | await fly.source(`${rel}/*.html`).htmlmin().target(rel); 49 | } 50 | 51 | export async function scripts(fly, o) { 52 | await fly.source(o.src || src.js).xo().browserify({ 53 | entries: 'src/scripts/app.js' 54 | }).target(`${tar}/js`); 55 | reload(); 56 | } 57 | 58 | export async function vendor(fly) { 59 | await fly.source(src.vendor).concat('vendor.js').target(`${tar}/js`); 60 | reload(); 61 | } 62 | 63 | export async function copies(fly, o) { 64 | await fly.source(o.src || src.copy).target(tar); 65 | reload(); 66 | } 67 | 68 | export async function images(fly, o) { 69 | await fly.source(o.src || src.img).target(`${tar}/img`); 70 | reload(); 71 | } 72 | 73 | export async function styles(fly) { 74 | await fly.source('src/styles/app.sass').sass({ 75 | outputStyle: 'compressed', 76 | includePaths: [bower] 77 | }).autoprefixer().target(`${tar}/css`); 78 | reload(); 79 | } 80 | 81 | export async function uglify(fly) { 82 | await fly.source(`${tar}/js/*.js`).uglify({ 83 | compress: { 84 | conditionals: 1, 85 | drop_console: 1, 86 | comparisons: 1, 87 | join_vars: 1, 88 | booleans: 1, 89 | loops: 1 90 | } 91 | }).target(`${tar}/js`); 92 | } 93 | 94 | export async function serve(fly) { 95 | isServer = 1; 96 | bs({server: tar}); 97 | } 98 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) Luke Edwards (https://lukeed.com) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fly-kit-web", 3 | "version": "2.1.1", 4 | "private": true, 5 | "description": "A lean Web App starter kit with Fly", 6 | "license": "MIT", 7 | "repository": "lukeed/fly-kit-web", 8 | "author": { 9 | "name": "Luke Edwards", 10 | "email": "luke.edwards05@gmail.com", 11 | "url": "https://lukeed.com" 12 | }, 13 | "scripts": { 14 | "fly": "fly", 15 | "build": "fly build", 16 | "release": "fly build release", 17 | "start": "fly build serve", 18 | "watch": "fly", 19 | "test": "xo" 20 | }, 21 | "dependencies": {}, 22 | "devDependencies": { 23 | "browser-sync": "^2.18.7", 24 | "fly": "^2.0.1", 25 | "fly-autoprefixer": "^1.1.0", 26 | "fly-browserify2": "^2.1.0", 27 | "fly-clear": "^1.0.0", 28 | "fly-concat": "^1.2.0", 29 | "fly-esnext": "^2.0.0", 30 | "fly-htmlmin": "^2.1.0", 31 | "fly-rev": "^2.2.0", 32 | "fly-sass": "^2.1.0", 33 | "fly-uglify": "^2.1.0", 34 | "fly-watch": "^1.1.0", 35 | "fly-xo": "^2.1.0", 36 | "xo": "*" 37 | }, 38 | "engines": { 39 | "node": ">= 6" 40 | }, 41 | "xo": { 42 | "envs": [ 43 | "browser" 44 | ], 45 | "ignores": [ 46 | "flyfile.js", 47 | "release/**" 48 | ], 49 | "rules": { 50 | "guard-for-in": 1 51 | } 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # fly-kit-web 2 | 3 | > A lean Web App starter kit with [Fly](https://github.com/flyjs/fly) 4 | 5 | --- 6 |

Boilerplate & commands will evolve as my own development process does.

7 | --- 8 | 9 | ## Install 10 | 11 | ``` 12 | git clone https://github.com/lukeed/fly-kit-web 13 | npm install 14 | npm start 15 | ``` 16 | 17 | > **Pro Tip:** Use [Yarn](https://yarnpkg.com/) to install NPM dependencies 3x faster than NPM! 18 | 19 | 20 | ## Commands 21 | 22 | #### build 23 | 24 | ``` 25 | $ npm run build 26 | ``` 27 | 28 | Compiles all files. Output is sent to the `dist` directory. 29 | 30 | #### release 31 | 32 | ``` 33 | $ npm run release 34 | ``` 35 | 36 | Builds the app for production, includes [cache-busting](http://webassets.readthedocs.io/en/latest/expiring.html) asset names. Output is sent to the `release` directory. 37 | 38 | #### start 39 | 40 | ``` 41 | $ npm start 42 | ``` 43 | 44 | Executes [`build`](#build) and runs your application (from the `dist` directory) in the browser. 45 | 46 | #### test 47 | 48 | ``` 49 | $ npm run test 50 | ``` 51 | 52 | Lints all JavaScript files. 53 | 54 | #### watch 55 | 56 | ``` 57 | $ npm run watch 58 | ``` 59 | 60 | Like [`start`](#start), but will auto-compile & auto-reload the server after any file changes within the `src` directory. 61 | 62 | 63 | ## License 64 | 65 | MIT © [Luke Edwards](https://lukeed.com) 66 | -------------------------------------------------------------------------------- /src/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /src/extras/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/fly-kit-web/72aadc7bb7b9aa93e874b635d7b84af42bac3f4f/src/extras/favicon.ico -------------------------------------------------------------------------------- /src/extras/humans.txt: -------------------------------------------------------------------------------- 1 | # humanstxt.org/ 2 | # The humans responsible & technology colophon 3 | 4 | # TEAM 5 | 6 | -- -- 7 | 8 | # THANKS 9 | 10 | 11 | 12 | # TECHNOLOGY COLOPHON 13 | 14 | HTML5, CSS3 15 | -------------------------------------------------------------------------------- /src/extras/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Fly Starter Kit", 3 | "short_name": "FSK", 4 | "icons": [{ 5 | "src": "img/touch/icon-128x128.png", 6 | "sizes": "128x128", 7 | "type": "image/png" 8 | }, { 9 | "src": "img/touch/apple-touch-icon.png", 10 | "sizes": "152x152", 11 | "type": "image/png" 12 | }, { 13 | "src": "img/touch/ms-touch-icon-144x144-precomposed.png", 14 | "sizes": "144x144", 15 | "type": "image/png" 16 | }, { 17 | "src": "img/touch/chrome-touch-icon-192x192.png", 18 | "sizes": "192x192", 19 | "type": "image/png" 20 | }], 21 | "start_url": "/index.html?homescreen=1", 22 | "display": "standalone", 23 | "background_color": "#3E4EB8", 24 | "theme_color": "#2F3BA2" 25 | } 26 | -------------------------------------------------------------------------------- /src/extras/manifest.webapp: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0", 3 | "name": "Fly Starter Kit", 4 | "launch_path": "/index.html", 5 | "description": "A front-end starter kit that helps you build fast, modern mobile web apps, via Fly.js.", 6 | "icons": { 7 | "128": "/img/touch/icon-128x128.png" 8 | }, 9 | "developer": { 10 | "name": "", 11 | "url": "" 12 | }, 13 | "installs_allowed_from": [ 14 | "*" 15 | ], 16 | "default_locale": "en", 17 | "permissions": { 18 | }, 19 | "locales": { 20 | "en": { 21 | "name": "Fly Starter Kit", 22 | "description": "A front-end starter kit that helps you build fast, modern mobile web apps, via Fly.js." 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/extras/robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | 3 | # Allow crawling of all content 4 | User-agent: * 5 | Disallow: 6 | -------------------------------------------------------------------------------- /src/fonts/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/fly-kit-web/72aadc7bb7b9aa93e874b635d7b84af42bac3f4f/src/fonts/.gitkeep -------------------------------------------------------------------------------- /src/images/touch/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/fly-kit-web/72aadc7bb7b9aa93e874b635d7b84af42bac3f4f/src/images/touch/apple-touch-icon.png -------------------------------------------------------------------------------- /src/images/touch/chrome-touch-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/fly-kit-web/72aadc7bb7b9aa93e874b635d7b84af42bac3f4f/src/images/touch/chrome-touch-icon-192x192.png -------------------------------------------------------------------------------- /src/images/touch/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/fly-kit-web/72aadc7bb7b9aa93e874b635d7b84af42bac3f4f/src/images/touch/icon-128x128.png -------------------------------------------------------------------------------- /src/images/touch/ms-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/fly-kit-web/72aadc7bb7b9aa93e874b635d7b84af42bac3f4f/src/images/touch/ms-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Fly Starter Kit 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 38 | 39 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 |
56 |
57 |
58 |
59 |
60 |

Fly Starter Kit

61 |
62 |
63 |
64 |
65 | Overview 66 | Features 67 | Details 68 | Technology 69 | FAQ 70 | 74 |
75 |
76 |
77 |
78 |
79 |
80 | play_circle_filled 81 |
82 |
83 |
84 |

Features

85 | Dolore ex deserunt aute fugiat aute nulla ea sunt aliqua nisi cupidatat eu. Nostrud in laboris labore nisi amet do dolor eu fugiat consectetur elit cillum esse. 86 |
87 |
88 | Read our features 89 |
90 |
91 | 94 |
    95 |
  • Lorem
  • 96 |
  • Ipsum
  • 97 |
  • Dolor
  • 98 |
99 |
100 |
101 |
102 |
103 |

Details

104 |
105 |
106 |
107 |
108 |
Lorem ipsum dolor sit amet
109 | Dolore ex deserunt aute fugiat aute nulla ea sunt aliqua nisi cupidatat eu. Duis nulla tempor do aute et eiusmod velit exercitation nostrud quis proident minim. 110 |
111 |
112 |
113 |
114 |
115 |
Lorem ipsum dolor sit amet
116 | Dolore ex deserunt aute fugiat aute nulla ea sunt aliqua nisi cupidatat eu. Duis nulla tempor do aute et eiusmod velit exercitation nostrud quis proident minim. 117 |
118 |
119 |
120 |
121 |
122 |
Lorem ipsum dolor sit amet
123 | Dolore ex deserunt aute fugiat aute nulla ea sunt aliqua nisi cupidatat eu. Duis nulla tempor do aute et eiusmod velit exercitation nostrud quis proident minim. 124 |
125 |
126 |
127 | Read our features 128 |
129 |
130 | 133 |
    134 |
  • Lorem
  • 135 |
  • Ipsum
  • 136 |
  • Dolor
  • 137 |
138 |
139 |
140 |
141 |
142 |

Technology

143 | Dolore ex deserunt aute fugiat aute nulla ea sunt aliqua nisi cupidatat eu. Nostrud in laboris labore nisi amet do dolor eu fugiat consectetur elit cillum esse. Pariatur occaecat nisi laboris tempor laboris eiusmod qui id Lorem esse commodo in. Exercitation aute dolore deserunt culpa consequat elit labore incididunt elit anim. 144 |
145 |
146 | Read our features 147 |
148 |
149 | 152 |
    153 |
  • Lorem
  • 154 |
  • Ipsum
  • 155 |
  • Dolor
  • 156 |
157 |
158 | 174 |
175 |
176 |
177 |
178 |

Features

179 | Minim duis incididunt est cillum est ex occaecat consectetur. Qui sint ut et qui nisi cupidatat. Reprehenderit nostrud proident officia exercitation anim et pariatur ex. 180 | 188 | 189 |
Lorem ipsum dolor sit amet
190 | Excepteur et pariatur officia veniam anim culpa cupidatat consequat ad velit culpa est non. 191 |
    192 |
  • Nisi qui nisi duis commodo duis reprehenderit consequat velit aliquip.
  • 193 |
  • Dolor consectetur incididunt in ipsum laborum non et irure pariatur excepteur anim occaecat officia sint.
  • 194 |
  • Lorem labore proident officia excepteur do.
  • 195 |
196 | 197 |

198 | Sit qui est voluptate proident minim cillum in aliquip cupidatat labore pariatur id tempor id. Proident occaecat occaecat sint mollit tempor duis dolor cillum anim. Dolore sunt ea mollit fugiat in aliqua consequat nostrud aliqua ut irure in dolore. Proident aliqua culpa sint sint exercitation. Non proident occaecat reprehenderit veniam et proident dolor id culpa ea tempor do dolor. Nulla adipisicing qui fugiat id dolor. Nostrud magna voluptate irure veniam veniam labore ipsum deserunt adipisicing laboris amet eu irure. Sunt dolore nisi velit sit id. Nostrud voluptate labore proident cupidatat enim amet Lorem officia magna excepteur occaecat eu qui. Exercitation culpa deserunt non et tempor et non. 199 |

200 |

201 | Do dolor eiusmod eu mollit dolore nostrud deserunt cillum irure esse sint irure fugiat exercitation. Magna sit voluptate id in tempor elit veniam enim cupidatat ea labore elit. Aliqua pariatur eu nulla labore magna dolore mollit occaecat sint commodo culpa. Eu non minim duis pariatur Lorem quis exercitation. Sunt qui ex incididunt sit anim incididunt sit elit ad officia id. 202 |

203 |

204 | Tempor voluptate ex consequat fugiat aliqua. Do sit et reprehenderit culpa deserunt culpa. Excepteur quis minim mollit irure nulla excepteur enim quis in laborum. Aliqua elit voluptate ad deserunt nulla reprehenderit adipisicing sint. Est in eiusmod exercitation esse commodo. Ea reprehenderit exercitation veniam adipisicing minim nostrud. Veniam dolore ex ea occaecat non enim minim id ut aliqua adipisicing ad. Occaecat excepteur aliqua tempor cupidatat aute dolore deserunt ipsum qui incididunt aliqua occaecat sit quis. Culpa sint aliqua aliqua reprehenderit veniam irure fugiat ea ad. 205 |

206 |

207 | Eu minim fugiat laborum irure veniam Lorem aliqua enim. Aliqua veniam incididunt consequat irure consequat tempor do nisi deserunt. Elit dolore ad quis consectetur sint laborum anim magna do nostrud amet. Ea nulla sit consequat quis qui irure dolor. Sint deserunt excepteur consectetur magna irure. Dolor tempor exercitation dolore pariatur incididunt ut laboris fugiat ipsum sunt veniam aute sunt labore. Non dolore sit nostrud eu ad excepteur cillum eu ex Lorem duis. 208 |

209 |

210 | Id occaecat velit non ipsum occaecat aliqua quis ut. Eiusmod est magna non esse est ex incididunt aute ullamco. Cillum excepteur sint ipsum qui quis velit incididunt amet. Qui deserunt anim enim laborum cillum reprehenderit duis mollit amet ad officia enim. Minim sint et quis aliqua aliqua do minim officia dolor deserunt ipsum laboris. Nulla nisi voluptate consectetur est voluptate et amet. Occaecat ut quis adipisicing ad enim. Magna est magna sit duis proident veniam reprehenderit fugiat reprehenderit enim velit ex. Ullamco laboris culpa irure aliquip ad Lorem consequat veniam ad ipsum eu. Ipsum culpa dolore sunt officia laborum quis. 211 |

212 | 213 |
Lorem ipsum dolor sit amet
214 | 215 |

216 | Eiusmod nulla aliquip ipsum reprehenderit nostrud non excepteur mollit amet esse est est dolor. Dolore quis pariatur sit consectetur veniam esse ullamco duis Lorem qui enim ut veniam. Officia deserunt minim duis laborum dolor in velit pariatur commodo ullamco eu. Aute adipisicing ad duis labore laboris do mollit dolor cillum sunt aliqua ullamco. Esse tempor quis cillum consequat reprehenderit. Adipisicing proident anim eu sint elit aliqua anim dolore cupidatat fugiat aliquip qui. 217 |

218 |

219 | Nisi eiusmod esse cupidatat excepteur exercitation ipsum reprehenderit nostrud deserunt aliqua ullamco. Anim est irure commodo eiusmod pariatur officia. Est dolor ipsum excepteur magna aliqua ad veniam irure qui occaecat eiusmod aute fugiat commodo. Quis mollit incididunt amet sit minim velit eu fugiat voluptate excepteur. Sit minim id pariatur ex cupidatat cupidatat nostrud nostrud ipsum. 220 |

221 |

222 | Enim ea officia excepteur ad veniam id reprehenderit eiusmod esse mollit consequat. Esse non aute ullamco Lorem aliqua qui dolore irure eiusmod aute aliqua proident labore aliqua. Ipsum voluptate voluptate exercitation laborum deserunt nulla elit aliquip et minim ex veniam. Duis cupidatat aute sunt officia mollit dolor ad elit ad aute labore nostrud duis pariatur. In est sint voluptate consectetur velit ea non labore. Ut duis ea aliqua consequat nulla laboris fugiat aute id culpa proident. Minim eiusmod laboris enim Lorem nisi excepteur mollit voluptate enim labore reprehenderit officia mollit. 223 |

224 |

225 | Cupidatat labore nisi ut sunt voluptate quis sunt qui ad Lorem esse nisi. Ex esse velit ullamco incididunt occaecat dolore veniam tempor minim adipisicing amet. Consequat in exercitation est elit anim consequat cillum sint labore cillum. Aliquip mollit laboris ad labore anim. 226 |

227 |
228 |
229 |
230 | 283 |
284 |
285 | 286 | 287 | 288 | 289 | 290 | 291 | 299 | 300 | 301 | -------------------------------------------------------------------------------- /src/scripts/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var $ = require('./demo'); 4 | 5 | var obj = $.generate(); 6 | 7 | var str; 8 | for (var k in obj) { 9 | str = [k, obj[k]].map($.capitalize).join(' '); 10 | console.log(str); 11 | } 12 | -------------------------------------------------------------------------------- /src/scripts/demo.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** 4 | * Capitalize the String. 5 | * @param {String} str 6 | * @return {String} 7 | */ 8 | exports.capitalize = function (str) { 9 | return (str && str.length) ? (str.charAt(0).toUpperCase() + str.slice(1)) : ''; 10 | }; 11 | 12 | /** 13 | * Return a random object 14 | * @return {Object} 15 | */ 16 | exports.generate = function () { 17 | return { 18 | hi: 'there', 19 | hello: 'world', 20 | howdy: 'partner' 21 | }; 22 | }; 23 | -------------------------------------------------------------------------------- /src/styles/_demo.scss: -------------------------------------------------------------------------------- 1 | html, body { 2 | font-family: 'Roboto', 'Helvetica', sans-serif; 3 | margin: 0; 4 | padding: 0; 5 | } 6 | .mdl-demo .mdl-layout__header-row { 7 | padding-left: 40px; 8 | } 9 | .mdl-demo .mdl-layout.is-small-screen .mdl-layout__header-row h3 { 10 | font-size: inherit; 11 | } 12 | .mdl-demo .mdl-layout__tab-bar-button { 13 | display: none; 14 | } 15 | .mdl-demo .mdl-layout.is-small-screen .mdl-layout__tab-bar .mdl-button { 16 | display: none; 17 | } 18 | .mdl-demo .mdl-layout:not(.is-small-screen) .mdl-layout__tab-bar, 19 | .mdl-demo .mdl-layout:not(.is-small-screen) .mdl-layout__tab-bar-container { 20 | overflow: visible; 21 | } 22 | .mdl-demo .mdl-layout__tab-bar-container { 23 | height: 64px; 24 | } 25 | .mdl-demo .mdl-layout__tab-bar { 26 | padding: 0; 27 | padding-left: 16px; 28 | box-sizing: border-box; 29 | height: 100%; 30 | width: 100%; 31 | } 32 | .mdl-demo .mdl-layout__tab-bar .mdl-layout__tab { 33 | height: 64px; 34 | line-height: 64px; 35 | } 36 | .mdl-demo .mdl-layout__tab-bar .mdl-layout__tab.is-active::after { 37 | background-color: white; 38 | height: 4px; 39 | } 40 | .mdl-demo main > .mdl-layout__tab-panel { 41 | padding: 8px; 42 | padding-top: 48px; 43 | } 44 | .mdl-demo .mdl-card { 45 | height: auto; 46 | display: flex; 47 | flex-direction: column; 48 | } 49 | .mdl-demo .mdl-card > * { 50 | height: auto; 51 | } 52 | .mdl-demo .mdl-card .mdl-card__supporting-text { 53 | margin: 40px; 54 | flex-grow: 1; 55 | padding: 0; 56 | color: inherit; 57 | width: calc(100% - 80px); 58 | } 59 | .mdl-demo.mdl-demo .mdl-card__supporting-text h4 { 60 | margin-top: 0; 61 | margin-bottom: 20px; 62 | } 63 | .mdl-demo .mdl-card__actions { 64 | margin: 0; 65 | padding: 4px 40px; 66 | color: inherit; 67 | } 68 | .mdl-demo .mdl-card__actions a { 69 | color: #00BCD4; 70 | margin: 0; 71 | } 72 | .mdl-demo .mdl-card__actions a:hover, 73 | .mdl-demo .mdl-card__actions a:active { 74 | color: inherit; 75 | background-color: transparent; 76 | } 77 | .mdl-demo .mdl-card__supporting-text + .mdl-card__actions { 78 | border-top: 1px solid rgba(0, 0, 0, 0.12); 79 | } 80 | .mdl-demo #add { 81 | position: absolute; 82 | right: 40px; 83 | top: 36px; 84 | z-index: 999; 85 | } 86 | 87 | .mdl-demo .mdl-layout__content section:not(:last-of-type) { 88 | position: relative; 89 | margin-bottom: 48px; 90 | } 91 | .mdl-demo section.section--center { 92 | max-width: 860px; 93 | } 94 | .mdl-demo #features section.section--center { 95 | max-width: 620px; 96 | } 97 | .mdl-demo section > header{ 98 | display: flex; 99 | align-items: center; 100 | justify-content: center; 101 | } 102 | .mdl-demo section > .section__play-btn { 103 | min-height: 200px; 104 | } 105 | .mdl-demo section > header > .material-icons { 106 | font-size: 3rem; 107 | } 108 | .mdl-demo section > button { 109 | position: absolute; 110 | z-index: 99; 111 | top: 8px; 112 | right: 8px; 113 | } 114 | .mdl-demo section .section__circle { 115 | display: flex; 116 | align-items: center; 117 | justify-content: flex-start; 118 | flex-grow: 0; 119 | flex-shrink: 1; 120 | } 121 | .mdl-demo section .section__text { 122 | flex-grow: 1; 123 | flex-shrink: 0; 124 | padding-top: 8px; 125 | } 126 | .mdl-demo section .section__text h5 { 127 | font-size: inherit; 128 | margin: 0; 129 | margin-bottom: 0.5em; 130 | } 131 | .mdl-demo section .section__text a { 132 | text-decoration: none; 133 | } 134 | .mdl-demo section .section__circle-container > .section__circle-container__circle { 135 | width: 64px; 136 | height: 64px; 137 | border-radius: 32px; 138 | margin: 8px 0; 139 | } 140 | .mdl-demo section.section--footer .section__circle--big { 141 | width: 100px; 142 | height: 100px; 143 | border-radius: 50px; 144 | margin: 8px 32px; 145 | } 146 | .mdl-demo .is-small-screen section.section--footer .section__circle--big { 147 | width: 50px; 148 | height: 50px; 149 | border-radius: 25px; 150 | margin: 8px 16px; 151 | } 152 | .mdl-demo section.section--footer { 153 | padding: 64px 0; 154 | margin: 0 -8px -8px -8px; 155 | } 156 | .mdl-demo section.section--center .section__text:not(:last-child) { 157 | border-bottom: 1px solid rgba(0,0,0,.13); 158 | } 159 | .mdl-demo .mdl-card .mdl-card__supporting-text > h3:first-child { 160 | margin-bottom: 24px; 161 | } 162 | .mdl-demo .mdl-layout__tab-panel:not(#overview) { 163 | background-color: white; 164 | } 165 | .mdl-demo #features section { 166 | margin-bottom: 72px; 167 | } 168 | .mdl-demo #features h4, #features h5 { 169 | margin-bottom: 16px; 170 | } 171 | .mdl-demo .toc { 172 | border-left: 4px solid #C1EEF4; 173 | margin: 24px; 174 | padding: 0; 175 | padding-left: 8px; 176 | display: flex; 177 | flex-direction: column; 178 | } 179 | .mdl-demo .toc h4 { 180 | font-size: 0.9rem; 181 | margin-top: 0; 182 | } 183 | .mdl-demo .toc a { 184 | color: #4DD0E1; 185 | text-decoration: none; 186 | font-size: 16px; 187 | line-height: 28px; 188 | display: block; 189 | } 190 | .mdl-demo .mdl-menu__container { 191 | z-index: 99; 192 | } 193 | -------------------------------------------------------------------------------- /src/styles/app.sass: -------------------------------------------------------------------------------- 1 | /** 2 | * MAIN STYLESHEET 3 | */ 4 | 5 | @import 'demo' 6 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | JSONStream@^1.0.3: 6 | version "1.2.1" 7 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.2.1.tgz#32aa5790e799481083b49b4b7fa94e23bae69bf9" 8 | dependencies: 9 | jsonparse "^1.2.0" 10 | through ">=2.2.7 <3" 11 | 12 | abbrev@1: 13 | version "1.0.9" 14 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 15 | 16 | accepts@1.3.3, accepts@~1.3.3: 17 | version "1.3.3" 18 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 19 | dependencies: 20 | mime-types "~2.1.11" 21 | negotiator "0.6.1" 22 | 23 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: 24 | version "3.0.1" 25 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 26 | dependencies: 27 | acorn "^3.0.4" 28 | 29 | acorn-object-spread@^1.0.0: 30 | version "1.0.0" 31 | resolved "https://registry.yarnpkg.com/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz#48ead0f4a8eb16995a17a0db9ffc6acaada4ba68" 32 | dependencies: 33 | acorn "^3.1.0" 34 | 35 | acorn@^1.0.3: 36 | version "1.2.2" 37 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014" 38 | 39 | acorn@^2.7.0: 40 | version "2.7.0" 41 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 42 | 43 | acorn@^3.0.4, acorn@^3.1.0: 44 | version "3.3.0" 45 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 46 | 47 | acorn@^4.0.1: 48 | version "4.0.3" 49 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1" 50 | 51 | after@0.8.1: 52 | version "0.8.1" 53 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.1.tgz#ab5d4fb883f596816d3515f8f791c0af486dd627" 54 | 55 | ajv-keywords@^1.0.0: 56 | version "1.1.1" 57 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50" 58 | 59 | ajv@^4.7.0: 60 | version "4.9.0" 61 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.9.0.tgz#5a358085747b134eb567d6d15e015f1d7802f45c" 62 | dependencies: 63 | co "^4.6.0" 64 | json-stable-stringify "^1.0.1" 65 | 66 | align-text@^0.1.1, align-text@^0.1.3: 67 | version "0.1.4" 68 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 69 | dependencies: 70 | kind-of "^3.0.2" 71 | longest "^1.0.1" 72 | repeat-string "^1.5.2" 73 | 74 | amdefine@>=0.0.4: 75 | version "1.0.1" 76 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 77 | 78 | ansi-align@^1.1.0: 79 | version "1.1.0" 80 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 81 | dependencies: 82 | string-width "^1.0.1" 83 | 84 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 85 | version "1.4.0" 86 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 87 | 88 | ansi-regex@^2.0.0: 89 | version "2.0.0" 90 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 91 | 92 | ansi-styles@^2.2.1: 93 | version "2.2.1" 94 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 95 | 96 | anymatch@^1.3.0: 97 | version "1.3.0" 98 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 99 | dependencies: 100 | arrify "^1.0.0" 101 | micromatch "^2.1.5" 102 | 103 | aproba@^1.0.3: 104 | version "1.0.4" 105 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 106 | 107 | are-we-there-yet@~1.1.2: 108 | version "1.1.2" 109 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 110 | dependencies: 111 | delegates "^1.0.0" 112 | readable-stream "^2.0.0 || ^1.1.13" 113 | 114 | argparse@^1.0.7: 115 | version "1.0.9" 116 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 117 | dependencies: 118 | sprintf-js "~1.0.2" 119 | 120 | arr-diff@^2.0.0: 121 | version "2.0.0" 122 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 123 | dependencies: 124 | arr-flatten "^1.0.1" 125 | 126 | arr-flatten@^1.0.1: 127 | version "1.0.1" 128 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 129 | 130 | array-differ@^1.0.0: 131 | version "1.0.0" 132 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 133 | 134 | array-filter@~0.0.0: 135 | version "0.0.1" 136 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 137 | 138 | array-find-index@^1.0.1: 139 | version "1.0.2" 140 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 141 | 142 | array-index@^1.0.0: 143 | version "1.0.0" 144 | resolved "https://registry.yarnpkg.com/array-index/-/array-index-1.0.0.tgz#ec56a749ee103e4e08c790b9c353df16055b97f9" 145 | dependencies: 146 | debug "^2.2.0" 147 | es6-symbol "^3.0.2" 148 | 149 | array-map@~0.0.0: 150 | version "0.0.0" 151 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 152 | 153 | array-reduce@~0.0.0: 154 | version "0.0.0" 155 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 156 | 157 | array-union@^1.0.1: 158 | version "1.0.2" 159 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 160 | dependencies: 161 | array-uniq "^1.0.1" 162 | 163 | array-uniq@^1.0.1: 164 | version "1.0.3" 165 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 166 | 167 | array-unique@^0.2.1: 168 | version "0.2.1" 169 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 170 | 171 | arraybuffer.slice@0.0.6: 172 | version "0.0.6" 173 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca" 174 | 175 | arrify@^1.0.0, arrify@^1.0.1: 176 | version "1.0.1" 177 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 178 | 179 | asn1.js@^4.0.0: 180 | version "4.9.0" 181 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.0.tgz#f71a1243f3e79d46d7b07d7fbf4824ee73af054a" 182 | dependencies: 183 | bn.js "^4.0.0" 184 | inherits "^2.0.1" 185 | minimalistic-assert "^1.0.0" 186 | 187 | asn1@~0.2.3: 188 | version "0.2.3" 189 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 190 | 191 | assert-plus@^0.2.0: 192 | version "0.2.0" 193 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 194 | 195 | assert-plus@^1.0.0: 196 | version "1.0.0" 197 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 198 | 199 | assert@~1.3.0: 200 | version "1.3.0" 201 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.3.0.tgz#03939a622582a812cc202320a0b9a56c9b815849" 202 | dependencies: 203 | util "0.10.3" 204 | 205 | astw@^2.0.0: 206 | version "2.0.0" 207 | resolved "https://registry.yarnpkg.com/astw/-/astw-2.0.0.tgz#08121ac8288d35611c0ceec663f6cd545604897d" 208 | dependencies: 209 | acorn "^1.0.3" 210 | 211 | async-each-series@0.1.1: 212 | version "0.1.1" 213 | resolved "https://registry.yarnpkg.com/async-each-series/-/async-each-series-0.1.1.tgz#7617c1917401fd8ca4a28aadce3dbae98afeb432" 214 | 215 | async-each@^1.0.0: 216 | version "1.0.1" 217 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 218 | 219 | async-foreach@^0.1.3: 220 | version "0.1.3" 221 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" 222 | 223 | async@1.5.2: 224 | version "1.5.2" 225 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 226 | 227 | async@~0.2.6: 228 | version "0.2.10" 229 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 230 | 231 | asynckit@^0.4.0: 232 | version "0.4.0" 233 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 234 | 235 | autoprefixer@^6.0.0: 236 | version "6.5.3" 237 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.5.3.tgz#2d853af66d04449fcf50db3066279ab54c3e4b01" 238 | dependencies: 239 | browserslist "~1.4.0" 240 | caniuse-db "^1.0.30000578" 241 | normalize-range "^0.1.2" 242 | num2fraction "^1.2.2" 243 | postcss "^5.2.5" 244 | postcss-value-parser "^3.2.3" 245 | 246 | aws-sign2@~0.6.0: 247 | version "0.6.0" 248 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 249 | 250 | aws4@^1.2.1: 251 | version "1.5.0" 252 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 253 | 254 | babel-code-frame@^6.16.0: 255 | version "6.16.0" 256 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" 257 | dependencies: 258 | chalk "^1.1.0" 259 | esutils "^2.0.2" 260 | js-tokens "^2.0.0" 261 | 262 | backo2@1.0.2: 263 | version "1.0.2" 264 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 265 | 266 | balanced-match@^0.4.1: 267 | version "0.4.2" 268 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 269 | 270 | base64-arraybuffer@0.1.5: 271 | version "0.1.5" 272 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 273 | 274 | base64-js@^1.0.2: 275 | version "1.2.0" 276 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 277 | 278 | base64id@0.1.0: 279 | version "0.1.0" 280 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-0.1.0.tgz#02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f" 281 | 282 | batch@0.5.3: 283 | version "0.5.3" 284 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 285 | 286 | bcrypt-pbkdf@^1.0.0: 287 | version "1.0.0" 288 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 289 | dependencies: 290 | tweetnacl "^0.14.3" 291 | 292 | better-assert@~1.0.0: 293 | version "1.0.2" 294 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 295 | dependencies: 296 | callsite "1.0.0" 297 | 298 | binary-extensions@^1.0.0: 299 | version "1.7.0" 300 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 301 | 302 | blob@0.0.4: 303 | version "0.0.4" 304 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 305 | 306 | block-stream@*: 307 | version "0.0.9" 308 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 309 | dependencies: 310 | inherits "~2.0.0" 311 | 312 | bluebird@^3.4.7: 313 | version "3.4.7" 314 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.7.tgz#f72d760be09b7f76d08ed8fae98b289a8d05fab3" 315 | 316 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 317 | version "4.11.6" 318 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 319 | 320 | boom@2.x.x: 321 | version "2.10.1" 322 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 323 | dependencies: 324 | hoek "2.x.x" 325 | 326 | boxen@^0.6.0: 327 | version "0.6.0" 328 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" 329 | dependencies: 330 | ansi-align "^1.1.0" 331 | camelcase "^2.1.0" 332 | chalk "^1.1.1" 333 | cli-boxes "^1.0.0" 334 | filled-array "^1.0.0" 335 | object-assign "^4.0.1" 336 | repeating "^2.0.0" 337 | string-width "^1.0.1" 338 | widest-line "^1.0.0" 339 | 340 | brace-expansion@^1.0.0: 341 | version "1.1.6" 342 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 343 | dependencies: 344 | balanced-match "^0.4.1" 345 | concat-map "0.0.1" 346 | 347 | braces@^1.8.2: 348 | version "1.8.5" 349 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 350 | dependencies: 351 | expand-range "^1.8.1" 352 | preserve "^0.2.0" 353 | repeat-element "^1.1.2" 354 | 355 | brorand@^1.0.1: 356 | version "1.0.6" 357 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.6.tgz#4028706b915f91f7b349a2e0bf3c376039d216e5" 358 | 359 | browser-pack@^6.0.1: 360 | version "6.0.1" 361 | resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.0.1.tgz#779887c792eaa1f64a46a22c8f1051cdcd96755f" 362 | dependencies: 363 | JSONStream "^1.0.3" 364 | combine-source-map "~0.7.1" 365 | defined "^1.0.0" 366 | through2 "^2.0.0" 367 | umd "^3.0.0" 368 | 369 | browser-resolve@^1.11.0, browser-resolve@^1.7.0: 370 | version "1.11.2" 371 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 372 | dependencies: 373 | resolve "1.1.7" 374 | 375 | browser-sync-client@2.4.4: 376 | version "2.4.4" 377 | resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.4.4.tgz#e2a6c27f770e0ad0ffed76964dfb6a971fcf55eb" 378 | dependencies: 379 | etag "^1.7.0" 380 | fresh "^0.3.0" 381 | 382 | browser-sync-ui@0.6.3: 383 | version "0.6.3" 384 | resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-0.6.3.tgz#640a537c180689303d5be92bc476b9ebc441c0bc" 385 | dependencies: 386 | async-each-series "0.1.1" 387 | connect-history-api-fallback "^1.1.0" 388 | immutable "^3.7.6" 389 | server-destroy "1.0.1" 390 | stream-throttle "^0.1.3" 391 | weinre "^2.0.0-pre-I0Z7U9OV" 392 | 393 | browser-sync@^2.18.7: 394 | version "2.18.7" 395 | resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.18.7.tgz#12d93b875d2c4dba815246cead0fcdff94a62907" 396 | dependencies: 397 | browser-sync-client "2.4.4" 398 | browser-sync-ui "0.6.3" 399 | bs-recipes "1.3.4" 400 | chokidar "1.6.1" 401 | connect "3.5.0" 402 | dev-ip "^1.0.1" 403 | easy-extender "2.3.2" 404 | eazy-logger "3.0.2" 405 | emitter-steward "^1.0.0" 406 | fs-extra "1.0.0" 407 | http-proxy "1.15.2" 408 | immutable "3.8.1" 409 | localtunnel "1.8.2" 410 | micromatch "2.3.11" 411 | opn "4.0.2" 412 | portscanner "2.1.1" 413 | qs "6.2.1" 414 | resp-modifier "6.0.2" 415 | rx "4.1.0" 416 | serve-index "1.8.0" 417 | serve-static "1.11.1" 418 | server-destroy "1.0.1" 419 | socket.io "1.6.0" 420 | socket.io-client "1.6.0" 421 | ua-parser-js "0.7.12" 422 | yargs "6.4.0" 423 | 424 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 425 | version "1.0.6" 426 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 427 | dependencies: 428 | buffer-xor "^1.0.2" 429 | cipher-base "^1.0.0" 430 | create-hash "^1.1.0" 431 | evp_bytestokey "^1.0.0" 432 | inherits "^2.0.1" 433 | 434 | browserify-cipher@^1.0.0: 435 | version "1.0.0" 436 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 437 | dependencies: 438 | browserify-aes "^1.0.4" 439 | browserify-des "^1.0.0" 440 | evp_bytestokey "^1.0.0" 441 | 442 | browserify-des@^1.0.0: 443 | version "1.0.0" 444 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 445 | dependencies: 446 | cipher-base "^1.0.1" 447 | des.js "^1.0.0" 448 | inherits "^2.0.1" 449 | 450 | browserify-rsa@^4.0.0: 451 | version "4.0.1" 452 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 453 | dependencies: 454 | bn.js "^4.1.0" 455 | randombytes "^2.0.1" 456 | 457 | browserify-sign@^4.0.0: 458 | version "4.0.0" 459 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" 460 | dependencies: 461 | bn.js "^4.1.1" 462 | browserify-rsa "^4.0.0" 463 | create-hash "^1.1.0" 464 | create-hmac "^1.1.2" 465 | elliptic "^6.0.0" 466 | inherits "^2.0.1" 467 | parse-asn1 "^5.0.0" 468 | 469 | browserify-zlib@~0.1.2: 470 | version "0.1.4" 471 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 472 | dependencies: 473 | pako "~0.2.0" 474 | 475 | browserify@^13.0.0: 476 | version "13.1.1" 477 | resolved "https://registry.yarnpkg.com/browserify/-/browserify-13.1.1.tgz#72a2310e2f706ed87db929cf0ee73a5e195d9bb0" 478 | dependencies: 479 | JSONStream "^1.0.3" 480 | assert "~1.3.0" 481 | browser-pack "^6.0.1" 482 | browser-resolve "^1.11.0" 483 | browserify-zlib "~0.1.2" 484 | buffer "^4.1.0" 485 | cached-path-relative "^1.0.0" 486 | concat-stream "~1.5.1" 487 | console-browserify "^1.1.0" 488 | constants-browserify "~1.0.0" 489 | crypto-browserify "^3.0.0" 490 | defined "^1.0.0" 491 | deps-sort "^2.0.0" 492 | domain-browser "~1.1.0" 493 | duplexer2 "~0.1.2" 494 | events "~1.1.0" 495 | glob "^5.0.15" 496 | has "^1.0.0" 497 | htmlescape "^1.1.0" 498 | https-browserify "~0.0.0" 499 | inherits "~2.0.1" 500 | insert-module-globals "^7.0.0" 501 | labeled-stream-splicer "^2.0.0" 502 | module-deps "^4.0.8" 503 | os-browserify "~0.1.1" 504 | parents "^1.0.1" 505 | path-browserify "~0.0.0" 506 | process "~0.11.0" 507 | punycode "^1.3.2" 508 | querystring-es3 "~0.2.0" 509 | read-only-stream "^2.0.0" 510 | readable-stream "^2.0.2" 511 | resolve "^1.1.4" 512 | shasum "^1.0.0" 513 | shell-quote "^1.4.3" 514 | stream-browserify "^2.0.0" 515 | stream-http "^2.0.0" 516 | string_decoder "~0.10.0" 517 | subarg "^1.0.0" 518 | syntax-error "^1.1.1" 519 | through2 "^2.0.0" 520 | timers-browserify "^1.0.1" 521 | tty-browserify "~0.0.0" 522 | url "~0.11.0" 523 | util "~0.10.1" 524 | vm-browserify "~0.0.1" 525 | xtend "^4.0.0" 526 | 527 | browserslist@~1.4.0: 528 | version "1.4.0" 529 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.4.0.tgz#9cfdcf5384d9158f5b70da2aa00b30e8ff019049" 530 | dependencies: 531 | caniuse-db "^1.0.30000539" 532 | 533 | bs-recipes@1.3.4: 534 | version "1.3.4" 535 | resolved "https://registry.yarnpkg.com/bs-recipes/-/bs-recipes-1.3.4.tgz#0d2d4d48a718c8c044769fdc4f89592dc8b69585" 536 | 537 | buble@^0.12.0: 538 | version "0.12.5" 539 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.12.5.tgz#c66ffe92f9f4a3c65d3256079b711e2bd0bc5013" 540 | dependencies: 541 | acorn "^3.1.0" 542 | acorn-jsx "^3.0.1" 543 | acorn-object-spread "^1.0.0" 544 | chalk "^1.1.3" 545 | magic-string "^0.14.0" 546 | minimist "^1.2.0" 547 | os-homedir "^1.0.1" 548 | 549 | bubleify@^0.5.1: 550 | version "0.5.1" 551 | resolved "https://registry.yarnpkg.com/bubleify/-/bubleify-0.5.1.tgz#f65c47cee31b80cad8b9e747bbe187d7fe51e927" 552 | dependencies: 553 | buble "^0.12.0" 554 | object-assign "^4.0.1" 555 | 556 | buf-compare@^1.0.0: 557 | version "1.0.1" 558 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 559 | 560 | buffer-shims@^1.0.0: 561 | version "1.0.0" 562 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 563 | 564 | buffer-xor@^1.0.2: 565 | version "1.0.3" 566 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 567 | 568 | buffer@^4.1.0: 569 | version "4.9.1" 570 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 571 | dependencies: 572 | base64-js "^1.0.2" 573 | ieee754 "^1.1.4" 574 | isarray "^1.0.0" 575 | 576 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 577 | version "1.1.1" 578 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 579 | 580 | builtin-status-codes@^2.0.0: 581 | version "2.0.0" 582 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-2.0.0.tgz#6f22003baacf003ccd287afe6872151fddc58579" 583 | 584 | cached-path-relative@^1.0.0: 585 | version "1.0.0" 586 | resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.0.tgz#d1094c577fbd9a8b8bd43c96af6188aa205d05f4" 587 | 588 | caller-path@^0.1.0: 589 | version "0.1.0" 590 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 591 | dependencies: 592 | callsites "^0.2.0" 593 | 594 | callsite@1.0.0: 595 | version "1.0.0" 596 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 597 | 598 | callsites@^0.2.0: 599 | version "0.2.0" 600 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 601 | 602 | camel-case@3.0.x: 603 | version "3.0.0" 604 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 605 | dependencies: 606 | no-case "^2.2.0" 607 | upper-case "^1.1.1" 608 | 609 | camelcase-keys@^2.0.0: 610 | version "2.1.0" 611 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 612 | dependencies: 613 | camelcase "^2.0.0" 614 | map-obj "^1.0.0" 615 | 616 | camelcase@^1.0.2, camelcase@^1.2.1: 617 | version "1.2.1" 618 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 619 | 620 | camelcase@^2.0.0, camelcase@^2.1.0: 621 | version "2.1.1" 622 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 623 | 624 | camelcase@^3.0.0: 625 | version "3.0.0" 626 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 627 | 628 | caniuse-db@^1.0.30000539, caniuse-db@^1.0.30000578: 629 | version "1.0.30000584" 630 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000584.tgz#cfbce897a48145fa73f96d893025581e838648c4" 631 | 632 | capture-stack-trace@^1.0.0: 633 | version "1.0.0" 634 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 635 | 636 | caseless@~0.11.0: 637 | version "0.11.0" 638 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 639 | 640 | center-align@^0.1.1: 641 | version "0.1.3" 642 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 643 | dependencies: 644 | align-text "^0.1.3" 645 | lazy-cache "^1.0.3" 646 | 647 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 648 | version "1.1.3" 649 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 650 | dependencies: 651 | ansi-styles "^2.2.1" 652 | escape-string-regexp "^1.0.2" 653 | has-ansi "^2.0.0" 654 | strip-ansi "^3.0.0" 655 | supports-color "^2.0.0" 656 | 657 | chokidar@1.6.1, chokidar@^1.6.1: 658 | version "1.6.1" 659 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 660 | dependencies: 661 | anymatch "^1.3.0" 662 | async-each "^1.0.0" 663 | glob-parent "^2.0.0" 664 | inherits "^2.0.1" 665 | is-binary-path "^1.0.0" 666 | is-glob "^2.0.0" 667 | path-is-absolute "^1.0.0" 668 | readdirp "^2.0.0" 669 | optionalDependencies: 670 | fsevents "^1.0.0" 671 | 672 | cipher-base@^1.0.0, cipher-base@^1.0.1: 673 | version "1.0.3" 674 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 675 | dependencies: 676 | inherits "^2.0.1" 677 | 678 | circular-json@^0.3.0: 679 | version "0.3.1" 680 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 681 | 682 | clean-css@3.4.x: 683 | version "3.4.21" 684 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.21.tgz#2101d5dbd19d63dbc16a75ebd570e7c33948f65b" 685 | dependencies: 686 | commander "2.8.x" 687 | source-map "0.4.x" 688 | 689 | cli-boxes@^1.0.0: 690 | version "1.0.0" 691 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 692 | 693 | cli-cursor@^1.0.1: 694 | version "1.0.2" 695 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 696 | dependencies: 697 | restore-cursor "^1.0.1" 698 | 699 | cli-width@^2.0.0: 700 | version "2.1.0" 701 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 702 | 703 | cliui@^2.1.0: 704 | version "2.1.0" 705 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 706 | dependencies: 707 | center-align "^0.1.1" 708 | right-align "^0.1.1" 709 | wordwrap "0.0.2" 710 | 711 | cliui@^3.0.3, cliui@^3.2.0: 712 | version "3.2.0" 713 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 714 | dependencies: 715 | string-width "^1.0.1" 716 | strip-ansi "^3.0.1" 717 | wrap-ansi "^2.0.0" 718 | 719 | clor@^5.0.0: 720 | version "5.0.1" 721 | resolved "https://registry.yarnpkg.com/clor/-/clor-5.0.1.tgz#597c9183a9ebc033d671721333c2ca862d1dfabf" 722 | 723 | co@^4.6.0: 724 | version "4.6.0" 725 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 726 | 727 | code-point-at@^1.0.0: 728 | version "1.1.0" 729 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 730 | 731 | combine-source-map@~0.7.1: 732 | version "0.7.2" 733 | resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.7.2.tgz#0870312856b307a87cc4ac486f3a9a62aeccc09e" 734 | dependencies: 735 | convert-source-map "~1.1.0" 736 | inline-source-map "~0.6.0" 737 | lodash.memoize "~3.0.3" 738 | source-map "~0.5.3" 739 | 740 | combined-stream@^1.0.5, combined-stream@~1.0.5: 741 | version "1.0.5" 742 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 743 | dependencies: 744 | delayed-stream "~1.0.0" 745 | 746 | commander@2.8.x: 747 | version "2.8.1" 748 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" 749 | dependencies: 750 | graceful-readlink ">= 1.0.0" 751 | 752 | commander@2.9.x, commander@^2.2.0, commander@^2.9.0: 753 | version "2.9.0" 754 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 755 | dependencies: 756 | graceful-readlink ">= 1.0.0" 757 | 758 | component-bind@1.0.0: 759 | version "1.0.0" 760 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 761 | 762 | component-emitter@1.1.2: 763 | version "1.1.2" 764 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3" 765 | 766 | component-emitter@1.2.1: 767 | version "1.2.1" 768 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 769 | 770 | component-inherit@0.0.3: 771 | version "0.0.3" 772 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 773 | 774 | concat-map@0.0.1: 775 | version "0.0.1" 776 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 777 | 778 | concat-stream@^1.4.6, concat-stream@~1.5.0, concat-stream@~1.5.1: 779 | version "1.5.2" 780 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 781 | dependencies: 782 | inherits "~2.0.1" 783 | readable-stream "~2.0.0" 784 | typedarray "~0.0.5" 785 | 786 | concat-with-sourcemaps@^1.0.4: 787 | version "1.0.4" 788 | resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.4.tgz#f55b3be2aeb47601b10a2d5259ccfb70fd2f1dd6" 789 | dependencies: 790 | source-map "^0.5.1" 791 | 792 | configstore@^2.0.0: 793 | version "2.1.0" 794 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" 795 | dependencies: 796 | dot-prop "^3.0.0" 797 | graceful-fs "^4.1.2" 798 | mkdirp "^0.5.0" 799 | object-assign "^4.0.1" 800 | os-tmpdir "^1.0.0" 801 | osenv "^0.1.0" 802 | uuid "^2.0.1" 803 | write-file-atomic "^1.1.2" 804 | xdg-basedir "^2.0.0" 805 | 806 | connect-history-api-fallback@^1.1.0: 807 | version "1.3.0" 808 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" 809 | 810 | connect@1.x: 811 | version "1.9.2" 812 | resolved "https://registry.yarnpkg.com/connect/-/connect-1.9.2.tgz#42880a22e9438ae59a8add74e437f58ae8e52807" 813 | dependencies: 814 | formidable "1.0.x" 815 | mime ">= 0.0.1" 816 | qs ">= 0.4.0" 817 | 818 | connect@3.5.0: 819 | version "3.5.0" 820 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.5.0.tgz#b357525a0b4c1f50599cd983e1d9efeea9677198" 821 | dependencies: 822 | debug "~2.2.0" 823 | finalhandler "0.5.0" 824 | parseurl "~1.3.1" 825 | utils-merge "1.0.0" 826 | 827 | console-browserify@^1.1.0: 828 | version "1.1.0" 829 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 830 | dependencies: 831 | date-now "^0.1.4" 832 | 833 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 834 | version "1.1.0" 835 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 836 | 837 | constants-browserify@~1.0.0: 838 | version "1.0.0" 839 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 840 | 841 | contains-path@^0.1.0: 842 | version "0.1.0" 843 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 844 | 845 | convert-source-map@~1.1.0: 846 | version "1.1.3" 847 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" 848 | 849 | cookie@0.3.1: 850 | version "0.3.1" 851 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 852 | 853 | core-assert@^0.2.0: 854 | version "0.2.1" 855 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 856 | dependencies: 857 | buf-compare "^1.0.0" 858 | is-error "^2.2.0" 859 | 860 | core-js@^2.0.0: 861 | version "2.4.1" 862 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 863 | 864 | core-util-is@~1.0.0: 865 | version "1.0.2" 866 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 867 | 868 | create-ecdh@^4.0.0: 869 | version "4.0.0" 870 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 871 | dependencies: 872 | bn.js "^4.1.0" 873 | elliptic "^6.0.0" 874 | 875 | create-error-class@^3.0.1: 876 | version "3.0.2" 877 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 878 | dependencies: 879 | capture-stack-trace "^1.0.0" 880 | 881 | create-hash@^1.1.0, create-hash@^1.1.1: 882 | version "1.1.2" 883 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 884 | dependencies: 885 | cipher-base "^1.0.1" 886 | inherits "^2.0.1" 887 | ripemd160 "^1.0.0" 888 | sha.js "^2.3.6" 889 | 890 | create-hmac@^1.1.0, create-hmac@^1.1.2: 891 | version "1.1.4" 892 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 893 | dependencies: 894 | create-hash "^1.1.0" 895 | inherits "^2.0.1" 896 | 897 | cross-spawn@^3.0.0: 898 | version "3.0.1" 899 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" 900 | dependencies: 901 | lru-cache "^4.0.1" 902 | which "^1.2.9" 903 | 904 | cross-spawn@^4.0.0: 905 | version "4.0.2" 906 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 907 | dependencies: 908 | lru-cache "^4.0.1" 909 | which "^1.2.9" 910 | 911 | cryptiles@2.x.x: 912 | version "2.0.5" 913 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 914 | dependencies: 915 | boom "2.x.x" 916 | 917 | crypto-browserify@^3.0.0: 918 | version "3.11.0" 919 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 920 | dependencies: 921 | browserify-cipher "^1.0.0" 922 | browserify-sign "^4.0.0" 923 | create-ecdh "^4.0.0" 924 | create-hash "^1.1.0" 925 | create-hmac "^1.1.0" 926 | diffie-hellman "^5.0.0" 927 | inherits "^2.0.1" 928 | pbkdf2 "^3.0.3" 929 | public-encrypt "^4.0.0" 930 | randombytes "^2.0.0" 931 | 932 | currently-unhandled@^0.4.1: 933 | version "0.4.1" 934 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 935 | dependencies: 936 | array-find-index "^1.0.1" 937 | 938 | d@^0.1.1, d@~0.1.1: 939 | version "0.1.1" 940 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 941 | dependencies: 942 | es5-ext "~0.10.2" 943 | 944 | dashdash@^1.12.0: 945 | version "1.14.0" 946 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141" 947 | dependencies: 948 | assert-plus "^1.0.0" 949 | 950 | date-now@^0.1.4: 951 | version "0.1.4" 952 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 953 | 954 | debug@2.2.0, debug@~2.2.0: 955 | version "2.2.0" 956 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 957 | dependencies: 958 | ms "0.7.1" 959 | 960 | debug@2.3.3, debug@^2.1.1: 961 | version "2.3.3" 962 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" 963 | dependencies: 964 | ms "0.7.2" 965 | 966 | debug@^2.2.0: 967 | version "2.3.2" 968 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.2.tgz#94cb466ef7d6d2c7e5245cdd6e4104f2d0d70d30" 969 | dependencies: 970 | ms "0.7.2" 971 | 972 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 973 | version "1.2.0" 974 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 975 | 976 | deep-assign@^1.0.0: 977 | version "1.0.0" 978 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-1.0.0.tgz#b092743be8427dc621ea0067cdec7e70dd19f37b" 979 | dependencies: 980 | is-obj "^1.0.0" 981 | 982 | deep-extend@~0.4.0: 983 | version "0.4.1" 984 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 985 | 986 | deep-is@~0.1.3: 987 | version "0.1.3" 988 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 989 | 990 | deep-strict-equal@^0.2.0: 991 | version "0.2.0" 992 | resolved "https://registry.yarnpkg.com/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz#4a078147a8ab57f6a0d4f5547243cd22f44eb4e4" 993 | dependencies: 994 | core-assert "^0.2.0" 995 | 996 | defined@^1.0.0: 997 | version "1.0.0" 998 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 999 | 1000 | del@^2.0.2: 1001 | version "2.2.2" 1002 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1003 | dependencies: 1004 | globby "^5.0.0" 1005 | is-path-cwd "^1.0.0" 1006 | is-path-in-cwd "^1.0.0" 1007 | object-assign "^4.0.1" 1008 | pify "^2.0.0" 1009 | pinkie-promise "^2.0.0" 1010 | rimraf "^2.2.8" 1011 | 1012 | delayed-stream@~1.0.0: 1013 | version "1.0.0" 1014 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1015 | 1016 | delegates@^1.0.0: 1017 | version "1.0.0" 1018 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1019 | 1020 | depd@~1.1.0: 1021 | version "1.1.0" 1022 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1023 | 1024 | deps-sort@^2.0.0: 1025 | version "2.0.0" 1026 | resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz#091724902e84658260eb910748cccd1af6e21fb5" 1027 | dependencies: 1028 | JSONStream "^1.0.3" 1029 | shasum "^1.0.0" 1030 | subarg "^1.0.0" 1031 | through2 "^2.0.0" 1032 | 1033 | des.js@^1.0.0: 1034 | version "1.0.0" 1035 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1036 | dependencies: 1037 | inherits "^2.0.1" 1038 | minimalistic-assert "^1.0.0" 1039 | 1040 | destroy@~1.0.4: 1041 | version "1.0.4" 1042 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1043 | 1044 | detective@^4.0.0: 1045 | version "4.3.2" 1046 | resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" 1047 | dependencies: 1048 | acorn "^3.1.0" 1049 | defined "^1.0.0" 1050 | 1051 | dev-ip@^1.0.1: 1052 | version "1.0.1" 1053 | resolved "https://registry.yarnpkg.com/dev-ip/-/dev-ip-1.0.1.tgz#a76a3ed1855be7a012bb8ac16cb80f3c00dc28f0" 1054 | 1055 | diffie-hellman@^5.0.0: 1056 | version "5.0.2" 1057 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1058 | dependencies: 1059 | bn.js "^4.1.0" 1060 | miller-rabin "^4.0.0" 1061 | randombytes "^2.0.0" 1062 | 1063 | doctrine@1.5.0, doctrine@^1.2.2: 1064 | version "1.5.0" 1065 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1066 | dependencies: 1067 | esutils "^2.0.2" 1068 | isarray "^1.0.0" 1069 | 1070 | domain-browser@~1.1.0: 1071 | version "1.1.7" 1072 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1073 | 1074 | dot-prop@^3.0.0: 1075 | version "3.0.0" 1076 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 1077 | dependencies: 1078 | is-obj "^1.0.0" 1079 | 1080 | duplexer2@^0.1.2, duplexer2@^0.1.4, duplexer2@~0.1.0, duplexer2@~0.1.2: 1081 | version "0.1.4" 1082 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 1083 | dependencies: 1084 | readable-stream "^2.0.2" 1085 | 1086 | easy-extender@2.3.2: 1087 | version "2.3.2" 1088 | resolved "https://registry.yarnpkg.com/easy-extender/-/easy-extender-2.3.2.tgz#3d3248febe2b159607316d8f9cf491c16648221d" 1089 | dependencies: 1090 | lodash "^3.10.1" 1091 | 1092 | eazy-logger@3.0.2: 1093 | version "3.0.2" 1094 | resolved "https://registry.yarnpkg.com/eazy-logger/-/eazy-logger-3.0.2.tgz#a325aa5e53d13a2225889b2ac4113b2b9636f4fc" 1095 | dependencies: 1096 | tfunk "^3.0.1" 1097 | 1098 | ecc-jsbn@~0.1.1: 1099 | version "0.1.1" 1100 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1101 | dependencies: 1102 | jsbn "~0.1.0" 1103 | 1104 | ee-first@1.1.1: 1105 | version "1.1.1" 1106 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1107 | 1108 | elliptic@^6.0.0: 1109 | version "6.3.2" 1110 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.2.tgz#e4c81e0829cf0a65ab70e998b8232723b5c1bc48" 1111 | dependencies: 1112 | bn.js "^4.4.0" 1113 | brorand "^1.0.1" 1114 | hash.js "^1.0.0" 1115 | inherits "^2.0.1" 1116 | 1117 | emitter-steward@^1.0.0: 1118 | version "1.0.0" 1119 | resolved "https://registry.yarnpkg.com/emitter-steward/-/emitter-steward-1.0.0.tgz#f3411ade9758a7565df848b2da0cbbd1b46cbd64" 1120 | 1121 | encodeurl@~1.0.1: 1122 | version "1.0.1" 1123 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1124 | 1125 | engine.io-client@1.8.0: 1126 | version "1.8.0" 1127 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.0.tgz#7b730e4127414087596d9be3c88d2bc5fdb6cf5c" 1128 | dependencies: 1129 | component-emitter "1.2.1" 1130 | component-inherit "0.0.3" 1131 | debug "2.3.3" 1132 | engine.io-parser "1.3.1" 1133 | has-cors "1.1.0" 1134 | indexof "0.0.1" 1135 | parsejson "0.0.3" 1136 | parseqs "0.0.5" 1137 | parseuri "0.0.5" 1138 | ws "1.1.1" 1139 | xmlhttprequest-ssl "1.5.3" 1140 | yeast "0.1.2" 1141 | 1142 | engine.io-parser@1.3.1: 1143 | version "1.3.1" 1144 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.1.tgz#9554f1ae33107d6fbd170ca5466d2f833f6a07cf" 1145 | dependencies: 1146 | after "0.8.1" 1147 | arraybuffer.slice "0.0.6" 1148 | base64-arraybuffer "0.1.5" 1149 | blob "0.0.4" 1150 | has-binary "0.1.6" 1151 | wtf-8 "1.0.0" 1152 | 1153 | engine.io@1.8.0: 1154 | version "1.8.0" 1155 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.0.tgz#3eeb5f264cb75dbbec1baaea26d61f5a4eace2aa" 1156 | dependencies: 1157 | accepts "1.3.3" 1158 | base64id "0.1.0" 1159 | cookie "0.3.1" 1160 | debug "2.3.3" 1161 | engine.io-parser "1.3.1" 1162 | ws "1.1.1" 1163 | 1164 | enhance-visitors@^1.0.0: 1165 | version "1.0.0" 1166 | resolved "https://registry.yarnpkg.com/enhance-visitors/-/enhance-visitors-1.0.0.tgz#aa945d05da465672a1ebd38fee2ed3da8518e95a" 1167 | dependencies: 1168 | lodash "^4.13.1" 1169 | 1170 | error-ex@^1.2.0: 1171 | version "1.3.0" 1172 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1173 | dependencies: 1174 | is-arrayish "^0.2.1" 1175 | 1176 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 1177 | version "0.10.12" 1178 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 1179 | dependencies: 1180 | es6-iterator "2" 1181 | es6-symbol "~3.1" 1182 | 1183 | es6-iterator@2: 1184 | version "2.0.0" 1185 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 1186 | dependencies: 1187 | d "^0.1.1" 1188 | es5-ext "^0.10.7" 1189 | es6-symbol "3" 1190 | 1191 | es6-map@^0.1.3: 1192 | version "0.1.4" 1193 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1194 | dependencies: 1195 | d "~0.1.1" 1196 | es5-ext "~0.10.11" 1197 | es6-iterator "2" 1198 | es6-set "~0.1.3" 1199 | es6-symbol "~3.1.0" 1200 | event-emitter "~0.3.4" 1201 | 1202 | es6-set@~0.1.3: 1203 | version "0.1.4" 1204 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1205 | dependencies: 1206 | d "~0.1.1" 1207 | es5-ext "~0.10.11" 1208 | es6-iterator "2" 1209 | es6-symbol "3" 1210 | event-emitter "~0.3.4" 1211 | 1212 | es6-symbol@3, es6-symbol@^3.0.2, es6-symbol@~3.1, es6-symbol@~3.1.0: 1213 | version "3.1.0" 1214 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 1215 | dependencies: 1216 | d "~0.1.1" 1217 | es5-ext "~0.10.11" 1218 | 1219 | es6-weak-map@^2.0.1: 1220 | version "2.0.1" 1221 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 1222 | dependencies: 1223 | d "^0.1.1" 1224 | es5-ext "^0.10.8" 1225 | es6-iterator "2" 1226 | es6-symbol "3" 1227 | 1228 | escape-html@~1.0.3: 1229 | version "1.0.3" 1230 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1231 | 1232 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1233 | version "1.0.5" 1234 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1235 | 1236 | escope@^3.6.0: 1237 | version "3.6.0" 1238 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1239 | dependencies: 1240 | es6-map "^0.1.3" 1241 | es6-weak-map "^2.0.1" 1242 | esrecurse "^4.1.0" 1243 | estraverse "^4.1.1" 1244 | 1245 | eslint-config-xo@^0.17.0: 1246 | version "0.17.0" 1247 | resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.17.0.tgz#1e7d4a86bf49179805c4622e832a7b1beeb4e881" 1248 | 1249 | eslint-formatter-pretty@^1.0.0: 1250 | version "1.1.0" 1251 | resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-1.1.0.tgz#ab4d06da02fed8c13ae9f0dc540a433ef7ed6f5e" 1252 | dependencies: 1253 | ansi-escapes "^1.4.0" 1254 | chalk "^1.1.3" 1255 | log-symbols "^1.0.2" 1256 | plur "^2.1.2" 1257 | string-width "^2.0.0" 1258 | 1259 | eslint-import-resolver-node@^0.2.0: 1260 | version "0.2.3" 1261 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1262 | dependencies: 1263 | debug "^2.2.0" 1264 | object-assign "^4.0.1" 1265 | resolve "^1.1.6" 1266 | 1267 | eslint-module-utils@^2.0.0: 1268 | version "2.0.0" 1269 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1270 | dependencies: 1271 | debug "2.2.0" 1272 | pkg-dir "^1.0.0" 1273 | 1274 | eslint-plugin-ava@^3.1.0: 1275 | version "3.1.1" 1276 | resolved "https://registry.yarnpkg.com/eslint-plugin-ava/-/eslint-plugin-ava-3.1.1.tgz#fdcf1ad9605867639ae0007d58100ee40a6de25d" 1277 | dependencies: 1278 | arrify "^1.0.1" 1279 | deep-strict-equal "^0.2.0" 1280 | enhance-visitors "^1.0.0" 1281 | espree "^3.1.3" 1282 | espurify "^1.5.0" 1283 | multimatch "^2.1.0" 1284 | pkg-up "^1.0.0" 1285 | req-all "^0.1.0" 1286 | 1287 | eslint-plugin-import@^2.0.0: 1288 | version "2.2.0" 1289 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1290 | dependencies: 1291 | builtin-modules "^1.1.1" 1292 | contains-path "^0.1.0" 1293 | debug "^2.2.0" 1294 | doctrine "1.5.0" 1295 | eslint-import-resolver-node "^0.2.0" 1296 | eslint-module-utils "^2.0.0" 1297 | has "^1.0.1" 1298 | lodash.cond "^4.3.0" 1299 | minimatch "^3.0.3" 1300 | pkg-up "^1.0.0" 1301 | 1302 | eslint-plugin-no-use-extend-native@^0.3.2: 1303 | version "0.3.12" 1304 | resolved "https://registry.yarnpkg.com/eslint-plugin-no-use-extend-native/-/eslint-plugin-no-use-extend-native-0.3.12.tgz#3ad9a00c2df23b5d7f7f6be91550985a4ab701ea" 1305 | dependencies: 1306 | is-get-set-prop "^1.0.0" 1307 | is-js-type "^2.0.0" 1308 | is-obj-prop "^1.0.0" 1309 | is-proto-prop "^1.0.0" 1310 | 1311 | eslint-plugin-promise@^3.0.0: 1312 | version "3.4.0" 1313 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.4.0.tgz#6ba9048c2df57be77d036e0c68918bc9b4fc4195" 1314 | 1315 | eslint-plugin-unicorn@^1.0.0: 1316 | version "1.0.0" 1317 | resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-1.0.0.tgz#b761ad233d34d164cda5c41217571609bd1ac161" 1318 | dependencies: 1319 | lodash.camelcase "^4.1.1" 1320 | lodash.kebabcase "^4.0.1" 1321 | lodash.snakecase "^4.0.1" 1322 | lodash.upperfirst "^4.2.0" 1323 | req-all "^0.1.0" 1324 | 1325 | eslint@^3.6.0: 1326 | version "3.10.2" 1327 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.10.2.tgz#c9a10e8bf6e9d65651204778c503341f1eac3ce7" 1328 | dependencies: 1329 | babel-code-frame "^6.16.0" 1330 | chalk "^1.1.3" 1331 | concat-stream "^1.4.6" 1332 | debug "^2.1.1" 1333 | doctrine "^1.2.2" 1334 | escope "^3.6.0" 1335 | espree "^3.3.1" 1336 | estraverse "^4.2.0" 1337 | esutils "^2.0.2" 1338 | file-entry-cache "^2.0.0" 1339 | glob "^7.0.3" 1340 | globals "^9.2.0" 1341 | ignore "^3.2.0" 1342 | imurmurhash "^0.1.4" 1343 | inquirer "^0.12.0" 1344 | is-my-json-valid "^2.10.0" 1345 | is-resolvable "^1.0.0" 1346 | js-yaml "^3.5.1" 1347 | json-stable-stringify "^1.0.0" 1348 | levn "^0.3.0" 1349 | lodash "^4.0.0" 1350 | mkdirp "^0.5.0" 1351 | natural-compare "^1.4.0" 1352 | optionator "^0.8.2" 1353 | path-is-inside "^1.0.1" 1354 | pluralize "^1.2.1" 1355 | progress "^1.1.8" 1356 | require-uncached "^1.0.2" 1357 | shelljs "^0.7.5" 1358 | strip-bom "^3.0.0" 1359 | strip-json-comments "~1.0.1" 1360 | table "^3.7.8" 1361 | text-table "~0.2.0" 1362 | user-home "^2.0.0" 1363 | 1364 | espree@^3.1.3, espree@^3.3.1: 1365 | version "3.3.2" 1366 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 1367 | dependencies: 1368 | acorn "^4.0.1" 1369 | acorn-jsx "^3.0.0" 1370 | 1371 | esprima@^2.6.0: 1372 | version "2.7.3" 1373 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1374 | 1375 | espurify@^1.5.0: 1376 | version "1.6.0" 1377 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.6.0.tgz#6cb993582d9422bd6f2d4b258aadb14833f394f0" 1378 | dependencies: 1379 | core-js "^2.0.0" 1380 | 1381 | esrecurse@^4.1.0: 1382 | version "4.1.0" 1383 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1384 | dependencies: 1385 | estraverse "~4.1.0" 1386 | object-assign "^4.0.1" 1387 | 1388 | estraverse@^4.1.1, estraverse@^4.2.0: 1389 | version "4.2.0" 1390 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1391 | 1392 | estraverse@~4.1.0: 1393 | version "4.1.1" 1394 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1395 | 1396 | esutils@^2.0.2: 1397 | version "2.0.2" 1398 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1399 | 1400 | etag@^1.7.0, etag@~1.7.0: 1401 | version "1.7.0" 1402 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1403 | 1404 | event-emitter@~0.3.4: 1405 | version "0.3.4" 1406 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1407 | dependencies: 1408 | d "~0.1.1" 1409 | es5-ext "~0.10.7" 1410 | 1411 | eventemitter3@1.x.x: 1412 | version "1.2.0" 1413 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1414 | 1415 | events@~1.1.0: 1416 | version "1.1.1" 1417 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1418 | 1419 | evp_bytestokey@^1.0.0: 1420 | version "1.0.0" 1421 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1422 | dependencies: 1423 | create-hash "^1.1.1" 1424 | 1425 | execa@^0.5.0: 1426 | version "0.5.0" 1427 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.0.tgz#a57456764b990e3e52f6eff7f17a9cc2ff2e7ccc" 1428 | dependencies: 1429 | cross-spawn "^4.0.0" 1430 | get-stream "^2.2.0" 1431 | is-stream "^1.1.0" 1432 | npm-run-path "^2.0.0" 1433 | signal-exit "^3.0.0" 1434 | strip-eof "^1.0.0" 1435 | 1436 | exit-hook@^1.0.0: 1437 | version "1.1.1" 1438 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1439 | 1440 | expand-brackets@^0.1.4: 1441 | version "0.1.5" 1442 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1443 | dependencies: 1444 | is-posix-bracket "^0.1.0" 1445 | 1446 | expand-range@^1.8.1: 1447 | version "1.8.2" 1448 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1449 | dependencies: 1450 | fill-range "^2.1.0" 1451 | 1452 | express@2.5.x: 1453 | version "2.5.11" 1454 | resolved "https://registry.yarnpkg.com/express/-/express-2.5.11.tgz#4ce8ea1f3635e69e49f0ebb497b6a4b0a51ce6f0" 1455 | dependencies: 1456 | connect "1.x" 1457 | mime "1.2.4" 1458 | mkdirp "0.3.0" 1459 | qs "0.4.x" 1460 | 1461 | extend@~3.0.0: 1462 | version "3.0.0" 1463 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1464 | 1465 | extglob@^0.3.1: 1466 | version "0.3.2" 1467 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1468 | dependencies: 1469 | is-extglob "^1.0.0" 1470 | 1471 | extsprintf@1.0.2: 1472 | version "1.0.2" 1473 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1474 | 1475 | fast-levenshtein@~2.0.4: 1476 | version "2.0.5" 1477 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 1478 | 1479 | figures@^1.3.5: 1480 | version "1.7.0" 1481 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1482 | dependencies: 1483 | escape-string-regexp "^1.0.5" 1484 | object-assign "^4.1.0" 1485 | 1486 | file-entry-cache@^2.0.0: 1487 | version "2.0.0" 1488 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1489 | dependencies: 1490 | flat-cache "^1.2.1" 1491 | object-assign "^4.0.1" 1492 | 1493 | filename-regex@^2.0.0: 1494 | version "2.0.0" 1495 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1496 | 1497 | fill-range@^2.1.0: 1498 | version "2.2.3" 1499 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1500 | dependencies: 1501 | is-number "^2.1.0" 1502 | isobject "^2.0.0" 1503 | randomatic "^1.1.3" 1504 | repeat-element "^1.1.2" 1505 | repeat-string "^1.5.2" 1506 | 1507 | filled-array@^1.0.0: 1508 | version "1.1.0" 1509 | resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" 1510 | 1511 | finalhandler@0.5.0: 1512 | version "0.5.0" 1513 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" 1514 | dependencies: 1515 | debug "~2.2.0" 1516 | escape-html "~1.0.3" 1517 | on-finished "~2.3.0" 1518 | statuses "~1.3.0" 1519 | unpipe "~1.0.0" 1520 | 1521 | find-up@^1.0.0: 1522 | version "1.1.2" 1523 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1524 | dependencies: 1525 | path-exists "^2.0.0" 1526 | pinkie-promise "^2.0.0" 1527 | 1528 | find-up@^2.0.0: 1529 | version "2.0.0" 1530 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.0.0.tgz#71e6dc2dad9222143cfc0fa5de7ab739e7320c05" 1531 | dependencies: 1532 | path-exists "^2.0.0" 1533 | 1534 | flat-cache@^1.2.1: 1535 | version "1.2.1" 1536 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 1537 | dependencies: 1538 | circular-json "^0.3.0" 1539 | del "^2.0.2" 1540 | graceful-fs "^4.1.2" 1541 | write "^0.2.1" 1542 | 1543 | fly-autoprefixer@^1.1.0: 1544 | version "1.1.0" 1545 | resolved "https://registry.yarnpkg.com/fly-autoprefixer/-/fly-autoprefixer-1.1.0.tgz#41a441e792bf28bd9ceec71831949c164e4f988b" 1546 | dependencies: 1547 | autoprefixer "^6.0.0" 1548 | postcss "^5.0.4" 1549 | 1550 | fly-browserify2@^2.1.0: 1551 | version "2.1.0" 1552 | resolved "https://registry.yarnpkg.com/fly-browserify2/-/fly-browserify2-2.1.0.tgz#1aad8b500c5b19658dc26e6743382cfc37c26b20" 1553 | dependencies: 1554 | arrify "^1.0.1" 1555 | browserify "^13.0.0" 1556 | 1557 | fly-clear@^1.0.0: 1558 | version "1.0.0" 1559 | resolved "https://registry.yarnpkg.com/fly-clear/-/fly-clear-1.0.0.tgz#6244cbadf06bc3eabb89cca9541d38fd9e6c1548" 1560 | dependencies: 1561 | arrify "^1.0.1" 1562 | bluebird "^3.4.7" 1563 | rimraf "^2.5.4" 1564 | 1565 | fly-concat@^1.2.0: 1566 | version "1.2.0" 1567 | resolved "https://registry.yarnpkg.com/fly-concat/-/fly-concat-1.2.0.tgz#cfee87db6c6b20666000429ed763b753708af344" 1568 | dependencies: 1569 | concat-with-sourcemaps "^1.0.4" 1570 | 1571 | fly-esnext@^2.0.0: 1572 | version "2.0.0" 1573 | resolved "https://registry.yarnpkg.com/fly-esnext/-/fly-esnext-2.0.0.tgz#013bf89a89e86005decd312a884725904f38e9e7" 1574 | dependencies: 1575 | require-like "^0.1.2" 1576 | 1577 | fly-htmlmin@^2.1.0: 1578 | version "2.1.0" 1579 | resolved "https://registry.yarnpkg.com/fly-htmlmin/-/fly-htmlmin-2.1.0.tgz#7bde44d5b05efb43edbffa16ff342b825905f009" 1580 | dependencies: 1581 | html-minifier "^3.1.0" 1582 | 1583 | fly-rev@^2.2.0: 1584 | version "2.2.0" 1585 | resolved "https://registry.yarnpkg.com/fly-rev/-/fly-rev-2.2.0.tgz#0ff8850efb070eabb54e185373d7c3b1e40cdae4" 1586 | dependencies: 1587 | rev-hash "^1.0.0" 1588 | sort-keys "^1.1.1" 1589 | 1590 | fly-sass@^2.1.0: 1591 | version "2.1.0" 1592 | resolved "https://registry.yarnpkg.com/fly-sass/-/fly-sass-2.1.0.tgz#d350c35b8b6a59e0f76be0739e546cfc71aab150" 1593 | dependencies: 1594 | node-sass "^4.5.0" 1595 | 1596 | fly-uglify@^2.1.0: 1597 | version "2.1.0" 1598 | resolved "https://registry.yarnpkg.com/fly-uglify/-/fly-uglify-2.1.0.tgz#5d0b0cbadbe270f7938400ef7517e8ffba581bbe" 1599 | dependencies: 1600 | uglify-js "^2.7.0" 1601 | 1602 | fly-watch@^1.1.0: 1603 | version "1.1.0" 1604 | resolved "https://registry.yarnpkg.com/fly-watch/-/fly-watch-1.1.0.tgz#ae20e2272374070bc60427ccd8226b42a455bc29" 1605 | dependencies: 1606 | arrify "^1.0.1" 1607 | chokidar "^1.6.1" 1608 | 1609 | fly-xo@^2.1.0: 1610 | version "2.1.0" 1611 | resolved "https://registry.yarnpkg.com/fly-xo/-/fly-xo-2.1.0.tgz#ef95ac62107578b9504bc7da1bb5f5cc60b81897" 1612 | dependencies: 1613 | xo "*" 1614 | 1615 | fly@^2.0.1: 1616 | version "2.0.1" 1617 | resolved "https://registry.yarnpkg.com/fly/-/fly-2.0.1.tgz#8bbd4ed523a7772cc14ba5c72814a00378c31b3e" 1618 | dependencies: 1619 | bluebird "^3.4.7" 1620 | clor "^5.0.0" 1621 | glob "^7.1.1" 1622 | minimist "^1.2.0" 1623 | mkdirp "^0.5.1" 1624 | 1625 | for-in@^0.1.5: 1626 | version "0.1.6" 1627 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1628 | 1629 | for-own@^0.1.4: 1630 | version "0.1.4" 1631 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1632 | dependencies: 1633 | for-in "^0.1.5" 1634 | 1635 | forever-agent@~0.6.1: 1636 | version "0.6.1" 1637 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1638 | 1639 | form-data@~2.1.1: 1640 | version "2.1.2" 1641 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1642 | dependencies: 1643 | asynckit "^0.4.0" 1644 | combined-stream "^1.0.5" 1645 | mime-types "^2.1.12" 1646 | 1647 | formidable@1.0.x: 1648 | version "1.0.17" 1649 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz#ef5491490f9433b705faa77249c99029ae348559" 1650 | 1651 | fresh@0.3.0, fresh@^0.3.0: 1652 | version "0.3.0" 1653 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1654 | 1655 | fs-extra@1.0.0: 1656 | version "1.0.0" 1657 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 1658 | dependencies: 1659 | graceful-fs "^4.1.2" 1660 | jsonfile "^2.1.0" 1661 | klaw "^1.0.0" 1662 | 1663 | fs.realpath@^1.0.0: 1664 | version "1.0.0" 1665 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1666 | 1667 | fsevents@^1.0.0: 1668 | version "1.0.15" 1669 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" 1670 | dependencies: 1671 | nan "^2.3.0" 1672 | node-pre-gyp "^0.6.29" 1673 | 1674 | fstream-ignore@~1.0.5: 1675 | version "1.0.5" 1676 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1677 | dependencies: 1678 | fstream "^1.0.0" 1679 | inherits "2" 1680 | minimatch "^3.0.0" 1681 | 1682 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1683 | version "1.0.10" 1684 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1685 | dependencies: 1686 | graceful-fs "^4.1.2" 1687 | inherits "~2.0.0" 1688 | mkdirp ">=0.5 0" 1689 | rimraf "2" 1690 | 1691 | function-bind@^1.0.2: 1692 | version "1.1.0" 1693 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1694 | 1695 | gauge@~2.6.0: 1696 | version "2.6.0" 1697 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" 1698 | dependencies: 1699 | aproba "^1.0.3" 1700 | console-control-strings "^1.0.0" 1701 | has-color "^0.1.7" 1702 | has-unicode "^2.0.0" 1703 | object-assign "^4.1.0" 1704 | signal-exit "^3.0.0" 1705 | string-width "^1.0.1" 1706 | strip-ansi "^3.0.1" 1707 | wide-align "^1.1.0" 1708 | 1709 | gauge@~2.7.1: 1710 | version "2.7.1" 1711 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.1.tgz#388473894fe8be5e13ffcdb8b93e4ed0616428c7" 1712 | dependencies: 1713 | aproba "^1.0.3" 1714 | console-control-strings "^1.0.0" 1715 | has-color "^0.1.7" 1716 | has-unicode "^2.0.0" 1717 | object-assign "^4.1.0" 1718 | signal-exit "^3.0.0" 1719 | string-width "^1.0.1" 1720 | strip-ansi "^3.0.1" 1721 | wide-align "^1.1.0" 1722 | 1723 | gaze@^1.0.0: 1724 | version "1.1.2" 1725 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" 1726 | dependencies: 1727 | globule "^1.0.0" 1728 | 1729 | generate-function@^2.0.0: 1730 | version "2.0.0" 1731 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1732 | 1733 | generate-object-property@^1.1.0: 1734 | version "1.2.0" 1735 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1736 | dependencies: 1737 | is-property "^1.0.0" 1738 | 1739 | get-caller-file@^1.0.1: 1740 | version "1.0.2" 1741 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1742 | 1743 | get-set-props@^0.1.0: 1744 | version "0.1.0" 1745 | resolved "https://registry.yarnpkg.com/get-set-props/-/get-set-props-0.1.0.tgz#998475c178445686d0b32246da5df8dbcfbe8ea3" 1746 | 1747 | get-stdin@^4.0.1: 1748 | version "4.0.1" 1749 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1750 | 1751 | get-stdin@^5.0.0: 1752 | version "5.0.1" 1753 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1754 | 1755 | get-stream@^2.2.0: 1756 | version "2.3.1" 1757 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1758 | dependencies: 1759 | object-assign "^4.0.1" 1760 | pinkie-promise "^2.0.0" 1761 | 1762 | getpass@^0.1.1: 1763 | version "0.1.6" 1764 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1765 | dependencies: 1766 | assert-plus "^1.0.0" 1767 | 1768 | glob-base@^0.3.0: 1769 | version "0.3.0" 1770 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1771 | dependencies: 1772 | glob-parent "^2.0.0" 1773 | is-glob "^2.0.0" 1774 | 1775 | glob-parent@^2.0.0: 1776 | version "2.0.0" 1777 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1778 | dependencies: 1779 | is-glob "^2.0.0" 1780 | 1781 | glob@^5.0.15: 1782 | version "5.0.15" 1783 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1784 | dependencies: 1785 | inflight "^1.0.4" 1786 | inherits "2" 1787 | minimatch "2 || 3" 1788 | once "^1.3.0" 1789 | path-is-absolute "^1.0.0" 1790 | 1791 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@~7.1.1: 1792 | version "7.1.1" 1793 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1794 | dependencies: 1795 | fs.realpath "^1.0.0" 1796 | inflight "^1.0.4" 1797 | inherits "2" 1798 | minimatch "^3.0.2" 1799 | once "^1.3.0" 1800 | path-is-absolute "^1.0.0" 1801 | 1802 | globals@^9.2.0: 1803 | version "9.13.0" 1804 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.13.0.tgz#d97706b61600d8dbe94708c367d3fdcf48470b8f" 1805 | 1806 | globby@^5.0.0: 1807 | version "5.0.0" 1808 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1809 | dependencies: 1810 | array-union "^1.0.1" 1811 | arrify "^1.0.0" 1812 | glob "^7.0.3" 1813 | object-assign "^4.0.1" 1814 | pify "^2.0.0" 1815 | pinkie-promise "^2.0.0" 1816 | 1817 | globby@^6.0.0: 1818 | version "6.1.0" 1819 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 1820 | dependencies: 1821 | array-union "^1.0.1" 1822 | glob "^7.0.3" 1823 | object-assign "^4.0.1" 1824 | pify "^2.0.0" 1825 | pinkie-promise "^2.0.0" 1826 | 1827 | globule@^1.0.0: 1828 | version "1.1.0" 1829 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.1.0.tgz#c49352e4dc183d85893ee825385eb994bb6df45f" 1830 | dependencies: 1831 | glob "~7.1.1" 1832 | lodash "~4.16.4" 1833 | minimatch "~3.0.2" 1834 | 1835 | got@^5.0.0: 1836 | version "5.7.1" 1837 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" 1838 | dependencies: 1839 | create-error-class "^3.0.1" 1840 | duplexer2 "^0.1.4" 1841 | is-redirect "^1.0.0" 1842 | is-retry-allowed "^1.0.0" 1843 | is-stream "^1.0.0" 1844 | lowercase-keys "^1.0.0" 1845 | node-status-codes "^1.0.0" 1846 | object-assign "^4.0.1" 1847 | parse-json "^2.1.0" 1848 | pinkie-promise "^2.0.0" 1849 | read-all-stream "^3.0.0" 1850 | readable-stream "^2.0.5" 1851 | timed-out "^3.0.0" 1852 | unzip-response "^1.0.2" 1853 | url-parse-lax "^1.0.0" 1854 | 1855 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1856 | version "4.1.10" 1857 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131" 1858 | 1859 | "graceful-readlink@>= 1.0.0": 1860 | version "1.0.1" 1861 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1862 | 1863 | har-validator@~2.0.6: 1864 | version "2.0.6" 1865 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1866 | dependencies: 1867 | chalk "^1.1.1" 1868 | commander "^2.9.0" 1869 | is-my-json-valid "^2.12.4" 1870 | pinkie-promise "^2.0.0" 1871 | 1872 | has-ansi@^2.0.0: 1873 | version "2.0.0" 1874 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1875 | dependencies: 1876 | ansi-regex "^2.0.0" 1877 | 1878 | has-binary@0.1.6: 1879 | version "0.1.6" 1880 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.6.tgz#25326f39cfa4f616ad8787894e3af2cfbc7b6e10" 1881 | dependencies: 1882 | isarray "0.0.1" 1883 | 1884 | has-binary@0.1.7: 1885 | version "0.1.7" 1886 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c" 1887 | dependencies: 1888 | isarray "0.0.1" 1889 | 1890 | has-color@^0.1.7: 1891 | version "0.1.7" 1892 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1893 | 1894 | has-cors@1.1.0: 1895 | version "1.1.0" 1896 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 1897 | 1898 | has-flag@^1.0.0: 1899 | version "1.0.0" 1900 | resolved "http://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1901 | 1902 | has-flag@^2.0.0: 1903 | version "2.0.0" 1904 | resolved "http://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1905 | 1906 | has-unicode@^2.0.0: 1907 | version "2.0.1" 1908 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1909 | 1910 | has@^1.0.0, has@^1.0.1: 1911 | version "1.0.1" 1912 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1913 | dependencies: 1914 | function-bind "^1.0.2" 1915 | 1916 | hash.js@^1.0.0: 1917 | version "1.0.3" 1918 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1919 | dependencies: 1920 | inherits "^2.0.1" 1921 | 1922 | hawk@~3.1.3: 1923 | version "3.1.3" 1924 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1925 | dependencies: 1926 | boom "2.x.x" 1927 | cryptiles "2.x.x" 1928 | hoek "2.x.x" 1929 | sntp "1.x.x" 1930 | 1931 | he@1.1.x: 1932 | version "1.1.0" 1933 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.0.tgz#29319d49beec13a9b1f3c4f9b2a6dde4859bb2a7" 1934 | 1935 | hoek@2.x.x: 1936 | version "2.16.3" 1937 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1938 | 1939 | hosted-git-info@^2.1.4: 1940 | version "2.1.5" 1941 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1942 | 1943 | html-minifier@^3.1.0: 1944 | version "3.2.2" 1945 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.2.2.tgz#30d9fc4f22967bf056c68851e42a787bd45089a5" 1946 | dependencies: 1947 | camel-case "3.0.x" 1948 | clean-css "3.4.x" 1949 | commander "2.9.x" 1950 | he "1.1.x" 1951 | ncname "1.0.x" 1952 | param-case "2.1.x" 1953 | relateurl "0.2.x" 1954 | uglify-js "2.7.x" 1955 | 1956 | htmlescape@^1.1.0: 1957 | version "1.1.1" 1958 | resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" 1959 | 1960 | http-errors@~1.5.0: 1961 | version "1.5.1" 1962 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1963 | dependencies: 1964 | inherits "2.0.3" 1965 | setprototypeof "1.0.2" 1966 | statuses ">= 1.3.1 < 2" 1967 | 1968 | http-proxy@1.15.2: 1969 | version "1.15.2" 1970 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.15.2.tgz#642fdcaffe52d3448d2bda3b0079e9409064da31" 1971 | dependencies: 1972 | eventemitter3 "1.x.x" 1973 | requires-port "1.x.x" 1974 | 1975 | http-signature@~1.1.0: 1976 | version "1.1.1" 1977 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1978 | dependencies: 1979 | assert-plus "^0.2.0" 1980 | jsprim "^1.2.2" 1981 | sshpk "^1.7.0" 1982 | 1983 | https-browserify@~0.0.0: 1984 | version "0.0.1" 1985 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1986 | 1987 | ieee754@^1.1.4: 1988 | version "1.1.8" 1989 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1990 | 1991 | ignore@^3.2.0: 1992 | version "3.2.0" 1993 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 1994 | 1995 | immutable@3.8.1, immutable@^3.7.6: 1996 | version "3.8.1" 1997 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.1.tgz#200807f11ab0f72710ea485542de088075f68cd2" 1998 | 1999 | imurmurhash@^0.1.4: 2000 | version "0.1.4" 2001 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2002 | 2003 | in-publish@^2.0.0: 2004 | version "2.0.0" 2005 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" 2006 | 2007 | indent-string@^2.1.0: 2008 | version "2.1.0" 2009 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 2010 | dependencies: 2011 | repeating "^2.0.0" 2012 | 2013 | indexof@0.0.1: 2014 | version "0.0.1" 2015 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 2016 | 2017 | inflight@^1.0.4: 2018 | version "1.0.6" 2019 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2020 | dependencies: 2021 | once "^1.3.0" 2022 | wrappy "1" 2023 | 2024 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 2025 | version "2.0.3" 2026 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2027 | 2028 | inherits@2.0.1: 2029 | version "2.0.1" 2030 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2031 | 2032 | ini@~1.3.0: 2033 | version "1.3.4" 2034 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2035 | 2036 | inline-source-map@~0.6.0: 2037 | version "0.6.2" 2038 | resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" 2039 | dependencies: 2040 | source-map "~0.5.3" 2041 | 2042 | inquirer@^0.12.0: 2043 | version "0.12.0" 2044 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 2045 | dependencies: 2046 | ansi-escapes "^1.1.0" 2047 | ansi-regex "^2.0.0" 2048 | chalk "^1.0.0" 2049 | cli-cursor "^1.0.1" 2050 | cli-width "^2.0.0" 2051 | figures "^1.3.5" 2052 | lodash "^4.3.0" 2053 | readline2 "^1.0.1" 2054 | run-async "^0.1.0" 2055 | rx-lite "^3.1.2" 2056 | string-width "^1.0.1" 2057 | strip-ansi "^3.0.0" 2058 | through "^2.3.6" 2059 | 2060 | insert-module-globals@^7.0.0: 2061 | version "7.0.1" 2062 | resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.0.1.tgz#c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3" 2063 | dependencies: 2064 | JSONStream "^1.0.3" 2065 | combine-source-map "~0.7.1" 2066 | concat-stream "~1.5.1" 2067 | is-buffer "^1.1.0" 2068 | lexical-scope "^1.2.0" 2069 | process "~0.11.0" 2070 | through2 "^2.0.0" 2071 | xtend "^4.0.0" 2072 | 2073 | interpret@^1.0.0: 2074 | version "1.0.1" 2075 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 2076 | 2077 | invert-kv@^1.0.0: 2078 | version "1.0.0" 2079 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2080 | 2081 | irregular-plurals@^1.0.0: 2082 | version "1.2.0" 2083 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 2084 | 2085 | is-arrayish@^0.2.1: 2086 | version "0.2.1" 2087 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2088 | 2089 | is-binary-path@^1.0.0: 2090 | version "1.0.1" 2091 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2092 | dependencies: 2093 | binary-extensions "^1.0.0" 2094 | 2095 | is-buffer@^1.0.2, is-buffer@^1.1.0: 2096 | version "1.1.4" 2097 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 2098 | 2099 | is-builtin-module@^1.0.0: 2100 | version "1.0.0" 2101 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2102 | dependencies: 2103 | builtin-modules "^1.0.0" 2104 | 2105 | is-dotfile@^1.0.0: 2106 | version "1.0.2" 2107 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2108 | 2109 | is-equal-shallow@^0.1.3: 2110 | version "0.1.3" 2111 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2112 | dependencies: 2113 | is-primitive "^2.0.0" 2114 | 2115 | is-error@^2.2.0: 2116 | version "2.2.1" 2117 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 2118 | 2119 | is-extendable@^0.1.1: 2120 | version "0.1.1" 2121 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2122 | 2123 | is-extglob@^1.0.0: 2124 | version "1.0.0" 2125 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2126 | 2127 | is-finite@^1.0.0: 2128 | version "1.0.2" 2129 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2130 | dependencies: 2131 | number-is-nan "^1.0.0" 2132 | 2133 | is-fullwidth-code-point@^1.0.0: 2134 | version "1.0.0" 2135 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2136 | dependencies: 2137 | number-is-nan "^1.0.0" 2138 | 2139 | is-fullwidth-code-point@^2.0.0: 2140 | version "2.0.0" 2141 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2142 | 2143 | is-get-set-prop@^1.0.0: 2144 | version "1.0.0" 2145 | resolved "https://registry.yarnpkg.com/is-get-set-prop/-/is-get-set-prop-1.0.0.tgz#2731877e4d78a6a69edcce6bb9d68b0779e76312" 2146 | dependencies: 2147 | get-set-props "^0.1.0" 2148 | lowercase-keys "^1.0.0" 2149 | 2150 | is-glob@^2.0.0, is-glob@^2.0.1: 2151 | version "2.0.1" 2152 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2153 | dependencies: 2154 | is-extglob "^1.0.0" 2155 | 2156 | is-js-type@^2.0.0: 2157 | version "2.0.0" 2158 | resolved "https://registry.yarnpkg.com/is-js-type/-/is-js-type-2.0.0.tgz#73617006d659b4eb4729bba747d28782df0f7e22" 2159 | dependencies: 2160 | js-types "^1.0.0" 2161 | 2162 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2163 | version "2.15.0" 2164 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 2165 | dependencies: 2166 | generate-function "^2.0.0" 2167 | generate-object-property "^1.1.0" 2168 | jsonpointer "^4.0.0" 2169 | xtend "^4.0.0" 2170 | 2171 | is-npm@^1.0.0: 2172 | version "1.0.0" 2173 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2174 | 2175 | is-number-like@^1.0.3: 2176 | version "1.0.7" 2177 | resolved "https://registry.yarnpkg.com/is-number-like/-/is-number-like-1.0.7.tgz#a38d6b0fd2cd4282449128859eed86c03fd23552" 2178 | dependencies: 2179 | bubleify "^0.5.1" 2180 | lodash.isfinite "^3.3.2" 2181 | 2182 | is-number@^2.0.2, is-number@^2.1.0: 2183 | version "2.1.0" 2184 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2185 | dependencies: 2186 | kind-of "^3.0.2" 2187 | 2188 | is-obj-prop@^1.0.0: 2189 | version "1.0.0" 2190 | resolved "https://registry.yarnpkg.com/is-obj-prop/-/is-obj-prop-1.0.0.tgz#b34de79c450b8d7c73ab2cdf67dc875adb85f80e" 2191 | dependencies: 2192 | lowercase-keys "^1.0.0" 2193 | obj-props "^1.0.0" 2194 | 2195 | is-obj@^1.0.0: 2196 | version "1.0.1" 2197 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 2198 | 2199 | is-path-cwd@^1.0.0: 2200 | version "1.0.0" 2201 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2202 | 2203 | is-path-in-cwd@^1.0.0: 2204 | version "1.0.0" 2205 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2206 | dependencies: 2207 | is-path-inside "^1.0.0" 2208 | 2209 | is-path-inside@^1.0.0: 2210 | version "1.0.0" 2211 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2212 | dependencies: 2213 | path-is-inside "^1.0.1" 2214 | 2215 | is-plain-obj@^1.0.0: 2216 | version "1.1.0" 2217 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2218 | 2219 | is-posix-bracket@^0.1.0: 2220 | version "0.1.1" 2221 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2222 | 2223 | is-primitive@^2.0.0: 2224 | version "2.0.0" 2225 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2226 | 2227 | is-property@^1.0.0: 2228 | version "1.0.2" 2229 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2230 | 2231 | is-proto-prop@^1.0.0: 2232 | version "1.0.0" 2233 | resolved "https://registry.yarnpkg.com/is-proto-prop/-/is-proto-prop-1.0.0.tgz#b3951f95c089924fb5d4fcda6542ab3e83e2b220" 2234 | dependencies: 2235 | lowercase-keys "^1.0.0" 2236 | proto-props "^0.2.0" 2237 | 2238 | is-redirect@^1.0.0: 2239 | version "1.0.0" 2240 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2241 | 2242 | is-resolvable@^1.0.0: 2243 | version "1.0.0" 2244 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2245 | dependencies: 2246 | tryit "^1.0.1" 2247 | 2248 | is-retry-allowed@^1.0.0: 2249 | version "1.1.0" 2250 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2251 | 2252 | is-stream@^1.0.0, is-stream@^1.1.0: 2253 | version "1.1.0" 2254 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2255 | 2256 | is-typedarray@~1.0.0: 2257 | version "1.0.0" 2258 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2259 | 2260 | is-utf8@^0.2.0: 2261 | version "0.2.1" 2262 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2263 | 2264 | isarray@0.0.1, isarray@~0.0.1: 2265 | version "0.0.1" 2266 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2267 | 2268 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2269 | version "1.0.0" 2270 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2271 | 2272 | isexe@^1.1.1: 2273 | version "1.1.2" 2274 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2275 | 2276 | isobject@^2.0.0: 2277 | version "2.1.0" 2278 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2279 | dependencies: 2280 | isarray "1.0.0" 2281 | 2282 | isstream@~0.1.2: 2283 | version "0.1.2" 2284 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2285 | 2286 | jodid25519@^1.0.0: 2287 | version "1.0.2" 2288 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2289 | dependencies: 2290 | jsbn "~0.1.0" 2291 | 2292 | js-base64@^2.1.9: 2293 | version "2.1.9" 2294 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 2295 | 2296 | js-tokens@^2.0.0: 2297 | version "2.0.0" 2298 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 2299 | 2300 | js-types@^1.0.0: 2301 | version "1.0.0" 2302 | resolved "https://registry.yarnpkg.com/js-types/-/js-types-1.0.0.tgz#d242e6494ed572ad3c92809fc8bed7f7687cbf03" 2303 | 2304 | js-yaml@^3.5.1: 2305 | version "3.7.0" 2306 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 2307 | dependencies: 2308 | argparse "^1.0.7" 2309 | esprima "^2.6.0" 2310 | 2311 | jsbn@~0.1.0: 2312 | version "0.1.0" 2313 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 2314 | 2315 | json-schema@0.2.3: 2316 | version "0.2.3" 2317 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2318 | 2319 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2320 | version "1.0.1" 2321 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2322 | dependencies: 2323 | jsonify "~0.0.0" 2324 | 2325 | json-stable-stringify@~0.0.0: 2326 | version "0.0.1" 2327 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" 2328 | dependencies: 2329 | jsonify "~0.0.0" 2330 | 2331 | json-stringify-safe@~5.0.1: 2332 | version "5.0.1" 2333 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2334 | 2335 | json3@3.3.2: 2336 | version "3.3.2" 2337 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2338 | 2339 | jsonfile@^2.1.0: 2340 | version "2.4.0" 2341 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2342 | optionalDependencies: 2343 | graceful-fs "^4.1.6" 2344 | 2345 | jsonify@~0.0.0: 2346 | version "0.0.0" 2347 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2348 | 2349 | jsonparse@^1.2.0: 2350 | version "1.2.0" 2351 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.2.0.tgz#5c0c5685107160e72fe7489bddea0b44c2bc67bd" 2352 | 2353 | jsonpointer@^4.0.0: 2354 | version "4.0.0" 2355 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 2356 | 2357 | jsprim@^1.2.2: 2358 | version "1.3.1" 2359 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2360 | dependencies: 2361 | extsprintf "1.0.2" 2362 | json-schema "0.2.3" 2363 | verror "1.3.6" 2364 | 2365 | kind-of@^3.0.2: 2366 | version "3.0.4" 2367 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 2368 | dependencies: 2369 | is-buffer "^1.0.2" 2370 | 2371 | klaw@^1.0.0: 2372 | version "1.3.1" 2373 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 2374 | optionalDependencies: 2375 | graceful-fs "^4.1.9" 2376 | 2377 | labeled-stream-splicer@^2.0.0: 2378 | version "2.0.0" 2379 | resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz#a52e1d138024c00b86b1c0c91f677918b8ae0a59" 2380 | dependencies: 2381 | inherits "^2.0.1" 2382 | isarray "~0.0.1" 2383 | stream-splicer "^2.0.0" 2384 | 2385 | latest-version@^2.0.0: 2386 | version "2.0.0" 2387 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" 2388 | dependencies: 2389 | package-json "^2.0.0" 2390 | 2391 | lazy-cache@^1.0.3: 2392 | version "1.0.4" 2393 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2394 | 2395 | lazy-req@^1.1.0: 2396 | version "1.1.0" 2397 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" 2398 | 2399 | lcid@^1.0.0: 2400 | version "1.0.0" 2401 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2402 | dependencies: 2403 | invert-kv "^1.0.0" 2404 | 2405 | levn@^0.3.0, levn@~0.3.0: 2406 | version "0.3.0" 2407 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2408 | dependencies: 2409 | prelude-ls "~1.1.2" 2410 | type-check "~0.3.2" 2411 | 2412 | lexical-scope@^1.2.0: 2413 | version "1.2.0" 2414 | resolved "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz#fcea5edc704a4b3a8796cdca419c3a0afaf22df4" 2415 | dependencies: 2416 | astw "^2.0.0" 2417 | 2418 | limiter@^1.0.5: 2419 | version "1.1.0" 2420 | resolved "https://registry.yarnpkg.com/limiter/-/limiter-1.1.0.tgz#6e2bd12ca3fcdaa11f224e2e53c896df3f08d913" 2421 | 2422 | load-json-file@^1.0.0: 2423 | version "1.1.0" 2424 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2425 | dependencies: 2426 | graceful-fs "^4.1.2" 2427 | parse-json "^2.2.0" 2428 | pify "^2.0.0" 2429 | pinkie-promise "^2.0.0" 2430 | strip-bom "^2.0.0" 2431 | 2432 | load-json-file@^2.0.0: 2433 | version "2.0.0" 2434 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2435 | dependencies: 2436 | graceful-fs "^4.1.2" 2437 | parse-json "^2.2.0" 2438 | pify "^2.0.0" 2439 | strip-bom "^3.0.0" 2440 | 2441 | localtunnel@1.8.2: 2442 | version "1.8.2" 2443 | resolved "https://registry.yarnpkg.com/localtunnel/-/localtunnel-1.8.2.tgz#913051e8328b51f75ad8a22ad1f5c5b8c599a359" 2444 | dependencies: 2445 | debug "2.2.0" 2446 | openurl "1.1.0" 2447 | request "2.78.0" 2448 | yargs "3.29.0" 2449 | 2450 | lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.2.0: 2451 | version "4.2.0" 2452 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2453 | 2454 | lodash.camelcase@^4.1.1: 2455 | version "4.3.0" 2456 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2457 | 2458 | lodash.clonedeep@^4.3.2: 2459 | version "4.5.0" 2460 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2461 | 2462 | lodash.cond@^4.3.0: 2463 | version "4.5.2" 2464 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2465 | 2466 | lodash.isfinite@^3.3.2: 2467 | version "3.3.2" 2468 | resolved "https://registry.yarnpkg.com/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz#fb89b65a9a80281833f0b7478b3a5104f898ebb3" 2469 | 2470 | lodash.kebabcase@^4.0.1: 2471 | version "4.1.1" 2472 | resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" 2473 | 2474 | lodash.memoize@~3.0.3: 2475 | version "3.0.4" 2476 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" 2477 | 2478 | lodash.mergewith@^4.6.0: 2479 | version "4.6.0" 2480 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" 2481 | 2482 | lodash.snakecase@^4.0.1: 2483 | version "4.1.1" 2484 | resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" 2485 | 2486 | lodash.upperfirst@^4.2.0: 2487 | version "4.3.1" 2488 | resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" 2489 | 2490 | lodash@^3.10.1: 2491 | version "3.10.1" 2492 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2493 | 2494 | lodash@^4.0.0, lodash@^4.13.1, lodash@^4.3.0: 2495 | version "4.17.2" 2496 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 2497 | 2498 | lodash@~4.16.4: 2499 | version "4.16.6" 2500 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 2501 | 2502 | log-symbols@^1.0.2: 2503 | version "1.0.2" 2504 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2505 | dependencies: 2506 | chalk "^1.0.0" 2507 | 2508 | longest@^1.0.1: 2509 | version "1.0.1" 2510 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2511 | 2512 | loud-rejection@^1.0.0: 2513 | version "1.6.0" 2514 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2515 | dependencies: 2516 | currently-unhandled "^0.4.1" 2517 | signal-exit "^3.0.0" 2518 | 2519 | lower-case@^1.1.1: 2520 | version "1.1.3" 2521 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.3.tgz#c92393d976793eee5ba4edb583cf8eae35bd9bfb" 2522 | 2523 | lowercase-keys@^1.0.0: 2524 | version "1.0.0" 2525 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2526 | 2527 | lru-cache@^4.0.1: 2528 | version "4.0.1" 2529 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.1.tgz#1343955edaf2e37d9b9e7ee7241e27c4b9fb72be" 2530 | dependencies: 2531 | pseudomap "^1.0.1" 2532 | yallist "^2.0.0" 2533 | 2534 | magic-string@^0.14.0: 2535 | version "0.14.0" 2536 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.14.0.tgz#57224aef1701caeed273b17a39a956e72b172462" 2537 | dependencies: 2538 | vlq "^0.2.1" 2539 | 2540 | map-obj@^1.0.0, map-obj@^1.0.1: 2541 | version "1.0.1" 2542 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2543 | 2544 | meow@^3.4.2, meow@^3.7.0: 2545 | version "3.7.0" 2546 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2547 | dependencies: 2548 | camelcase-keys "^2.0.0" 2549 | decamelize "^1.1.2" 2550 | loud-rejection "^1.0.0" 2551 | map-obj "^1.0.1" 2552 | minimist "^1.1.3" 2553 | normalize-package-data "^2.3.4" 2554 | object-assign "^4.0.1" 2555 | read-pkg-up "^1.0.1" 2556 | redent "^1.0.0" 2557 | trim-newlines "^1.0.0" 2558 | 2559 | micromatch@2.3.11, micromatch@^2.1.5: 2560 | version "2.3.11" 2561 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2562 | dependencies: 2563 | arr-diff "^2.0.0" 2564 | array-unique "^0.2.1" 2565 | braces "^1.8.2" 2566 | expand-brackets "^0.1.4" 2567 | extglob "^0.3.1" 2568 | filename-regex "^2.0.0" 2569 | is-extglob "^1.0.0" 2570 | is-glob "^2.0.1" 2571 | kind-of "^3.0.2" 2572 | normalize-path "^2.0.1" 2573 | object.omit "^2.0.0" 2574 | parse-glob "^3.0.4" 2575 | regex-cache "^0.4.2" 2576 | 2577 | miller-rabin@^4.0.0: 2578 | version "4.0.0" 2579 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 2580 | dependencies: 2581 | bn.js "^4.0.0" 2582 | brorand "^1.0.1" 2583 | 2584 | mime-db@~1.24.0: 2585 | version "1.24.0" 2586 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c" 2587 | 2588 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.7: 2589 | version "2.1.12" 2590 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729" 2591 | dependencies: 2592 | mime-db "~1.24.0" 2593 | 2594 | mime@1.2.4: 2595 | version "1.2.4" 2596 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.4.tgz#11b5fdaf29c2509255176b80ad520294f5de92b7" 2597 | 2598 | mime@1.3.4, "mime@>= 0.0.1": 2599 | version "1.3.4" 2600 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2601 | 2602 | minimalistic-assert@^1.0.0: 2603 | version "1.0.0" 2604 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2605 | 2606 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@~3.0.2: 2607 | version "3.0.3" 2608 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2609 | dependencies: 2610 | brace-expansion "^1.0.0" 2611 | 2612 | minimist@0.0.8: 2613 | version "0.0.8" 2614 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2615 | 2616 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: 2617 | version "1.2.0" 2618 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2619 | 2620 | mkdirp@0.3.0: 2621 | version "0.3.0" 2622 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 2623 | 2624 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2625 | version "0.5.1" 2626 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2627 | dependencies: 2628 | minimist "0.0.8" 2629 | 2630 | module-deps@^4.0.8: 2631 | version "4.0.8" 2632 | resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-4.0.8.tgz#55fd70623399706c3288bef7a609ff1e8c0ed2bb" 2633 | dependencies: 2634 | JSONStream "^1.0.3" 2635 | browser-resolve "^1.7.0" 2636 | cached-path-relative "^1.0.0" 2637 | concat-stream "~1.5.0" 2638 | defined "^1.0.0" 2639 | detective "^4.0.0" 2640 | duplexer2 "^0.1.2" 2641 | inherits "^2.0.1" 2642 | parents "^1.0.0" 2643 | readable-stream "^2.0.2" 2644 | resolve "^1.1.3" 2645 | stream-combiner2 "^1.1.1" 2646 | subarg "^1.0.0" 2647 | through2 "^2.0.0" 2648 | xtend "^4.0.0" 2649 | 2650 | ms@0.7.1: 2651 | version "0.7.1" 2652 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2653 | 2654 | ms@0.7.2: 2655 | version "0.7.2" 2656 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2657 | 2658 | multimatch@^2.1.0: 2659 | version "2.1.0" 2660 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2661 | dependencies: 2662 | array-differ "^1.0.0" 2663 | array-union "^1.0.1" 2664 | arrify "^1.0.0" 2665 | minimatch "^3.0.0" 2666 | 2667 | mute-stream@0.0.5: 2668 | version "0.0.5" 2669 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2670 | 2671 | nan@^2.3.0, nan@^2.3.2: 2672 | version "2.4.0" 2673 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2674 | 2675 | natural-compare@^1.4.0: 2676 | version "1.4.0" 2677 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2678 | 2679 | ncname@1.0.x: 2680 | version "1.0.0" 2681 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" 2682 | dependencies: 2683 | xml-char-classes "^1.0.0" 2684 | 2685 | negotiator@0.6.1: 2686 | version "0.6.1" 2687 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2688 | 2689 | no-case@^2.2.0: 2690 | version "2.3.0" 2691 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.0.tgz#ca2825ccb76b18e6f79d573dcfbf1eace33dd164" 2692 | dependencies: 2693 | lower-case "^1.1.1" 2694 | 2695 | node-gyp@^3.3.1: 2696 | version "3.4.0" 2697 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.4.0.tgz#dda558393b3ecbbe24c9e6b8703c71194c63fa36" 2698 | dependencies: 2699 | fstream "^1.0.0" 2700 | glob "^7.0.3" 2701 | graceful-fs "^4.1.2" 2702 | minimatch "^3.0.2" 2703 | mkdirp "^0.5.0" 2704 | nopt "2 || 3" 2705 | npmlog "0 || 1 || 2 || 3" 2706 | osenv "0" 2707 | path-array "^1.0.0" 2708 | request "2" 2709 | rimraf "2" 2710 | semver "2.x || 3.x || 4 || 5" 2711 | tar "^2.0.0" 2712 | which "1" 2713 | 2714 | node-pre-gyp@^0.6.29: 2715 | version "0.6.31" 2716 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.31.tgz#d8a00ddaa301a940615dbcc8caad4024d58f6017" 2717 | dependencies: 2718 | mkdirp "~0.5.1" 2719 | nopt "~3.0.6" 2720 | npmlog "^4.0.0" 2721 | rc "~1.1.6" 2722 | request "^2.75.0" 2723 | rimraf "~2.5.4" 2724 | semver "~5.3.0" 2725 | tar "~2.2.1" 2726 | tar-pack "~3.3.0" 2727 | 2728 | node-sass@^4.5.0: 2729 | version "4.5.0" 2730 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.0.tgz#532e37bad0ce587348c831535dbc98ea4289508b" 2731 | dependencies: 2732 | async-foreach "^0.1.3" 2733 | chalk "^1.1.1" 2734 | cross-spawn "^3.0.0" 2735 | gaze "^1.0.0" 2736 | get-stdin "^4.0.1" 2737 | glob "^7.0.3" 2738 | in-publish "^2.0.0" 2739 | lodash.assign "^4.2.0" 2740 | lodash.clonedeep "^4.3.2" 2741 | lodash.mergewith "^4.6.0" 2742 | meow "^3.7.0" 2743 | mkdirp "^0.5.1" 2744 | nan "^2.3.2" 2745 | node-gyp "^3.3.1" 2746 | npmlog "^4.0.0" 2747 | request "^2.61.0" 2748 | sass-graph "^2.1.1" 2749 | stdout-stream "^1.4.0" 2750 | 2751 | node-status-codes@^1.0.0: 2752 | version "1.0.0" 2753 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" 2754 | 2755 | node-uuid@~1.4.7: 2756 | version "1.4.7" 2757 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 2758 | 2759 | "nopt@2 || 3", nopt@3.0.x, nopt@~3.0.6: 2760 | version "3.0.6" 2761 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2762 | dependencies: 2763 | abbrev "1" 2764 | 2765 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2766 | version "2.3.5" 2767 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2768 | dependencies: 2769 | hosted-git-info "^2.1.4" 2770 | is-builtin-module "^1.0.0" 2771 | semver "2 || 3 || 4 || 5" 2772 | validate-npm-package-license "^3.0.1" 2773 | 2774 | normalize-path@^2.0.1: 2775 | version "2.0.1" 2776 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2777 | 2778 | normalize-range@^0.1.2: 2779 | version "0.1.2" 2780 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2781 | 2782 | npm-run-path@^2.0.0: 2783 | version "2.0.2" 2784 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2785 | dependencies: 2786 | path-key "^2.0.0" 2787 | 2788 | "npmlog@0 || 1 || 2 || 3": 2789 | version "3.1.2" 2790 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-3.1.2.tgz#2d46fa874337af9498a2f12bb43d8d0be4a36873" 2791 | dependencies: 2792 | are-we-there-yet "~1.1.2" 2793 | console-control-strings "~1.1.0" 2794 | gauge "~2.6.0" 2795 | set-blocking "~2.0.0" 2796 | 2797 | npmlog@^4.0.0: 2798 | version "4.0.1" 2799 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.1.tgz#d14f503b4cd79710375553004ba96e6662fbc0b8" 2800 | dependencies: 2801 | are-we-there-yet "~1.1.2" 2802 | console-control-strings "~1.1.0" 2803 | gauge "~2.7.1" 2804 | set-blocking "~2.0.0" 2805 | 2806 | num2fraction@^1.2.2: 2807 | version "1.2.2" 2808 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2809 | 2810 | number-is-nan@^1.0.0: 2811 | version "1.0.1" 2812 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2813 | 2814 | oauth-sign@~0.8.1: 2815 | version "0.8.2" 2816 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2817 | 2818 | obj-props@^1.0.0: 2819 | version "1.0.0" 2820 | resolved "https://registry.yarnpkg.com/obj-props/-/obj-props-1.0.0.tgz#9c8fd85041688a0ce38a87d8c12f56426c297607" 2821 | 2822 | object-assign@4.1.0, object-assign@^4.0.1, object-assign@^4.1.0: 2823 | version "4.1.0" 2824 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2825 | 2826 | object-component@0.0.3: 2827 | version "0.0.3" 2828 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 2829 | 2830 | object-path@^0.9.0: 2831 | version "0.9.2" 2832 | resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.9.2.tgz#0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5" 2833 | 2834 | object.omit@^2.0.0: 2835 | version "2.0.1" 2836 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2837 | dependencies: 2838 | for-own "^0.1.4" 2839 | is-extendable "^0.1.1" 2840 | 2841 | on-finished@~2.3.0: 2842 | version "2.3.0" 2843 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2844 | dependencies: 2845 | ee-first "1.1.1" 2846 | 2847 | once@^1.3.0: 2848 | version "1.4.0" 2849 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2850 | dependencies: 2851 | wrappy "1" 2852 | 2853 | once@~1.3.3: 2854 | version "1.3.3" 2855 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2856 | dependencies: 2857 | wrappy "1" 2858 | 2859 | onetime@^1.0.0: 2860 | version "1.1.0" 2861 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2862 | 2863 | openurl@1.1.0: 2864 | version "1.1.0" 2865 | resolved "https://registry.yarnpkg.com/openurl/-/openurl-1.1.0.tgz#e2f2189d999c04823201f083f0f1a7cd8903187a" 2866 | 2867 | opn@4.0.2: 2868 | version "4.0.2" 2869 | resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" 2870 | dependencies: 2871 | object-assign "^4.0.1" 2872 | pinkie-promise "^2.0.0" 2873 | 2874 | optionator@^0.8.2: 2875 | version "0.8.2" 2876 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2877 | dependencies: 2878 | deep-is "~0.1.3" 2879 | fast-levenshtein "~2.0.4" 2880 | levn "~0.3.0" 2881 | prelude-ls "~1.1.2" 2882 | type-check "~0.3.2" 2883 | wordwrap "~1.0.0" 2884 | 2885 | options@>=0.0.5: 2886 | version "0.0.6" 2887 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2888 | 2889 | os-browserify@~0.1.1: 2890 | version "0.1.2" 2891 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54" 2892 | 2893 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2894 | version "1.0.2" 2895 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2896 | 2897 | os-locale@^1.4.0: 2898 | version "1.4.0" 2899 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2900 | dependencies: 2901 | lcid "^1.0.0" 2902 | 2903 | os-tmpdir@^1.0.0: 2904 | version "1.0.2" 2905 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2906 | 2907 | osenv@0, osenv@^0.1.0: 2908 | version "0.1.3" 2909 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.3.tgz#83cf05c6d6458fc4d5ac6362ea325d92f2754217" 2910 | dependencies: 2911 | os-homedir "^1.0.0" 2912 | os-tmpdir "^1.0.0" 2913 | 2914 | package-json@^2.0.0: 2915 | version "2.4.0" 2916 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" 2917 | dependencies: 2918 | got "^5.0.0" 2919 | registry-auth-token "^3.0.1" 2920 | registry-url "^3.0.3" 2921 | semver "^5.1.0" 2922 | 2923 | pako@~0.2.0: 2924 | version "0.2.9" 2925 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2926 | 2927 | param-case@2.1.x: 2928 | version "2.1.0" 2929 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.0.tgz#2619f90fd6c829ed0b958f1c84ed03a745a6d70a" 2930 | dependencies: 2931 | no-case "^2.2.0" 2932 | 2933 | parents@^1.0.0, parents@^1.0.1: 2934 | version "1.0.1" 2935 | resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" 2936 | dependencies: 2937 | path-platform "~0.11.15" 2938 | 2939 | parse-asn1@^5.0.0: 2940 | version "5.0.0" 2941 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" 2942 | dependencies: 2943 | asn1.js "^4.0.0" 2944 | browserify-aes "^1.0.0" 2945 | create-hash "^1.1.0" 2946 | evp_bytestokey "^1.0.0" 2947 | pbkdf2 "^3.0.3" 2948 | 2949 | parse-gitignore@^0.3.1: 2950 | version "0.3.1" 2951 | resolved "https://registry.yarnpkg.com/parse-gitignore/-/parse-gitignore-0.3.1.tgz#09adda265a4a5be2ce5e905b95a02f7f0e0044fa" 2952 | dependencies: 2953 | array-unique "^0.2.1" 2954 | is-glob "^2.0.1" 2955 | 2956 | parse-glob@^3.0.4: 2957 | version "3.0.4" 2958 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2959 | dependencies: 2960 | glob-base "^0.3.0" 2961 | is-dotfile "^1.0.0" 2962 | is-extglob "^1.0.0" 2963 | is-glob "^2.0.0" 2964 | 2965 | parse-json@^2.1.0, parse-json@^2.2.0: 2966 | version "2.2.0" 2967 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2968 | dependencies: 2969 | error-ex "^1.2.0" 2970 | 2971 | parsejson@0.0.3: 2972 | version "0.0.3" 2973 | resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab" 2974 | dependencies: 2975 | better-assert "~1.0.0" 2976 | 2977 | parseqs@0.0.5: 2978 | version "0.0.5" 2979 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 2980 | dependencies: 2981 | better-assert "~1.0.0" 2982 | 2983 | parseuri@0.0.5: 2984 | version "0.0.5" 2985 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 2986 | dependencies: 2987 | better-assert "~1.0.0" 2988 | 2989 | parseurl@~1.3.1: 2990 | version "1.3.1" 2991 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2992 | 2993 | path-array@^1.0.0: 2994 | version "1.0.1" 2995 | resolved "https://registry.yarnpkg.com/path-array/-/path-array-1.0.1.tgz#7e2f0f35f07a2015122b868b7eac0eb2c4fec271" 2996 | dependencies: 2997 | array-index "^1.0.0" 2998 | 2999 | path-browserify@~0.0.0: 3000 | version "0.0.0" 3001 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 3002 | 3003 | path-exists@^2.0.0: 3004 | version "2.1.0" 3005 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3006 | dependencies: 3007 | pinkie-promise "^2.0.0" 3008 | 3009 | path-exists@^3.0.0: 3010 | version "3.0.0" 3011 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3012 | 3013 | path-is-absolute@^1.0.0: 3014 | version "1.0.1" 3015 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3016 | 3017 | path-is-inside@^1.0.1: 3018 | version "1.0.2" 3019 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3020 | 3021 | path-key@^2.0.0: 3022 | version "2.0.1" 3023 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3024 | 3025 | path-platform@~0.11.15: 3026 | version "0.11.15" 3027 | resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" 3028 | 3029 | path-type@^1.0.0: 3030 | version "1.1.0" 3031 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3032 | dependencies: 3033 | graceful-fs "^4.1.2" 3034 | pify "^2.0.0" 3035 | pinkie-promise "^2.0.0" 3036 | 3037 | path-type@^2.0.0: 3038 | version "2.0.0" 3039 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3040 | dependencies: 3041 | pify "^2.0.0" 3042 | 3043 | pbkdf2@^3.0.3: 3044 | version "3.0.9" 3045 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 3046 | dependencies: 3047 | create-hmac "^1.1.2" 3048 | 3049 | pify@^2.0.0: 3050 | version "2.3.0" 3051 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3052 | 3053 | pinkie-promise@^2.0.0: 3054 | version "2.0.1" 3055 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3056 | dependencies: 3057 | pinkie "^2.0.0" 3058 | 3059 | pinkie@^2.0.0: 3060 | version "2.0.4" 3061 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3062 | 3063 | pkg-conf@^2.0.0: 3064 | version "2.0.0" 3065 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.0.0.tgz#071c87650403bccfb9c627f58751bfe47c067279" 3066 | dependencies: 3067 | find-up "^2.0.0" 3068 | load-json-file "^2.0.0" 3069 | 3070 | pkg-dir@^1.0.0: 3071 | version "1.0.0" 3072 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3073 | dependencies: 3074 | find-up "^1.0.0" 3075 | 3076 | pkg-up@^1.0.0: 3077 | version "1.0.0" 3078 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 3079 | dependencies: 3080 | find-up "^1.0.0" 3081 | 3082 | plur@^2.1.2: 3083 | version "2.1.2" 3084 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 3085 | dependencies: 3086 | irregular-plurals "^1.0.0" 3087 | 3088 | pluralize@^1.2.1: 3089 | version "1.2.1" 3090 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3091 | 3092 | portscanner@2.1.1: 3093 | version "2.1.1" 3094 | resolved "https://registry.yarnpkg.com/portscanner/-/portscanner-2.1.1.tgz#eabb409e4de24950f5a2a516d35ae769343fbb96" 3095 | dependencies: 3096 | async "1.5.2" 3097 | is-number-like "^1.0.3" 3098 | 3099 | postcss-value-parser@^3.2.3: 3100 | version "3.3.0" 3101 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 3102 | 3103 | postcss@^5.0.4, postcss@^5.2.5: 3104 | version "5.2.5" 3105 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.5.tgz#ec428c27dffc7fac65961340a9b022fa4af5f056" 3106 | dependencies: 3107 | chalk "^1.1.3" 3108 | js-base64 "^2.1.9" 3109 | source-map "^0.5.6" 3110 | supports-color "^3.1.2" 3111 | 3112 | prelude-ls@~1.1.2: 3113 | version "1.1.2" 3114 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3115 | 3116 | prepend-http@^1.0.1: 3117 | version "1.0.4" 3118 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3119 | 3120 | preserve@^0.2.0: 3121 | version "0.2.0" 3122 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3123 | 3124 | process-nextick-args@~1.0.6: 3125 | version "1.0.7" 3126 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3127 | 3128 | process@~0.11.0: 3129 | version "0.11.9" 3130 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 3131 | 3132 | progress@^1.1.8: 3133 | version "1.1.8" 3134 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3135 | 3136 | proto-props@^0.2.0: 3137 | version "0.2.1" 3138 | resolved "https://registry.yarnpkg.com/proto-props/-/proto-props-0.2.1.tgz#5e01dc2675a0de9abfa76e799dfa334d6f483f4b" 3139 | 3140 | pseudomap@^1.0.1: 3141 | version "1.0.2" 3142 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3143 | 3144 | public-encrypt@^4.0.0: 3145 | version "4.0.0" 3146 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3147 | dependencies: 3148 | bn.js "^4.1.0" 3149 | browserify-rsa "^4.0.0" 3150 | create-hash "^1.1.0" 3151 | parse-asn1 "^5.0.0" 3152 | randombytes "^2.0.1" 3153 | 3154 | punycode@1.3.2: 3155 | version "1.3.2" 3156 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3157 | 3158 | punycode@^1.3.2, punycode@^1.4.1: 3159 | version "1.4.1" 3160 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3161 | 3162 | qs@0.4.x: 3163 | version "0.4.2" 3164 | resolved "https://registry.yarnpkg.com/qs/-/qs-0.4.2.tgz#3cac4c861e371a8c9c4770ac23cda8de639b8e5f" 3165 | 3166 | qs@6.2.1: 3167 | version "6.2.1" 3168 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 3169 | 3170 | "qs@>= 0.4.0", qs@~6.3.0: 3171 | version "6.3.0" 3172 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 3173 | 3174 | querystring-es3@~0.2.0: 3175 | version "0.2.1" 3176 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3177 | 3178 | querystring@0.2.0: 3179 | version "0.2.0" 3180 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3181 | 3182 | randomatic@^1.1.3: 3183 | version "1.1.5" 3184 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b" 3185 | dependencies: 3186 | is-number "^2.0.2" 3187 | kind-of "^3.0.2" 3188 | 3189 | randombytes@^2.0.0, randombytes@^2.0.1: 3190 | version "2.0.3" 3191 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 3192 | 3193 | range-parser@~1.2.0: 3194 | version "1.2.0" 3195 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3196 | 3197 | rc@^1.0.1, rc@^1.1.6, rc@~1.1.6: 3198 | version "1.1.6" 3199 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 3200 | dependencies: 3201 | deep-extend "~0.4.0" 3202 | ini "~1.3.0" 3203 | minimist "^1.2.0" 3204 | strip-json-comments "~1.0.4" 3205 | 3206 | read-all-stream@^3.0.0: 3207 | version "3.1.0" 3208 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 3209 | dependencies: 3210 | pinkie-promise "^2.0.0" 3211 | readable-stream "^2.0.0" 3212 | 3213 | read-only-stream@^2.0.0: 3214 | version "2.0.0" 3215 | resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" 3216 | dependencies: 3217 | readable-stream "^2.0.2" 3218 | 3219 | read-pkg-up@^1.0.1: 3220 | version "1.0.1" 3221 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3222 | dependencies: 3223 | find-up "^1.0.0" 3224 | read-pkg "^1.0.0" 3225 | 3226 | read-pkg-up@^2.0.0: 3227 | version "2.0.0" 3228 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3229 | dependencies: 3230 | find-up "^2.0.0" 3231 | read-pkg "^2.0.0" 3232 | 3233 | read-pkg@^1.0.0: 3234 | version "1.1.0" 3235 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3236 | dependencies: 3237 | load-json-file "^1.0.0" 3238 | normalize-package-data "^2.3.2" 3239 | path-type "^1.0.0" 3240 | 3241 | read-pkg@^2.0.0: 3242 | version "2.0.0" 3243 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3244 | dependencies: 3245 | load-json-file "^2.0.0" 3246 | normalize-package-data "^2.3.2" 3247 | path-type "^2.0.0" 3248 | 3249 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.0: 3250 | version "2.2.2" 3251 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" 3252 | dependencies: 3253 | buffer-shims "^1.0.0" 3254 | core-util-is "~1.0.0" 3255 | inherits "~2.0.1" 3256 | isarray "~1.0.0" 3257 | process-nextick-args "~1.0.6" 3258 | string_decoder "~0.10.x" 3259 | util-deprecate "~1.0.1" 3260 | 3261 | readable-stream@~2.0.0: 3262 | version "2.0.6" 3263 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3264 | dependencies: 3265 | core-util-is "~1.0.0" 3266 | inherits "~2.0.1" 3267 | isarray "~1.0.0" 3268 | process-nextick-args "~1.0.6" 3269 | string_decoder "~0.10.x" 3270 | util-deprecate "~1.0.1" 3271 | 3272 | readable-stream@~2.1.4: 3273 | version "2.1.5" 3274 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 3275 | dependencies: 3276 | buffer-shims "^1.0.0" 3277 | core-util-is "~1.0.0" 3278 | inherits "~2.0.1" 3279 | isarray "~1.0.0" 3280 | process-nextick-args "~1.0.6" 3281 | string_decoder "~0.10.x" 3282 | util-deprecate "~1.0.1" 3283 | 3284 | readdirp@^2.0.0: 3285 | version "2.1.0" 3286 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3287 | dependencies: 3288 | graceful-fs "^4.1.2" 3289 | minimatch "^3.0.2" 3290 | readable-stream "^2.0.2" 3291 | set-immediate-shim "^1.0.1" 3292 | 3293 | readline2@^1.0.1: 3294 | version "1.0.1" 3295 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3296 | dependencies: 3297 | code-point-at "^1.0.0" 3298 | is-fullwidth-code-point "^1.0.0" 3299 | mute-stream "0.0.5" 3300 | 3301 | rechoir@^0.6.2: 3302 | version "0.6.2" 3303 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3304 | dependencies: 3305 | resolve "^1.1.6" 3306 | 3307 | redent@^1.0.0: 3308 | version "1.0.0" 3309 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3310 | dependencies: 3311 | indent-string "^2.1.0" 3312 | strip-indent "^1.0.1" 3313 | 3314 | regex-cache@^0.4.2: 3315 | version "0.4.3" 3316 | resolved "http://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3317 | dependencies: 3318 | is-equal-shallow "^0.1.3" 3319 | is-primitive "^2.0.0" 3320 | 3321 | registry-auth-token@^3.0.1: 3322 | version "3.1.0" 3323 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.1.0.tgz#997c08256e0c7999837b90e944db39d8a790276b" 3324 | dependencies: 3325 | rc "^1.1.6" 3326 | 3327 | registry-url@^3.0.3: 3328 | version "3.1.0" 3329 | resolved "http://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3330 | dependencies: 3331 | rc "^1.0.1" 3332 | 3333 | relateurl@0.2.x: 3334 | version "0.2.7" 3335 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 3336 | 3337 | repeat-element@^1.1.2: 3338 | version "1.1.2" 3339 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3340 | 3341 | repeat-string@^1.5.2: 3342 | version "1.6.1" 3343 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3344 | 3345 | repeating@^2.0.0: 3346 | version "2.0.1" 3347 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3348 | dependencies: 3349 | is-finite "^1.0.0" 3350 | 3351 | req-all@^0.1.0: 3352 | version "0.1.0" 3353 | resolved "https://registry.yarnpkg.com/req-all/-/req-all-0.1.0.tgz#130051e2ace58a02eacbfc9d448577a736a9273a" 3354 | 3355 | request@2, request@2.78.0, request@^2.61.0, request@^2.75.0: 3356 | version "2.78.0" 3357 | resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc" 3358 | dependencies: 3359 | aws-sign2 "~0.6.0" 3360 | aws4 "^1.2.1" 3361 | caseless "~0.11.0" 3362 | combined-stream "~1.0.5" 3363 | extend "~3.0.0" 3364 | forever-agent "~0.6.1" 3365 | form-data "~2.1.1" 3366 | har-validator "~2.0.6" 3367 | hawk "~3.1.3" 3368 | http-signature "~1.1.0" 3369 | is-typedarray "~1.0.0" 3370 | isstream "~0.1.2" 3371 | json-stringify-safe "~5.0.1" 3372 | mime-types "~2.1.7" 3373 | node-uuid "~1.4.7" 3374 | oauth-sign "~0.8.1" 3375 | qs "~6.3.0" 3376 | stringstream "~0.0.4" 3377 | tough-cookie "~2.3.0" 3378 | tunnel-agent "~0.4.1" 3379 | 3380 | require-directory@^2.1.1: 3381 | version "2.1.1" 3382 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3383 | 3384 | require-like@^0.1.2: 3385 | version "0.1.2" 3386 | resolved "https://registry.yarnpkg.com/require-like/-/require-like-0.1.2.tgz#ad6f30c13becd797010c468afa775c0c0a6b47fa" 3387 | 3388 | require-main-filename@^1.0.1: 3389 | version "1.0.1" 3390 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3391 | 3392 | require-uncached@^1.0.2: 3393 | version "1.0.3" 3394 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3395 | dependencies: 3396 | caller-path "^0.1.0" 3397 | resolve-from "^1.0.0" 3398 | 3399 | requires-port@1.x.x: 3400 | version "1.0.0" 3401 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3402 | 3403 | resolve-cwd@^1.0.0: 3404 | version "1.0.0" 3405 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 3406 | dependencies: 3407 | resolve-from "^2.0.0" 3408 | 3409 | resolve-from@^1.0.0: 3410 | version "1.0.1" 3411 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3412 | 3413 | resolve-from@^2.0.0: 3414 | version "2.0.0" 3415 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3416 | 3417 | resolve@1.1.7, resolve@^1.1.3, resolve@^1.1.4, resolve@^1.1.6: 3418 | version "1.1.7" 3419 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3420 | 3421 | resp-modifier@6.0.2: 3422 | version "6.0.2" 3423 | resolved "https://registry.yarnpkg.com/resp-modifier/-/resp-modifier-6.0.2.tgz#b124de5c4fbafcba541f48ffa73970f4aa456b4f" 3424 | dependencies: 3425 | debug "^2.2.0" 3426 | minimatch "^3.0.2" 3427 | 3428 | restore-cursor@^1.0.1: 3429 | version "1.0.1" 3430 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3431 | dependencies: 3432 | exit-hook "^1.0.0" 3433 | onetime "^1.0.0" 3434 | 3435 | rev-hash@^1.0.0: 3436 | version "1.0.0" 3437 | resolved "https://registry.yarnpkg.com/rev-hash/-/rev-hash-1.0.0.tgz#96993959ea9bfb1c59b13adf02ac2e34bb373603" 3438 | 3439 | right-align@^0.1.1: 3440 | version "0.1.3" 3441 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3442 | dependencies: 3443 | align-text "^0.1.1" 3444 | 3445 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4: 3446 | version "2.5.4" 3447 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3448 | dependencies: 3449 | glob "^7.0.5" 3450 | 3451 | ripemd160@^1.0.0: 3452 | version "1.0.1" 3453 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 3454 | 3455 | run-async@^0.1.0: 3456 | version "0.1.0" 3457 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3458 | dependencies: 3459 | once "^1.3.0" 3460 | 3461 | rx-lite@^3.1.2: 3462 | version "3.1.2" 3463 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3464 | 3465 | rx@4.1.0: 3466 | version "4.1.0" 3467 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 3468 | 3469 | sass-graph@^2.1.1: 3470 | version "2.1.2" 3471 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.1.2.tgz#965104be23e8103cb7e5f710df65935b317da57b" 3472 | dependencies: 3473 | glob "^7.0.0" 3474 | lodash "^4.0.0" 3475 | yargs "^4.7.1" 3476 | 3477 | semver-diff@^2.0.0: 3478 | version "2.1.0" 3479 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3480 | dependencies: 3481 | semver "^5.0.3" 3482 | 3483 | "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@~5.3.0: 3484 | version "5.3.0" 3485 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3486 | 3487 | send@0.14.1: 3488 | version "0.14.1" 3489 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" 3490 | dependencies: 3491 | debug "~2.2.0" 3492 | depd "~1.1.0" 3493 | destroy "~1.0.4" 3494 | encodeurl "~1.0.1" 3495 | escape-html "~1.0.3" 3496 | etag "~1.7.0" 3497 | fresh "0.3.0" 3498 | http-errors "~1.5.0" 3499 | mime "1.3.4" 3500 | ms "0.7.1" 3501 | on-finished "~2.3.0" 3502 | range-parser "~1.2.0" 3503 | statuses "~1.3.0" 3504 | 3505 | serve-index@1.8.0: 3506 | version "1.8.0" 3507 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" 3508 | dependencies: 3509 | accepts "~1.3.3" 3510 | batch "0.5.3" 3511 | debug "~2.2.0" 3512 | escape-html "~1.0.3" 3513 | http-errors "~1.5.0" 3514 | mime-types "~2.1.11" 3515 | parseurl "~1.3.1" 3516 | 3517 | serve-static@1.11.1: 3518 | version "1.11.1" 3519 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805" 3520 | dependencies: 3521 | encodeurl "~1.0.1" 3522 | escape-html "~1.0.3" 3523 | parseurl "~1.3.1" 3524 | send "0.14.1" 3525 | 3526 | server-destroy@1.0.1: 3527 | version "1.0.1" 3528 | resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd" 3529 | 3530 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3531 | version "2.0.0" 3532 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3533 | 3534 | set-immediate-shim@^1.0.1: 3535 | version "1.0.1" 3536 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3537 | 3538 | setprototypeof@1.0.2: 3539 | version "1.0.2" 3540 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 3541 | 3542 | sha.js@^2.3.6, sha.js@~2.4.4: 3543 | version "2.4.8" 3544 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3545 | dependencies: 3546 | inherits "^2.0.1" 3547 | 3548 | shasum@^1.0.0: 3549 | version "1.0.2" 3550 | resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" 3551 | dependencies: 3552 | json-stable-stringify "~0.0.0" 3553 | sha.js "~2.4.4" 3554 | 3555 | shell-quote@^1.4.3: 3556 | version "1.6.1" 3557 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 3558 | dependencies: 3559 | array-filter "~0.0.0" 3560 | array-map "~0.0.0" 3561 | array-reduce "~0.0.0" 3562 | jsonify "~0.0.0" 3563 | 3564 | shelljs@^0.7.5: 3565 | version "0.7.5" 3566 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675" 3567 | dependencies: 3568 | glob "^7.0.0" 3569 | interpret "^1.0.0" 3570 | rechoir "^0.6.2" 3571 | 3572 | signal-exit@^3.0.0: 3573 | version "3.0.1" 3574 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 3575 | 3576 | slice-ansi@0.0.4: 3577 | version "0.0.4" 3578 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3579 | 3580 | slide@^1.1.5: 3581 | version "1.1.6" 3582 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3583 | 3584 | sntp@1.x.x: 3585 | version "1.0.9" 3586 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3587 | dependencies: 3588 | hoek "2.x.x" 3589 | 3590 | socket.io-adapter@0.5.0: 3591 | version "0.5.0" 3592 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b" 3593 | dependencies: 3594 | debug "2.3.3" 3595 | socket.io-parser "2.3.1" 3596 | 3597 | socket.io-client@1.6.0: 3598 | version "1.6.0" 3599 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.6.0.tgz#5b668f4f771304dfeed179064708386fa6717853" 3600 | dependencies: 3601 | backo2 "1.0.2" 3602 | component-bind "1.0.0" 3603 | component-emitter "1.2.1" 3604 | debug "2.3.3" 3605 | engine.io-client "1.8.0" 3606 | has-binary "0.1.7" 3607 | indexof "0.0.1" 3608 | object-component "0.0.3" 3609 | parseuri "0.0.5" 3610 | socket.io-parser "2.3.1" 3611 | to-array "0.1.4" 3612 | 3613 | socket.io-parser@2.3.1: 3614 | version "2.3.1" 3615 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0" 3616 | dependencies: 3617 | component-emitter "1.1.2" 3618 | debug "2.2.0" 3619 | isarray "0.0.1" 3620 | json3 "3.3.2" 3621 | 3622 | socket.io@1.6.0: 3623 | version "1.6.0" 3624 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.6.0.tgz#3e40d932637e6bd923981b25caf7c53e83b6e2e1" 3625 | dependencies: 3626 | debug "2.3.3" 3627 | engine.io "1.8.0" 3628 | has-binary "0.1.7" 3629 | object-assign "4.1.0" 3630 | socket.io-adapter "0.5.0" 3631 | socket.io-client "1.6.0" 3632 | socket.io-parser "2.3.1" 3633 | 3634 | sort-keys@^1.1.1: 3635 | version "1.1.2" 3636 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3637 | dependencies: 3638 | is-plain-obj "^1.0.0" 3639 | 3640 | source-map@0.4.x: 3641 | version "0.4.4" 3642 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3643 | dependencies: 3644 | amdefine ">=0.0.4" 3645 | 3646 | source-map@^0.5.1, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 3647 | version "0.5.6" 3648 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3649 | 3650 | spdx-correct@~1.0.0: 3651 | version "1.0.2" 3652 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3653 | dependencies: 3654 | spdx-license-ids "^1.0.2" 3655 | 3656 | spdx-expression-parse@~1.0.0: 3657 | version "1.0.4" 3658 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3659 | 3660 | spdx-license-ids@^1.0.2: 3661 | version "1.2.2" 3662 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3663 | 3664 | sprintf-js@~1.0.2: 3665 | version "1.0.3" 3666 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3667 | 3668 | sshpk@^1.7.0: 3669 | version "1.10.1" 3670 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 3671 | dependencies: 3672 | asn1 "~0.2.3" 3673 | assert-plus "^1.0.0" 3674 | dashdash "^1.12.0" 3675 | getpass "^0.1.1" 3676 | optionalDependencies: 3677 | bcrypt-pbkdf "^1.0.0" 3678 | ecc-jsbn "~0.1.1" 3679 | jodid25519 "^1.0.0" 3680 | jsbn "~0.1.0" 3681 | tweetnacl "~0.14.0" 3682 | 3683 | "statuses@>= 1.3.1 < 2", statuses@~1.3.0: 3684 | version "1.3.1" 3685 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3686 | 3687 | stdout-stream@^1.4.0: 3688 | version "1.4.0" 3689 | resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b" 3690 | dependencies: 3691 | readable-stream "^2.0.1" 3692 | 3693 | stream-browserify@^2.0.0: 3694 | version "2.0.1" 3695 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3696 | dependencies: 3697 | inherits "~2.0.1" 3698 | readable-stream "^2.0.2" 3699 | 3700 | stream-combiner2@^1.1.1: 3701 | version "1.1.1" 3702 | resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" 3703 | dependencies: 3704 | duplexer2 "~0.1.0" 3705 | readable-stream "^2.0.2" 3706 | 3707 | stream-http@^2.0.0: 3708 | version "2.5.0" 3709 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.5.0.tgz#585eee513217ed98fe199817e7313b6f772a6802" 3710 | dependencies: 3711 | builtin-status-codes "^2.0.0" 3712 | inherits "^2.0.1" 3713 | readable-stream "^2.1.0" 3714 | to-arraybuffer "^1.0.0" 3715 | xtend "^4.0.0" 3716 | 3717 | stream-splicer@^2.0.0: 3718 | version "2.0.0" 3719 | resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz#1b63be438a133e4b671cc1935197600175910d83" 3720 | dependencies: 3721 | inherits "^2.0.1" 3722 | readable-stream "^2.0.2" 3723 | 3724 | stream-throttle@^0.1.3: 3725 | version "0.1.3" 3726 | resolved "https://registry.yarnpkg.com/stream-throttle/-/stream-throttle-0.1.3.tgz#add57c8d7cc73a81630d31cd55d3961cfafba9c3" 3727 | dependencies: 3728 | commander "^2.2.0" 3729 | limiter "^1.0.5" 3730 | 3731 | string-width@^1.0.1, string-width@^1.0.2: 3732 | version "1.0.2" 3733 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3734 | dependencies: 3735 | code-point-at "^1.0.0" 3736 | is-fullwidth-code-point "^1.0.0" 3737 | strip-ansi "^3.0.0" 3738 | 3739 | string-width@^2.0.0: 3740 | version "2.0.0" 3741 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3742 | dependencies: 3743 | is-fullwidth-code-point "^2.0.0" 3744 | strip-ansi "^3.0.0" 3745 | 3746 | string_decoder@~0.10.0, string_decoder@~0.10.x: 3747 | version "0.10.31" 3748 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3749 | 3750 | stringstream@~0.0.4: 3751 | version "0.0.5" 3752 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3753 | 3754 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3755 | version "3.0.1" 3756 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3757 | dependencies: 3758 | ansi-regex "^2.0.0" 3759 | 3760 | strip-bom@^2.0.0: 3761 | version "2.0.0" 3762 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3763 | dependencies: 3764 | is-utf8 "^0.2.0" 3765 | 3766 | strip-bom@^3.0.0: 3767 | version "3.0.0" 3768 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3769 | 3770 | strip-eof@^1.0.0: 3771 | version "1.0.0" 3772 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3773 | 3774 | strip-indent@^1.0.1: 3775 | version "1.0.1" 3776 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3777 | dependencies: 3778 | get-stdin "^4.0.1" 3779 | 3780 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: 3781 | version "1.0.4" 3782 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3783 | 3784 | subarg@^1.0.0: 3785 | version "1.0.0" 3786 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 3787 | dependencies: 3788 | minimist "^1.1.0" 3789 | 3790 | supports-color@^2.0.0: 3791 | version "2.0.0" 3792 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3793 | 3794 | supports-color@^3.1.2: 3795 | version "3.1.2" 3796 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3797 | dependencies: 3798 | has-flag "^1.0.0" 3799 | 3800 | syntax-error@^1.1.1: 3801 | version "1.1.6" 3802 | resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.1.6.tgz#b4549706d386cc1c1dc7c2423f18579b6cade710" 3803 | dependencies: 3804 | acorn "^2.7.0" 3805 | 3806 | table@^3.7.8: 3807 | version "3.8.3" 3808 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3809 | dependencies: 3810 | ajv "^4.7.0" 3811 | ajv-keywords "^1.0.0" 3812 | chalk "^1.1.1" 3813 | lodash "^4.0.0" 3814 | slice-ansi "0.0.4" 3815 | string-width "^2.0.0" 3816 | 3817 | tar-pack@~3.3.0: 3818 | version "3.3.0" 3819 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3820 | dependencies: 3821 | debug "~2.2.0" 3822 | fstream "~1.0.10" 3823 | fstream-ignore "~1.0.5" 3824 | once "~1.3.3" 3825 | readable-stream "~2.1.4" 3826 | rimraf "~2.5.1" 3827 | tar "~2.2.1" 3828 | uid-number "~0.0.6" 3829 | 3830 | tar@^2.0.0, tar@~2.2.1: 3831 | version "2.2.1" 3832 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3833 | dependencies: 3834 | block-stream "*" 3835 | fstream "^1.0.2" 3836 | inherits "2" 3837 | 3838 | text-table@~0.2.0: 3839 | version "0.2.0" 3840 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3841 | 3842 | tfunk@^3.0.1: 3843 | version "3.0.2" 3844 | resolved "https://registry.yarnpkg.com/tfunk/-/tfunk-3.0.2.tgz#327ebc6176af2680c6cd0d6d22297c79d7f96efd" 3845 | dependencies: 3846 | chalk "^1.1.1" 3847 | object-path "^0.9.0" 3848 | 3849 | the-argv@^1.0.0: 3850 | version "1.0.0" 3851 | resolved "https://registry.yarnpkg.com/the-argv/-/the-argv-1.0.0.tgz#0084705005730dd84db755253c931ae398db9522" 3852 | 3853 | through2@^2.0.0: 3854 | version "2.0.1" 3855 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.1.tgz#384e75314d49f32de12eebb8136b8eb6b5d59da9" 3856 | dependencies: 3857 | readable-stream "~2.0.0" 3858 | xtend "~4.0.0" 3859 | 3860 | "through@>=2.2.7 <3", through@^2.3.6: 3861 | version "2.3.8" 3862 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3863 | 3864 | timed-out@^3.0.0: 3865 | version "3.0.0" 3866 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.0.0.tgz#ff88de96030ce960eabd42487db61d3add229273" 3867 | 3868 | timers-browserify@^1.0.1: 3869 | version "1.4.2" 3870 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 3871 | dependencies: 3872 | process "~0.11.0" 3873 | 3874 | to-array@0.1.4: 3875 | version "0.1.4" 3876 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 3877 | 3878 | to-arraybuffer@^1.0.0: 3879 | version "1.0.1" 3880 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3881 | 3882 | tough-cookie@~2.3.0: 3883 | version "2.3.2" 3884 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3885 | dependencies: 3886 | punycode "^1.4.1" 3887 | 3888 | trim-newlines@^1.0.0: 3889 | version "1.0.0" 3890 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3891 | 3892 | tryit@^1.0.1: 3893 | version "1.0.3" 3894 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3895 | 3896 | tty-browserify@~0.0.0: 3897 | version "0.0.0" 3898 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3899 | 3900 | tunnel-agent@~0.4.1: 3901 | version "0.4.3" 3902 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3903 | 3904 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3905 | version "0.14.3" 3906 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" 3907 | 3908 | type-check@~0.3.2: 3909 | version "0.3.2" 3910 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3911 | dependencies: 3912 | prelude-ls "~1.1.2" 3913 | 3914 | typedarray@~0.0.5: 3915 | version "0.0.6" 3916 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3917 | 3918 | ua-parser-js@0.7.12: 3919 | version "0.7.12" 3920 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3921 | 3922 | uglify-js@2.7.x, uglify-js@^2.7.0: 3923 | version "2.7.4" 3924 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.4.tgz#a295a0de12b6a650c031c40deb0dc40b14568bd2" 3925 | dependencies: 3926 | async "~0.2.6" 3927 | source-map "~0.5.1" 3928 | uglify-to-browserify "~1.0.0" 3929 | yargs "~3.10.0" 3930 | 3931 | uglify-to-browserify@~1.0.0: 3932 | version "1.0.2" 3933 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3934 | 3935 | uid-number@~0.0.6: 3936 | version "0.0.6" 3937 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3938 | 3939 | ultron@1.0.x: 3940 | version "1.0.2" 3941 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 3942 | 3943 | umd@^3.0.0: 3944 | version "3.0.1" 3945 | resolved "http://registry.npmjs.org/umd/-/umd-3.0.1.tgz#8ae556e11011f63c2596708a8837259f01b3d60e" 3946 | 3947 | underscore@1.7.x: 3948 | version "1.7.0" 3949 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" 3950 | 3951 | unpipe@~1.0.0: 3952 | version "1.0.0" 3953 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3954 | 3955 | unzip-response@^1.0.2: 3956 | version "1.0.2" 3957 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 3958 | 3959 | update-notifier@^1.0.0: 3960 | version "1.0.2" 3961 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.2.tgz#27c90519196dc15015be02a34ea52986feab8877" 3962 | dependencies: 3963 | boxen "^0.6.0" 3964 | chalk "^1.0.0" 3965 | configstore "^2.0.0" 3966 | is-npm "^1.0.0" 3967 | latest-version "^2.0.0" 3968 | lazy-req "^1.1.0" 3969 | semver-diff "^2.0.0" 3970 | xdg-basedir "^2.0.0" 3971 | 3972 | upper-case@^1.1.1: 3973 | version "1.1.3" 3974 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 3975 | 3976 | url-parse-lax@^1.0.0: 3977 | version "1.0.0" 3978 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3979 | dependencies: 3980 | prepend-http "^1.0.1" 3981 | 3982 | url@~0.11.0: 3983 | version "0.11.0" 3984 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3985 | dependencies: 3986 | punycode "1.3.2" 3987 | querystring "0.2.0" 3988 | 3989 | user-home@^2.0.0: 3990 | version "2.0.0" 3991 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3992 | dependencies: 3993 | os-homedir "^1.0.0" 3994 | 3995 | util-deprecate@~1.0.1: 3996 | version "1.0.2" 3997 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3998 | 3999 | util@0.10.3, util@~0.10.1: 4000 | version "0.10.3" 4001 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4002 | dependencies: 4003 | inherits "2.0.1" 4004 | 4005 | utils-merge@1.0.0: 4006 | version "1.0.0" 4007 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 4008 | 4009 | uuid@^2.0.1: 4010 | version "2.0.3" 4011 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 4012 | 4013 | validate-npm-package-license@^3.0.1: 4014 | version "3.0.1" 4015 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4016 | dependencies: 4017 | spdx-correct "~1.0.0" 4018 | spdx-expression-parse "~1.0.0" 4019 | 4020 | verror@1.3.6: 4021 | version "1.3.6" 4022 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4023 | dependencies: 4024 | extsprintf "1.0.2" 4025 | 4026 | vlq@^0.2.1: 4027 | version "0.2.1" 4028 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.1.tgz#14439d711891e682535467f8587c5630e4222a6c" 4029 | 4030 | vm-browserify@~0.0.1: 4031 | version "0.0.4" 4032 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4033 | dependencies: 4034 | indexof "0.0.1" 4035 | 4036 | weinre@^2.0.0-pre-I0Z7U9OV: 4037 | version "2.0.0-pre-I0Z7U9OV" 4038 | resolved "https://registry.yarnpkg.com/weinre/-/weinre-2.0.0-pre-I0Z7U9OV.tgz#fef8aa223921f7b40bbbbd4c3ed4302f6fd0a813" 4039 | dependencies: 4040 | express "2.5.x" 4041 | nopt "3.0.x" 4042 | underscore "1.7.x" 4043 | 4044 | which-module@^1.0.0: 4045 | version "1.0.0" 4046 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4047 | 4048 | which@1, which@^1.2.9: 4049 | version "1.2.12" 4050 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 4051 | dependencies: 4052 | isexe "^1.1.1" 4053 | 4054 | wide-align@^1.1.0: 4055 | version "1.1.0" 4056 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4057 | dependencies: 4058 | string-width "^1.0.1" 4059 | 4060 | widest-line@^1.0.0: 4061 | version "1.0.0" 4062 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 4063 | dependencies: 4064 | string-width "^1.0.1" 4065 | 4066 | window-size@0.1.0: 4067 | version "0.1.0" 4068 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4069 | 4070 | window-size@^0.1.2: 4071 | version "0.1.4" 4072 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 4073 | 4074 | window-size@^0.2.0: 4075 | version "0.2.0" 4076 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 4077 | 4078 | wordwrap@0.0.2: 4079 | version "0.0.2" 4080 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4081 | 4082 | wordwrap@~1.0.0: 4083 | version "1.0.0" 4084 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4085 | 4086 | wrap-ansi@^2.0.0: 4087 | version "2.0.0" 4088 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.0.0.tgz#7d30f8f873f9a5bbc3a64dabc8d177e071ae426f" 4089 | dependencies: 4090 | string-width "^1.0.1" 4091 | 4092 | wrappy@1: 4093 | version "1.0.2" 4094 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4095 | 4096 | write-file-atomic@^1.1.2: 4097 | version "1.2.0" 4098 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab" 4099 | dependencies: 4100 | graceful-fs "^4.1.2" 4101 | imurmurhash "^0.1.4" 4102 | slide "^1.1.5" 4103 | 4104 | write-json-file@^2.0.0: 4105 | version "2.0.0" 4106 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.0.0.tgz#0eaec981fcf9288dbc2806cbd26e06ab9bdca4ed" 4107 | dependencies: 4108 | graceful-fs "^4.1.2" 4109 | mkdirp "^0.5.1" 4110 | pify "^2.0.0" 4111 | sort-keys "^1.1.1" 4112 | write-file-atomic "^1.1.2" 4113 | 4114 | write-pkg@^2.0.0: 4115 | version "2.0.0" 4116 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.0.0.tgz#93b922ee9a429f9bd74cdc69e549733c9e468156" 4117 | dependencies: 4118 | write-json-file "^2.0.0" 4119 | 4120 | write@^0.2.1: 4121 | version "0.2.1" 4122 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4123 | dependencies: 4124 | mkdirp "^0.5.1" 4125 | 4126 | ws@1.1.1: 4127 | version "1.1.1" 4128 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.1.tgz#082ddb6c641e85d4bb451f03d52f06eabdb1f018" 4129 | dependencies: 4130 | options ">=0.0.5" 4131 | ultron "1.0.x" 4132 | 4133 | wtf-8@1.0.0: 4134 | version "1.0.0" 4135 | resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a" 4136 | 4137 | xdg-basedir@^2.0.0: 4138 | version "2.0.0" 4139 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 4140 | dependencies: 4141 | os-homedir "^1.0.0" 4142 | 4143 | xml-char-classes@^1.0.0: 4144 | version "1.0.0" 4145 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" 4146 | 4147 | xmlhttprequest-ssl@1.5.3: 4148 | version "1.5.3" 4149 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d" 4150 | 4151 | xo-init@^0.4.0: 4152 | version "0.4.0" 4153 | resolved "https://registry.yarnpkg.com/xo-init/-/xo-init-0.4.0.tgz#e92562e38117eb71e55b8d34ee2d006252a49d6a" 4154 | dependencies: 4155 | arrify "^1.0.0" 4156 | execa "^0.5.0" 4157 | minimist "^1.1.3" 4158 | path-exists "^3.0.0" 4159 | read-pkg-up "^2.0.0" 4160 | the-argv "^1.0.0" 4161 | write-pkg "^2.0.0" 4162 | 4163 | xo@*: 4164 | version "0.17.1" 4165 | resolved "https://registry.yarnpkg.com/xo/-/xo-0.17.1.tgz#de65bc8120474fa76104f8a80b3b792d88c50ef6" 4166 | dependencies: 4167 | arrify "^1.0.0" 4168 | debug "^2.2.0" 4169 | deep-assign "^1.0.0" 4170 | eslint "^3.6.0" 4171 | eslint-config-xo "^0.17.0" 4172 | eslint-formatter-pretty "^1.0.0" 4173 | eslint-plugin-ava "^3.1.0" 4174 | eslint-plugin-import "^2.0.0" 4175 | eslint-plugin-no-use-extend-native "^0.3.2" 4176 | eslint-plugin-promise "^3.0.0" 4177 | eslint-plugin-unicorn "^1.0.0" 4178 | get-stdin "^5.0.0" 4179 | globby "^6.0.0" 4180 | has-flag "^2.0.0" 4181 | meow "^3.4.2" 4182 | multimatch "^2.1.0" 4183 | parse-gitignore "^0.3.1" 4184 | path-exists "^3.0.0" 4185 | pkg-conf "^2.0.0" 4186 | resolve-cwd "^1.0.0" 4187 | resolve-from "^2.0.0" 4188 | update-notifier "^1.0.0" 4189 | xo-init "^0.4.0" 4190 | 4191 | xtend@^4.0.0, xtend@~4.0.0: 4192 | version "4.0.1" 4193 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4194 | 4195 | y18n@^3.2.0, y18n@^3.2.1: 4196 | version "3.2.1" 4197 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4198 | 4199 | yallist@^2.0.0: 4200 | version "2.0.0" 4201 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" 4202 | 4203 | yargs-parser@^2.4.1: 4204 | version "2.4.1" 4205 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 4206 | dependencies: 4207 | camelcase "^3.0.0" 4208 | lodash.assign "^4.0.6" 4209 | 4210 | yargs-parser@^4.1.0: 4211 | version "4.2.1" 4212 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 4213 | dependencies: 4214 | camelcase "^3.0.0" 4215 | 4216 | yargs@3.29.0: 4217 | version "3.29.0" 4218 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.29.0.tgz#1aab9660eae79d8b8f675bcaeeab6ee34c2cf69c" 4219 | dependencies: 4220 | camelcase "^1.2.1" 4221 | cliui "^3.0.3" 4222 | decamelize "^1.0.0" 4223 | os-locale "^1.4.0" 4224 | window-size "^0.1.2" 4225 | y18n "^3.2.0" 4226 | 4227 | yargs@6.4.0: 4228 | version "6.4.0" 4229 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.4.0.tgz#816e1a866d5598ccf34e5596ddce22d92da490d4" 4230 | dependencies: 4231 | camelcase "^3.0.0" 4232 | cliui "^3.2.0" 4233 | decamelize "^1.1.1" 4234 | get-caller-file "^1.0.1" 4235 | os-locale "^1.4.0" 4236 | read-pkg-up "^1.0.1" 4237 | require-directory "^2.1.1" 4238 | require-main-filename "^1.0.1" 4239 | set-blocking "^2.0.0" 4240 | string-width "^1.0.2" 4241 | which-module "^1.0.0" 4242 | window-size "^0.2.0" 4243 | y18n "^3.2.1" 4244 | yargs-parser "^4.1.0" 4245 | 4246 | yargs@^4.7.1: 4247 | version "4.8.1" 4248 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 4249 | dependencies: 4250 | cliui "^3.2.0" 4251 | decamelize "^1.1.1" 4252 | get-caller-file "^1.0.1" 4253 | lodash.assign "^4.0.3" 4254 | os-locale "^1.4.0" 4255 | read-pkg-up "^1.0.1" 4256 | require-directory "^2.1.1" 4257 | require-main-filename "^1.0.1" 4258 | set-blocking "^2.0.0" 4259 | string-width "^1.0.1" 4260 | which-module "^1.0.0" 4261 | window-size "^0.2.0" 4262 | y18n "^3.2.1" 4263 | yargs-parser "^2.4.1" 4264 | 4265 | yargs@~3.10.0: 4266 | version "3.10.0" 4267 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4268 | dependencies: 4269 | camelcase "^1.0.2" 4270 | cliui "^2.1.0" 4271 | decamelize "^1.0.0" 4272 | window-size "0.1.0" 4273 | 4274 | yeast@0.1.2: 4275 | version "0.1.2" 4276 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 4277 | --------------------------------------------------------------------------------