├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── appium.capabilities.js ├── config.xml ├── ionic.config.json ├── package-lock.json ├── package.json ├── src ├── app │ ├── app.component.ts │ ├── app.module.ts │ ├── app.scss │ ├── app.template.html │ └── main.ts ├── assets │ └── icons │ │ └── appicon.png ├── components.ts ├── const.ts ├── index.html ├── manifest.json ├── pages │ ├── home │ │ ├── home.e2e.ts │ │ ├── home.spec.ts │ │ ├── index.ts │ │ └── template.html │ └── index.ts ├── providers.ts ├── service-worker.js ├── strings │ ├── en_US.ts │ ├── index.ts │ └── pt_BR.ts ├── theme │ └── variables.scss └── tsconfig.json ├── test ├── karma-test-shim.js ├── karma.conf.js ├── mocks-ionic.ts ├── protractor.conf.js └── webpack.test.js ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs 2 | # editorconfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | indent_style = space 8 | indent_size = 2 9 | 10 | # We recommend you to keep these unchanged 11 | end_of_line = lf 12 | charset = utf-8 13 | trim_trailing_whitespace = true 14 | insert_final_newline = true 15 | 16 | [*.md] 17 | trim_trailing_whitespace = false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Specifies intentionally untracked files to ignore when using Git 2 | # http://git-scm.com/docs/gitignore 3 | 4 | *~ 5 | *.sw[mnpcod] 6 | *.log 7 | *.tmp 8 | *.tmp.* 9 | log.txt 10 | *.sublime-project 11 | *.sublime-workspace 12 | .vscode/ 13 | npm-debug.log* 14 | 15 | .idea/ 16 | .sass-cache/ 17 | .sourcemaps/ 18 | .tmp/ 19 | .versions/ 20 | coverage/ 21 | dist/ 22 | node_modules/ 23 | tmp/ 24 | temp/ 25 | hooks/ 26 | platforms/ 27 | plugins/ 28 | plugins/android.json 29 | plugins/ios.json 30 | www/ 31 | $RECYCLE.BIN/ 32 | 33 | .DS_Store 34 | Thumbs.db 35 | UserInterfaceState.xcuserstate 36 | .vscode 37 | typings 38 | 39 | appium.capabilities.js 40 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright 2015 Drifty Co. 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ionic 3 seed 2 | 3 | This is a seed of Ionic 3 with TypeScript + Karma + Protractor + Appium 4 | 5 | ## Table of Contents 6 | - [Getting Started](#getting-started) 7 | - [Run in browser](#run-in-browser) 8 | - [Run in Android](#run-in-android) 9 | - [Run in iOS](#run-in-ios) 10 | - [Run Unit tests](#run-unit-tests) 11 | - [Run E2E tests](#run-e2e-tests) 12 | - [Run all tests](#run-all-tests) 13 | - [Contribute](#contribute) 14 | 15 | ## Getting Started 16 | 17 | * Install Node.js (recommended: use [nvm](https://github.com/creationix/nvm) to install) 18 | * Install the ionic CLI and Cordova CLI (`npm install -g ionic cordova`) 19 | * Clone this repository 20 | * Run `npm install` from the project root 21 | * Use the commands below 22 | 23 | ## Run in browser 24 | ```bash 25 | # only works if no native APIs are being used 26 | 27 | npm start # deploys the the browser 28 | ``` 29 | 30 | ## Run in Android 31 | ```bash 32 | # make sure the Android device/emulator is connected and available to ADB 33 | 34 | npm run android # deploys the app to an Android device or emulator 35 | ``` 36 | 37 | ## Run in iOS 38 | ```bash 39 | # make sure the iOS device is connected 40 | 41 | npm run ios # deploys the app to an iOS device or simulator 42 | ``` 43 | 44 | ## Run Unit tests 45 | ```bash 46 | npm run unittest # run unit tests on the browser 47 | ``` 48 | 49 | ## Run E2E tests 50 | ```bash 51 | npm run appium # run start appium server 52 | npm run e2e # in other terminal, run the e2e tests on the device 53 | ``` 54 | 55 | ## Run all tests 56 | ```bash 57 | npm run appium # run start appium server 58 | npm test # in other terminal, run the unit tests on the browser and e2e tests on the device 59 | ``` 60 | 61 | ## Contribute 62 | Issues and PRs are welcome, see the [issues list](https://github.com/fmsouza/ionic3-seed/issues). 63 | -------------------------------------------------------------------------------- /appium.capabilities.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Some capabilities must be set to make sure appium can connect to your device. 3 | * browserName: leave this empty, we want protractor to use the embedded webview 4 | * autoWebView: true for hybrid applications 5 | * platformName: device platform name (eg. 'android') 6 | * platformVersion: version of the android on the device (eg. '7.0') 7 | * deviceName: for android, it can be the adb device address (eg. 'ce031713733918ed0c') 8 | * app: the location of the apk (must be absolute) 9 | */ 10 | module.exports = { 11 | browserName: '', 12 | autoWebview: true, 13 | isHeadless: false, 14 | automationName: 'selendroid', 15 | platformName: 'android', 16 | deviceName: 'emulator-5554', 17 | app: '' 18 | }; 19 | -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Ionic seed 4 | 5 | An Ionic Framework and Cordova project. 6 | 7 | 8 | Ionic Framework Team 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 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ionic-seed", 3 | "app_id": "", 4 | "type": "ionic-angular", 5 | "integrations": { 6 | "cordova": {} 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ionic-seed", 3 | "version": "1.0.0", 4 | "description": "Ionic seed", 5 | "license": "Apache-2.0", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/fmsouza/ionic3-seed-protractor.git" 9 | }, 10 | "scripts": { 11 | "build": "ionic-app-scripts build", 12 | "clean": "ionic-app-scripts clean", 13 | "lint": "ionic-app-scripts lint", 14 | "ionic:build": "npm run build", 15 | "ionic:serve": "ionic serve", 16 | "ionic:lint": "npm run lint", 17 | "start": "npm run ionic:serve", 18 | "ios": "ionic cordova run ios", 19 | "android": "ionic cordova run android && adb logcat | grep CONSOLE", 20 | "test": "npm run unittest && npm run e2e", 21 | "unittest": "karma start ./test/karma.conf.js --single-run", 22 | "unittest-watch": "karma start ./test/karma.conf.js", 23 | "test-coverage": "karma start ./test/karma.conf.js --coverage", 24 | "e2e": "npm run e2e-update && npm run e2e-test", 25 | "e2e-test": "protractor ./test/protractor.conf.js", 26 | "e2e-update": "webdriver-manager update --standalone false --gecko false", 27 | "appium": "appium" 28 | }, 29 | "dependencies": { 30 | "@angular/common": "5.1.3", 31 | "@angular/compiler": "5.1.3", 32 | "@angular/compiler-cli": "5.1.3", 33 | "@angular/core": "5.1.3", 34 | "@angular/forms": "5.1.3", 35 | "@angular/http": "5.1.3", 36 | "@angular/platform-browser": "5.1.3", 37 | "@angular/platform-browser-dynamic": "5.1.3", 38 | "@ionic-native/app-version": "4.5.2", 39 | "@ionic-native/core": "4.5.2", 40 | "@ionic-native/keyboard": "4.5.2", 41 | "@ionic-native/splash-screen": "4.5.2", 42 | "@ionic-native/status-bar": "4.5.2", 43 | "@ionic/storage": "2.1.3", 44 | "cordova-android": "7.0.0", 45 | "cordova-ios": "4.5.4", 46 | "cordova-plugin-app-version": "0.1.9", 47 | "cordova-plugin-device": "2.0.1", 48 | "cordova-plugin-ionic-keyboard": "2.0.5", 49 | "cordova-plugin-ionic-webview": "1.1.16", 50 | "cordova-plugin-splashscreen": "5.0.1", 51 | "cordova-plugin-statusbar": "2.4.1", 52 | "cordova-plugin-whitelist": "1.3.3", 53 | "ionic-angular": "3.9.2", 54 | "ionicons": "3.0.0", 55 | "rxjs": "5.5.6", 56 | "sw-toolbox": "3.6.0", 57 | "zone.js": "0.8.19" 58 | }, 59 | "devDependencies": { 60 | "@ionic/app-scripts": "3.1.7", 61 | "@types/jasmine": "2.8.3", 62 | "@types/node": "9.3.0", 63 | "angular2-template-loader": "0.6.2", 64 | "appium": "1.7.2", 65 | "html-loader": "0.5.4", 66 | "istanbul-instrumenter-loader": "3.0.0", 67 | "jasmine": "2.8.0", 68 | "jasmine-spec-reporter": "4.2.1", 69 | "karma": "2.0.0", 70 | "karma-coverage-istanbul-reporter": "1.3.3", 71 | "karma-jasmine": "1.1.1", 72 | "karma-jasmine-html-reporter": "0.2.2", 73 | "karma-phantomjs2-launcher": "0.5.0", 74 | "karma-sourcemap-loader": "0.3.7", 75 | "karma-webpack": "2.0.9", 76 | "null-loader": "0.1.1", 77 | "protractor": "5.2.2", 78 | "selenium-server-standalone-jar": "3.8.1", 79 | "ts-loader": "3.2.0", 80 | "ts-node": "4.1.0", 81 | "typescript": "2.6.2", 82 | "wd": "1.5.0", 83 | "wd-bridge": "0.0.2" 84 | }, 85 | "config": { 86 | "ionic_aot_write_to_disk": true 87 | }, 88 | "cordova": { 89 | "platforms": [ 90 | "android", 91 | "ios" 92 | ], 93 | "plugins": { 94 | "cordova-plugin-statusbar": {}, 95 | "cordova-plugin-ionic-keyboard": {}, 96 | "cordova-plugin-splashscreen": {}, 97 | "cordova-plugin-whitelist": {}, 98 | "cordova-plugin-ionic-webview": {}, 99 | "cordova-plugin-device": {}, 100 | "cordova-plugin-app-version": {} 101 | } 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, ViewChild } from '@angular/core'; 2 | import { Nav, Platform } from 'ionic-angular'; 3 | import { SplashScreen } from '@ionic-native/splash-screen'; 4 | import { StatusBar } from '@ionic-native/status-bar'; 5 | import { DEFAULT_PAGE, DRAWER_LINKS, MenuItem } from '../components'; 6 | import strings from '../strings/index'; 7 | 8 | @Component({ 9 | templateUrl: 'app.template.html' 10 | }) 11 | export class Application { 12 | // the root nav is a child of the root app component 13 | // @ViewChild(Nav) gets a reference to the app's root nav 14 | @ViewChild(Nav) public nav: Nav; 15 | 16 | public rootPage: any = DEFAULT_PAGE; 17 | 18 | public get Text(): any { 19 | return strings; 20 | } 21 | 22 | // List of pages that can be navigated to from the left menu 23 | // the left menu only works after login 24 | // the login page disables the left menu 25 | public pages: MenuItem[] = DRAWER_LINKS; 26 | 27 | public constructor(platform: Platform, private splashscreen: SplashScreen, private statusbar: StatusBar) { 28 | platform.ready().then(() => this.onReady()); 29 | } 30 | 31 | private onReady(): void { 32 | // Okay, so the platform is ready and our plugins are available. 33 | // Here you can do any higher level native things you might need. 34 | this.statusbar.styleDefault(); 35 | this.splashscreen.hide(); 36 | } 37 | 38 | /** 39 | * Opens a given page 40 | * @param {MenuItem} page - Clicked page item 41 | * @return {void} 42 | */ 43 | public openPage(page: MenuItem): void { 44 | if (page.component) { 45 | if (!page.home) this.nav.push(page.component); 46 | else this.nav.setRoot(page.component); 47 | } else if (page.link) window.open(page.link, '_system'); 48 | else if (page.action) page.action(); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { BrowserModule } from '@angular/platform-browser'; 2 | import { HttpModule } from '@angular/http'; 3 | import { NgModule, ErrorHandler } from '@angular/core'; 4 | 5 | import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular'; 6 | 7 | import { AppVersion } from '@ionic-native/app-version'; 8 | import { StatusBar } from '@ionic-native/status-bar'; 9 | import { SplashScreen } from '@ionic-native/splash-screen'; 10 | 11 | import { IonicStorageModule } from '@ionic/storage'; 12 | 13 | import { Application } from './app.component'; 14 | import { PAGES, DEEP_LINKS as links } from '../components'; 15 | import { Providers } from '../providers'; 16 | 17 | const COMPONENTS: any = [ 18 | Application, 19 | ...PAGES 20 | ]; 21 | 22 | const providers: any = [ 23 | { provide: ErrorHandler, useClass: IonicErrorHandler }, 24 | AppVersion, 25 | StatusBar, 26 | SplashScreen, 27 | ...Providers 28 | ]; 29 | 30 | @NgModule({ 31 | declarations: COMPONENTS, 32 | entryComponents: COMPONENTS, 33 | imports: [ 34 | BrowserModule, 35 | HttpModule, 36 | IonicModule.forRoot(Application, {}, { links }), 37 | IonicStorageModule.forRoot() 38 | ], 39 | bootstrap: [IonicApp], 40 | providers 41 | }) 42 | export class AppModule {} 43 | -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- 1 | // Media of at most the maximum breakpoint width. No query for the largest breakpoint. 2 | // Makes the @content apply to the given breakpoint and narrower. 3 | @mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) { 4 | $max: breakpoint-max($name, $breakpoints); 5 | @if $max { 6 | @media (max-width: $max) { 7 | @content; 8 | } 9 | } @else { 10 | @content; 11 | } 12 | } 13 | 14 | 15 | // Name of the next breakpoint, or null for the last breakpoint. 16 | // 17 | // >> breakpoint-next(sm) 18 | // md 19 | // >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)) 20 | // md 21 | // >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl)) 22 | // md 23 | @function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) { 24 | $n: index($breakpoint-names, $name); 25 | @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null); 26 | } 27 | 28 | 29 | // Maximum breakpoint width. Null for the largest (last) breakpoint. 30 | // The maximum value is calculated as the minimum of the next one less 0.1. 31 | // 32 | // >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)) 33 | // 767px 34 | @function breakpoint-max($name, $breakpoints: $grid-breakpoints) { 35 | $next: breakpoint-next($name, $breakpoints); 36 | @return if($next, breakpoint-min($next, $breakpoints) - 1px, null); 37 | } 38 | 39 | 40 | // Creates text alignment classes based on screen size 41 | // TODO this would be nice to add to the framework 42 | @each $breakpoint in map-keys($grid-breakpoints) { 43 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 44 | 45 | @include media-breakpoint-up($breakpoint, $grid-breakpoints) { 46 | // Provide text `[text-{bp}]` attributes for aligning text based on screen size 47 | [text#{$infix}-center] { 48 | text-align: center; 49 | } 50 | 51 | [text#{$infix}-left] { 52 | text-align: left; 53 | } 54 | 55 | [text#{$infix}-right] { 56 | text-align: right; 57 | } 58 | 59 | [hidden#{$infix}-up] { 60 | display: none; 61 | } 62 | } 63 | 64 | @include media-breakpoint-down($breakpoint, $grid-breakpoints) { 65 | [hidden#{$infix}-down] { 66 | display: none; 67 | } 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /src/app/app.template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {{ Text.MENU_TITLE }} 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | {{ Text.MENU_HEADER_PAGES }} 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/app/main.ts: -------------------------------------------------------------------------------- 1 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 2 | import { AppModule } from './app.module'; 3 | 4 | platformBrowserDynamic().bootstrapModule(AppModule); -------------------------------------------------------------------------------- /src/assets/icons/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmsouza/ionic3-seed-protractor/5b2b132661abc4031a474be7962c8ecc5d82534c/src/assets/icons/appicon.png -------------------------------------------------------------------------------- /src/components.ts: -------------------------------------------------------------------------------- 1 | import * as Pages from './pages'; 2 | import strings from './strings'; 3 | 4 | export interface MenuItem { 5 | title: string; 6 | icon: string; 7 | component?: any; 8 | link?: string; 9 | action?: Function; 10 | home?: boolean; 11 | } 12 | 13 | export interface DeepLink { 14 | name: string; 15 | segment: string; 16 | component: any; 17 | } 18 | 19 | export const DEFAULT_PAGE: any = Pages.HomePage; 20 | 21 | export const PAGES: any = [ 22 | Pages.HomePage 23 | ]; 24 | 25 | export const DRAWER_LINKS: MenuItem[] = [ 26 | { title: strings.MENU_OPTION_HOME, icon: 'home', component: Pages.HomePage, home: true }, 27 | ]; 28 | 29 | export const DEEP_LINKS: DeepLink[] = [ 30 | { name: 'HomePage', segment: 'page-home', component: Pages.HomePage } 31 | ]; 32 | -------------------------------------------------------------------------------- /src/const.ts: -------------------------------------------------------------------------------- 1 | export const LANG_DEFAULT: string = 'en-US'; -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ionic App 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ionic2 seed", 3 | "short_name": "Ionic seed", 4 | "start_url": "index.html", 5 | "display": "standalone", 6 | "icons": [{ 7 | "src": "assets/icons/appicon.png", 8 | "sizes": "512x512", 9 | "type": "image/png" 10 | }], 11 | "background_color": "#387ef5", 12 | "theme_color": "#387ef5" 13 | } -------------------------------------------------------------------------------- /src/pages/home/home.e2e.ts: -------------------------------------------------------------------------------- 1 | import { browser, element, by } from 'protractor'; 2 | 3 | describe('Home', () => { 4 | 5 | describe('default screen', () => { 6 | 7 | it('should have a title saying Home', () => { 8 | browser.getTitle().then(title => { 9 | expect(title).toEqual('Ionic'); 10 | }); 11 | }); 12 | 13 | it('should present the package name', () => { 14 | element(by.css('#pkgname')).getText().then(text => { 15 | expect(text).toEqual('io.ionic.seed'); 16 | }); 17 | }); 18 | }) 19 | }); 20 | -------------------------------------------------------------------------------- /src/pages/home/home.spec.ts: -------------------------------------------------------------------------------- 1 | import { async, ComponentFixture, TestBed } from '@angular/core/testing'; 2 | import { By } from '@angular/platform-browser'; 3 | import { DebugElement } from '@angular/core'; 4 | import { IonicModule } from 'ionic-angular/index'; 5 | import { AppVersion } from '@ionic-native/app-version'; 6 | import { HomePage } from './index'; 7 | 8 | class AppVersionMock extends AppVersion { 9 | getPackageName(): Promise { 10 | return Promise.resolve("io.ionic.seed"); 11 | } 12 | } 13 | 14 | describe('HomePage', () => { 15 | let de: DebugElement; 16 | let comp: HomePage; 17 | let fixture: ComponentFixture; 18 | 19 | beforeEach(async(() => { 20 | TestBed.configureTestingModule({ 21 | declarations: [HomePage], 22 | imports: [ 23 | IonicModule.forRoot(HomePage) 24 | ], 25 | providers: [ 26 | { provide: AppVersion, useClass: AppVersionMock } 27 | ] 28 | }); 29 | })); 30 | 31 | beforeEach(() => { 32 | fixture = TestBed.createComponent(HomePage); 33 | comp = fixture.componentInstance; 34 | de = fixture.debugElement; 35 | }); 36 | 37 | it('should create component', () => expect(comp).toBeDefined()); 38 | 39 | it('should have expected

text', () => { 40 | fixture.detectChanges(); 41 | const h2 = de.query(By.css('h2')).nativeElement; 42 | expect(h2.innerText).toEqual("Hello world!", '

should say something about "Hello world!"'); 43 | }); 44 | 45 | it('should have expected #pkgname text', () => { 46 | fixture.detectChanges(); 47 | const span = de.query(By.css('#pkgname')).nativeElement; 48 | setTimeout(() => { 49 | expect(span.innerText).toEqual("io.ionic.seed", ' should say "io.ionic.seed"'); 50 | }, 1000); 51 | }); 52 | }); 53 | -------------------------------------------------------------------------------- /src/pages/home/index.ts: -------------------------------------------------------------------------------- 1 | import { AppVersion } from '@ionic-native/app-version'; 2 | import { Component } from '@angular/core'; 3 | import strings from '../../strings'; 4 | 5 | /** 6 | * HomePage class is the Home view controller 7 | * 8 | * @class {HomePage} 9 | */ 10 | @Component({ 11 | selector: 'page-home', 12 | templateUrl: 'template.html', 13 | }) 14 | export class HomePage { 15 | 16 | public get Text(): any { 17 | return strings; 18 | } 19 | 20 | public packageName: string = ''; 21 | 22 | public constructor(private appVersion: AppVersion) {} 23 | 24 | public ionViewWillLoad(): void { 25 | this.appVersion.getPackageName() 26 | .then(packageName => this.packageName = packageName); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/pages/home/template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | {{ Text.PAGE_HOME_TITLE }} 7 | 8 | 9 | 10 | 11 |

{{ Text.PAGE_HOME_CONTENT }}

12 | {{ packageName }} 13 |
14 | -------------------------------------------------------------------------------- /src/pages/index.ts: -------------------------------------------------------------------------------- 1 | export * from './home'; 2 | -------------------------------------------------------------------------------- /src/providers.ts: -------------------------------------------------------------------------------- 1 | import { StatusBar } from '@ionic-native/status-bar'; 2 | import { SplashScreen } from '@ionic-native/splash-screen'; 3 | 4 | export const Providers: any = [ 5 | SplashScreen, 6 | StatusBar, 7 | ]; -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Check out https://googlechrome.github.io/sw-toolbox/docs/master/index.html for 3 | * more info on how to use sw-toolbox to custom configure your service worker. 4 | */ 5 | 'use strict'; 6 | importScripts('./build/sw-toolbox.js'); 7 | 8 | self.toolbox.options.cache = { 9 | name: 'ionic-cache' 10 | }; 11 | 12 | // pre-cache our key assets 13 | self.toolbox.precache( 14 | [ 15 | './build/main.js', 16 | './build/vendor.js', 17 | './build/main.css', 18 | './build/polyfills.js', 19 | 'index.html', 20 | 'manifest.json' 21 | ] 22 | ); 23 | 24 | // dynamically cache any other local assets 25 | self.toolbox.router.any('/*', self.toolbox.cacheFirst); 26 | 27 | // for any other requests go to the network, cache, 28 | // and then only use that cached resource if your user goes offline 29 | self.toolbox.router.default = self.toolbox.networkFirst; 30 | -------------------------------------------------------------------------------- /src/strings/en_US.ts: -------------------------------------------------------------------------------- 1 | export const PAGE_HOME_TITLE: string = 'Ionic'; 2 | export const PAGE_HOME_CONTENT: string = 'Hello world!'; 3 | export const MENU_TITLE: string = 'Menu'; 4 | export const MENU_HEADER_PAGES: string = 'Pages'; 5 | export const MENU_OPTION_HOME: string = 'Home'; -------------------------------------------------------------------------------- /src/strings/index.ts: -------------------------------------------------------------------------------- 1 | import { LANG_DEFAULT } from '../const'; 2 | import * as pt_BR from './pt_BR'; 3 | import * as en_US from './en_US'; 4 | 5 | const mapping: any = { 6 | 'pt-BR': pt_BR, 7 | 'pt-PT': pt_BR, 8 | 'en-US': en_US, 9 | 'en-EN': en_US, 10 | }; 11 | 12 | let strings: any = (Object.keys(mapping).indexOf(navigator.language)>-1)? 13 | mapping[navigator.language] : mapping[LANG_DEFAULT]; 14 | 15 | export default strings; 16 | -------------------------------------------------------------------------------- /src/strings/pt_BR.ts: -------------------------------------------------------------------------------- 1 | export const PAGE_HOME_TITLE: string = 'Ionic'; 2 | export const PAGE_HOME_CONTENT: string = 'Alô mundo!'; 3 | export const MENU_TITLE: string = 'Menu'; 4 | export const MENU_HEADER_PAGES: string = 'Páginas'; 5 | export const MENU_OPTION_HOME: string = 'Início'; -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- 1 | // Ionic Variables and Theming. For more info, please see: 2 | // http://ionicframework.com/docs/v2/theming/ 3 | 4 | // Font path is used to include ionicons, 5 | // roboto, and noto sans fonts 6 | $font-path: "../assets/fonts"; 7 | 8 | 9 | // The app direction is used to include 10 | // rtl styles in your app. For more info, please see: 11 | // http://ionicframework.com/docs/theming/rtl-support/ 12 | $app-direction: ltr; 13 | 14 | 15 | @import "ionic.globals"; 16 | 17 | 18 | // Shared Variables 19 | // -------------------------------------------------- 20 | // To customize the look and feel of this app, you can override 21 | // the Sass variables found in Ionic's source scss files. 22 | // To view all the possible Ionic variables, see: 23 | // http://ionicframework.com/docs/v2/theming/overriding-ionic-variables/ 24 | 25 | $headings-font-weight: 300; 26 | 27 | 28 | // Named Color Variables 29 | // -------------------------------------------------- 30 | // Named colors makes it easy to reuse colors on various components. 31 | // It's highly recommended to change the default colors 32 | // to match your app's branding. Ionic uses a Sass map of 33 | // colors so you can add, rename and remove colors as needed. 34 | // The "primary" color is the only required color in the map. 35 | 36 | $colors: ( 37 | primary: #488aff, 38 | secondary: #32db64, 39 | danger: #f53d3d, 40 | light: #f4f4f4, 41 | dark: #222, 42 | favorite: #69BB7B, 43 | twitter: #1da1f4, 44 | google: #dc4a38, 45 | vimeo: #23b6ea, 46 | facebook: #3b5998 47 | ); 48 | 49 | 50 | // App iOS Variables 51 | // -------------------------------------------------- 52 | // iOS only Sass variables can go here 53 | 54 | 55 | 56 | // App Material Design Variables 57 | // -------------------------------------------------- 58 | // Material Design only Sass variables can go here 59 | 60 | // Use the primary color as the background for the toolbar-md-background 61 | $toolbar-md-background: color($colors, primary); 62 | 63 | // Change the color of the segment button text 64 | $toolbar-md-active-color: #fff; 65 | 66 | 67 | // App Windows Variables 68 | // -------------------------------------------------- 69 | // Windows only Sass variables can go here 70 | 71 | 72 | 73 | // App Theme 74 | // -------------------------------------------------- 75 | // Ionic apps can have different themes applied, which can 76 | // then be future customized. This import comes last 77 | // so that the above variables are used and Ionic's 78 | // default are overridden. 79 | 80 | @import "ionic.theme.default"; 81 | 82 | 83 | // Ionicons 84 | // -------------------------------------------------- 85 | // The premium icon font for Ionic. For more info, please see: 86 | // http://ionicframework.com/docs/v2/ionicons/ 87 | 88 | @import "ionic.ionicons"; 89 | 90 | 91 | // Fonts 92 | // -------------------------------------------------- 93 | // Roboto font is used by default for Material Design. Noto sans 94 | // is used by default for Windows. 95 | 96 | @import "roboto"; 97 | @import "noto-sans"; 98 | -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "declaration": false, 5 | "emitDecoratorMetadata": true, 6 | "experimentalDecorators": true, 7 | "module": "commonjs", 8 | "moduleResolution": "node", 9 | "outDir": "../dist/out-tsc-e2e", 10 | "sourceMap": true, 11 | "target": "es5", 12 | "typeRoots": [ 13 | "../node_modules/@types" 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /test/karma-test-shim.js: -------------------------------------------------------------------------------- 1 | Error.stackTraceLimit = Infinity; 2 | 3 | require('core-js/es6'); 4 | require('core-js/es7/reflect'); 5 | 6 | require('zone.js/dist/zone'); 7 | require('zone.js/dist/long-stack-trace-zone'); 8 | require('zone.js/dist/proxy'); 9 | require('zone.js/dist/sync-test'); 10 | require('zone.js/dist/jasmine-patch'); 11 | require('zone.js/dist/async-test'); 12 | require('zone.js/dist/fake-async-test'); 13 | 14 | var appContext = require.context('../src', true, /\.spec\.ts/); 15 | 16 | appContext.keys().forEach(appContext); 17 | 18 | var testing = require('@angular/core/testing'); 19 | var browser = require('@angular/platform-browser-dynamic/testing'); 20 | 21 | testing.TestBed.initTestEnvironment(browser.BrowserDynamicTestingModule, browser.platformBrowserDynamicTesting()); 22 | -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- 1 | module.exports = function(config) { 2 | var _config = { 3 | basePath: '../', 4 | 5 | frameworks: ['jasmine'], 6 | 7 | files: [ 8 | { 9 | pattern: './test/karma-test-shim.js', 10 | watched: true 11 | }, 12 | { 13 | pattern: './src/assets/**/*', 14 | watched: false, 15 | included: false, 16 | served: true, 17 | nocache: false 18 | } 19 | ], 20 | 21 | proxies: { 22 | '/assets/': '/base/src/assets/' 23 | }, 24 | 25 | preprocessors: { 26 | './test/karma-test-shim.js': ['webpack', 'sourcemap'] 27 | }, 28 | 29 | webpack: require('./webpack.test.js'), 30 | 31 | webpackMiddleware: { 32 | stats: 'errors-only' 33 | }, 34 | 35 | webpackServer: { 36 | noInfo: true 37 | }, 38 | 39 | browserConsoleLogOptions: { 40 | level: 'log', 41 | format: '%b %T: %m', 42 | terminal: true 43 | }, 44 | 45 | coverageIstanbulReporter: { 46 | reports: [ 'html', 'lcovonly' ], 47 | fixWebpackSourcePaths: true 48 | }, 49 | 50 | reporters: config.coverage ? ['kjhtml', 'dots', 'coverage-istanbul'] : ['kjhtml', 'dots'], 51 | port: 9876, 52 | colors: true, 53 | logLevel: config.LOG_INFO, 54 | autoWatch: true, 55 | browsers: ['PhantomJS2'], 56 | phantomjsLauncher: { 57 | // Have phantomjs exit if a ResourceError is encountered (useful if karma exits without killing phantom) 58 | exitOnResourceError: true 59 | }, 60 | singleRun: false 61 | }; 62 | 63 | config.set(_config); 64 | }; 65 | -------------------------------------------------------------------------------- /test/mocks-ionic.ts: -------------------------------------------------------------------------------- 1 | import { StatusBar } from '@ionic-native/status-bar'; 2 | import { SplashScreen } from '@ionic-native/splash-screen'; 3 | 4 | export class PlatformMock { 5 | 6 | public ready(): Promise { 7 | return new Promise((resolve) => { 8 | resolve('READY'); 9 | }); 10 | } 11 | 12 | public getQueryParam() { 13 | return true; 14 | } 15 | 16 | public doc(): HTMLDocument { 17 | return document; 18 | } 19 | 20 | public is(): boolean { 21 | return true; 22 | } 23 | 24 | public onResize(callback: any) { 25 | return callback; 26 | } 27 | 28 | public win(): Window { 29 | return window; 30 | } 31 | 32 | public timeout(callback: any, timer: number): any { 33 | return setTimeout(callback, timer); 34 | } 35 | 36 | public getActiveElement(): any { 37 | return document['activeElement']; 38 | } 39 | } 40 | 41 | export class StatusBarMock extends StatusBar { 42 | styleDefault() { 43 | return; 44 | } 45 | } 46 | 47 | export class SplashScreenMock extends SplashScreen { 48 | hide() { 49 | return; 50 | } 51 | } 52 | 53 | export class NavMock { 54 | 55 | public pop(): any { 56 | return new Promise(function(resolve: Function): void { 57 | resolve(); 58 | }); 59 | } 60 | 61 | public push(): any { 62 | return new Promise(function(resolve: Function): void { 63 | resolve(); 64 | }); 65 | } 66 | 67 | public getActive(): any { 68 | return { 69 | 'instance': { 70 | 'model': 'something', 71 | }, 72 | }; 73 | } 74 | 75 | public setRoot(): any { 76 | return true; 77 | } 78 | 79 | } 80 | -------------------------------------------------------------------------------- /test/protractor.conf.js: -------------------------------------------------------------------------------- 1 | const jar = require('selenium-server-standalone-jar'); 2 | 3 | exports.config = { 4 | /* 5 | * normally protractor runs tests on localhost:4444, but we want protractor to connect to appium 6 | * which runs on localhost:4723 7 | */ 8 | seleniumAddress: 'http://127.0.0.1:4723/wd/hub', 9 | seleniumServerJar: jar.path, 10 | 11 | specs: ['../src/**/*.e2e.ts'], 12 | 13 | capabilities: require('../appium.capabilities'), 14 | 15 | baseUrl: 'http://10.0.2.2:8000', 16 | 17 | beforeLaunch: function() { 18 | require('ts-node').register({ 19 | project: 'src' 20 | }); 21 | }, 22 | 23 | /* configuring wd in onPrepare 24 | * wdBridge helps to bridge wd driver with other selenium clients 25 | * See https://github.com/sebv/wd-bridge/blob/master/README.md 26 | */ 27 | onPrepare: function () { 28 | var wd = require('wd'), 29 | protractor = require('protractor'), 30 | wdBridge = require('wd-bridge')(protractor, wd); 31 | wdBridge.initFromProtractor(exports.config); 32 | } 33 | }; 34 | -------------------------------------------------------------------------------- /test/webpack.test.js: -------------------------------------------------------------------------------- 1 | var webpack = require('webpack'); 2 | var path = require('path'); 3 | 4 | module.exports = { 5 | devtool: 'inline-source-map', 6 | 7 | resolve: { 8 | extensions: ['.ts', '.js'] 9 | }, 10 | 11 | module: { 12 | rules: [{ 13 | test: /\.ts$/, 14 | loaders: [{ 15 | loader: 'ts-loader' 16 | }, 'angular2-template-loader'] 17 | }, 18 | { 19 | test: /.+\.ts$/, 20 | exclude: /(index.ts|mocks.ts|\.spec\.ts$)/, 21 | loader: 'istanbul-instrumenter-loader', 22 | enforce: 'post', 23 | query: { 24 | esModules: true 25 | } 26 | }, 27 | { 28 | test: /\.html$/, 29 | loader: 'html-loader?attrs=false' 30 | }, 31 | { 32 | test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)$/, 33 | loader: 'null-loader' 34 | } 35 | ] 36 | }, 37 | 38 | plugins: [ 39 | new webpack.ContextReplacementPlugin( 40 | // The (\\|\/) piece accounts for path separators in *nix and Windows 41 | /(ionic-angular)|(angular(\\|\/)core(\\|\/)@angular)/, 42 | root('./src'), // location of your src 43 | {} // a map of your routes 44 | ) 45 | ] 46 | }; 47 | 48 | function root(localPath) { 49 | return path.resolve(__dirname, localPath); 50 | } 51 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "atom": { 3 | "rewriteTsconfig": false 4 | }, 5 | "compileOnSave": false, 6 | "compilerOptions": { 7 | "allowSyntheticDefaultImports": true, 8 | "declaration": false, 9 | "emitDecoratorMetadata": true, 10 | "experimentalDecorators": true, 11 | "noUnusedParameters": true, 12 | "noUnusedLocals": true, 13 | "strict": false, 14 | "module": "es2015", 15 | "moduleResolution": "node", 16 | "sourceMap": true, 17 | "target": "es5", 18 | "lib": [ 19 | "dom", 20 | "es2015" 21 | ] 22 | }, 23 | "include": [ 24 | "src/**/*.ts" 25 | ], 26 | "exclude": [ 27 | "node_modules", 28 | "src/**/*.spec.js" 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": [ 3 | "node_modules/tslint-eslint-rules/dist/rules" 4 | ], 5 | "rules": { 6 | "no-duplicate-variable": true 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@angular/common@2.4.8": 6 | version "2.4.8" 7 | resolved "https://registry.yarnpkg.com/@angular/common/-/common-2.4.8.tgz#e45a77a9d852c8e7135053ff38cf805435458c48" 8 | 9 | "@angular/compiler-cli@2.4.8": 10 | version "2.4.8" 11 | resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-2.4.8.tgz#6dad3b467243166bf2515d21993d2d1a4700a161" 12 | dependencies: 13 | "@angular/tsc-wrapped" "0.5.2" 14 | minimist "^1.2.0" 15 | reflect-metadata "^0.1.2" 16 | 17 | "@angular/compiler@2.4.8": 18 | version "2.4.8" 19 | resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-2.4.8.tgz#fa788fc8bed9f322b040af2b9a06a70991390e23" 20 | 21 | "@angular/core@2.4.8": 22 | version "2.4.8" 23 | resolved "https://registry.yarnpkg.com/@angular/core/-/core-2.4.8.tgz#bf1a4fc324827516e6c3222047a9b2cbdaee6976" 24 | 25 | "@angular/forms@2.4.8": 26 | version "2.4.8" 27 | resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-2.4.8.tgz#51512a801aaf3a1eba7bce2b22694537b93f047f" 28 | 29 | "@angular/http@2.4.8": 30 | version "2.4.8" 31 | resolved "https://registry.yarnpkg.com/@angular/http/-/http-2.4.8.tgz#e81ac8e4db836ed813edc4ffa137596cd5836baf" 32 | 33 | "@angular/platform-browser-dynamic@2.4.8": 34 | version "2.4.8" 35 | resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-2.4.8.tgz#86059fe930489d1ca0056a5aba0b4420414759f5" 36 | 37 | "@angular/platform-browser@2.4.8": 38 | version "2.4.8" 39 | resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-2.4.8.tgz#686bc82d9188e354181699640777237ed79122ed" 40 | 41 | "@angular/platform-server@2.4.8": 42 | version "2.4.8" 43 | resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-2.4.8.tgz#6ccf9550f11137286007c7ff01d4b449c421acbe" 44 | dependencies: 45 | parse5 "^2.2.1" 46 | 47 | "@angular/tsc-wrapped@0.5.2": 48 | version "0.5.2" 49 | resolved "https://registry.yarnpkg.com/@angular/tsc-wrapped/-/tsc-wrapped-0.5.2.tgz#2eddf472c467fcb334ea94deddaaa71990c5a482" 50 | dependencies: 51 | tsickle "^0.2" 52 | 53 | "@ionic-native/core@3.1.1": 54 | version "3.1.1" 55 | resolved "https://registry.yarnpkg.com/@ionic-native/core/-/core-3.1.1.tgz#46c76a39acb50211e3a0bc423eb7883679648672" 56 | 57 | "@ionic-native/in-app-browser@3.1.1": 58 | version "3.1.1" 59 | resolved "https://registry.yarnpkg.com/@ionic-native/in-app-browser/-/in-app-browser-3.1.1.tgz#1b1702cc1ea94d7a8f29c92a90f9138a59a52258" 60 | 61 | "@ionic-native/keyboard@3.1.1": 62 | version "3.1.1" 63 | resolved "https://registry.yarnpkg.com/@ionic-native/keyboard/-/keyboard-3.1.1.tgz#3431dca9c7ec1069e26237462e101930e5261120" 64 | 65 | "@ionic-native/splash-screen@3.1.1": 66 | version "3.1.1" 67 | resolved "https://registry.yarnpkg.com/@ionic-native/splash-screen/-/splash-screen-3.1.1.tgz#4db2dc7077e8c45304f03b8a39cd8b865c98caff" 68 | 69 | "@ionic-native/status-bar@3.1.1": 70 | version "3.1.1" 71 | resolved "https://registry.yarnpkg.com/@ionic-native/status-bar/-/status-bar-3.1.1.tgz#3d1ffa427ff6d2d8a4edd8d62af4f504671e5c10" 72 | 73 | "@ionic/app-scripts@1.2.4": 74 | version "1.2.4" 75 | resolved "https://registry.yarnpkg.com/@ionic/app-scripts/-/app-scripts-1.2.4.tgz#32b127052dbb8f6211cedc3dffc19b90740030a5" 76 | dependencies: 77 | autoprefixer "6.7.2" 78 | babili "0.0.10" 79 | chalk "1.1.3" 80 | chokidar "1.6.1" 81 | clean-css "3.4.24" 82 | cross-spawn "5.0.1" 83 | express "4.14.1" 84 | fs-extra "2.0.0" 85 | glob "^7.1.1" 86 | json-loader "0.5.4" 87 | node-sass "4.5.0" 88 | os-name "2.0.1" 89 | postcss "5.2.11" 90 | proxy-middleware "0.15.0" 91 | rollup "0.41.4" 92 | rollup-plugin-commonjs "7.0.0" 93 | rollup-plugin-json "2.1.0" 94 | rollup-plugin-node-builtins "2.0.0" 95 | rollup-plugin-node-globals "1.1.0" 96 | rollup-plugin-node-resolve "2.0.0" 97 | rollup-pluginutils "2.0.1" 98 | tiny-lr "1.0.3" 99 | tslint "3.15.1" 100 | tslint-eslint-rules "1.5.0" 101 | uglify-js "2.8.16" 102 | webpack "2.2.1" 103 | ws "1.1.1" 104 | xml2js "^0.4.17" 105 | 106 | "@ionic/cli-build-ionic-angular@0.0.3": 107 | version "0.0.3" 108 | resolved "https://registry.yarnpkg.com/@ionic/cli-build-ionic-angular/-/cli-build-ionic-angular-0.0.3.tgz#cb1de974811c367409bcde07527ed616f735f5bb" 109 | dependencies: 110 | chalk "^1.1.3" 111 | 112 | "@ionic/cli-plugin-cordova@0.0.9": 113 | version "0.0.9" 114 | resolved "https://registry.yarnpkg.com/@ionic/cli-plugin-cordova/-/cli-plugin-cordova-0.0.9.tgz#9a56421e74f59c99ffb73c98d8bb592f6de3b416" 115 | dependencies: 116 | "@ionic/cli-utils" "^0.0.8" 117 | node-fetch "^1.6.3" 118 | 119 | "@ionic/cli-utils@^0.0.8": 120 | version "0.0.8" 121 | resolved "https://registry.yarnpkg.com/@ionic/cli-utils/-/cli-utils-0.0.8.tgz#61912cd0070dcd765d7fe589ad4d010ea030f6b3" 122 | dependencies: 123 | cross-spawn "^4.0.2" 124 | inquirer "^1.2.2" 125 | leek "0.0.24" 126 | superagent "^2.3.0" 127 | 128 | "@ionic/storage@2.0.0": 129 | version "2.0.0" 130 | resolved "https://registry.yarnpkg.com/@ionic/storage/-/storage-2.0.0.tgz#28b7fb4deda642bcbdd037f9c95946828552103d" 131 | dependencies: 132 | "@types/localforage" "0.0.30" 133 | localforage "~1.4.2" 134 | localforage-cordovasqlitedriver "~1.5.0" 135 | 136 | "@types/jasmine@2.5.47": 137 | version "2.5.47" 138 | resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-2.5.47.tgz#bbba9bcf0e95e7890c6f4a47394e8bacaa960eb6" 139 | 140 | "@types/localforage@0.0.30": 141 | version "0.0.30" 142 | resolved "https://registry.yarnpkg.com/@types/localforage/-/localforage-0.0.30.tgz#3d60a6bf6dda38e3f8a469611598379f1f649509" 143 | 144 | "@types/node@7.0.12": 145 | version "7.0.12" 146 | resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.12.tgz#ae5f67a19c15f752148004db07cbbb372e69efc9" 147 | 148 | abbrev@1: 149 | version "1.0.9" 150 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 151 | 152 | accepts@1.3.3, accepts@~1.3.3: 153 | version "1.3.3" 154 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 155 | dependencies: 156 | mime-types "~2.1.11" 157 | negotiator "0.6.1" 158 | 159 | acorn-dynamic-import@^2.0.0: 160 | version "2.0.2" 161 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 162 | dependencies: 163 | acorn "^4.0.3" 164 | 165 | acorn@^1.0.3: 166 | version "1.2.2" 167 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-1.2.2.tgz#c8ce27de0acc76d896d2b1fad3df588d9e82f014" 168 | 169 | acorn@^4.0.1, acorn@^4.0.3, acorn@^4.0.4: 170 | version "4.0.11" 171 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 172 | 173 | after@0.8.2: 174 | version "0.8.2" 175 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" 176 | 177 | ajv-keywords@^1.1.1: 178 | version "1.5.1" 179 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 180 | 181 | ajv@^4.7.0, ajv@^4.9.1: 182 | version "4.11.5" 183 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 184 | dependencies: 185 | co "^4.6.0" 186 | json-stable-stringify "^1.0.1" 187 | 188 | align-text@^0.1.1, align-text@^0.1.3: 189 | version "0.1.4" 190 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 191 | dependencies: 192 | kind-of "^3.0.2" 193 | longest "^1.0.1" 194 | repeat-string "^1.5.2" 195 | 196 | amdefine@>=0.0.4: 197 | version "1.0.1" 198 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 199 | 200 | angular2-template-loader@0.6.2: 201 | version "0.6.2" 202 | resolved "https://registry.yarnpkg.com/angular2-template-loader/-/angular2-template-loader-0.6.2.tgz#c0d44e90fff0fac95e8b23f043acda7fd1c51d7c" 203 | dependencies: 204 | loader-utils "^0.2.15" 205 | 206 | ansi-escapes@^1.1.0: 207 | version "1.4.0" 208 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 209 | 210 | ansi-regex@^2.0.0: 211 | version "2.1.1" 212 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 213 | 214 | ansi-styles@^2.2.1: 215 | version "2.2.1" 216 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 217 | 218 | anymatch@^1.3.0: 219 | version "1.3.0" 220 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 221 | dependencies: 222 | arrify "^1.0.0" 223 | micromatch "^2.1.5" 224 | 225 | aproba@^1.0.3: 226 | version "1.1.1" 227 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 228 | 229 | are-we-there-yet@~1.1.2: 230 | version "1.1.2" 231 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 232 | dependencies: 233 | delegates "^1.0.0" 234 | readable-stream "^2.0.0 || ^1.1.13" 235 | 236 | arr-diff@^2.0.0: 237 | version "2.0.0" 238 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 239 | dependencies: 240 | arr-flatten "^1.0.1" 241 | 242 | arr-flatten@^1.0.1: 243 | version "1.0.1" 244 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 245 | 246 | array-find-index@^1.0.1: 247 | version "1.0.2" 248 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 249 | 250 | array-flatten@1.1.1: 251 | version "1.1.1" 252 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 253 | 254 | array-slice@^0.2.3: 255 | version "0.2.3" 256 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" 257 | 258 | array-unique@^0.2.1: 259 | version "0.2.1" 260 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 261 | 262 | arraybuffer.slice@0.0.6: 263 | version "0.0.6" 264 | resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca" 265 | 266 | arrify@^1.0.0: 267 | version "1.0.1" 268 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 269 | 270 | asn1.js@^4.0.0: 271 | version "4.9.1" 272 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 273 | dependencies: 274 | bn.js "^4.0.0" 275 | inherits "^2.0.1" 276 | minimalistic-assert "^1.0.0" 277 | 278 | asn1@~0.2.3: 279 | version "0.2.3" 280 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 281 | 282 | assert-plus@1.0.0, assert-plus@^1.0.0: 283 | version "1.0.0" 284 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 285 | 286 | assert-plus@^0.2.0: 287 | version "0.2.0" 288 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 289 | 290 | assert@^1.1.1: 291 | version "1.4.1" 292 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 293 | dependencies: 294 | util "0.10.3" 295 | 296 | ast-types@0.8.15: 297 | version "0.8.15" 298 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.15.tgz#8eef0827f04dff0ec8857ba925abe3fea6194e52" 299 | 300 | ast-types@0.9.6: 301 | version "0.9.6" 302 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9" 303 | 304 | async-each@^1.0.0: 305 | version "1.0.1" 306 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 307 | 308 | async-foreach@^0.1.3: 309 | version "0.1.3" 310 | resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" 311 | 312 | async@^1.5.2: 313 | version "1.5.2" 314 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 315 | 316 | async@^2.1.2: 317 | version "2.2.0" 318 | resolved "https://registry.yarnpkg.com/async/-/async-2.2.0.tgz#c324eba010a237e4fbd55a12dee86367d5c0ef32" 319 | dependencies: 320 | lodash "^4.14.0" 321 | 322 | async@~0.9.0: 323 | version "0.9.2" 324 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 325 | 326 | asynckit@^0.4.0: 327 | version "0.4.0" 328 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 329 | 330 | autoprefixer@6.7.2: 331 | version "6.7.2" 332 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.2.tgz#172ab07b998ae9b957530928a59a40be54a45023" 333 | dependencies: 334 | browserslist "^1.7.1" 335 | caniuse-db "^1.0.30000618" 336 | normalize-range "^0.1.2" 337 | num2fraction "^1.2.2" 338 | postcss "^5.2.11" 339 | postcss-value-parser "^3.2.3" 340 | 341 | aws-sign2@~0.6.0: 342 | version "0.6.0" 343 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 344 | 345 | aws4@^1.2.1: 346 | version "1.6.0" 347 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 348 | 349 | babel-cli@^6.10.1: 350 | version "6.24.0" 351 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.0.tgz#a05ffd210dca0c288a26d5319c5ac8669a265ad0" 352 | dependencies: 353 | babel-core "^6.24.0" 354 | babel-polyfill "^6.23.0" 355 | babel-register "^6.24.0" 356 | babel-runtime "^6.22.0" 357 | commander "^2.8.1" 358 | convert-source-map "^1.1.0" 359 | fs-readdir-recursive "^1.0.0" 360 | glob "^7.0.0" 361 | lodash "^4.2.0" 362 | output-file-sync "^1.1.0" 363 | path-is-absolute "^1.0.0" 364 | slash "^1.0.0" 365 | source-map "^0.5.0" 366 | v8flags "^2.0.10" 367 | optionalDependencies: 368 | chokidar "^1.6.1" 369 | 370 | babel-code-frame@^6.22.0: 371 | version "6.22.0" 372 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 373 | dependencies: 374 | chalk "^1.1.0" 375 | esutils "^2.0.2" 376 | js-tokens "^3.0.0" 377 | 378 | babel-core@^6.24.0: 379 | version "6.24.0" 380 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02" 381 | dependencies: 382 | babel-code-frame "^6.22.0" 383 | babel-generator "^6.24.0" 384 | babel-helpers "^6.23.0" 385 | babel-messages "^6.23.0" 386 | babel-register "^6.24.0" 387 | babel-runtime "^6.22.0" 388 | babel-template "^6.23.0" 389 | babel-traverse "^6.23.1" 390 | babel-types "^6.23.0" 391 | babylon "^6.11.0" 392 | convert-source-map "^1.1.0" 393 | debug "^2.1.1" 394 | json5 "^0.5.0" 395 | lodash "^4.2.0" 396 | minimatch "^3.0.2" 397 | path-is-absolute "^1.0.0" 398 | private "^0.1.6" 399 | slash "^1.0.0" 400 | source-map "^0.5.0" 401 | 402 | babel-generator@^6.24.0: 403 | version "6.24.0" 404 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56" 405 | dependencies: 406 | babel-messages "^6.23.0" 407 | babel-runtime "^6.22.0" 408 | babel-types "^6.23.0" 409 | detect-indent "^4.0.0" 410 | jsesc "^1.3.0" 411 | lodash "^4.2.0" 412 | source-map "^0.5.0" 413 | trim-right "^1.0.1" 414 | 415 | babel-helper-evaluate-path@^0.0.3: 416 | version "0.0.3" 417 | resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.0.3.tgz#1d103ac9d4a59e5d431842212f151785f7ac547b" 418 | 419 | babel-helper-flip-expressions@^0.0.2: 420 | version "0.0.2" 421 | resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.0.2.tgz#7bab2cf61162bc92703e9b298ef512bcf77d6787" 422 | 423 | babel-helper-is-nodes-equiv@^0.0.1: 424 | version "0.0.1" 425 | resolved "https://registry.yarnpkg.com/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684" 426 | 427 | babel-helper-is-void-0@^0.0.1: 428 | version "0.0.1" 429 | resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.0.1.tgz#ed74553b883e68226ae45f989a99b02c190f105a" 430 | 431 | babel-helper-mark-eval-scopes@^0.0.3: 432 | version "0.0.3" 433 | resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.0.3.tgz#902f75aeb537336edc35eb9f52b6f09db7785328" 434 | 435 | babel-helper-remove-or-void@^0.0.1: 436 | version "0.0.1" 437 | resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.0.1.tgz#f602790e465acf2dfbe84fb3dd210c43a2dd7262" 438 | 439 | babel-helper-to-multiple-sequence-expressions@^0.0.3: 440 | version "0.0.3" 441 | resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.0.3.tgz#c789a0faccd2669c51234be2cea7a3e5a0573c25" 442 | 443 | babel-helpers@^6.23.0: 444 | version "6.23.0" 445 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 446 | dependencies: 447 | babel-runtime "^6.22.0" 448 | babel-template "^6.23.0" 449 | 450 | babel-messages@^6.23.0: 451 | version "6.23.0" 452 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 453 | dependencies: 454 | babel-runtime "^6.22.0" 455 | 456 | babel-plugin-minify-constant-folding@^0.0.3: 457 | version "0.0.3" 458 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.0.3.tgz#a511e839562489811987a7a503c43c312c40138a" 459 | dependencies: 460 | babel-helper-evaluate-path "^0.0.3" 461 | 462 | babel-plugin-minify-dead-code-elimination@^0.1.2: 463 | version "0.1.4" 464 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.1.4.tgz#18b6ecfab77c29caca061d8210fa3495001e4fa1" 465 | dependencies: 466 | babel-helper-mark-eval-scopes "^0.0.3" 467 | babel-helper-remove-or-void "^0.0.1" 468 | lodash.some "^4.6.0" 469 | 470 | babel-plugin-minify-flip-comparisons@^0.0.2: 471 | version "0.0.2" 472 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.0.2.tgz#7d0953aa5876ede6118966bda9edecc63bf346ab" 473 | dependencies: 474 | babel-helper-is-void-0 "^0.0.1" 475 | 476 | babel-plugin-minify-guarded-expressions@^0.0.4: 477 | version "0.0.4" 478 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.0.4.tgz#957104a760e6a7ffd967005a7a11621bb42fd11c" 479 | dependencies: 480 | babel-helper-flip-expressions "^0.0.2" 481 | 482 | babel-plugin-minify-infinity@^0.0.3: 483 | version "0.0.3" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.0.3.tgz#4cc99b61d12b434ce80ad675103335c589cba9a1" 485 | 486 | babel-plugin-minify-mangle-names@^0.0.6: 487 | version "0.0.6" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.0.6.tgz#7311e82292d5add93ca80c4ecfbde9e8a9730a43" 489 | 490 | babel-plugin-minify-numeric-literals@^0.0.1: 491 | version "0.0.1" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.0.1.tgz#9597e6c31154d7daf3744d0bd417c144b275bd53" 493 | 494 | babel-plugin-minify-replace@^0.0.1: 495 | version "0.0.1" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.0.1.tgz#5d5aea7cb9899245248d1ee9ce7a2fe556a8facc" 497 | 498 | babel-plugin-minify-simplify@^0.0.6: 499 | version "0.0.6" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.0.6.tgz#1d50899b29c3c4503eaefb98365cc5f7a84aedfe" 501 | dependencies: 502 | babel-helper-flip-expressions "^0.0.2" 503 | babel-helper-is-nodes-equiv "^0.0.1" 504 | babel-helper-to-multiple-sequence-expressions "^0.0.3" 505 | 506 | babel-plugin-minify-type-constructors@^0.0.3: 507 | version "0.0.3" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.0.3.tgz#ab59c1ad835b6b6e8e932b875d4df4dc393d9d26" 509 | dependencies: 510 | babel-helper-is-void-0 "^0.0.1" 511 | 512 | babel-plugin-transform-inline-consecutive-adds@^0.0.2: 513 | version "0.0.2" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.0.2.tgz#a58fcecfc09c08fbf9373a5a3e70746c03d01fc1" 515 | 516 | babel-plugin-transform-member-expression-literals@^6.8.1: 517 | version "6.8.1" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.8.1.tgz#60b78cb2b814ac71dd6104ef51c496c62e877337" 519 | 520 | babel-plugin-transform-merge-sibling-variables@^6.8.1: 521 | version "6.8.2" 522 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.8.2.tgz#498acd07481ab340c1bad8b726c2fad1b8f644e5" 523 | 524 | babel-plugin-transform-minify-booleans@^6.8.0: 525 | version "6.8.0" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.8.0.tgz#b1a48864a727847696b84eae36fa4d085a54b42b" 527 | dependencies: 528 | babel-runtime "^6.0.0" 529 | 530 | babel-plugin-transform-property-literals@^6.8.1: 531 | version "6.8.1" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.8.1.tgz#05ed01f6024820b18f1d0495c80fe287176bccd9" 533 | 534 | babel-plugin-transform-regexp-constructors@^0.0.5: 535 | version "0.0.5" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.0.5.tgz#74d95e0c567e6fc1d9c699a084894d40de8e581d" 537 | 538 | babel-plugin-transform-remove-console@^6.8.0: 539 | version "6.8.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.8.1.tgz#38f6a6ca1581e76b75fc2c6fdcf909deadee7d6a" 541 | 542 | babel-plugin-transform-remove-debugger@^6.8.0: 543 | version "6.8.1" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.8.1.tgz#aabd0be107f8299094defe8e1ba8ccf4b114d07f" 545 | 546 | babel-plugin-transform-remove-undefined@^0.0.4: 547 | version "0.0.4" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.0.4.tgz#cc75be04b9bbd7bb2005272cc160b4d08692d77c" 549 | 550 | babel-plugin-transform-simplify-comparison-operators@^6.8.1: 551 | version "6.8.1" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.8.1.tgz#a307088e0d1c728081777fba568f4107396ab25c" 553 | 554 | babel-plugin-transform-undefined-to-void@^6.8.0: 555 | version "6.8.0" 556 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.8.0.tgz#bc5b6b4908d3b1262170e67cb3963903ddce167e" 557 | dependencies: 558 | babel-runtime "^6.0.0" 559 | 560 | babel-polyfill@^6.23.0: 561 | version "6.23.0" 562 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 563 | dependencies: 564 | babel-runtime "^6.22.0" 565 | core-js "^2.4.0" 566 | regenerator-runtime "^0.10.0" 567 | 568 | babel-preset-babili@^0.0.10: 569 | version "0.0.10" 570 | resolved "https://registry.yarnpkg.com/babel-preset-babili/-/babel-preset-babili-0.0.10.tgz#59118924b77b898eecd8f75a5b97d694719443ff" 571 | dependencies: 572 | babel-plugin-minify-constant-folding "^0.0.3" 573 | babel-plugin-minify-dead-code-elimination "^0.1.2" 574 | babel-plugin-minify-flip-comparisons "^0.0.2" 575 | babel-plugin-minify-guarded-expressions "^0.0.4" 576 | babel-plugin-minify-infinity "^0.0.3" 577 | babel-plugin-minify-mangle-names "^0.0.6" 578 | babel-plugin-minify-numeric-literals "^0.0.1" 579 | babel-plugin-minify-replace "^0.0.1" 580 | babel-plugin-minify-simplify "^0.0.6" 581 | babel-plugin-minify-type-constructors "^0.0.3" 582 | babel-plugin-transform-inline-consecutive-adds "^0.0.2" 583 | babel-plugin-transform-member-expression-literals "^6.8.1" 584 | babel-plugin-transform-merge-sibling-variables "^6.8.1" 585 | babel-plugin-transform-minify-booleans "^6.8.0" 586 | babel-plugin-transform-property-literals "^6.8.1" 587 | babel-plugin-transform-regexp-constructors "^0.0.5" 588 | babel-plugin-transform-remove-console "^6.8.0" 589 | babel-plugin-transform-remove-debugger "^6.8.0" 590 | babel-plugin-transform-remove-undefined "^0.0.4" 591 | babel-plugin-transform-simplify-comparison-operators "^6.8.1" 592 | babel-plugin-transform-undefined-to-void "^6.8.0" 593 | lodash.isplainobject "^4.0.6" 594 | 595 | babel-register@^6.24.0: 596 | version "6.24.0" 597 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 598 | dependencies: 599 | babel-core "^6.24.0" 600 | babel-runtime "^6.22.0" 601 | core-js "^2.4.0" 602 | home-or-tmp "^2.0.0" 603 | lodash "^4.2.0" 604 | mkdirp "^0.5.1" 605 | source-map-support "^0.4.2" 606 | 607 | babel-runtime@^6.0.0, babel-runtime@^6.22.0: 608 | version "6.23.0" 609 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 610 | dependencies: 611 | core-js "^2.4.0" 612 | regenerator-runtime "^0.10.0" 613 | 614 | babel-template@^6.23.0: 615 | version "6.23.0" 616 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 617 | dependencies: 618 | babel-runtime "^6.22.0" 619 | babel-traverse "^6.23.0" 620 | babel-types "^6.23.0" 621 | babylon "^6.11.0" 622 | lodash "^4.2.0" 623 | 624 | babel-traverse@^6.23.0, babel-traverse@^6.23.1: 625 | version "6.23.1" 626 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 627 | dependencies: 628 | babel-code-frame "^6.22.0" 629 | babel-messages "^6.23.0" 630 | babel-runtime "^6.22.0" 631 | babel-types "^6.23.0" 632 | babylon "^6.15.0" 633 | debug "^2.2.0" 634 | globals "^9.0.0" 635 | invariant "^2.2.0" 636 | lodash "^4.2.0" 637 | 638 | babel-types@^6.23.0: 639 | version "6.23.0" 640 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 641 | dependencies: 642 | babel-runtime "^6.22.0" 643 | esutils "^2.0.2" 644 | lodash "^4.2.0" 645 | to-fast-properties "^1.0.1" 646 | 647 | babili@0.0.10: 648 | version "0.0.10" 649 | resolved "https://registry.yarnpkg.com/babili/-/babili-0.0.10.tgz#642bff7025660ac0823afe4843e62fdae5cec2eb" 650 | dependencies: 651 | babel-cli "^6.10.1" 652 | babel-preset-babili "^0.0.10" 653 | 654 | babylon@^6.11.0, babylon@^6.15.0: 655 | version "6.16.1" 656 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 657 | 658 | backo2@1.0.2: 659 | version "1.0.2" 660 | resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" 661 | 662 | balanced-match@^0.4.1: 663 | version "0.4.2" 664 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 665 | 666 | base62@0.1.1: 667 | version "0.1.1" 668 | resolved "https://registry.yarnpkg.com/base62/-/base62-0.1.1.tgz#7b4174c2f94449753b11c2651c083da841a7b084" 669 | 670 | base64-arraybuffer@0.1.5: 671 | version "0.1.5" 672 | resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" 673 | 674 | base64-js@^1.0.2: 675 | version "1.2.0" 676 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 677 | 678 | base64id@1.0.0: 679 | version "1.0.0" 680 | resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" 681 | 682 | bcrypt-pbkdf@^1.0.0: 683 | version "1.0.1" 684 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 685 | dependencies: 686 | tweetnacl "^0.14.3" 687 | 688 | better-assert@~1.0.0: 689 | version "1.0.2" 690 | resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" 691 | dependencies: 692 | callsite "1.0.0" 693 | 694 | big.js@^3.1.3: 695 | version "3.1.3" 696 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 697 | 698 | binary-extensions@^1.0.0: 699 | version "1.8.0" 700 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 701 | 702 | blob@0.0.4: 703 | version "0.0.4" 704 | resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921" 705 | 706 | block-stream@*: 707 | version "0.0.9" 708 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 709 | dependencies: 710 | inherits "~2.0.0" 711 | 712 | bluebird@^3.3.0: 713 | version "3.5.0" 714 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 715 | 716 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 717 | version "4.11.6" 718 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 719 | 720 | body-parser@^1.16.1: 721 | version "1.17.1" 722 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.17.1.tgz#75b3bc98ddd6e7e0d8ffe750dfaca5c66993fa47" 723 | dependencies: 724 | bytes "2.4.0" 725 | content-type "~1.0.2" 726 | debug "2.6.1" 727 | depd "~1.1.0" 728 | http-errors "~1.6.1" 729 | iconv-lite "0.4.15" 730 | on-finished "~2.3.0" 731 | qs "6.4.0" 732 | raw-body "~2.2.0" 733 | type-is "~1.6.14" 734 | 735 | body@^5.1.0: 736 | version "5.1.0" 737 | resolved "https://registry.yarnpkg.com/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069" 738 | dependencies: 739 | continuable-cache "^0.3.1" 740 | error "^7.0.0" 741 | raw-body "~1.1.0" 742 | safe-json-parse "~1.0.1" 743 | 744 | boom@2.x.x: 745 | version "2.10.1" 746 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 747 | dependencies: 748 | hoek "2.x.x" 749 | 750 | brace-expansion@^1.0.0: 751 | version "1.1.6" 752 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 753 | dependencies: 754 | balanced-match "^0.4.1" 755 | concat-map "0.0.1" 756 | 757 | braces@^0.1.2: 758 | version "0.1.5" 759 | resolved "https://registry.yarnpkg.com/braces/-/braces-0.1.5.tgz#c085711085291d8b75fdd74eab0f8597280711e6" 760 | dependencies: 761 | expand-range "^0.1.0" 762 | 763 | braces@^1.8.2: 764 | version "1.8.5" 765 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 766 | dependencies: 767 | expand-range "^1.8.1" 768 | preserve "^0.2.0" 769 | repeat-element "^1.1.2" 770 | 771 | brorand@^1.0.1: 772 | version "1.1.0" 773 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 774 | 775 | browser-resolve@^1.11.0: 776 | version "1.11.2" 777 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 778 | dependencies: 779 | resolve "1.1.7" 780 | 781 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 782 | version "1.0.6" 783 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 784 | dependencies: 785 | buffer-xor "^1.0.2" 786 | cipher-base "^1.0.0" 787 | create-hash "^1.1.0" 788 | evp_bytestokey "^1.0.0" 789 | inherits "^2.0.1" 790 | 791 | browserify-cipher@^1.0.0: 792 | version "1.0.0" 793 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 794 | dependencies: 795 | browserify-aes "^1.0.4" 796 | browserify-des "^1.0.0" 797 | evp_bytestokey "^1.0.0" 798 | 799 | browserify-des@^1.0.0: 800 | version "1.0.0" 801 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 802 | dependencies: 803 | cipher-base "^1.0.1" 804 | des.js "^1.0.0" 805 | inherits "^2.0.1" 806 | 807 | browserify-rsa@^4.0.0: 808 | version "4.0.1" 809 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 810 | dependencies: 811 | bn.js "^4.1.0" 812 | randombytes "^2.0.1" 813 | 814 | browserify-sign@^4.0.0: 815 | version "4.0.4" 816 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 817 | dependencies: 818 | bn.js "^4.1.1" 819 | browserify-rsa "^4.0.0" 820 | create-hash "^1.1.0" 821 | create-hmac "^1.1.2" 822 | elliptic "^6.0.0" 823 | inherits "^2.0.1" 824 | parse-asn1 "^5.0.0" 825 | 826 | browserify-zlib@^0.1.4: 827 | version "0.1.4" 828 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 829 | dependencies: 830 | pako "~0.2.0" 831 | 832 | browserslist@^1.7.1: 833 | version "1.7.7" 834 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 835 | dependencies: 836 | caniuse-db "^1.0.30000639" 837 | electron-to-chromium "^1.2.7" 838 | 839 | buffer-es6@^4.9.1, buffer-es6@^4.9.2: 840 | version "4.9.3" 841 | resolved "https://registry.yarnpkg.com/buffer-es6/-/buffer-es6-4.9.3.tgz#f26347b82df76fd37e18bcb5288c4970cfd5c404" 842 | 843 | buffer-shims@^1.0.0: 844 | version "1.0.0" 845 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 846 | 847 | buffer-xor@^1.0.2: 848 | version "1.0.3" 849 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 850 | 851 | buffer@^4.3.0: 852 | version "4.9.1" 853 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 854 | dependencies: 855 | base64-js "^1.0.2" 856 | ieee754 "^1.1.4" 857 | isarray "^1.0.0" 858 | 859 | builtin-modules@^1.0.0, builtin-modules@^1.1.0: 860 | version "1.1.1" 861 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 862 | 863 | builtin-status-codes@^3.0.0: 864 | version "3.0.0" 865 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 866 | 867 | bytes@1: 868 | version "1.0.0" 869 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-1.0.0.tgz#3569ede8ba34315fab99c3e92cb04c7220de1fa8" 870 | 871 | bytes@2.4.0: 872 | version "2.4.0" 873 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 874 | 875 | callsite@1.0.0: 876 | version "1.0.0" 877 | resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" 878 | 879 | camel-case@3.0.x: 880 | version "3.0.0" 881 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 882 | dependencies: 883 | no-case "^2.2.0" 884 | upper-case "^1.1.1" 885 | 886 | camelcase-keys@^2.0.0: 887 | version "2.1.0" 888 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 889 | dependencies: 890 | camelcase "^2.0.0" 891 | map-obj "^1.0.0" 892 | 893 | camelcase@^1.0.2: 894 | version "1.2.1" 895 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 896 | 897 | camelcase@^2.0.0: 898 | version "2.1.1" 899 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 900 | 901 | camelcase@^3.0.0: 902 | version "3.0.0" 903 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 904 | 905 | caniuse-db@^1.0.30000618, caniuse-db@^1.0.30000639: 906 | version "1.0.30000646" 907 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000646.tgz#c724b90d61df24286e015fc528d062073c00def4" 908 | 909 | caseless@~0.11.0: 910 | version "0.11.0" 911 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 912 | 913 | caseless@~0.12.0: 914 | version "0.12.0" 915 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 916 | 917 | center-align@^0.1.1: 918 | version "0.1.3" 919 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 920 | dependencies: 921 | align-text "^0.1.3" 922 | lazy-cache "^1.0.3" 923 | 924 | chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 925 | version "1.1.3" 926 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 927 | dependencies: 928 | ansi-styles "^2.2.1" 929 | escape-string-regexp "^1.0.2" 930 | has-ansi "^2.0.0" 931 | strip-ansi "^3.0.0" 932 | supports-color "^2.0.0" 933 | 934 | chokidar@1.6.1, chokidar@^1.4.1, chokidar@^1.4.3, chokidar@^1.6.1: 935 | version "1.6.1" 936 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 937 | dependencies: 938 | anymatch "^1.3.0" 939 | async-each "^1.0.0" 940 | glob-parent "^2.0.0" 941 | inherits "^2.0.1" 942 | is-binary-path "^1.0.0" 943 | is-glob "^2.0.0" 944 | path-is-absolute "^1.0.0" 945 | readdirp "^2.0.0" 946 | optionalDependencies: 947 | fsevents "^1.0.0" 948 | 949 | cipher-base@^1.0.0, cipher-base@^1.0.1: 950 | version "1.0.3" 951 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 952 | dependencies: 953 | inherits "^2.0.1" 954 | 955 | clean-css@3.4.24: 956 | version "3.4.24" 957 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.24.tgz#89f5a5e9da37ae02394fe049a41388abbe72c3b5" 958 | dependencies: 959 | commander "2.8.x" 960 | source-map "0.4.x" 961 | 962 | clean-css@4.0.x: 963 | version "4.0.10" 964 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.0.10.tgz#6be448d6ba8c767654ebe11f158b97a887cb713f" 965 | dependencies: 966 | source-map "0.5.x" 967 | 968 | cli-cursor@^1.0.1: 969 | version "1.0.2" 970 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 971 | dependencies: 972 | restore-cursor "^1.0.1" 973 | 974 | cli-width@^2.0.0: 975 | version "2.1.0" 976 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 977 | 978 | cliui@^2.1.0: 979 | version "2.1.0" 980 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 981 | dependencies: 982 | center-align "^0.1.1" 983 | right-align "^0.1.1" 984 | wordwrap "0.0.2" 985 | 986 | cliui@^3.2.0: 987 | version "3.2.0" 988 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 989 | dependencies: 990 | string-width "^1.0.1" 991 | strip-ansi "^3.0.1" 992 | wrap-ansi "^2.0.0" 993 | 994 | co@^4.6.0: 995 | version "4.6.0" 996 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 997 | 998 | code-point-at@^1.0.0: 999 | version "1.1.0" 1000 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1001 | 1002 | colors@^1.0.3, colors@^1.1.0, colors@^1.1.2: 1003 | version "1.1.2" 1004 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 1005 | 1006 | combine-lists@^1.0.0: 1007 | version "1.0.1" 1008 | resolved "https://registry.yarnpkg.com/combine-lists/-/combine-lists-1.0.1.tgz#458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6" 1009 | dependencies: 1010 | lodash "^4.5.0" 1011 | 1012 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1013 | version "1.0.5" 1014 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1015 | dependencies: 1016 | delayed-stream "~1.0.0" 1017 | 1018 | commander@2.8.x, commander@^2.8.1: 1019 | version "2.8.1" 1020 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" 1021 | dependencies: 1022 | graceful-readlink ">= 1.0.0" 1023 | 1024 | commander@2.9.x, commander@^2.9.0: 1025 | version "2.9.0" 1026 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1027 | dependencies: 1028 | graceful-readlink ">= 1.0.0" 1029 | 1030 | component-bind@1.0.0: 1031 | version "1.0.0" 1032 | resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" 1033 | 1034 | component-emitter@1.1.2: 1035 | version "1.1.2" 1036 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3" 1037 | 1038 | component-emitter@1.2.1, component-emitter@^1.2.0: 1039 | version "1.2.1" 1040 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1041 | 1042 | component-inherit@0.0.3: 1043 | version "0.0.3" 1044 | resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 1045 | 1046 | concat-map@0.0.1: 1047 | version "0.0.1" 1048 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1049 | 1050 | concat-stream@^1.4.7: 1051 | version "1.6.0" 1052 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1053 | dependencies: 1054 | inherits "^2.0.3" 1055 | readable-stream "^2.2.2" 1056 | typedarray "^0.0.6" 1057 | 1058 | connect@^3.6.0: 1059 | version "3.6.0" 1060 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.0.tgz#f09a4f7dcd17324b663b725c815bdb1c4158a46e" 1061 | dependencies: 1062 | debug "2.6.1" 1063 | finalhandler "1.0.0" 1064 | parseurl "~1.3.1" 1065 | utils-merge "1.0.0" 1066 | 1067 | console-browserify@^1.1.0: 1068 | version "1.1.0" 1069 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1070 | dependencies: 1071 | date-now "^0.1.4" 1072 | 1073 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1074 | version "1.1.0" 1075 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1076 | 1077 | constants-browserify@^1.0.0: 1078 | version "1.0.0" 1079 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1080 | 1081 | content-disposition@0.5.2: 1082 | version "0.5.2" 1083 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 1084 | 1085 | content-type@~1.0.2: 1086 | version "1.0.2" 1087 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 1088 | 1089 | continuable-cache@^0.3.1: 1090 | version "0.3.1" 1091 | resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f" 1092 | 1093 | convert-source-map@^1.1.0: 1094 | version "1.5.0" 1095 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1096 | 1097 | cookie-signature@1.0.6: 1098 | version "1.0.6" 1099 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1100 | 1101 | cookie@0.3.1: 1102 | version "0.3.1" 1103 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1104 | 1105 | cookiejar@^2.0.6: 1106 | version "2.1.0" 1107 | resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.0.tgz#86549689539b6d0e269b6637a304be508194d898" 1108 | 1109 | core-js@^2.2.0, core-js@^2.4.0: 1110 | version "2.4.1" 1111 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1112 | 1113 | core-util-is@~1.0.0: 1114 | version "1.0.2" 1115 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1116 | 1117 | create-ecdh@^4.0.0: 1118 | version "4.0.0" 1119 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1120 | dependencies: 1121 | bn.js "^4.1.0" 1122 | elliptic "^6.0.0" 1123 | 1124 | create-hash@^1.1.0, create-hash@^1.1.1: 1125 | version "1.1.2" 1126 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 1127 | dependencies: 1128 | cipher-base "^1.0.1" 1129 | inherits "^2.0.1" 1130 | ripemd160 "^1.0.0" 1131 | sha.js "^2.3.6" 1132 | 1133 | create-hmac@^1.1.0, create-hmac@^1.1.2: 1134 | version "1.1.4" 1135 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 1136 | dependencies: 1137 | create-hash "^1.1.0" 1138 | inherits "^2.0.1" 1139 | 1140 | cross-spawn@5.0.1: 1141 | version "5.0.1" 1142 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.0.1.tgz#a3bbb302db2297cbea3c04edf36941f4613aa399" 1143 | dependencies: 1144 | lru-cache "^4.0.1" 1145 | shebang-command "^1.2.0" 1146 | which "^1.2.9" 1147 | 1148 | cross-spawn@^3.0.0: 1149 | version "3.0.1" 1150 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" 1151 | dependencies: 1152 | lru-cache "^4.0.1" 1153 | which "^1.2.9" 1154 | 1155 | cross-spawn@^4.0.2: 1156 | version "4.0.2" 1157 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1158 | dependencies: 1159 | lru-cache "^4.0.1" 1160 | which "^1.2.9" 1161 | 1162 | cryptiles@2.x.x: 1163 | version "2.0.5" 1164 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1165 | dependencies: 1166 | boom "2.x.x" 1167 | 1168 | crypto-browserify@^3.11.0: 1169 | version "3.11.0" 1170 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 1171 | dependencies: 1172 | browserify-cipher "^1.0.0" 1173 | browserify-sign "^4.0.0" 1174 | create-ecdh "^4.0.0" 1175 | create-hash "^1.1.0" 1176 | create-hmac "^1.1.0" 1177 | diffie-hellman "^5.0.0" 1178 | inherits "^2.0.1" 1179 | pbkdf2 "^3.0.3" 1180 | public-encrypt "^4.0.0" 1181 | randombytes "^2.0.0" 1182 | 1183 | currently-unhandled@^0.4.1: 1184 | version "0.4.1" 1185 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1186 | dependencies: 1187 | array-find-index "^1.0.1" 1188 | 1189 | custom-event@~1.0.0: 1190 | version "1.0.1" 1191 | resolved "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425" 1192 | 1193 | dashdash@^1.12.0: 1194 | version "1.14.1" 1195 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1196 | dependencies: 1197 | assert-plus "^1.0.0" 1198 | 1199 | date-now@^0.1.4: 1200 | version "0.1.4" 1201 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1202 | 1203 | debug@2.2.0, debug@~2.2.0: 1204 | version "2.2.0" 1205 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1206 | dependencies: 1207 | ms "0.7.1" 1208 | 1209 | debug@2.3.3: 1210 | version "2.3.3" 1211 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c" 1212 | dependencies: 1213 | ms "0.7.2" 1214 | 1215 | debug@2.6.1, debug@^2.1.0, debug@^2.1.1, debug@^2.2.0: 1216 | version "2.6.1" 1217 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 1218 | dependencies: 1219 | ms "0.7.2" 1220 | 1221 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 1222 | version "1.2.0" 1223 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1224 | 1225 | deep-extend@~0.4.0: 1226 | version "0.4.1" 1227 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1228 | 1229 | delayed-stream@~1.0.0: 1230 | version "1.0.0" 1231 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1232 | 1233 | delegates@^1.0.0: 1234 | version "1.0.0" 1235 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1236 | 1237 | depd@1.1.0, depd@~1.1.0: 1238 | version "1.1.0" 1239 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1240 | 1241 | des.js@^1.0.0: 1242 | version "1.0.0" 1243 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1244 | dependencies: 1245 | inherits "^2.0.1" 1246 | minimalistic-assert "^1.0.0" 1247 | 1248 | destroy@~1.0.4: 1249 | version "1.0.4" 1250 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1251 | 1252 | detect-indent@^4.0.0: 1253 | version "4.0.0" 1254 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1255 | dependencies: 1256 | repeating "^2.0.0" 1257 | 1258 | di@^0.0.1: 1259 | version "0.0.1" 1260 | resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c" 1261 | 1262 | diff@^2.2.1: 1263 | version "2.2.3" 1264 | resolved "https://registry.yarnpkg.com/diff/-/diff-2.2.3.tgz#60eafd0d28ee906e4e8ff0a52c1229521033bf99" 1265 | 1266 | diffie-hellman@^5.0.0: 1267 | version "5.0.2" 1268 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1269 | dependencies: 1270 | bn.js "^4.1.0" 1271 | miller-rabin "^4.0.0" 1272 | randombytes "^2.0.0" 1273 | 1274 | doctrine@^0.7.2: 1275 | version "0.7.2" 1276 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-0.7.2.tgz#7cb860359ba3be90e040b26b729ce4bfa654c523" 1277 | dependencies: 1278 | esutils "^1.1.6" 1279 | isarray "0.0.1" 1280 | 1281 | dom-serialize@^2.2.0: 1282 | version "2.2.1" 1283 | resolved "https://registry.yarnpkg.com/dom-serialize/-/dom-serialize-2.2.1.tgz#562ae8999f44be5ea3076f5419dcd59eb43ac95b" 1284 | dependencies: 1285 | custom-event "~1.0.0" 1286 | ent "~2.2.0" 1287 | extend "^3.0.0" 1288 | void-elements "^2.0.0" 1289 | 1290 | domain-browser@^1.1.1: 1291 | version "1.1.7" 1292 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1293 | 1294 | ecc-jsbn@~0.1.1: 1295 | version "0.1.1" 1296 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1297 | dependencies: 1298 | jsbn "~0.1.0" 1299 | 1300 | ee-first@1.1.1: 1301 | version "1.1.1" 1302 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1303 | 1304 | electron-to-chromium@^1.2.7: 1305 | version "1.3.2" 1306 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.2.tgz#b8ce5c93b308db0e92f6d0435c46ddec8f6363ab" 1307 | 1308 | elliptic@^6.0.0: 1309 | version "6.4.0" 1310 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1311 | dependencies: 1312 | bn.js "^4.4.0" 1313 | brorand "^1.0.1" 1314 | hash.js "^1.0.0" 1315 | hmac-drbg "^1.0.0" 1316 | inherits "^2.0.1" 1317 | minimalistic-assert "^1.0.0" 1318 | minimalistic-crypto-utils "^1.0.0" 1319 | 1320 | emojis-list@^2.0.0: 1321 | version "2.1.0" 1322 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1323 | 1324 | encodeurl@~1.0.1: 1325 | version "1.0.1" 1326 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1327 | 1328 | encoding@^0.1.11: 1329 | version "0.1.12" 1330 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1331 | dependencies: 1332 | iconv-lite "~0.4.13" 1333 | 1334 | engine.io-client@1.8.3: 1335 | version "1.8.3" 1336 | resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-1.8.3.tgz#1798ed93451246453d4c6f635d7a201fe940d5ab" 1337 | dependencies: 1338 | component-emitter "1.2.1" 1339 | component-inherit "0.0.3" 1340 | debug "2.3.3" 1341 | engine.io-parser "1.3.2" 1342 | has-cors "1.1.0" 1343 | indexof "0.0.1" 1344 | parsejson "0.0.3" 1345 | parseqs "0.0.5" 1346 | parseuri "0.0.5" 1347 | ws "1.1.2" 1348 | xmlhttprequest-ssl "1.5.3" 1349 | yeast "0.1.2" 1350 | 1351 | engine.io-parser@1.3.2: 1352 | version "1.3.2" 1353 | resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-1.3.2.tgz#937b079f0007d0893ec56d46cb220b8cb435220a" 1354 | dependencies: 1355 | after "0.8.2" 1356 | arraybuffer.slice "0.0.6" 1357 | base64-arraybuffer "0.1.5" 1358 | blob "0.0.4" 1359 | has-binary "0.1.7" 1360 | wtf-8 "1.0.0" 1361 | 1362 | engine.io@1.8.3: 1363 | version "1.8.3" 1364 | resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-1.8.3.tgz#8de7f97895d20d39b85f88eeee777b2bd42b13d4" 1365 | dependencies: 1366 | accepts "1.3.3" 1367 | base64id "1.0.0" 1368 | cookie "0.3.1" 1369 | debug "2.3.3" 1370 | engine.io-parser "1.3.2" 1371 | ws "1.1.2" 1372 | 1373 | enhanced-resolve@^3.0.0: 1374 | version "3.1.0" 1375 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec" 1376 | dependencies: 1377 | graceful-fs "^4.1.2" 1378 | memory-fs "^0.4.0" 1379 | object-assign "^4.0.1" 1380 | tapable "^0.2.5" 1381 | 1382 | ent@~2.2.0: 1383 | version "2.2.0" 1384 | resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" 1385 | 1386 | errno@^0.1.3: 1387 | version "0.1.4" 1388 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1389 | dependencies: 1390 | prr "~0.0.0" 1391 | 1392 | error-ex@^1.2.0: 1393 | version "1.3.1" 1394 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1395 | dependencies: 1396 | is-arrayish "^0.2.1" 1397 | 1398 | error@^7.0.0: 1399 | version "7.0.2" 1400 | resolved "https://registry.yarnpkg.com/error/-/error-7.0.2.tgz#a5f75fff4d9926126ddac0ea5dc38e689153cb02" 1401 | dependencies: 1402 | string-template "~0.2.1" 1403 | xtend "~4.0.0" 1404 | 1405 | es3ify@^0.1.3: 1406 | version "0.1.4" 1407 | resolved "https://registry.yarnpkg.com/es3ify/-/es3ify-0.1.4.tgz#ad9fa5df1ae34f3f31e1211b5818b2d51078dfd1" 1408 | dependencies: 1409 | esprima-fb "~3001.0001.0000-dev-harmony-fb" 1410 | jstransform "~3.0.0" 1411 | through "~2.3.4" 1412 | 1413 | es6-templates@^0.2.2: 1414 | version "0.2.3" 1415 | resolved "https://registry.yarnpkg.com/es6-templates/-/es6-templates-0.2.3.tgz#5cb9ac9fb1ded6eb1239342b81d792bbb4078ee4" 1416 | dependencies: 1417 | recast "~0.11.12" 1418 | through "~2.3.6" 1419 | 1420 | escape-html@~1.0.3: 1421 | version "1.0.3" 1422 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1423 | 1424 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1425 | version "1.0.5" 1426 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1427 | 1428 | esmangle-evaluator@^1.0.0: 1429 | version "1.0.1" 1430 | resolved "https://registry.yarnpkg.com/esmangle-evaluator/-/esmangle-evaluator-1.0.1.tgz#620d866ef4861b3311f75766d52a8572bb3c6336" 1431 | 1432 | esprima-fb@~15001.1001.0-dev-harmony-fb: 1433 | version "15001.1001.0-dev-harmony-fb" 1434 | resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz#43beb57ec26e8cf237d3dd8b33e42533577f2659" 1435 | 1436 | esprima-fb@~3001.0001.0000-dev-harmony-fb, esprima-fb@~3001.1.0-dev-harmony-fb: 1437 | version "3001.1.0-dev-harmony-fb" 1438 | resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-3001.0001.0000-dev-harmony-fb.tgz#b77d37abcd38ea0b77426bb8bc2922ce6b426411" 1439 | 1440 | esprima@~3.1.0: 1441 | version "3.1.3" 1442 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1443 | 1444 | estree-walker@^0.2.1: 1445 | version "0.2.1" 1446 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 1447 | 1448 | estree-walker@^0.3.0: 1449 | version "0.3.1" 1450 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.3.1.tgz#e6b1a51cf7292524e7237c312e5fe6660c1ce1aa" 1451 | 1452 | esutils@^1.1.6: 1453 | version "1.1.6" 1454 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375" 1455 | 1456 | esutils@^2.0.2: 1457 | version "2.0.2" 1458 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1459 | 1460 | etag@~1.7.0: 1461 | version "1.7.0" 1462 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1463 | 1464 | eventemitter3@1.x.x: 1465 | version "1.2.0" 1466 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1467 | 1468 | events@^1.0.0: 1469 | version "1.1.1" 1470 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1471 | 1472 | evp_bytestokey@^1.0.0: 1473 | version "1.0.0" 1474 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1475 | dependencies: 1476 | create-hash "^1.1.1" 1477 | 1478 | exit-hook@^1.0.0: 1479 | version "1.1.1" 1480 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1481 | 1482 | exit@^0.1.2: 1483 | version "0.1.2" 1484 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1485 | 1486 | expand-braces@^0.1.1: 1487 | version "0.1.2" 1488 | resolved "https://registry.yarnpkg.com/expand-braces/-/expand-braces-0.1.2.tgz#488b1d1d2451cb3d3a6b192cfc030f44c5855fea" 1489 | dependencies: 1490 | array-slice "^0.2.3" 1491 | array-unique "^0.2.1" 1492 | braces "^0.1.2" 1493 | 1494 | expand-brackets@^0.1.4: 1495 | version "0.1.5" 1496 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1497 | dependencies: 1498 | is-posix-bracket "^0.1.0" 1499 | 1500 | expand-range@^0.1.0: 1501 | version "0.1.1" 1502 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-0.1.1.tgz#4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044" 1503 | dependencies: 1504 | is-number "^0.1.1" 1505 | repeat-string "^0.2.2" 1506 | 1507 | expand-range@^1.8.1: 1508 | version "1.8.2" 1509 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1510 | dependencies: 1511 | fill-range "^2.1.0" 1512 | 1513 | express@4.14.1: 1514 | version "4.14.1" 1515 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.1.tgz#646c237f766f148c2120aff073817b9e4d7e0d33" 1516 | dependencies: 1517 | accepts "~1.3.3" 1518 | array-flatten "1.1.1" 1519 | content-disposition "0.5.2" 1520 | content-type "~1.0.2" 1521 | cookie "0.3.1" 1522 | cookie-signature "1.0.6" 1523 | debug "~2.2.0" 1524 | depd "~1.1.0" 1525 | encodeurl "~1.0.1" 1526 | escape-html "~1.0.3" 1527 | etag "~1.7.0" 1528 | finalhandler "0.5.1" 1529 | fresh "0.3.0" 1530 | merge-descriptors "1.0.1" 1531 | methods "~1.1.2" 1532 | on-finished "~2.3.0" 1533 | parseurl "~1.3.1" 1534 | path-to-regexp "0.1.7" 1535 | proxy-addr "~1.1.3" 1536 | qs "6.2.0" 1537 | range-parser "~1.2.0" 1538 | send "0.14.2" 1539 | serve-static "~1.11.2" 1540 | type-is "~1.6.14" 1541 | utils-merge "1.0.0" 1542 | vary "~1.1.0" 1543 | 1544 | extend@^3.0.0, extend@~3.0.0: 1545 | version "3.0.0" 1546 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1547 | 1548 | external-editor@^1.1.0: 1549 | version "1.1.1" 1550 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" 1551 | dependencies: 1552 | extend "^3.0.0" 1553 | spawn-sync "^1.0.15" 1554 | tmp "^0.0.29" 1555 | 1556 | extglob@^0.3.1: 1557 | version "0.3.2" 1558 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1559 | dependencies: 1560 | is-extglob "^1.0.0" 1561 | 1562 | extsprintf@1.0.2: 1563 | version "1.0.2" 1564 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1565 | 1566 | falafel@^1.0.1: 1567 | version "1.2.0" 1568 | resolved "https://registry.yarnpkg.com/falafel/-/falafel-1.2.0.tgz#c18d24ef5091174a497f318cd24b026a25cddab4" 1569 | dependencies: 1570 | acorn "^1.0.3" 1571 | foreach "^2.0.5" 1572 | isarray "0.0.1" 1573 | object-keys "^1.0.6" 1574 | 1575 | fastparse@^1.1.1: 1576 | version "1.1.1" 1577 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1578 | 1579 | faye-websocket@~0.10.0: 1580 | version "0.10.0" 1581 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 1582 | dependencies: 1583 | websocket-driver ">=0.5.1" 1584 | 1585 | figures@^1.3.5: 1586 | version "1.7.0" 1587 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1588 | dependencies: 1589 | escape-string-regexp "^1.0.5" 1590 | object-assign "^4.1.0" 1591 | 1592 | filename-regex@^2.0.0: 1593 | version "2.0.0" 1594 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1595 | 1596 | fill-range@^2.1.0: 1597 | version "2.2.3" 1598 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1599 | dependencies: 1600 | is-number "^2.1.0" 1601 | isobject "^2.0.0" 1602 | randomatic "^1.1.3" 1603 | repeat-element "^1.1.2" 1604 | repeat-string "^1.5.2" 1605 | 1606 | finalhandler@0.5.1: 1607 | version "0.5.1" 1608 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.1.tgz#2c400d8d4530935bc232549c5fa385ec07de6fcd" 1609 | dependencies: 1610 | debug "~2.2.0" 1611 | escape-html "~1.0.3" 1612 | on-finished "~2.3.0" 1613 | statuses "~1.3.1" 1614 | unpipe "~1.0.0" 1615 | 1616 | finalhandler@1.0.0: 1617 | version "1.0.0" 1618 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.0.tgz#b5691c2c0912092f18ac23e9416bde5cd7dc6755" 1619 | dependencies: 1620 | debug "2.6.1" 1621 | encodeurl "~1.0.1" 1622 | escape-html "~1.0.3" 1623 | on-finished "~2.3.0" 1624 | parseurl "~1.3.1" 1625 | statuses "~1.3.1" 1626 | unpipe "~1.0.0" 1627 | 1628 | find-up@^1.0.0: 1629 | version "1.1.2" 1630 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1631 | dependencies: 1632 | path-exists "^2.0.0" 1633 | pinkie-promise "^2.0.0" 1634 | 1635 | findup-sync@~0.3.0: 1636 | version "0.3.0" 1637 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" 1638 | dependencies: 1639 | glob "~5.0.0" 1640 | 1641 | for-in@^1.0.1: 1642 | version "1.0.2" 1643 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1644 | 1645 | for-own@^0.1.4: 1646 | version "0.1.5" 1647 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1648 | dependencies: 1649 | for-in "^1.0.1" 1650 | 1651 | foreach@^2.0.5: 1652 | version "2.0.5" 1653 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1654 | 1655 | forever-agent@~0.6.1: 1656 | version "0.6.1" 1657 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1658 | 1659 | form-data@1.0.0-rc4: 1660 | version "1.0.0-rc4" 1661 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.0-rc4.tgz#05ac6bc22227b43e4461f488161554699d4f8b5e" 1662 | dependencies: 1663 | async "^1.5.2" 1664 | combined-stream "^1.0.5" 1665 | mime-types "^2.1.10" 1666 | 1667 | form-data@~2.1.1: 1668 | version "2.1.2" 1669 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1670 | dependencies: 1671 | asynckit "^0.4.0" 1672 | combined-stream "^1.0.5" 1673 | mime-types "^2.1.12" 1674 | 1675 | formidable@^1.0.17: 1676 | version "1.1.1" 1677 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.1.1.tgz#96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9" 1678 | 1679 | forwarded@~0.1.0: 1680 | version "0.1.0" 1681 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1682 | 1683 | fresh@0.3.0: 1684 | version "0.3.0" 1685 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1686 | 1687 | fs-access@^1.0.0: 1688 | version "1.0.1" 1689 | resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" 1690 | dependencies: 1691 | null-check "^1.0.0" 1692 | 1693 | fs-extra@2.0.0: 1694 | version "2.0.0" 1695 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.0.0.tgz#337352bded4a0b714f3eb84de8cea765e9d37600" 1696 | dependencies: 1697 | graceful-fs "^4.1.2" 1698 | jsonfile "^2.1.0" 1699 | 1700 | fs-readdir-recursive@^1.0.0: 1701 | version "1.0.0" 1702 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1703 | 1704 | fs.realpath@^1.0.0: 1705 | version "1.0.0" 1706 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1707 | 1708 | fsevents@^1.0.0: 1709 | version "1.1.1" 1710 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1711 | dependencies: 1712 | nan "^2.3.0" 1713 | node-pre-gyp "^0.6.29" 1714 | 1715 | fstream-ignore@^1.0.5: 1716 | version "1.0.5" 1717 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1718 | dependencies: 1719 | fstream "^1.0.0" 1720 | inherits "2" 1721 | minimatch "^3.0.0" 1722 | 1723 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1724 | version "1.0.11" 1725 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1726 | dependencies: 1727 | graceful-fs "^4.1.2" 1728 | inherits "~2.0.0" 1729 | mkdirp ">=0.5 0" 1730 | rimraf "2" 1731 | 1732 | gauge@~2.7.1: 1733 | version "2.7.3" 1734 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1735 | dependencies: 1736 | aproba "^1.0.3" 1737 | console-control-strings "^1.0.0" 1738 | has-unicode "^2.0.0" 1739 | object-assign "^4.1.0" 1740 | signal-exit "^3.0.0" 1741 | string-width "^1.0.1" 1742 | strip-ansi "^3.0.1" 1743 | wide-align "^1.1.0" 1744 | 1745 | gaze@^1.0.0: 1746 | version "1.1.2" 1747 | resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" 1748 | dependencies: 1749 | globule "^1.0.0" 1750 | 1751 | generate-function@^2.0.0: 1752 | version "2.0.0" 1753 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1754 | 1755 | generate-object-property@^1.1.0: 1756 | version "1.2.0" 1757 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1758 | dependencies: 1759 | is-property "^1.0.0" 1760 | 1761 | get-caller-file@^1.0.1: 1762 | version "1.0.2" 1763 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1764 | 1765 | get-stdin@^4.0.1: 1766 | version "4.0.1" 1767 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1768 | 1769 | getpass@^0.1.1: 1770 | version "0.1.6" 1771 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1772 | dependencies: 1773 | assert-plus "^1.0.0" 1774 | 1775 | glob-base@^0.3.0: 1776 | version "0.3.0" 1777 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1778 | dependencies: 1779 | glob-parent "^2.0.0" 1780 | is-glob "^2.0.0" 1781 | 1782 | glob-parent@^2.0.0: 1783 | version "2.0.0" 1784 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1785 | dependencies: 1786 | is-glob "^2.0.0" 1787 | 1788 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6, glob@^7.1.1, glob@~7.1.1: 1789 | version "7.1.1" 1790 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1791 | dependencies: 1792 | fs.realpath "^1.0.0" 1793 | inflight "^1.0.4" 1794 | inherits "2" 1795 | minimatch "^3.0.2" 1796 | once "^1.3.0" 1797 | path-is-absolute "^1.0.0" 1798 | 1799 | glob@~5.0.0: 1800 | version "5.0.15" 1801 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1802 | dependencies: 1803 | inflight "^1.0.4" 1804 | inherits "2" 1805 | minimatch "2 || 3" 1806 | once "^1.3.0" 1807 | path-is-absolute "^1.0.0" 1808 | 1809 | globals@^9.0.0: 1810 | version "9.17.0" 1811 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1812 | 1813 | globule@^1.0.0: 1814 | version "1.1.0" 1815 | resolved "https://registry.yarnpkg.com/globule/-/globule-1.1.0.tgz#c49352e4dc183d85893ee825385eb994bb6df45f" 1816 | dependencies: 1817 | glob "~7.1.1" 1818 | lodash "~4.16.4" 1819 | minimatch "~3.0.2" 1820 | 1821 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6: 1822 | version "4.1.11" 1823 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1824 | 1825 | "graceful-readlink@>= 1.0.0": 1826 | version "1.0.1" 1827 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1828 | 1829 | har-schema@^1.0.5: 1830 | version "1.0.5" 1831 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1832 | 1833 | har-validator@~2.0.6: 1834 | version "2.0.6" 1835 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1836 | dependencies: 1837 | chalk "^1.1.1" 1838 | commander "^2.9.0" 1839 | is-my-json-valid "^2.12.4" 1840 | pinkie-promise "^2.0.0" 1841 | 1842 | har-validator@~4.2.1: 1843 | version "4.2.1" 1844 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1845 | dependencies: 1846 | ajv "^4.9.1" 1847 | har-schema "^1.0.5" 1848 | 1849 | has-ansi@^2.0.0: 1850 | version "2.0.0" 1851 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1852 | dependencies: 1853 | ansi-regex "^2.0.0" 1854 | 1855 | has-binary@0.1.7: 1856 | version "0.1.7" 1857 | resolved "https://registry.yarnpkg.com/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c" 1858 | dependencies: 1859 | isarray "0.0.1" 1860 | 1861 | has-cors@1.1.0: 1862 | version "1.1.0" 1863 | resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" 1864 | 1865 | has-flag@^1.0.0: 1866 | version "1.0.0" 1867 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1868 | 1869 | has-unicode@^2.0.0: 1870 | version "2.0.1" 1871 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1872 | 1873 | hash.js@^1.0.0, hash.js@^1.0.3: 1874 | version "1.0.3" 1875 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1876 | dependencies: 1877 | inherits "^2.0.1" 1878 | 1879 | hawk@~3.1.3: 1880 | version "3.1.3" 1881 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1882 | dependencies: 1883 | boom "2.x.x" 1884 | cryptiles "2.x.x" 1885 | hoek "2.x.x" 1886 | sntp "1.x.x" 1887 | 1888 | he@1.1.x: 1889 | version "1.1.1" 1890 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1891 | 1892 | hmac-drbg@^1.0.0: 1893 | version "1.0.0" 1894 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.0.tgz#3db471f45aae4a994a0688322171f51b8b91bee5" 1895 | dependencies: 1896 | hash.js "^1.0.3" 1897 | minimalistic-assert "^1.0.0" 1898 | minimalistic-crypto-utils "^1.0.1" 1899 | 1900 | hoek@2.x.x: 1901 | version "2.16.3" 1902 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1903 | 1904 | home-or-tmp@^2.0.0: 1905 | version "2.0.0" 1906 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1907 | dependencies: 1908 | os-homedir "^1.0.0" 1909 | os-tmpdir "^1.0.1" 1910 | 1911 | hosted-git-info@^2.1.4: 1912 | version "2.4.1" 1913 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 1914 | 1915 | html-loader@0.4.5: 1916 | version "0.4.5" 1917 | resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-0.4.5.tgz#5fbcd87cd63a5c49a7fce2fe56f425e05729c68c" 1918 | dependencies: 1919 | es6-templates "^0.2.2" 1920 | fastparse "^1.1.1" 1921 | html-minifier "^3.0.1" 1922 | loader-utils "^1.0.2" 1923 | object-assign "^4.1.0" 1924 | 1925 | html-minifier@^3.0.1: 1926 | version "3.4.2" 1927 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.4.2.tgz#31896baaf735c1d95f7a0b7291f9dc36c0720752" 1928 | dependencies: 1929 | camel-case "3.0.x" 1930 | clean-css "4.0.x" 1931 | commander "2.9.x" 1932 | he "1.1.x" 1933 | ncname "1.0.x" 1934 | param-case "2.1.x" 1935 | relateurl "0.2.x" 1936 | uglify-js "2.8.x" 1937 | 1938 | http-errors@~1.5.1: 1939 | version "1.5.1" 1940 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1941 | dependencies: 1942 | inherits "2.0.3" 1943 | setprototypeof "1.0.2" 1944 | statuses ">= 1.3.1 < 2" 1945 | 1946 | http-errors@~1.6.1: 1947 | version "1.6.1" 1948 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" 1949 | dependencies: 1950 | depd "1.1.0" 1951 | inherits "2.0.3" 1952 | setprototypeof "1.0.3" 1953 | statuses ">= 1.3.1 < 2" 1954 | 1955 | http-proxy@^1.13.0: 1956 | version "1.16.2" 1957 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 1958 | dependencies: 1959 | eventemitter3 "1.x.x" 1960 | requires-port "1.x.x" 1961 | 1962 | http-signature@~1.1.0: 1963 | version "1.1.1" 1964 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1965 | dependencies: 1966 | assert-plus "^0.2.0" 1967 | jsprim "^1.2.2" 1968 | sshpk "^1.7.0" 1969 | 1970 | https-browserify@0.0.1: 1971 | version "0.0.1" 1972 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1973 | 1974 | iconv-lite@0.4.15, iconv-lite@~0.4.13: 1975 | version "0.4.15" 1976 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 1977 | 1978 | ieee754@^1.1.4: 1979 | version "1.1.8" 1980 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1981 | 1982 | immediate@~3.0.5: 1983 | version "3.0.6" 1984 | resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" 1985 | 1986 | in-publish@^2.0.0: 1987 | version "2.0.0" 1988 | resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" 1989 | 1990 | indent-string@^2.1.0: 1991 | version "2.1.0" 1992 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1993 | dependencies: 1994 | repeating "^2.0.0" 1995 | 1996 | indexof@0.0.1: 1997 | version "0.0.1" 1998 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1999 | 2000 | inflight@^1.0.4: 2001 | version "1.0.6" 2002 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2003 | dependencies: 2004 | once "^1.3.0" 2005 | wrappy "1" 2006 | 2007 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 2008 | version "2.0.3" 2009 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2010 | 2011 | inherits@2.0.1: 2012 | version "2.0.1" 2013 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 2014 | 2015 | ini@~1.3.0: 2016 | version "1.3.4" 2017 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2018 | 2019 | inline-process-browser@^1.0.0: 2020 | version "1.0.0" 2021 | resolved "https://registry.yarnpkg.com/inline-process-browser/-/inline-process-browser-1.0.0.tgz#46a61b153dd3c9b1624b1a00626edb4f7f414f22" 2022 | dependencies: 2023 | falafel "^1.0.1" 2024 | through2 "^0.6.5" 2025 | 2026 | inquirer@^1.2.2: 2027 | version "1.2.3" 2028 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.3.tgz#4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918" 2029 | dependencies: 2030 | ansi-escapes "^1.1.0" 2031 | chalk "^1.0.0" 2032 | cli-cursor "^1.0.1" 2033 | cli-width "^2.0.0" 2034 | external-editor "^1.1.0" 2035 | figures "^1.3.5" 2036 | lodash "^4.3.0" 2037 | mute-stream "0.0.6" 2038 | pinkie-promise "^2.0.0" 2039 | run-async "^2.2.0" 2040 | rx "^4.1.0" 2041 | string-width "^1.0.1" 2042 | strip-ansi "^3.0.0" 2043 | through "^2.3.6" 2044 | 2045 | interpret@^1.0.0: 2046 | version "1.0.2" 2047 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.2.tgz#f4f623f0bb7122f15f5717c8e254b8161b5c5b2d" 2048 | 2049 | invariant@^2.2.0: 2050 | version "2.2.2" 2051 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2052 | dependencies: 2053 | loose-envify "^1.0.0" 2054 | 2055 | invert-kv@^1.0.0: 2056 | version "1.0.0" 2057 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2058 | 2059 | ionic-angular@2.3.0: 2060 | version "2.3.0" 2061 | resolved "https://registry.yarnpkg.com/ionic-angular/-/ionic-angular-2.3.0.tgz#28adadbe8c54dd5eda8e113cdd18819474e42c71" 2062 | 2063 | ionicons@3.0.0: 2064 | version "3.0.0" 2065 | resolved "https://registry.yarnpkg.com/ionicons/-/ionicons-3.0.0.tgz#40b8daf4fd7a31150bd002160f66496e22a98c3c" 2066 | 2067 | ipaddr.js@1.3.0: 2068 | version "1.3.0" 2069 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" 2070 | 2071 | is-arrayish@^0.2.1: 2072 | version "0.2.1" 2073 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2074 | 2075 | is-binary-path@^1.0.0: 2076 | version "1.0.1" 2077 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2078 | dependencies: 2079 | binary-extensions "^1.0.0" 2080 | 2081 | is-buffer@^1.0.2: 2082 | version "1.1.5" 2083 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 2084 | 2085 | is-builtin-module@^1.0.0: 2086 | version "1.0.0" 2087 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2088 | dependencies: 2089 | builtin-modules "^1.0.0" 2090 | 2091 | is-dotfile@^1.0.0: 2092 | version "1.0.2" 2093 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2094 | 2095 | is-equal-shallow@^0.1.3: 2096 | version "0.1.3" 2097 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2098 | dependencies: 2099 | is-primitive "^2.0.0" 2100 | 2101 | is-extendable@^0.1.1: 2102 | version "0.1.1" 2103 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2104 | 2105 | is-extglob@^1.0.0: 2106 | version "1.0.0" 2107 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2108 | 2109 | is-finite@^1.0.0: 2110 | version "1.0.2" 2111 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2112 | dependencies: 2113 | number-is-nan "^1.0.0" 2114 | 2115 | is-fullwidth-code-point@^1.0.0: 2116 | version "1.0.0" 2117 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2118 | dependencies: 2119 | number-is-nan "^1.0.0" 2120 | 2121 | is-glob@^2.0.0, is-glob@^2.0.1: 2122 | version "2.0.1" 2123 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2124 | dependencies: 2125 | is-extglob "^1.0.0" 2126 | 2127 | is-my-json-valid@^2.12.4: 2128 | version "2.16.0" 2129 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2130 | dependencies: 2131 | generate-function "^2.0.0" 2132 | generate-object-property "^1.1.0" 2133 | jsonpointer "^4.0.0" 2134 | xtend "^4.0.0" 2135 | 2136 | is-number@^0.1.1: 2137 | version "0.1.1" 2138 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-0.1.1.tgz#69a7af116963d47206ec9bd9b48a14216f1e3806" 2139 | 2140 | is-number@^2.0.2, is-number@^2.1.0: 2141 | version "2.1.0" 2142 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2143 | dependencies: 2144 | kind-of "^3.0.2" 2145 | 2146 | is-posix-bracket@^0.1.0: 2147 | version "0.1.1" 2148 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2149 | 2150 | is-primitive@^2.0.0: 2151 | version "2.0.0" 2152 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2153 | 2154 | is-promise@^2.1.0: 2155 | version "2.1.0" 2156 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2157 | 2158 | is-property@^1.0.0: 2159 | version "1.0.2" 2160 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2161 | 2162 | is-stream@^1.0.1: 2163 | version "1.1.0" 2164 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2165 | 2166 | is-typedarray@~1.0.0: 2167 | version "1.0.0" 2168 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2169 | 2170 | is-utf8@^0.2.0: 2171 | version "0.2.1" 2172 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2173 | 2174 | isarray@0.0.1: 2175 | version "0.0.1" 2176 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2177 | 2178 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2179 | version "1.0.0" 2180 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2181 | 2182 | isbinaryfile@^3.0.0: 2183 | version "3.0.2" 2184 | resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" 2185 | 2186 | isexe@^2.0.0: 2187 | version "2.0.0" 2188 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2189 | 2190 | isobject@^2.0.0: 2191 | version "2.1.0" 2192 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2193 | dependencies: 2194 | isarray "1.0.0" 2195 | 2196 | isstream@~0.1.2: 2197 | version "0.1.2" 2198 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2199 | 2200 | jasmine-core@~2.5.2: 2201 | version "2.5.2" 2202 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.5.2.tgz#6f61bd79061e27f43e6f9355e44b3c6cab6ff297" 2203 | 2204 | jasmine@2.5.3: 2205 | version "2.5.3" 2206 | resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-2.5.3.tgz#5441f254e1fc2269deb1dfd93e0e57d565ff4d22" 2207 | dependencies: 2208 | exit "^0.1.2" 2209 | glob "^7.0.6" 2210 | jasmine-core "~2.5.2" 2211 | 2212 | jodid25519@^1.0.0: 2213 | version "1.0.2" 2214 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2215 | dependencies: 2216 | jsbn "~0.1.0" 2217 | 2218 | js-base64@^2.1.9: 2219 | version "2.1.9" 2220 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 2221 | 2222 | js-tokens@^3.0.0: 2223 | version "3.0.1" 2224 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2225 | 2226 | jsbn@~0.1.0: 2227 | version "0.1.1" 2228 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2229 | 2230 | jsesc@^1.3.0: 2231 | version "1.3.0" 2232 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2233 | 2234 | json-loader@0.5.4, json-loader@^0.5.4: 2235 | version "0.5.4" 2236 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 2237 | 2238 | json-schema@0.2.3: 2239 | version "0.2.3" 2240 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2241 | 2242 | json-stable-stringify@^1.0.1: 2243 | version "1.0.1" 2244 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2245 | dependencies: 2246 | jsonify "~0.0.0" 2247 | 2248 | json-stringify-safe@~5.0.1: 2249 | version "5.0.1" 2250 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2251 | 2252 | json3@3.3.2: 2253 | version "3.3.2" 2254 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2255 | 2256 | json5@^0.5.0: 2257 | version "0.5.1" 2258 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2259 | 2260 | jsonfile@^2.1.0: 2261 | version "2.4.0" 2262 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 2263 | optionalDependencies: 2264 | graceful-fs "^4.1.6" 2265 | 2266 | jsonify@~0.0.0: 2267 | version "0.0.0" 2268 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2269 | 2270 | jsonpointer@^4.0.0: 2271 | version "4.0.1" 2272 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2273 | 2274 | jsprim@^1.2.2: 2275 | version "1.4.0" 2276 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2277 | dependencies: 2278 | assert-plus "1.0.0" 2279 | extsprintf "1.0.2" 2280 | json-schema "0.2.3" 2281 | verror "1.3.6" 2282 | 2283 | jstransform@~3.0.0: 2284 | version "3.0.0" 2285 | resolved "https://registry.yarnpkg.com/jstransform/-/jstransform-3.0.0.tgz#a2591ab6cee8d97bf3be830dbfa2313b87cd640b" 2286 | dependencies: 2287 | base62 "0.1.1" 2288 | esprima-fb "~3001.1.0-dev-harmony-fb" 2289 | source-map "0.1.31" 2290 | 2291 | karma-chrome-launcher@2.0.0: 2292 | version "2.0.0" 2293 | resolved "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-2.0.0.tgz#c2790c5a32b15577d0fff5a4d5a2703b3b439c25" 2294 | dependencies: 2295 | fs-access "^1.0.0" 2296 | which "^1.2.1" 2297 | 2298 | karma-jasmine-html-reporter@0.2.2: 2299 | version "0.2.2" 2300 | resolved "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-0.2.2.tgz#48a8e5ef18807617ee2b5e33c1194c35b439524c" 2301 | dependencies: 2302 | karma-jasmine "^1.0.2" 2303 | 2304 | karma-jasmine@1.1.0, karma-jasmine@^1.0.2: 2305 | version "1.1.0" 2306 | resolved "https://registry.yarnpkg.com/karma-jasmine/-/karma-jasmine-1.1.0.tgz#22e4c06bf9a182e5294d1f705e3733811b810acf" 2307 | 2308 | karma-sourcemap-loader@0.3.7: 2309 | version "0.3.7" 2310 | resolved "https://registry.yarnpkg.com/karma-sourcemap-loader/-/karma-sourcemap-loader-0.3.7.tgz#91322c77f8f13d46fed062b042e1009d4c4505d8" 2311 | dependencies: 2312 | graceful-fs "^4.1.2" 2313 | 2314 | karma-webpack@2.0.3: 2315 | version "2.0.3" 2316 | resolved "https://registry.yarnpkg.com/karma-webpack/-/karma-webpack-2.0.3.tgz#39cebf5ca2580139b27f9ae69b78816b9c82fae6" 2317 | dependencies: 2318 | async "~0.9.0" 2319 | loader-utils "^0.2.5" 2320 | lodash "^3.8.0" 2321 | source-map "^0.1.41" 2322 | webpack-dev-middleware "^1.0.11" 2323 | 2324 | karma@1.5.0: 2325 | version "1.5.0" 2326 | resolved "https://registry.yarnpkg.com/karma/-/karma-1.5.0.tgz#9c4c14f0400bef2c04c8e8e6bff59371025cc009" 2327 | dependencies: 2328 | bluebird "^3.3.0" 2329 | body-parser "^1.16.1" 2330 | chokidar "^1.4.1" 2331 | colors "^1.1.0" 2332 | combine-lists "^1.0.0" 2333 | connect "^3.6.0" 2334 | core-js "^2.2.0" 2335 | di "^0.0.1" 2336 | dom-serialize "^2.2.0" 2337 | expand-braces "^0.1.1" 2338 | glob "^7.1.1" 2339 | graceful-fs "^4.1.2" 2340 | http-proxy "^1.13.0" 2341 | isbinaryfile "^3.0.0" 2342 | lodash "^3.8.0" 2343 | log4js "^0.6.31" 2344 | mime "^1.3.4" 2345 | minimatch "^3.0.0" 2346 | optimist "^0.6.1" 2347 | qjobs "^1.1.4" 2348 | range-parser "^1.2.0" 2349 | rimraf "^2.6.0" 2350 | safe-buffer "^5.0.1" 2351 | socket.io "1.7.3" 2352 | source-map "^0.5.3" 2353 | tmp "0.0.31" 2354 | useragent "^2.1.12" 2355 | 2356 | kind-of@^3.0.2: 2357 | version "3.1.0" 2358 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2359 | dependencies: 2360 | is-buffer "^1.0.2" 2361 | 2362 | lazy-cache@^1.0.3: 2363 | version "1.0.4" 2364 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2365 | 2366 | lcid@^1.0.0: 2367 | version "1.0.0" 2368 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2369 | dependencies: 2370 | invert-kv "^1.0.0" 2371 | 2372 | leek@0.0.24: 2373 | version "0.0.24" 2374 | resolved "https://registry.yarnpkg.com/leek/-/leek-0.0.24.tgz#e400e57f0e60d8ef2bd4d068dc428a54345dbcda" 2375 | dependencies: 2376 | debug "^2.1.0" 2377 | lodash.assign "^3.2.0" 2378 | rsvp "^3.0.21" 2379 | 2380 | lie@3.0.2: 2381 | version "3.0.2" 2382 | resolved "https://registry.yarnpkg.com/lie/-/lie-3.0.2.tgz#ffda21d7bba26f377cad865d3649b2fc8ce39fea" 2383 | dependencies: 2384 | es3ify "^0.1.3" 2385 | immediate "~3.0.5" 2386 | inline-process-browser "^1.0.0" 2387 | unreachable-branch-transform "^0.3.0" 2388 | 2389 | livereload-js@^2.2.2: 2390 | version "2.2.2" 2391 | resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.2.2.tgz#6c87257e648ab475bc24ea257457edcc1f8d0bc2" 2392 | 2393 | load-json-file@^1.0.0: 2394 | version "1.1.0" 2395 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2396 | dependencies: 2397 | graceful-fs "^4.1.2" 2398 | parse-json "^2.2.0" 2399 | pify "^2.0.0" 2400 | pinkie-promise "^2.0.0" 2401 | strip-bom "^2.0.0" 2402 | 2403 | loader-runner@^2.3.0: 2404 | version "2.3.0" 2405 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2406 | 2407 | loader-utils@^0.2.15, loader-utils@^0.2.16, loader-utils@^0.2.5: 2408 | version "0.2.17" 2409 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 2410 | dependencies: 2411 | big.js "^3.1.3" 2412 | emojis-list "^2.0.0" 2413 | json5 "^0.5.0" 2414 | object-assign "^4.0.1" 2415 | 2416 | loader-utils@^1.0.2: 2417 | version "1.1.0" 2418 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2419 | dependencies: 2420 | big.js "^3.1.3" 2421 | emojis-list "^2.0.0" 2422 | json5 "^0.5.0" 2423 | 2424 | localforage-cordovasqlitedriver@~1.5.0: 2425 | version "1.5.0" 2426 | resolved "https://registry.yarnpkg.com/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.5.0.tgz#f934789e6ad9a39bac05fdd1168812f438535762" 2427 | dependencies: 2428 | "@types/localforage" "0.0.30" 2429 | localforage ">=1.4.0" 2430 | 2431 | localforage@>=1.4.0, localforage@~1.4.2: 2432 | version "1.4.3" 2433 | resolved "https://registry.yarnpkg.com/localforage/-/localforage-1.4.3.tgz#a212543c39c7c76424edd12bf474c489aaca494c" 2434 | dependencies: 2435 | lie "3.0.2" 2436 | 2437 | lodash._baseassign@^3.0.0: 2438 | version "3.2.0" 2439 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2440 | dependencies: 2441 | lodash._basecopy "^3.0.0" 2442 | lodash.keys "^3.0.0" 2443 | 2444 | lodash._basecopy@^3.0.0: 2445 | version "3.0.1" 2446 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2447 | 2448 | lodash._bindcallback@^3.0.0: 2449 | version "3.0.1" 2450 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2451 | 2452 | lodash._createassigner@^3.0.0: 2453 | version "3.1.1" 2454 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2455 | dependencies: 2456 | lodash._bindcallback "^3.0.0" 2457 | lodash._isiterateecall "^3.0.0" 2458 | lodash.restparam "^3.0.0" 2459 | 2460 | lodash._getnative@^3.0.0: 2461 | version "3.9.1" 2462 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2463 | 2464 | lodash._isiterateecall@^3.0.0: 2465 | version "3.0.9" 2466 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2467 | 2468 | lodash.assign@^3.2.0: 2469 | version "3.2.0" 2470 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2471 | dependencies: 2472 | lodash._baseassign "^3.0.0" 2473 | lodash._createassigner "^3.0.0" 2474 | lodash.keys "^3.0.0" 2475 | 2476 | lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.2.0: 2477 | version "4.2.0" 2478 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2479 | 2480 | lodash.clonedeep@^4.3.2: 2481 | version "4.5.0" 2482 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 2483 | 2484 | lodash.isarguments@^3.0.0: 2485 | version "3.1.0" 2486 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2487 | 2488 | lodash.isarray@^3.0.0: 2489 | version "3.0.4" 2490 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2491 | 2492 | lodash.isplainobject@^4.0.6: 2493 | version "4.0.6" 2494 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 2495 | 2496 | lodash.keys@^3.0.0: 2497 | version "3.1.2" 2498 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2499 | dependencies: 2500 | lodash._getnative "^3.0.0" 2501 | lodash.isarguments "^3.0.0" 2502 | lodash.isarray "^3.0.0" 2503 | 2504 | lodash.mergewith@^4.6.0: 2505 | version "4.6.0" 2506 | resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" 2507 | 2508 | lodash.restparam@^3.0.0: 2509 | version "3.6.1" 2510 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2511 | 2512 | lodash.some@^4.6.0: 2513 | version "4.6.0" 2514 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2515 | 2516 | lodash@^3.8.0: 2517 | version "3.10.1" 2518 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 2519 | 2520 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.3.0, lodash@^4.5.0: 2521 | version "4.17.4" 2522 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2523 | 2524 | lodash@~4.16.4: 2525 | version "4.16.6" 2526 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" 2527 | 2528 | log4js@^0.6.31: 2529 | version "0.6.38" 2530 | resolved "https://registry.yarnpkg.com/log4js/-/log4js-0.6.38.tgz#2c494116695d6fb25480943d3fc872e662a522fd" 2531 | dependencies: 2532 | readable-stream "~1.0.2" 2533 | semver "~4.3.3" 2534 | 2535 | longest@^1.0.1: 2536 | version "1.0.1" 2537 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2538 | 2539 | loose-envify@^1.0.0: 2540 | version "1.3.1" 2541 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2542 | dependencies: 2543 | js-tokens "^3.0.0" 2544 | 2545 | loud-rejection@^1.0.0: 2546 | version "1.6.0" 2547 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 2548 | dependencies: 2549 | currently-unhandled "^0.4.1" 2550 | signal-exit "^3.0.0" 2551 | 2552 | lower-case@^1.1.1: 2553 | version "1.1.4" 2554 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 2555 | 2556 | lru-cache@2.2.x: 2557 | version "2.2.4" 2558 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.2.4.tgz#6c658619becf14031d0d0b594b16042ce4dc063d" 2559 | 2560 | lru-cache@^4.0.1: 2561 | version "4.0.2" 2562 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2563 | dependencies: 2564 | pseudomap "^1.0.1" 2565 | yallist "^2.0.0" 2566 | 2567 | macos-release@^1.0.0: 2568 | version "1.0.0" 2569 | resolved "https://registry.yarnpkg.com/macos-release/-/macos-release-1.0.0.tgz#e168ce8f4d934399ab1acb92a6c309273072eb1b" 2570 | 2571 | magic-string@^0.16.0: 2572 | version "0.16.0" 2573 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.16.0.tgz#970ebb0da7193301285fb1aa650f39bdd81eb45a" 2574 | dependencies: 2575 | vlq "^0.2.1" 2576 | 2577 | magic-string@^0.19.0: 2578 | version "0.19.0" 2579 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.19.0.tgz#198948217254e3e0b93080e01146b7c73b2a06b2" 2580 | dependencies: 2581 | vlq "^0.2.1" 2582 | 2583 | map-obj@^1.0.0, map-obj@^1.0.1: 2584 | version "1.0.1" 2585 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 2586 | 2587 | media-typer@0.3.0: 2588 | version "0.3.0" 2589 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2590 | 2591 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2592 | version "0.4.1" 2593 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2594 | dependencies: 2595 | errno "^0.1.3" 2596 | readable-stream "^2.0.1" 2597 | 2598 | meow@^3.7.0: 2599 | version "3.7.0" 2600 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 2601 | dependencies: 2602 | camelcase-keys "^2.0.0" 2603 | decamelize "^1.1.2" 2604 | loud-rejection "^1.0.0" 2605 | map-obj "^1.0.1" 2606 | minimist "^1.1.3" 2607 | normalize-package-data "^2.3.4" 2608 | object-assign "^4.0.1" 2609 | read-pkg-up "^1.0.1" 2610 | redent "^1.0.0" 2611 | trim-newlines "^1.0.0" 2612 | 2613 | merge-descriptors@1.0.1: 2614 | version "1.0.1" 2615 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2616 | 2617 | methods@^1.1.1, methods@~1.1.2: 2618 | version "1.1.2" 2619 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2620 | 2621 | micromatch@^2.1.5, micromatch@^2.3.11: 2622 | version "2.3.11" 2623 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2624 | dependencies: 2625 | arr-diff "^2.0.0" 2626 | array-unique "^0.2.1" 2627 | braces "^1.8.2" 2628 | expand-brackets "^0.1.4" 2629 | extglob "^0.3.1" 2630 | filename-regex "^2.0.0" 2631 | is-extglob "^1.0.0" 2632 | is-glob "^2.0.1" 2633 | kind-of "^3.0.2" 2634 | normalize-path "^2.0.1" 2635 | object.omit "^2.0.0" 2636 | parse-glob "^3.0.4" 2637 | regex-cache "^0.4.2" 2638 | 2639 | miller-rabin@^4.0.0: 2640 | version "4.0.0" 2641 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 2642 | dependencies: 2643 | bn.js "^4.0.0" 2644 | brorand "^1.0.1" 2645 | 2646 | mime-db@~1.27.0: 2647 | version "1.27.0" 2648 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2649 | 2650 | mime-types@^2.1.10, mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7: 2651 | version "2.1.15" 2652 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2653 | dependencies: 2654 | mime-db "~1.27.0" 2655 | 2656 | mime@1.3.4, mime@^1.3.4: 2657 | version "1.3.4" 2658 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2659 | 2660 | minimalistic-assert@^1.0.0: 2661 | version "1.0.0" 2662 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2663 | 2664 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2665 | version "1.0.1" 2666 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2667 | 2668 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@~3.0.2: 2669 | version "3.0.3" 2670 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2671 | dependencies: 2672 | brace-expansion "^1.0.0" 2673 | 2674 | minimist@0.0.8: 2675 | version "0.0.8" 2676 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2677 | 2678 | minimist@^1.1.3, minimist@^1.2.0: 2679 | version "1.2.0" 2680 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2681 | 2682 | minimist@~0.0.1: 2683 | version "0.0.10" 2684 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2685 | 2686 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: 2687 | version "0.5.1" 2688 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2689 | dependencies: 2690 | minimist "0.0.8" 2691 | 2692 | ms@0.7.1: 2693 | version "0.7.1" 2694 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2695 | 2696 | ms@0.7.2: 2697 | version "0.7.2" 2698 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2699 | 2700 | mute-stream@0.0.6: 2701 | version "0.0.6" 2702 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" 2703 | 2704 | nan@^2.3.0, nan@^2.3.2: 2705 | version "2.5.1" 2706 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2707 | 2708 | ncname@1.0.x: 2709 | version "1.0.0" 2710 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" 2711 | dependencies: 2712 | xml-char-classes "^1.0.0" 2713 | 2714 | negotiator@0.6.1: 2715 | version "0.6.1" 2716 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2717 | 2718 | no-case@^2.2.0: 2719 | version "2.3.1" 2720 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.1.tgz#7aeba1c73a52184265554b7dc03baf720df80081" 2721 | dependencies: 2722 | lower-case "^1.1.1" 2723 | 2724 | node-fetch@^1.6.3: 2725 | version "1.6.3" 2726 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 2727 | dependencies: 2728 | encoding "^0.1.11" 2729 | is-stream "^1.0.1" 2730 | 2731 | node-gyp@^3.3.1: 2732 | version "3.6.0" 2733 | resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.0.tgz#7474f63a3a0501161dda0b6341f022f14c423fa6" 2734 | dependencies: 2735 | fstream "^1.0.0" 2736 | glob "^7.0.3" 2737 | graceful-fs "^4.1.2" 2738 | minimatch "^3.0.2" 2739 | mkdirp "^0.5.0" 2740 | nopt "2 || 3" 2741 | npmlog "0 || 1 || 2 || 3 || 4" 2742 | osenv "0" 2743 | request "2" 2744 | rimraf "2" 2745 | semver "~5.3.0" 2746 | tar "^2.0.0" 2747 | which "1" 2748 | 2749 | node-libs-browser@^2.0.0: 2750 | version "2.0.0" 2751 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 2752 | dependencies: 2753 | assert "^1.1.1" 2754 | browserify-zlib "^0.1.4" 2755 | buffer "^4.3.0" 2756 | console-browserify "^1.1.0" 2757 | constants-browserify "^1.0.0" 2758 | crypto-browserify "^3.11.0" 2759 | domain-browser "^1.1.1" 2760 | events "^1.0.0" 2761 | https-browserify "0.0.1" 2762 | os-browserify "^0.2.0" 2763 | path-browserify "0.0.0" 2764 | process "^0.11.0" 2765 | punycode "^1.2.4" 2766 | querystring-es3 "^0.2.0" 2767 | readable-stream "^2.0.5" 2768 | stream-browserify "^2.0.1" 2769 | stream-http "^2.3.1" 2770 | string_decoder "^0.10.25" 2771 | timers-browserify "^2.0.2" 2772 | tty-browserify "0.0.0" 2773 | url "^0.11.0" 2774 | util "^0.10.3" 2775 | vm-browserify "0.0.4" 2776 | 2777 | node-pre-gyp@^0.6.29: 2778 | version "0.6.34" 2779 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2780 | dependencies: 2781 | mkdirp "^0.5.1" 2782 | nopt "^4.0.1" 2783 | npmlog "^4.0.2" 2784 | rc "^1.1.7" 2785 | request "^2.81.0" 2786 | rimraf "^2.6.1" 2787 | semver "^5.3.0" 2788 | tar "^2.2.1" 2789 | tar-pack "^3.4.0" 2790 | 2791 | node-sass@4.5.0: 2792 | version "4.5.0" 2793 | resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.0.tgz#532e37bad0ce587348c831535dbc98ea4289508b" 2794 | dependencies: 2795 | async-foreach "^0.1.3" 2796 | chalk "^1.1.1" 2797 | cross-spawn "^3.0.0" 2798 | gaze "^1.0.0" 2799 | get-stdin "^4.0.1" 2800 | glob "^7.0.3" 2801 | in-publish "^2.0.0" 2802 | lodash.assign "^4.2.0" 2803 | lodash.clonedeep "^4.3.2" 2804 | lodash.mergewith "^4.6.0" 2805 | meow "^3.7.0" 2806 | mkdirp "^0.5.1" 2807 | nan "^2.3.2" 2808 | node-gyp "^3.3.1" 2809 | npmlog "^4.0.0" 2810 | request "^2.61.0" 2811 | sass-graph "^2.1.1" 2812 | stdout-stream "^1.4.0" 2813 | 2814 | "nopt@2 || 3": 2815 | version "3.0.6" 2816 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2817 | dependencies: 2818 | abbrev "1" 2819 | 2820 | nopt@^4.0.1: 2821 | version "4.0.1" 2822 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2823 | dependencies: 2824 | abbrev "1" 2825 | osenv "^0.1.4" 2826 | 2827 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 2828 | version "2.3.6" 2829 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 2830 | dependencies: 2831 | hosted-git-info "^2.1.4" 2832 | is-builtin-module "^1.0.0" 2833 | semver "2 || 3 || 4 || 5" 2834 | validate-npm-package-license "^3.0.1" 2835 | 2836 | normalize-path@^2.0.1: 2837 | version "2.1.1" 2838 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2839 | dependencies: 2840 | remove-trailing-separator "^1.0.1" 2841 | 2842 | normalize-range@^0.1.2: 2843 | version "0.1.2" 2844 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2845 | 2846 | "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: 2847 | version "4.0.2" 2848 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2849 | dependencies: 2850 | are-we-there-yet "~1.1.2" 2851 | console-control-strings "~1.1.0" 2852 | gauge "~2.7.1" 2853 | set-blocking "~2.0.0" 2854 | 2855 | null-check@^1.0.0: 2856 | version "1.0.0" 2857 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" 2858 | 2859 | null-loader@0.1.1: 2860 | version "0.1.1" 2861 | resolved "https://registry.yarnpkg.com/null-loader/-/null-loader-0.1.1.tgz#17be9abfcd3ff0e1512f6fc4afcb1f5039378fae" 2862 | 2863 | num2fraction@^1.2.2: 2864 | version "1.2.2" 2865 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2866 | 2867 | number-is-nan@^1.0.0: 2868 | version "1.0.1" 2869 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2870 | 2871 | oauth-sign@~0.8.1: 2872 | version "0.8.2" 2873 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2874 | 2875 | object-assign@4.1.0, object-assign@^4.0.1, object-assign@^4.1.0: 2876 | version "4.1.0" 2877 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2878 | 2879 | object-component@0.0.3: 2880 | version "0.0.3" 2881 | resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" 2882 | 2883 | object-keys@^1.0.6: 2884 | version "1.0.11" 2885 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2886 | 2887 | object.omit@^2.0.0: 2888 | version "2.0.1" 2889 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2890 | dependencies: 2891 | for-own "^0.1.4" 2892 | is-extendable "^0.1.1" 2893 | 2894 | on-finished@~2.3.0: 2895 | version "2.3.0" 2896 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2897 | dependencies: 2898 | ee-first "1.1.1" 2899 | 2900 | once@^1.3.0, once@^1.3.3: 2901 | version "1.4.0" 2902 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2903 | dependencies: 2904 | wrappy "1" 2905 | 2906 | onetime@^1.0.0: 2907 | version "1.1.0" 2908 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2909 | 2910 | optimist@^0.6.1, optimist@~0.6.0: 2911 | version "0.6.1" 2912 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2913 | dependencies: 2914 | minimist "~0.0.1" 2915 | wordwrap "~0.0.2" 2916 | 2917 | options@>=0.0.5: 2918 | version "0.0.6" 2919 | resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2920 | 2921 | os-browserify@^0.2.0: 2922 | version "0.2.1" 2923 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2924 | 2925 | os-homedir@^1.0.0: 2926 | version "1.0.2" 2927 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2928 | 2929 | os-locale@^1.4.0: 2930 | version "1.4.0" 2931 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2932 | dependencies: 2933 | lcid "^1.0.0" 2934 | 2935 | os-name@2.0.1: 2936 | version "2.0.1" 2937 | resolved "https://registry.yarnpkg.com/os-name/-/os-name-2.0.1.tgz#b9a386361c17ae3a21736ef0599405c9a8c5dc5e" 2938 | dependencies: 2939 | macos-release "^1.0.0" 2940 | win-release "^1.0.0" 2941 | 2942 | os-shim@^0.1.2: 2943 | version "0.1.3" 2944 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 2945 | 2946 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2947 | version "1.0.2" 2948 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2949 | 2950 | osenv@0, osenv@^0.1.4: 2951 | version "0.1.4" 2952 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2953 | dependencies: 2954 | os-homedir "^1.0.0" 2955 | os-tmpdir "^1.0.0" 2956 | 2957 | output-file-sync@^1.1.0: 2958 | version "1.1.2" 2959 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2960 | dependencies: 2961 | graceful-fs "^4.1.4" 2962 | mkdirp "^0.5.1" 2963 | object-assign "^4.1.0" 2964 | 2965 | pako@~0.2.0: 2966 | version "0.2.9" 2967 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2968 | 2969 | param-case@2.1.x: 2970 | version "2.1.1" 2971 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" 2972 | dependencies: 2973 | no-case "^2.2.0" 2974 | 2975 | parse-asn1@^5.0.0: 2976 | version "5.1.0" 2977 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2978 | dependencies: 2979 | asn1.js "^4.0.0" 2980 | browserify-aes "^1.0.0" 2981 | create-hash "^1.1.0" 2982 | evp_bytestokey "^1.0.0" 2983 | pbkdf2 "^3.0.3" 2984 | 2985 | parse-glob@^3.0.4: 2986 | version "3.0.4" 2987 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2988 | dependencies: 2989 | glob-base "^0.3.0" 2990 | is-dotfile "^1.0.0" 2991 | is-extglob "^1.0.0" 2992 | is-glob "^2.0.0" 2993 | 2994 | parse-json@^2.2.0: 2995 | version "2.2.0" 2996 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2997 | dependencies: 2998 | error-ex "^1.2.0" 2999 | 3000 | parse5@^2.2.1: 3001 | version "2.2.3" 3002 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-2.2.3.tgz#0c4fc41c1000c5e6b93d48b03f8083837834e9f6" 3003 | 3004 | parsejson@0.0.3: 3005 | version "0.0.3" 3006 | resolved "https://registry.yarnpkg.com/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab" 3007 | dependencies: 3008 | better-assert "~1.0.0" 3009 | 3010 | parseqs@0.0.5: 3011 | version "0.0.5" 3012 | resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" 3013 | dependencies: 3014 | better-assert "~1.0.0" 3015 | 3016 | parseuri@0.0.5: 3017 | version "0.0.5" 3018 | resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" 3019 | dependencies: 3020 | better-assert "~1.0.0" 3021 | 3022 | parseurl@~1.3.1: 3023 | version "1.3.1" 3024 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 3025 | 3026 | path-browserify@0.0.0: 3027 | version "0.0.0" 3028 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 3029 | 3030 | path-exists@^2.0.0: 3031 | version "2.1.0" 3032 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3033 | dependencies: 3034 | pinkie-promise "^2.0.0" 3035 | 3036 | path-is-absolute@^1.0.0: 3037 | version "1.0.1" 3038 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3039 | 3040 | path-parse@^1.0.5: 3041 | version "1.0.5" 3042 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3043 | 3044 | path-to-regexp@0.1.7: 3045 | version "0.1.7" 3046 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 3047 | 3048 | path-to-regexp@^1.0.1: 3049 | version "1.7.0" 3050 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 3051 | dependencies: 3052 | isarray "0.0.1" 3053 | 3054 | path-type@^1.0.0: 3055 | version "1.1.0" 3056 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3057 | dependencies: 3058 | graceful-fs "^4.1.2" 3059 | pify "^2.0.0" 3060 | pinkie-promise "^2.0.0" 3061 | 3062 | pbkdf2@^3.0.3: 3063 | version "3.0.9" 3064 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 3065 | dependencies: 3066 | create-hmac "^1.1.2" 3067 | 3068 | performance-now@^0.2.0: 3069 | version "0.2.0" 3070 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3071 | 3072 | pify@^2.0.0: 3073 | version "2.3.0" 3074 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3075 | 3076 | pinkie-promise@^2.0.0: 3077 | version "2.0.1" 3078 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3079 | dependencies: 3080 | pinkie "^2.0.0" 3081 | 3082 | pinkie@^2.0.0: 3083 | version "2.0.4" 3084 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3085 | 3086 | postcss-value-parser@^3.2.3: 3087 | version "3.3.0" 3088 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 3089 | 3090 | postcss@5.2.11, postcss@^5.2.11: 3091 | version "5.2.11" 3092 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.11.tgz#ff29bcd6d2efb98bfe08a022055ec599bbe7b761" 3093 | dependencies: 3094 | chalk "^1.1.3" 3095 | js-base64 "^2.1.9" 3096 | source-map "^0.5.6" 3097 | supports-color "^3.2.3" 3098 | 3099 | preserve@^0.2.0: 3100 | version "0.2.0" 3101 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3102 | 3103 | private@^0.1.6, private@~0.1.5: 3104 | version "0.1.7" 3105 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3106 | 3107 | process-es6@^0.11.2, process-es6@^0.11.3: 3108 | version "0.11.6" 3109 | resolved "https://registry.yarnpkg.com/process-es6/-/process-es6-0.11.6.tgz#c6bb389f9a951f82bd4eb169600105bd2ff9c778" 3110 | 3111 | process-nextick-args@~1.0.6: 3112 | version "1.0.7" 3113 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3114 | 3115 | process@^0.11.0: 3116 | version "0.11.9" 3117 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 3118 | 3119 | proxy-addr@~1.1.3: 3120 | version "1.1.4" 3121 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" 3122 | dependencies: 3123 | forwarded "~0.1.0" 3124 | ipaddr.js "1.3.0" 3125 | 3126 | proxy-middleware@0.15.0: 3127 | version "0.15.0" 3128 | resolved "https://registry.yarnpkg.com/proxy-middleware/-/proxy-middleware-0.15.0.tgz#a3fdf1befb730f951965872ac2f6074c61477a56" 3129 | 3130 | prr@~0.0.0: 3131 | version "0.0.0" 3132 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3133 | 3134 | pseudomap@^1.0.1: 3135 | version "1.0.2" 3136 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3137 | 3138 | public-encrypt@^4.0.0: 3139 | version "4.0.0" 3140 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3141 | dependencies: 3142 | bn.js "^4.1.0" 3143 | browserify-rsa "^4.0.0" 3144 | create-hash "^1.1.0" 3145 | parse-asn1 "^5.0.0" 3146 | randombytes "^2.0.1" 3147 | 3148 | punycode@1.3.2: 3149 | version "1.3.2" 3150 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3151 | 3152 | punycode@^1.2.4, punycode@^1.4.1: 3153 | version "1.4.1" 3154 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3155 | 3156 | qjobs@^1.1.4: 3157 | version "1.1.5" 3158 | resolved "https://registry.yarnpkg.com/qjobs/-/qjobs-1.1.5.tgz#659de9f2cf8dcc27a1481276f205377272382e73" 3159 | 3160 | qs@6.2.0, qs@^6.2.0: 3161 | version "6.2.0" 3162 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 3163 | 3164 | qs@6.4.0, qs@^6.1.0, qs@~6.4.0: 3165 | version "6.4.0" 3166 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3167 | 3168 | qs@~6.3.0: 3169 | version "6.3.2" 3170 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" 3171 | 3172 | querystring-es3@^0.2.0: 3173 | version "0.2.1" 3174 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3175 | 3176 | querystring@0.2.0: 3177 | version "0.2.0" 3178 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3179 | 3180 | randomatic@^1.1.3: 3181 | version "1.1.6" 3182 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3183 | dependencies: 3184 | is-number "^2.0.2" 3185 | kind-of "^3.0.2" 3186 | 3187 | randombytes@^2.0.0, randombytes@^2.0.1: 3188 | version "2.0.3" 3189 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 3190 | 3191 | range-parser@^1.0.3, range-parser@^1.2.0, range-parser@~1.2.0: 3192 | version "1.2.0" 3193 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3194 | 3195 | raw-body@~1.1.0: 3196 | version "1.1.7" 3197 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425" 3198 | dependencies: 3199 | bytes "1" 3200 | string_decoder "0.10" 3201 | 3202 | raw-body@~2.2.0: 3203 | version "2.2.0" 3204 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" 3205 | dependencies: 3206 | bytes "2.4.0" 3207 | iconv-lite "0.4.15" 3208 | unpipe "1.0.0" 3209 | 3210 | rc@^1.1.7: 3211 | version "1.2.0" 3212 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.0.tgz#c7de973b7b46297c041366b2fd3d2363b1697c66" 3213 | dependencies: 3214 | deep-extend "~0.4.0" 3215 | ini "~1.3.0" 3216 | minimist "^1.2.0" 3217 | strip-json-comments "~2.0.1" 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@^1.0.0: 3227 | version "1.1.0" 3228 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3229 | dependencies: 3230 | load-json-file "^1.0.0" 3231 | normalize-package-data "^2.3.2" 3232 | path-type "^1.0.0" 3233 | 3234 | "readable-stream@>=1.0.33-1 <1.1.0-0", readable-stream@~1.0.2: 3235 | version "1.0.34" 3236 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 3237 | dependencies: 3238 | core-util-is "~1.0.0" 3239 | inherits "~2.0.1" 3240 | isarray "0.0.1" 3241 | string_decoder "~0.10.x" 3242 | 3243 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5: 3244 | version "2.0.6" 3245 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3246 | dependencies: 3247 | core-util-is "~1.0.0" 3248 | inherits "~2.0.1" 3249 | isarray "~1.0.0" 3250 | process-nextick-args "~1.0.6" 3251 | string_decoder "~0.10.x" 3252 | util-deprecate "~1.0.1" 3253 | 3254 | readable-stream@^2.1.0, readable-stream@^2.1.4, readable-stream@^2.2.2: 3255 | version "2.2.6" 3256 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 3257 | dependencies: 3258 | buffer-shims "^1.0.0" 3259 | core-util-is "~1.0.0" 3260 | inherits "~2.0.1" 3261 | isarray "~1.0.0" 3262 | process-nextick-args "~1.0.6" 3263 | string_decoder "~0.10.x" 3264 | util-deprecate "~1.0.1" 3265 | 3266 | readdirp@^2.0.0: 3267 | version "2.1.0" 3268 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3269 | dependencies: 3270 | graceful-fs "^4.1.2" 3271 | minimatch "^3.0.2" 3272 | readable-stream "^2.0.2" 3273 | set-immediate-shim "^1.0.1" 3274 | 3275 | recast@^0.10.1: 3276 | version "0.10.43" 3277 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.43.tgz#b95d50f6d60761a5f6252e15d80678168491ce7f" 3278 | dependencies: 3279 | ast-types "0.8.15" 3280 | esprima-fb "~15001.1001.0-dev-harmony-fb" 3281 | private "~0.1.5" 3282 | source-map "~0.5.0" 3283 | 3284 | recast@~0.11.12: 3285 | version "0.11.23" 3286 | resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" 3287 | dependencies: 3288 | ast-types "0.9.6" 3289 | esprima "~3.1.0" 3290 | private "~0.1.5" 3291 | source-map "~0.5.0" 3292 | 3293 | redent@^1.0.0: 3294 | version "1.0.0" 3295 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 3296 | dependencies: 3297 | indent-string "^2.1.0" 3298 | strip-indent "^1.0.1" 3299 | 3300 | reflect-metadata@^0.1.2: 3301 | version "0.1.10" 3302 | resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.10.tgz#b4f83704416acad89988c9b15635d47e03b9344a" 3303 | 3304 | regenerator-runtime@^0.10.0: 3305 | version "0.10.3" 3306 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 3307 | 3308 | regex-cache@^0.4.2: 3309 | version "0.4.3" 3310 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3311 | dependencies: 3312 | is-equal-shallow "^0.1.3" 3313 | is-primitive "^2.0.0" 3314 | 3315 | relateurl@0.2.x: 3316 | version "0.2.7" 3317 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 3318 | 3319 | remove-trailing-separator@^1.0.1: 3320 | version "1.0.1" 3321 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3322 | 3323 | repeat-element@^1.1.2: 3324 | version "1.1.2" 3325 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3326 | 3327 | repeat-string@^0.2.2: 3328 | version "0.2.2" 3329 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-0.2.2.tgz#c7a8d3236068362059a7e4651fc6884e8b1fb4ae" 3330 | 3331 | repeat-string@^1.5.2: 3332 | version "1.6.1" 3333 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3334 | 3335 | repeating@^2.0.0: 3336 | version "2.0.1" 3337 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3338 | dependencies: 3339 | is-finite "^1.0.0" 3340 | 3341 | request@2, request@^2.61.0: 3342 | version "2.79.0" 3343 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3344 | dependencies: 3345 | aws-sign2 "~0.6.0" 3346 | aws4 "^1.2.1" 3347 | caseless "~0.11.0" 3348 | combined-stream "~1.0.5" 3349 | extend "~3.0.0" 3350 | forever-agent "~0.6.1" 3351 | form-data "~2.1.1" 3352 | har-validator "~2.0.6" 3353 | hawk "~3.1.3" 3354 | http-signature "~1.1.0" 3355 | is-typedarray "~1.0.0" 3356 | isstream "~0.1.2" 3357 | json-stringify-safe "~5.0.1" 3358 | mime-types "~2.1.7" 3359 | oauth-sign "~0.8.1" 3360 | qs "~6.3.0" 3361 | stringstream "~0.0.4" 3362 | tough-cookie "~2.3.0" 3363 | tunnel-agent "~0.4.1" 3364 | uuid "^3.0.0" 3365 | 3366 | request@^2.81.0: 3367 | version "2.81.0" 3368 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3369 | dependencies: 3370 | aws-sign2 "~0.6.0" 3371 | aws4 "^1.2.1" 3372 | caseless "~0.12.0" 3373 | combined-stream "~1.0.5" 3374 | extend "~3.0.0" 3375 | forever-agent "~0.6.1" 3376 | form-data "~2.1.1" 3377 | har-validator "~4.2.1" 3378 | hawk "~3.1.3" 3379 | http-signature "~1.1.0" 3380 | is-typedarray "~1.0.0" 3381 | isstream "~0.1.2" 3382 | json-stringify-safe "~5.0.1" 3383 | mime-types "~2.1.7" 3384 | oauth-sign "~0.8.1" 3385 | performance-now "^0.2.0" 3386 | qs "~6.4.0" 3387 | safe-buffer "^5.0.1" 3388 | stringstream "~0.0.4" 3389 | tough-cookie "~2.3.0" 3390 | tunnel-agent "^0.6.0" 3391 | uuid "^3.0.0" 3392 | 3393 | require-directory@^2.1.1: 3394 | version "2.1.1" 3395 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3396 | 3397 | require-main-filename@^1.0.1: 3398 | version "1.0.1" 3399 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3400 | 3401 | requires-port@1.x.x: 3402 | version "1.0.0" 3403 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3404 | 3405 | resolve@1.1.7: 3406 | version "1.1.7" 3407 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3408 | 3409 | resolve@^1.1.6, resolve@^1.1.7: 3410 | version "1.3.2" 3411 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 3412 | dependencies: 3413 | path-parse "^1.0.5" 3414 | 3415 | restore-cursor@^1.0.1: 3416 | version "1.0.1" 3417 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3418 | dependencies: 3419 | exit-hook "^1.0.0" 3420 | onetime "^1.0.0" 3421 | 3422 | right-align@^0.1.1: 3423 | version "0.1.3" 3424 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3425 | dependencies: 3426 | align-text "^0.1.1" 3427 | 3428 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.0, rimraf@^2.6.1: 3429 | version "2.6.1" 3430 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3431 | dependencies: 3432 | glob "^7.0.5" 3433 | 3434 | ripemd160@^1.0.0: 3435 | version "1.0.1" 3436 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 3437 | 3438 | rollup-plugin-commonjs@7.0.0: 3439 | version "7.0.0" 3440 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-7.0.0.tgz#510762d5c423c761cd16d8e8451715b39f0ceb08" 3441 | dependencies: 3442 | acorn "^4.0.1" 3443 | estree-walker "^0.3.0" 3444 | magic-string "^0.19.0" 3445 | resolve "^1.1.7" 3446 | rollup-pluginutils "^1.5.1" 3447 | 3448 | rollup-plugin-json@2.1.0: 3449 | version "2.1.0" 3450 | resolved "https://registry.yarnpkg.com/rollup-plugin-json/-/rollup-plugin-json-2.1.0.tgz#7f8e1b2b156932dd934b938dc5547e4118d4121f" 3451 | dependencies: 3452 | rollup-pluginutils "^1.5.2" 3453 | 3454 | rollup-plugin-node-builtins@2.0.0: 3455 | version "2.0.0" 3456 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-builtins/-/rollup-plugin-node-builtins-2.0.0.tgz#c6f291e167e9560ebea87fbfdc1abb44b0a7c1e6" 3457 | dependencies: 3458 | buffer-es6 "^4.9.2" 3459 | crypto-browserify "^3.11.0" 3460 | process-es6 "^0.11.2" 3461 | 3462 | rollup-plugin-node-globals@1.1.0: 3463 | version "1.1.0" 3464 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-globals/-/rollup-plugin-node-globals-1.1.0.tgz#7efd8d611d132737829e804e9f51f50962af451f" 3465 | dependencies: 3466 | acorn "^4.0.1" 3467 | buffer-es6 "^4.9.1" 3468 | estree-walker "^0.2.1" 3469 | magic-string "^0.16.0" 3470 | process-es6 "^0.11.3" 3471 | rollup-pluginutils "^1.5.2" 3472 | 3473 | rollup-plugin-node-resolve@2.0.0: 3474 | version "2.0.0" 3475 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-2.0.0.tgz#07e0ae94ac002a3ea36e8f33ca121d9f836b1309" 3476 | dependencies: 3477 | browser-resolve "^1.11.0" 3478 | builtin-modules "^1.1.0" 3479 | resolve "^1.1.6" 3480 | 3481 | rollup-pluginutils@2.0.1: 3482 | version "2.0.1" 3483 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.0.1.tgz#7ec95b3573f6543a46a6461bd9a7c544525d0fc0" 3484 | dependencies: 3485 | estree-walker "^0.3.0" 3486 | micromatch "^2.3.11" 3487 | 3488 | rollup-pluginutils@^1.5.1, rollup-pluginutils@^1.5.2: 3489 | version "1.5.2" 3490 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 3491 | dependencies: 3492 | estree-walker "^0.2.1" 3493 | minimatch "^3.0.2" 3494 | 3495 | rollup@0.41.4: 3496 | version "0.41.4" 3497 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.41.4.tgz#a970580176329f9ead86854d7fd4c46de752aef8" 3498 | dependencies: 3499 | source-map-support "^0.4.0" 3500 | 3501 | rsvp@^3.0.21: 3502 | version "3.5.0" 3503 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.5.0.tgz#a62c573a4ae4e1dfd0697ebc6242e79c681eaa34" 3504 | 3505 | run-async@^2.2.0: 3506 | version "2.3.0" 3507 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3508 | dependencies: 3509 | is-promise "^2.1.0" 3510 | 3511 | rx@^4.1.0: 3512 | version "4.1.0" 3513 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 3514 | 3515 | rxjs@5.0.1: 3516 | version "5.0.1" 3517 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.0.1.tgz#3a69bdf9f0ca0a986303370d4708f72bdfac8356" 3518 | dependencies: 3519 | symbol-observable "^1.0.1" 3520 | 3521 | safe-buffer@^5.0.1: 3522 | version "5.0.1" 3523 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3524 | 3525 | safe-json-parse@~1.0.1: 3526 | version "1.0.1" 3527 | resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57" 3528 | 3529 | sass-graph@^2.1.1: 3530 | version "2.1.2" 3531 | resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.1.2.tgz#965104be23e8103cb7e5f710df65935b317da57b" 3532 | dependencies: 3533 | glob "^7.0.0" 3534 | lodash "^4.0.0" 3535 | yargs "^4.7.1" 3536 | 3537 | sax@>=0.6.0: 3538 | version "1.2.2" 3539 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3540 | 3541 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0, semver@~5.3.0: 3542 | version "5.3.0" 3543 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3544 | 3545 | semver@~4.3.3: 3546 | version "4.3.6" 3547 | resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" 3548 | 3549 | send@0.14.2: 3550 | version "0.14.2" 3551 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.2.tgz#39b0438b3f510be5dc6f667a11f71689368cdeef" 3552 | dependencies: 3553 | debug "~2.2.0" 3554 | depd "~1.1.0" 3555 | destroy "~1.0.4" 3556 | encodeurl "~1.0.1" 3557 | escape-html "~1.0.3" 3558 | etag "~1.7.0" 3559 | fresh "0.3.0" 3560 | http-errors "~1.5.1" 3561 | mime "1.3.4" 3562 | ms "0.7.2" 3563 | on-finished "~2.3.0" 3564 | range-parser "~1.2.0" 3565 | statuses "~1.3.1" 3566 | 3567 | serve-static@~1.11.2: 3568 | version "1.11.2" 3569 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.2.tgz#2cf9889bd4435a320cc36895c9aa57bd662e6ac7" 3570 | dependencies: 3571 | encodeurl "~1.0.1" 3572 | escape-html "~1.0.3" 3573 | parseurl "~1.3.1" 3574 | send "0.14.2" 3575 | 3576 | serviceworker-cache-polyfill@^4.0.0: 3577 | version "4.0.0" 3578 | resolved "https://registry.yarnpkg.com/serviceworker-cache-polyfill/-/serviceworker-cache-polyfill-4.0.0.tgz#de19ee73bef21ab3c0740a37b33db62464babdeb" 3579 | 3580 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3581 | version "2.0.0" 3582 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3583 | 3584 | set-immediate-shim@^1.0.1: 3585 | version "1.0.1" 3586 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3587 | 3588 | setimmediate@^1.0.4: 3589 | version "1.0.5" 3590 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3591 | 3592 | setprototypeof@1.0.2: 3593 | version "1.0.2" 3594 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 3595 | 3596 | setprototypeof@1.0.3: 3597 | version "1.0.3" 3598 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3599 | 3600 | sha.js@^2.3.6: 3601 | version "2.4.8" 3602 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3603 | dependencies: 3604 | inherits "^2.0.1" 3605 | 3606 | shebang-command@^1.2.0: 3607 | version "1.2.0" 3608 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3609 | dependencies: 3610 | shebang-regex "^1.0.0" 3611 | 3612 | shebang-regex@^1.0.0: 3613 | version "1.0.0" 3614 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3615 | 3616 | signal-exit@^3.0.0: 3617 | version "3.0.2" 3618 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3619 | 3620 | slash@^1.0.0: 3621 | version "1.0.0" 3622 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3623 | 3624 | sntp@1.x.x: 3625 | version "1.0.9" 3626 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3627 | dependencies: 3628 | hoek "2.x.x" 3629 | 3630 | socket.io-adapter@0.5.0: 3631 | version "0.5.0" 3632 | resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b" 3633 | dependencies: 3634 | debug "2.3.3" 3635 | socket.io-parser "2.3.1" 3636 | 3637 | socket.io-client@1.7.3: 3638 | version "1.7.3" 3639 | resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-1.7.3.tgz#b30e86aa10d5ef3546601c09cde4765e381da377" 3640 | dependencies: 3641 | backo2 "1.0.2" 3642 | component-bind "1.0.0" 3643 | component-emitter "1.2.1" 3644 | debug "2.3.3" 3645 | engine.io-client "1.8.3" 3646 | has-binary "0.1.7" 3647 | indexof "0.0.1" 3648 | object-component "0.0.3" 3649 | parseuri "0.0.5" 3650 | socket.io-parser "2.3.1" 3651 | to-array "0.1.4" 3652 | 3653 | socket.io-parser@2.3.1: 3654 | version "2.3.1" 3655 | resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0" 3656 | dependencies: 3657 | component-emitter "1.1.2" 3658 | debug "2.2.0" 3659 | isarray "0.0.1" 3660 | json3 "3.3.2" 3661 | 3662 | socket.io@1.7.3: 3663 | version "1.7.3" 3664 | resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-1.7.3.tgz#b8af9caba00949e568e369f1327ea9be9ea2461b" 3665 | dependencies: 3666 | debug "2.3.3" 3667 | engine.io "1.8.3" 3668 | has-binary "0.1.7" 3669 | object-assign "4.1.0" 3670 | socket.io-adapter "0.5.0" 3671 | socket.io-client "1.7.3" 3672 | socket.io-parser "2.3.1" 3673 | 3674 | source-list-map@~0.1.7: 3675 | version "0.1.8" 3676 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 3677 | 3678 | source-map-support@^0.4.0, source-map-support@^0.4.2: 3679 | version "0.4.14" 3680 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 3681 | dependencies: 3682 | source-map "^0.5.6" 3683 | 3684 | source-map@0.1.31: 3685 | version "0.1.31" 3686 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.31.tgz#9f704d0d69d9e138a81badf6ebb4fde33d151c61" 3687 | dependencies: 3688 | amdefine ">=0.0.4" 3689 | 3690 | source-map@0.4.x: 3691 | version "0.4.4" 3692 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3693 | dependencies: 3694 | amdefine ">=0.0.4" 3695 | 3696 | source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.0, source-map@~0.5.1, source-map@~0.5.3: 3697 | version "0.5.6" 3698 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3699 | 3700 | source-map@^0.1.41: 3701 | version "0.1.43" 3702 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 3703 | dependencies: 3704 | amdefine ">=0.0.4" 3705 | 3706 | spawn-sync@^1.0.15: 3707 | version "1.0.15" 3708 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 3709 | dependencies: 3710 | concat-stream "^1.4.7" 3711 | os-shim "^0.1.2" 3712 | 3713 | spdx-correct@~1.0.0: 3714 | version "1.0.2" 3715 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3716 | dependencies: 3717 | spdx-license-ids "^1.0.2" 3718 | 3719 | spdx-expression-parse@~1.0.0: 3720 | version "1.0.4" 3721 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3722 | 3723 | spdx-license-ids@^1.0.2: 3724 | version "1.2.2" 3725 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3726 | 3727 | sprintf-js@^1.0.3: 3728 | version "1.0.3" 3729 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3730 | 3731 | sshpk@^1.7.0: 3732 | version "1.11.0" 3733 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 3734 | dependencies: 3735 | asn1 "~0.2.3" 3736 | assert-plus "^1.0.0" 3737 | dashdash "^1.12.0" 3738 | getpass "^0.1.1" 3739 | optionalDependencies: 3740 | bcrypt-pbkdf "^1.0.0" 3741 | ecc-jsbn "~0.1.1" 3742 | jodid25519 "^1.0.0" 3743 | jsbn "~0.1.0" 3744 | tweetnacl "~0.14.0" 3745 | 3746 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 3747 | version "1.3.1" 3748 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3749 | 3750 | stdout-stream@^1.4.0: 3751 | version "1.4.0" 3752 | resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b" 3753 | dependencies: 3754 | readable-stream "^2.0.1" 3755 | 3756 | stream-browserify@^2.0.1: 3757 | version "2.0.1" 3758 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3759 | dependencies: 3760 | inherits "~2.0.1" 3761 | readable-stream "^2.0.2" 3762 | 3763 | stream-http@^2.3.1: 3764 | version "2.6.3" 3765 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3" 3766 | dependencies: 3767 | builtin-status-codes "^3.0.0" 3768 | inherits "^2.0.1" 3769 | readable-stream "^2.1.0" 3770 | to-arraybuffer "^1.0.0" 3771 | xtend "^4.0.0" 3772 | 3773 | string-template@~0.2.1: 3774 | version "0.2.1" 3775 | resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" 3776 | 3777 | string-width@^1.0.1, string-width@^1.0.2: 3778 | version "1.0.2" 3779 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3780 | dependencies: 3781 | code-point-at "^1.0.0" 3782 | is-fullwidth-code-point "^1.0.0" 3783 | strip-ansi "^3.0.0" 3784 | 3785 | string_decoder@0.10, string_decoder@^0.10.25, string_decoder@~0.10.x: 3786 | version "0.10.31" 3787 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3788 | 3789 | stringstream@~0.0.4: 3790 | version "0.0.5" 3791 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3792 | 3793 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3794 | version "3.0.1" 3795 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3796 | dependencies: 3797 | ansi-regex "^2.0.0" 3798 | 3799 | strip-bom@^2.0.0: 3800 | version "2.0.0" 3801 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3802 | dependencies: 3803 | is-utf8 "^0.2.0" 3804 | 3805 | strip-indent@^1.0.1: 3806 | version "1.0.1" 3807 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 3808 | dependencies: 3809 | get-stdin "^4.0.1" 3810 | 3811 | strip-json-comments@~2.0.1: 3812 | version "2.0.1" 3813 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3814 | 3815 | superagent@^2.3.0: 3816 | version "2.3.0" 3817 | resolved "https://registry.yarnpkg.com/superagent/-/superagent-2.3.0.tgz#703529a0714e57e123959ddefbce193b2e50d115" 3818 | dependencies: 3819 | component-emitter "^1.2.0" 3820 | cookiejar "^2.0.6" 3821 | debug "^2.2.0" 3822 | extend "^3.0.0" 3823 | form-data "1.0.0-rc4" 3824 | formidable "^1.0.17" 3825 | methods "^1.1.1" 3826 | mime "^1.3.4" 3827 | qs "^6.1.0" 3828 | readable-stream "^2.0.5" 3829 | 3830 | supports-color@^2.0.0: 3831 | version "2.0.0" 3832 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3833 | 3834 | supports-color@^3.1.0, supports-color@^3.2.3: 3835 | version "3.2.3" 3836 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3837 | dependencies: 3838 | has-flag "^1.0.0" 3839 | 3840 | sw-toolbox@3.4.0: 3841 | version "3.4.0" 3842 | resolved "https://registry.yarnpkg.com/sw-toolbox/-/sw-toolbox-3.4.0.tgz#a16efecf4a79ed32191cf1923525f2ee89bc76dc" 3843 | dependencies: 3844 | path-to-regexp "^1.0.1" 3845 | serviceworker-cache-polyfill "^4.0.0" 3846 | 3847 | symbol-observable@^1.0.1: 3848 | version "1.0.4" 3849 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3850 | 3851 | tapable@^0.2.5, tapable@~0.2.5: 3852 | version "0.2.6" 3853 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d" 3854 | 3855 | tar-pack@^3.4.0: 3856 | version "3.4.0" 3857 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3858 | dependencies: 3859 | debug "^2.2.0" 3860 | fstream "^1.0.10" 3861 | fstream-ignore "^1.0.5" 3862 | once "^1.3.3" 3863 | readable-stream "^2.1.4" 3864 | rimraf "^2.5.1" 3865 | tar "^2.2.1" 3866 | uid-number "^0.0.6" 3867 | 3868 | tar@^2.0.0, tar@^2.2.1: 3869 | version "2.2.1" 3870 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3871 | dependencies: 3872 | block-stream "*" 3873 | fstream "^1.0.2" 3874 | inherits "2" 3875 | 3876 | through2@^0.6.2, through2@^0.6.5: 3877 | version "0.6.5" 3878 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 3879 | dependencies: 3880 | readable-stream ">=1.0.33-1 <1.1.0-0" 3881 | xtend ">=4.0.0 <4.1.0-0" 3882 | 3883 | through@^2.3.6, through@~2.3.4, through@~2.3.6: 3884 | version "2.3.8" 3885 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3886 | 3887 | timers-browserify@^2.0.2: 3888 | version "2.0.2" 3889 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 3890 | dependencies: 3891 | setimmediate "^1.0.4" 3892 | 3893 | tiny-lr@1.0.3: 3894 | version "1.0.3" 3895 | resolved "https://registry.yarnpkg.com/tiny-lr/-/tiny-lr-1.0.3.tgz#386731170ce521263a9d337f769ee8f11e88eb04" 3896 | dependencies: 3897 | body "^5.1.0" 3898 | debug "~2.2.0" 3899 | faye-websocket "~0.10.0" 3900 | livereload-js "^2.2.2" 3901 | object-assign "^4.1.0" 3902 | qs "^6.2.0" 3903 | 3904 | tmp@0.0.31, tmp@0.0.x: 3905 | version "0.0.31" 3906 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3907 | dependencies: 3908 | os-tmpdir "~1.0.1" 3909 | 3910 | tmp@^0.0.29: 3911 | version "0.0.29" 3912 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" 3913 | dependencies: 3914 | os-tmpdir "~1.0.1" 3915 | 3916 | to-array@0.1.4: 3917 | version "0.1.4" 3918 | resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" 3919 | 3920 | to-arraybuffer@^1.0.0: 3921 | version "1.0.1" 3922 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3923 | 3924 | to-fast-properties@^1.0.1: 3925 | version "1.0.2" 3926 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3927 | 3928 | tough-cookie@~2.3.0: 3929 | version "2.3.2" 3930 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3931 | dependencies: 3932 | punycode "^1.4.1" 3933 | 3934 | trim-newlines@^1.0.0: 3935 | version "1.0.0" 3936 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 3937 | 3938 | trim-right@^1.0.1: 3939 | version "1.0.1" 3940 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3941 | 3942 | ts-loader@2.0.3: 3943 | version "2.0.3" 3944 | resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-2.0.3.tgz#89b8c87598f048df065766e07e1538f0eaeb1165" 3945 | dependencies: 3946 | colors "^1.0.3" 3947 | enhanced-resolve "^3.0.0" 3948 | loader-utils "^1.0.2" 3949 | semver "^5.0.1" 3950 | 3951 | tsickle@^0.2: 3952 | version "0.2.6" 3953 | resolved "https://registry.yarnpkg.com/tsickle/-/tsickle-0.2.6.tgz#ad4abf92e74ebdf3fb5aa187ca85b02066fe1a1b" 3954 | dependencies: 3955 | minimist "^1.2.0" 3956 | mkdirp "^0.5.1" 3957 | source-map "^0.5.6" 3958 | source-map-support "^0.4.2" 3959 | 3960 | tslint-eslint-rules@1.5.0: 3961 | version "1.5.0" 3962 | resolved "https://registry.yarnpkg.com/tslint-eslint-rules/-/tslint-eslint-rules-1.5.0.tgz#8b244fb03bae0f219e278357ddcaafee81c19615" 3963 | dependencies: 3964 | doctrine "^0.7.2" 3965 | tslint "^3.15.1" 3966 | 3967 | tslint@3.15.1, tslint@^3.15.1: 3968 | version "3.15.1" 3969 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-3.15.1.tgz#da165ca93d8fdc2c086b51165ee1bacb48c98ea5" 3970 | dependencies: 3971 | colors "^1.1.2" 3972 | diff "^2.2.1" 3973 | findup-sync "~0.3.0" 3974 | glob "^7.0.3" 3975 | optimist "~0.6.0" 3976 | resolve "^1.1.7" 3977 | underscore.string "^3.3.4" 3978 | 3979 | tty-browserify@0.0.0: 3980 | version "0.0.0" 3981 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3982 | 3983 | tunnel-agent@^0.6.0: 3984 | version "0.6.0" 3985 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3986 | dependencies: 3987 | safe-buffer "^5.0.1" 3988 | 3989 | tunnel-agent@~0.4.1: 3990 | version "0.4.3" 3991 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3992 | 3993 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3994 | version "0.14.5" 3995 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3996 | 3997 | type-is@~1.6.14: 3998 | version "1.6.14" 3999 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" 4000 | dependencies: 4001 | media-typer "0.3.0" 4002 | mime-types "~2.1.13" 4003 | 4004 | typedarray@^0.0.6: 4005 | version "0.0.6" 4006 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 4007 | 4008 | typescript@2.2.2: 4009 | version "2.2.2" 4010 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.2.2.tgz#606022508479b55ffa368b58fee963a03dfd7b0c" 4011 | 4012 | uglify-js@2.8.16, uglify-js@2.8.x, uglify-js@^2.7.5: 4013 | version "2.8.16" 4014 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.16.tgz#d286190b6eefc6fd65eb0ecac6551e0b0e8839a4" 4015 | dependencies: 4016 | source-map "~0.5.1" 4017 | yargs "~3.10.0" 4018 | optionalDependencies: 4019 | uglify-to-browserify "~1.0.0" 4020 | 4021 | uglify-to-browserify@~1.0.0: 4022 | version "1.0.2" 4023 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4024 | 4025 | uid-number@^0.0.6: 4026 | version "0.0.6" 4027 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4028 | 4029 | ultron@1.0.x: 4030 | version "1.0.2" 4031 | resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 4032 | 4033 | underscore.string@^3.3.4: 4034 | version "3.3.4" 4035 | resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.3.4.tgz#2c2a3f9f83e64762fdc45e6ceac65142864213db" 4036 | dependencies: 4037 | sprintf-js "^1.0.3" 4038 | util-deprecate "^1.0.2" 4039 | 4040 | unpipe@1.0.0, unpipe@~1.0.0: 4041 | version "1.0.0" 4042 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 4043 | 4044 | unreachable-branch-transform@^0.3.0: 4045 | version "0.3.0" 4046 | resolved "https://registry.yarnpkg.com/unreachable-branch-transform/-/unreachable-branch-transform-0.3.0.tgz#d99cc4c6e746d264928845b611db54b0f3474caa" 4047 | dependencies: 4048 | esmangle-evaluator "^1.0.0" 4049 | recast "^0.10.1" 4050 | through2 "^0.6.2" 4051 | 4052 | upper-case@^1.1.1: 4053 | version "1.1.3" 4054 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 4055 | 4056 | url@^0.11.0: 4057 | version "0.11.0" 4058 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4059 | dependencies: 4060 | punycode "1.3.2" 4061 | querystring "0.2.0" 4062 | 4063 | user-home@^1.1.1: 4064 | version "1.1.1" 4065 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 4066 | 4067 | useragent@^2.1.12: 4068 | version "2.1.13" 4069 | resolved "https://registry.yarnpkg.com/useragent/-/useragent-2.1.13.tgz#bba43e8aa24d5ceb83c2937473e102e21df74c10" 4070 | dependencies: 4071 | lru-cache "2.2.x" 4072 | tmp "0.0.x" 4073 | 4074 | util-deprecate@^1.0.2, util-deprecate@~1.0.1: 4075 | version "1.0.2" 4076 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4077 | 4078 | util@0.10.3, util@^0.10.3: 4079 | version "0.10.3" 4080 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4081 | dependencies: 4082 | inherits "2.0.1" 4083 | 4084 | utils-merge@1.0.0: 4085 | version "1.0.0" 4086 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 4087 | 4088 | uuid@^3.0.0: 4089 | version "3.0.1" 4090 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4091 | 4092 | v8flags@^2.0.10: 4093 | version "2.0.11" 4094 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 4095 | dependencies: 4096 | user-home "^1.1.1" 4097 | 4098 | validate-npm-package-license@^3.0.1: 4099 | version "3.0.1" 4100 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4101 | dependencies: 4102 | spdx-correct "~1.0.0" 4103 | spdx-expression-parse "~1.0.0" 4104 | 4105 | vary@~1.1.0: 4106 | version "1.1.1" 4107 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 4108 | 4109 | verror@1.3.6: 4110 | version "1.3.6" 4111 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4112 | dependencies: 4113 | extsprintf "1.0.2" 4114 | 4115 | vlq@^0.2.1: 4116 | version "0.2.1" 4117 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.1.tgz#14439d711891e682535467f8587c5630e4222a6c" 4118 | 4119 | vm-browserify@0.0.4: 4120 | version "0.0.4" 4121 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4122 | dependencies: 4123 | indexof "0.0.1" 4124 | 4125 | void-elements@^2.0.0: 4126 | version "2.0.1" 4127 | resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" 4128 | 4129 | watchpack@^1.2.0: 4130 | version "1.3.1" 4131 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87" 4132 | dependencies: 4133 | async "^2.1.2" 4134 | chokidar "^1.4.3" 4135 | graceful-fs "^4.1.2" 4136 | 4137 | webpack-dev-middleware@^1.0.11: 4138 | version "1.10.1" 4139 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.1.tgz#c6b4cf428139cf1aefbe06a0c00fdb4f8da2f893" 4140 | dependencies: 4141 | memory-fs "~0.4.1" 4142 | mime "^1.3.4" 4143 | path-is-absolute "^1.0.0" 4144 | range-parser "^1.0.3" 4145 | 4146 | webpack-sources@^0.1.4: 4147 | version "0.1.5" 4148 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.5.tgz#aa1f3abf0f0d74db7111c40e500b84f966640750" 4149 | dependencies: 4150 | source-list-map "~0.1.7" 4151 | source-map "~0.5.3" 4152 | 4153 | webpack@2.2.1: 4154 | version "2.2.1" 4155 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.2.1.tgz#7bb1d72ae2087dd1a4af526afec15eed17dda475" 4156 | dependencies: 4157 | acorn "^4.0.4" 4158 | acorn-dynamic-import "^2.0.0" 4159 | ajv "^4.7.0" 4160 | ajv-keywords "^1.1.1" 4161 | async "^2.1.2" 4162 | enhanced-resolve "^3.0.0" 4163 | interpret "^1.0.0" 4164 | json-loader "^0.5.4" 4165 | loader-runner "^2.3.0" 4166 | loader-utils "^0.2.16" 4167 | memory-fs "~0.4.1" 4168 | mkdirp "~0.5.0" 4169 | node-libs-browser "^2.0.0" 4170 | source-map "^0.5.3" 4171 | supports-color "^3.1.0" 4172 | tapable "~0.2.5" 4173 | uglify-js "^2.7.5" 4174 | watchpack "^1.2.0" 4175 | webpack-sources "^0.1.4" 4176 | yargs "^6.0.0" 4177 | 4178 | websocket-driver@>=0.5.1: 4179 | version "0.6.5" 4180 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" 4181 | dependencies: 4182 | websocket-extensions ">=0.1.1" 4183 | 4184 | websocket-extensions@>=0.1.1: 4185 | version "0.1.1" 4186 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" 4187 | 4188 | which-module@^1.0.0: 4189 | version "1.0.0" 4190 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4191 | 4192 | which@1, which@^1.2.1, which@^1.2.9: 4193 | version "1.2.14" 4194 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 4195 | dependencies: 4196 | isexe "^2.0.0" 4197 | 4198 | wide-align@^1.1.0: 4199 | version "1.1.0" 4200 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4201 | dependencies: 4202 | string-width "^1.0.1" 4203 | 4204 | win-release@^1.0.0: 4205 | version "1.1.1" 4206 | resolved "https://registry.yarnpkg.com/win-release/-/win-release-1.1.1.tgz#5fa55e02be7ca934edfc12665632e849b72e5209" 4207 | dependencies: 4208 | semver "^5.0.1" 4209 | 4210 | window-size@0.1.0: 4211 | version "0.1.0" 4212 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4213 | 4214 | window-size@^0.2.0: 4215 | version "0.2.0" 4216 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 4217 | 4218 | wordwrap@0.0.2: 4219 | version "0.0.2" 4220 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4221 | 4222 | wordwrap@~0.0.2: 4223 | version "0.0.3" 4224 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4225 | 4226 | wrap-ansi@^2.0.0: 4227 | version "2.1.0" 4228 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4229 | dependencies: 4230 | string-width "^1.0.1" 4231 | strip-ansi "^3.0.1" 4232 | 4233 | wrappy@1: 4234 | version "1.0.2" 4235 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4236 | 4237 | ws@1.1.1: 4238 | version "1.1.1" 4239 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.1.tgz#082ddb6c641e85d4bb451f03d52f06eabdb1f018" 4240 | dependencies: 4241 | options ">=0.0.5" 4242 | ultron "1.0.x" 4243 | 4244 | ws@1.1.2: 4245 | version "1.1.2" 4246 | resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.2.tgz#8a244fa052401e08c9886cf44a85189e1fd4067f" 4247 | dependencies: 4248 | options ">=0.0.5" 4249 | ultron "1.0.x" 4250 | 4251 | wtf-8@1.0.0: 4252 | version "1.0.0" 4253 | resolved "https://registry.yarnpkg.com/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a" 4254 | 4255 | xml-char-classes@^1.0.0: 4256 | version "1.0.0" 4257 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" 4258 | 4259 | xml2js@^0.4.17: 4260 | version "0.4.17" 4261 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.17.tgz#17be93eaae3f3b779359c795b419705a8817e868" 4262 | dependencies: 4263 | sax ">=0.6.0" 4264 | xmlbuilder "^4.1.0" 4265 | 4266 | xmlbuilder@^4.1.0: 4267 | version "4.2.1" 4268 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.2.1.tgz#aa58a3041a066f90eaa16c2f5389ff19f3f461a5" 4269 | dependencies: 4270 | lodash "^4.0.0" 4271 | 4272 | xmlhttprequest-ssl@1.5.3: 4273 | version "1.5.3" 4274 | resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d" 4275 | 4276 | "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.0: 4277 | version "4.0.1" 4278 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4279 | 4280 | y18n@^3.2.1: 4281 | version "3.2.1" 4282 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4283 | 4284 | yallist@^2.0.0: 4285 | version "2.1.2" 4286 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4287 | 4288 | yargs-parser@^2.4.1: 4289 | version "2.4.1" 4290 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 4291 | dependencies: 4292 | camelcase "^3.0.0" 4293 | lodash.assign "^4.0.6" 4294 | 4295 | yargs-parser@^4.2.0: 4296 | version "4.2.1" 4297 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 4298 | dependencies: 4299 | camelcase "^3.0.0" 4300 | 4301 | yargs@^4.7.1: 4302 | version "4.8.1" 4303 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 4304 | dependencies: 4305 | cliui "^3.2.0" 4306 | decamelize "^1.1.1" 4307 | get-caller-file "^1.0.1" 4308 | lodash.assign "^4.0.3" 4309 | os-locale "^1.4.0" 4310 | read-pkg-up "^1.0.1" 4311 | require-directory "^2.1.1" 4312 | require-main-filename "^1.0.1" 4313 | set-blocking "^2.0.0" 4314 | string-width "^1.0.1" 4315 | which-module "^1.0.0" 4316 | window-size "^0.2.0" 4317 | y18n "^3.2.1" 4318 | yargs-parser "^2.4.1" 4319 | 4320 | yargs@^6.0.0: 4321 | version "6.6.0" 4322 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 4323 | dependencies: 4324 | camelcase "^3.0.0" 4325 | cliui "^3.2.0" 4326 | decamelize "^1.1.1" 4327 | get-caller-file "^1.0.1" 4328 | os-locale "^1.4.0" 4329 | read-pkg-up "^1.0.1" 4330 | require-directory "^2.1.1" 4331 | require-main-filename "^1.0.1" 4332 | set-blocking "^2.0.0" 4333 | string-width "^1.0.2" 4334 | which-module "^1.0.0" 4335 | y18n "^3.2.1" 4336 | yargs-parser "^4.2.0" 4337 | 4338 | yargs@~3.10.0: 4339 | version "3.10.0" 4340 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4341 | dependencies: 4342 | camelcase "^1.0.2" 4343 | cliui "^2.1.0" 4344 | decamelize "^1.0.0" 4345 | window-size "0.1.0" 4346 | 4347 | yeast@0.1.2: 4348 | version "0.1.2" 4349 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" 4350 | 4351 | zone.js@0.8.5: 4352 | version "0.8.5" 4353 | resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.8.5.tgz#7906e017482cbff4c3f079c5c34305ce941f5ba2" 4354 | --------------------------------------------------------------------------------