├── .gitignore ├── .nycrc ├── LICENSE ├── README.md ├── custom.d.ts ├── demo ├── src │ ├── app │ │ ├── about │ │ │ ├── about.component.html │ │ │ ├── about.component.ts │ │ │ └── index.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.routes.ts │ │ └── home │ │ │ ├── home.component.html │ │ │ ├── home.component.ts │ │ │ └── index.ts │ ├── index.html │ ├── index.ts │ ├── main.ts │ ├── server.module.ts │ └── universal.ts ├── tsconfig.json └── webpack.config.js ├── mocha.opts ├── package.json ├── src ├── cache.ts ├── cli.ts ├── file.ts ├── index.ts ├── interfaces.ts └── render.ts ├── test-shim.js ├── tsconfig.cli.json ├── tsconfig.esm.json ├── tsconfig.json ├── tsconfig.spec.json ├── tslint.json ├── webpack.cli.js ├── webpack.config.js ├── webpack.testing.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | *.log 4 | *.tmp 5 | DS* 6 | typings 7 | dist 8 | .vscode 9 | *.pid 10 | *.seed 11 | build/Release 12 | coverage 13 | .nyc_output 14 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "cache": true, 3 | "check-coverage": false, 4 | "branches": 100, 5 | "functions": 80, 6 | "lines": 80, 7 | "statements": 80, 8 | "extension": [ 9 | ".ts" 10 | ], 11 | "exclude": [ 12 | ".tmp/**", 13 | "dist/**", 14 | "coverage/**", 15 | "node_modules/**", 16 | ".nyc-output/**", 17 | "webpack.*", 18 | "test-shim.*" 19 | ], 20 | "include": [ 21 | "src/**/*.ts" 22 | ], 23 | "instrument": false, 24 | "reporter": [ 25 | "html", 26 | "text-summary" 27 | ], 28 | "sourceMap": false 29 | } 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Universal Sitegen 2 | > An Angular Universal static site generator 3 | 4 | 5 | 6 | - [Universal Sitegen](#universal-sitegen) 7 | - [What is this?](#what-is-this) 8 | - [Getting started](#getting-started) 9 | - [Installation](#installation) 10 | - [Building your static site](#building-your-static-site) 11 | - [CLI](#cli) 12 | - [Programmatically](#programmatically) 13 | 14 | 15 | 16 | ## What is this? 17 | Ever wanted to make a static site from your Angular app? Now that we have finalized Angular Universal, you can! Universal Sitegen takes your angular app, builds it, then spits out static pages for each route. If you're building a website that you don't need a client side JS framework for, then this is pefect. Blogs, landing pages, sales pages, launch pages, company sites, you get the point. 18 | 19 | 20 | ## Getting started 21 | ### Installation 22 | * `yarn add @angularclass/universal-sitegen` 23 | 24 | ### Building your static site 25 | There are two ways to build your site: 26 | * [CLI](#cli) 27 | * [Programmatically](#programmatically) 28 | 29 | No matter what approach you use, you need the following setup before you're ready to go. 30 | 31 | First, make sure your AppModule is importing `BrowserModule.withServerTransition()` 32 | and your routes. As it should. 33 | 34 | ```typescript 35 | // app.module.ts 36 | 37 | // .....imports 38 | 39 | @NgModule({ 40 | imports: [ 41 | BrowserModule.withServerTransition({ appId: 'my-site' }), 42 | ROUTES 43 | ], 44 | // declarations 45 | // providers 46 | // bootstrap 47 | }) 48 | 49 | export class AppModule {} 50 | ``` 51 | 52 | Next, create a ServerModule for Universal, and import your AppModule 53 | 54 | ```typescript 55 | // server.module.ts 56 | import { NgModule } from '@angular/core' 57 | import { ServerModule } from '@angular/platform-server' 58 | import { App } from './app.component' 59 | import { AppModule } from './app.module' 60 | 61 | @NgModule({ 62 | imports: [ServerModule, AppModule], 63 | bootstrap: [App] 64 | }) 65 | 66 | export class AppServerModule {} 67 | ``` 68 | 69 | There is a [Demo App](https://github.com/angularclass/universal-sitegen/tree/master/demo) that has the basics. Great place to start to getting your app ready. 70 | 71 | #### CLI 72 | Make sure you followed the steps above first. To build your site with the provided CLI (preferred), you only need to do a few things. 73 | 74 | 75 | Because your app is never going to be ran in the browser and only node, you might have to adjust your webpack config. Look at the [demo webpack config](https://github.com/angularclass/universal-sitegen/tree/master/demo/webpack.config.js) for what it should look like. 76 | 77 | Next, build your app. After you build it, you need to create a `universal.js` file with options on the root of your app. 78 | 79 | ```js 80 | module.exports = { 81 | // routes for your angular app. mirrors your routes file 82 | routes: [ 83 | "/", 84 | "/about" 85 | ], 86 | 87 | // or getRoutes() for async routes you need to get first. 88 | getRoutes() { 89 | return someService.getMyRoutes() 90 | }, 91 | // output folder for your site 92 | outputPath: "site", 93 | // path to the compiled Server NgModule or NgModuleFactory with the #ExportName of the module 94 | serverModuleOrFactoryPath: "./dist/bundle#AppServerModule", 95 | // path to the root html page all pages will be injected into 96 | indexHTMLPath: "./src/index.html" 97 | } 98 | ``` 99 | 100 | After that is all done, add a `script` in your `package.json` to build the static site using the cli: 101 | 102 | ```json 103 | { 104 | "scripts": { 105 | "universal": "universal build" 106 | } 107 | } 108 | ``` 109 | 110 | The `universal build` command will build your app as a static site, and output the html files to the outpath you specified in `universal.js`. 111 | 112 | 113 | #### Programmatically (not complete) 114 | Follow the common steps above first. You need to create an entry file for the site generator: 115 | 116 | ```typescript 117 | // static.ts 118 | import { generateSite } from '@angularclass/universal-sitegen' 119 | import { AppServerModule } from './server.module' 120 | 121 | generateSite( 122 | // NgModule or NgModuleFactory for the ServerModule you created 123 | AppServerModule, 124 | // index html file for all routes 125 | require('./index.html'), 126 | // options object 127 | { 128 | // routes for your app 129 | routes: [ 130 | '/', 131 | '/about' 132 | ], 133 | // path to output the site 134 | outputPath: 'universal-site' 135 | } 136 | ) 137 | .then(() => console.log('site built')) 138 | ``` 139 | 140 | Once that is done, build your app like you normally would. Because your static app will over ever be ran in Node, you can change your webpack config. Check out the [demo webpack config](https://github.com/angularclass/universal-sitegen/tree/master/demo/webpack.config.js) 141 | 142 | After you build it, all you have to do is execute the bundled file. 143 | 144 | ``` 145 | node dist/bundle.js 146 | ``` 147 | 148 | This will generate your static site. 149 | 150 | ___ 151 | 152 | enjoy — **AngularClass** 153 | 154 |

155 | 156 | [![AngularClass](https://cloud.githubusercontent.com/assets/1016365/9863770/cb0620fc-5af7-11e5-89df-d4b0b2cdfc43.png "Angular Class")](https://angularclass.com) 157 | ## [AngularClass](https://angularclass.com) 158 | > Learn AngularJS, Angular, and Modern Web Development from the best. 159 | > Looking for corporate Angular training, want to host us, or Angular consulting? patrick@angularclass.com 160 | 161 | ___ 162 | -------------------------------------------------------------------------------- /custom.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*' 2 | -------------------------------------------------------------------------------- /demo/src/app/about/about.component.html: -------------------------------------------------------------------------------- 1 |
2 | about page here 3 |
4 | -------------------------------------------------------------------------------- /demo/src/app/about/about.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core' 2 | 3 | @Component({ 4 | selector: 'about-view', 5 | templateUrl: './about.component.html' 6 | }) 7 | export class AboutView {} 8 | -------------------------------------------------------------------------------- /demo/src/app/about/index.ts: -------------------------------------------------------------------------------- 1 | export * from './about.component' 2 | -------------------------------------------------------------------------------- /demo/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core' 2 | 3 | @Component({ 4 | template: ` 5 | 6 | `, 7 | selector: 'app' 8 | }) 9 | 10 | export class App {} 11 | -------------------------------------------------------------------------------- /demo/src/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core' 2 | import { BrowserModule } from '@angular/platform-browser' 3 | import { HomeComponent } from './home' 4 | import { App } from './app.component' 5 | import { AboutView } from './about/about.component' 6 | import { ROUTES } from './app.routes' 7 | 8 | @NgModule({ 9 | imports: [ 10 | BrowserModule.withServerTransition({ appId: 'test' }), 11 | ROUTES 12 | ], 13 | declarations: [ 14 | HomeComponent, 15 | AboutView, 16 | App 17 | ], 18 | bootstrap: [App] 19 | }) 20 | 21 | export class AppModule {} 22 | 23 | -------------------------------------------------------------------------------- /demo/src/app/app.routes.ts: -------------------------------------------------------------------------------- 1 | import {RouterModule, Route} from '@angular/router' 2 | import {ModuleWithProviders} from '@angular/core' 3 | import { HomeComponent } from './home/home.component' 4 | import { AboutView } from './about/about.component' 5 | 6 | const routes: Route[] = [ 7 | {path: '', component: HomeComponent}, 8 | {path: 'about', component: AboutView} 9 | ] 10 | 11 | export const ROUTES: ModuleWithProviders = RouterModule.forRoot(routes) 12 | -------------------------------------------------------------------------------- /demo/src/app/home/home.component.html: -------------------------------------------------------------------------------- 1 |
2 |

This is home bitch

3 |
4 | -------------------------------------------------------------------------------- /demo/src/app/home/home.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core' 2 | 3 | @Component({ 4 | selector: 'home-component', 5 | templateUrl: './home.component.html', 6 | }) 7 | 8 | export class HomeComponent {} 9 | -------------------------------------------------------------------------------- /demo/src/app/home/index.ts: -------------------------------------------------------------------------------- 1 | export { HomeComponent } from './home.component' -------------------------------------------------------------------------------- /demo/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Universal Site 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /demo/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './main.browser' 2 | export * from './main.server' 3 | -------------------------------------------------------------------------------- /demo/src/main.ts: -------------------------------------------------------------------------------- 1 | import 'core-js' 2 | import 'zone.js' 3 | 4 | import { platformBrowser } from '@angular/platform-browser' 5 | import { AppModule } from './app/app.module' 6 | 7 | platformBrowser().bootstrapModule(AppModule) 8 | -------------------------------------------------------------------------------- /demo/src/server.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core' 2 | import { ServerModule } from '@angular/platform-server' 3 | import { App } from './app/app.component' 4 | import { AppModule } from './app/app.module' 5 | 6 | @NgModule({ 7 | imports: [ServerModule, AppModule], 8 | bootstrap: [App] 9 | }) 10 | export class AppServerModule {} 11 | -------------------------------------------------------------------------------- /demo/src/universal.ts: -------------------------------------------------------------------------------- 1 | import { generateSite } from '@angularclass/universal-sitegen' 2 | import { AppServerModule } from './server.module' 3 | 4 | generateSite(AppServerModule, require('./index.html'), { 5 | routes: [ 6 | '/', 7 | '/about' 8 | ], 9 | outputPath: 'site' 10 | }) 11 | .then(() => console.log('site is done')) 12 | -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "declaration": true, 4 | "emitDecoratorMetadata": true, 5 | "experimentalDecorators": true, 6 | "lib": [ 7 | "es2015", 8 | "dom" 9 | ], 10 | "module": "commonjs", 11 | "moduleResolution": "node", 12 | "outDir": "./dist", 13 | "sourceMap": true, 14 | "stripInternal": true, 15 | "target": "es5", 16 | "types": [ 17 | "node" 18 | ] 19 | }, 20 | "exclude": [ 21 | "./src/**/*.spec.ts" 22 | ], 23 | "files": [ 24 | "./src/index.ts" 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const path = require('path') 3 | 4 | const root = (_path) => { 5 | return path.resolve(__dirname, _path) 6 | } 7 | 8 | const excludeNodeModules = require('webpack-node-externals') 9 | 10 | module.exports = (envOptions = {}) => { 11 | return ({ 12 | entry: root('./src/index.ts'), 13 | output: { 14 | path: root('dist'), 15 | filename: 'bundle.js', 16 | libraryTarget: 'commonjs2' 17 | }, 18 | target: 'node', 19 | externals: [excludeNodeModules()], 20 | resolve: { 21 | extensions: ['.ts', '.js', '.html', '.scss', '.css'], 22 | }, 23 | module: { 24 | rules: [ 25 | { 26 | test: /\.ts$/, 27 | loaders: [ 28 | { 29 | loader: 'awesome-typescript-loader', 30 | options: { 31 | declaration: false 32 | } 33 | }, 34 | 'angular2-template-loader' 35 | ], 36 | exclude: [/node_modules/, /\.spec\.ts$/] 37 | }, 38 | { 39 | test: /\.html$/, 40 | loader: 'raw-loader' 41 | } 42 | ] 43 | } 44 | }) 45 | } 46 | -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- 1 | --webpack-config ./webpack.testing.js 2 | --require ./test-shim.js 3 | --ui bdd 4 | --glob *.spec.ts 5 | --recursive 6 | src/**/*.ts 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@angularclass/universal-sitegen", 3 | "version": "0.1.2", 4 | "description": "An Angular Universal static site generator", 5 | "main": "universal-sitegen.js", 6 | "jsnext:main": "index.js", 7 | "module": "index.js", 8 | "types": "index.d.ts", 9 | "scripts": { 10 | "tslint": "tslint \"src/**/*.ts\"", 11 | "test": "rimraf ./tmp/mocha-webpack && mocha-webpack --opts 'mocha.opts'", 12 | "coverage": "NODE_ENV=coverage nyc npm test", 13 | "build:esm": "ntsc -p tsconfig.esm.json", 14 | "build:bundle": "webpack --progress --colors", 15 | "build:aot": "ngc", 16 | "build:cli": "ntsc -p tsconfig.cli.json", 17 | "build": "rimraf build && npm run tslint && npm run build:esm && npm run build:bundle && npm run build:cli", 18 | "copy": "cp package.json dist && cp README.md dist", 19 | "pack": "npm pack ./dist", 20 | "package": "npm run build && npm run copy", 21 | "tags": "git add . && git push origin master && git push --tags", 22 | "bump": "npm version patch -m\"upgrade to %s\"", 23 | "release": "npm run bump && npm run tags && npm run package && npm publish dist/ --access public" 24 | }, 25 | "bin": { 26 | "universal": "./cli/cli.js" 27 | }, 28 | "license": "Apache-2.0", 29 | "devDependencies": { 30 | "@angular/common": "^4.1.3", 31 | "@angular/compiler": "^4.1.3", 32 | "@angular/compiler-cli": "^4.1.3", 33 | "@angular/core": "^4.1.3", 34 | "@angular/platform-browser": "^4.1.3", 35 | "@angular/platform-browser-dynamic": "^4.1.3", 36 | "@angular/platform-server": "^4.1.3", 37 | "@types/chai": "^3.5.2", 38 | "@types/chalk": "^0.4.31", 39 | "@types/commander": "2.9.0", 40 | "@types/mocha": "^2.2.41", 41 | "@types/node": "^7.0.18", 42 | "@types/sinon": "^2.2.2", 43 | "angular2-template-loader": "^0.6.2", 44 | "awesome-typescript-loader": "^3.1.3", 45 | "core-js": "^2.4.1", 46 | "istanbul-instrumenter-loader": "^2.0.0", 47 | "jsdom": "^10.1.0", 48 | "mocha": "^3.4.1", 49 | "mocha-webpack": "^0.7.0", 50 | "ntypescript": "latest", 51 | "nyc": "^10.3.2", 52 | "prettysize": "^0.1.0", 53 | "progress": "^2.0.0", 54 | "raw-loader": "^0.5.1", 55 | "rimraf": "^2.6.1", 56 | "rxjs": "^5.4.0", 57 | "source-map-support": "^0.4.15", 58 | "tslint": "~4.5.1", 59 | "tslint-no-unused-var": "^0.0.6", 60 | "typescript": "^2.3.2", 61 | "webpack": "^2.5.1", 62 | "webpack-node-externals": "^1.6.0", 63 | "zone.js": "^0.8.10" 64 | }, 65 | "dependencies": { 66 | "@angular/animations": "^4.1.3", 67 | "@angular/http": "^4.1.3", 68 | "chalk": "^1.1.3", 69 | "commander": "2.9.0", 70 | "css-loader": "^0.28.1", 71 | "fs-extra": "^3.0.1", 72 | "postcss-loader": "^2.0.5", 73 | "prettysize": "^0.1.0", 74 | "progress": "^2.0.0", 75 | "sass-loader": "^6.0.5", 76 | "to-string-loader": "^1.1.5" 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /src/cache.ts: -------------------------------------------------------------------------------- 1 | import * as path from 'path' 2 | const fs = require('fs-extra') 3 | 4 | export class UniversalCache { 5 | private cacheFile: string = 'universal.cache.json' 6 | private cachePath: string = path.join(process.cwd(), this.cacheFile) 7 | 8 | public setCache(data: any): Promise { 9 | return fs.outputJson(this.cachePath, data) 10 | } 11 | 12 | public getCache(): Promise { 13 | try { 14 | const cache = fs.readJsonSync(this.cachePath) 15 | return Promise.resolve(cache) 16 | } catch (e) { 17 | return fs.outputJson(this.cachePath, {cache: true}) 18 | .then(() => ({cache: true})) 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import * as program from 'commander' 3 | import * as path from 'path' 4 | import * as chalk from 'chalk' 5 | import * as fs from 'fs' 6 | import { generateSite } from './index' 7 | import { CLIConfig } from './interfaces' 8 | import { NgModuleFactory, Type } from '@angular/core' 9 | const pjson = require('../package.json') 10 | 11 | /** 12 | * takes a path to a file and returns the content async 13 | * @param pathToFile full path to the file to read 14 | */ 15 | const readFile = (pathToFile: string): Promise => { 16 | return new Promise((res, rej) => { 17 | fs.readFile(pathToFile, 'utf8', (err, file) => { 18 | if (err) { 19 | rej(err) 20 | } else { 21 | res(file) 22 | } 23 | }) 24 | }) 25 | } 26 | 27 | /** 28 | * finds and parses the universal config file 29 | * @param config path to the config file to read 30 | */ 31 | const getConfig = async (config = './universal.json'): Promise => { 32 | const configPath = path.join(process.cwd(), config) 33 | let options: any = {} 34 | 35 | try { 36 | options = require(configPath) 37 | } catch (e) { 38 | console.error(e) 39 | process.exit(1) 40 | } 41 | 42 | return Object.assign({}, { 43 | indexHTMLPath: './src/index.html', 44 | dotHTML: false, 45 | outputPath: 'site' 46 | }, options) 47 | } 48 | 49 | /** 50 | * requires the ngModule or ngModuleFactory for the universal app 51 | * @param pathToModule path to the serverModule or 52 | * serverModuleFactory in the format of "./path/to/file#ExportName" 53 | */ 54 | const getModule = (pathToModule: string): Type<{}> | NgModuleFactory<{}> => { 55 | if (!pathToModule) { 56 | console.log(chalk.red('Must provide a path to the NgModule or Factory')) 57 | process.exit(1) 58 | return 59 | } 60 | 61 | const modulePaths = pathToModule.split('#') 62 | let fullPath = path.join(process.cwd(), modulePaths[0]) 63 | 64 | try { 65 | const ngModule = require(require.resolve(fullPath))[modulePaths[1]] 66 | return ngModule 67 | } catch (e) { 68 | console.error(chalk.red(e)) 69 | process.exit(1) 70 | } 71 | } 72 | 73 | 74 | /** 75 | * builds the entire site. Hooked into commander for the "build" command 76 | * @param config commander config 77 | */ 78 | const build = async (config) => { 79 | const configOptions = (await getConfig(config) as CLIConfig) 80 | const serverModule = getModule(configOptions.serverModuleOrFactoryPath) 81 | 82 | return generateSite( 83 | serverModule, 84 | await readFile(path.join(process.cwd(), configOptions.indexHTMLPath)), 85 | configOptions 86 | ) 87 | } 88 | 89 | program.version(pjson.version) 90 | 91 | program 92 | .command('build') 93 | .option( 94 | '-c', 95 | '--config [configFilePath]', 'path to the config file, defaults to ./universal.json' 96 | ) 97 | .description('Build and output your angular app as a static site') 98 | .action((config) => build(config)) 99 | 100 | 101 | program.parse(process.argv) 102 | 103 | -------------------------------------------------------------------------------- /src/file.ts: -------------------------------------------------------------------------------- 1 | import { SiteGenConfig } from './interfaces' 2 | import * as path from 'path' 3 | const fs = require('fs-extra') 4 | 5 | export const createHTML = (html: string, url: string, config: SiteGenConfig) => { 6 | let filePath = path.join(process.cwd(), config.outputPath) 7 | 8 | if (config.dotHTML) { 9 | filePath = path.join(filePath, `${url}.html`) 10 | } else { 11 | filePath = path.join(filePath, url, 'index.html') 12 | } 13 | return fs.outputFile(filePath, html) 14 | } 15 | 16 | export const loadConfigFile = (pathToFile: string): Promise => { 17 | return new Promise((res, rej) => { 18 | fs.readFile(path.resolve(pathToFile), 'utf8', (err, file) => { 19 | if (err) { 20 | rej(err) 21 | } else { 22 | res(file) 23 | } 24 | }) 25 | }) 26 | } 27 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { renderPage } from './render' 2 | import { NgModuleFactory, enableProdMode, Type } from '@angular/core' 3 | import { loadConfigFile, createHTML } from './file' 4 | import { SiteGenConfig } from './interfaces' 5 | // import { createFile } from './file' 6 | import { Observable} from 'rxjs' 7 | const chalk = require('chalk') 8 | const progressBar = require('progress') 9 | // const prettysize = require('prettysize') 10 | 11 | enableProdMode() 12 | 13 | export { UniversalCache } from './cache' 14 | export { CACHE, cache } from './render' 15 | 16 | export const generateSite = async ( 17 | serverModuleOrFactory: Type<{}> | NgModuleFactory<{}>, 18 | document: string, 19 | config: string | SiteGenConfig 20 | ) => { 21 | let configOptions: SiteGenConfig 22 | 23 | if (typeof config === 'string') { 24 | try { 25 | const configJSON = await loadConfigFile(config) 26 | configOptions = JSON.parse(configJSON) 27 | } catch (e) { 28 | console.error(chalk.red(e)) 29 | } 30 | } else { 31 | configOptions = (config as SiteGenConfig) 32 | } 33 | 34 | const pages = (configOptions.routes || await configOptions.getRoutes()) 35 | .map((route: string) => { 36 | return Observable.of({serverModuleOrFactory, document, url: route, configOptions}) 37 | .mergeMap((opts: any) => Observable.fromPromise(renderPage( 38 | opts.serverModuleOrFactory, 39 | opts.document, 40 | opts.url, 41 | opts.config 42 | ))) 43 | }) 44 | 45 | const bar = new progressBar(' 🌍 [:bar] :percent route /:url', { 46 | total: pages.length, 47 | complete: '\u001b[42m \u001b[0m', 48 | incomplete: ' ', 49 | width: 40 50 | }) 51 | 52 | const getUrl = (url: string) => { 53 | const bits = url.split('/') 54 | return bits.slice(bits.length - 2).join('/') 55 | } 56 | 57 | Observable.concat(...pages) 58 | .do((page) => createHTML(page.html, page.url, configOptions)) 59 | .subscribe((page) => { 60 | bar.tick({ 61 | url: !page.url || page.url === '/' ? 62 | '/' : 63 | getUrl(page.url) 64 | }) 65 | bar.render() 66 | }) 67 | } 68 | -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- 1 | import { Type, NgModuleFactory } from '@angular/core' 2 | 3 | export interface RouteFunc { 4 | (): Promise 5 | } 6 | 7 | export interface RenderPageOpts { 8 | serverModuleOrFactory: Type<{}> | NgModuleFactory<{}> 9 | document: string 10 | url: string 11 | config: SiteGenConfig 12 | } 13 | 14 | export interface SiteGenConfig { 15 | /** all your route paths that are registered the NgModule that you're rendering */ 16 | routes?: string[] 17 | /** rather to have /your-route.html or not. Defaults to false */ 18 | dotHTML: boolean 19 | /** where to place the output of the files. defaults to ./universal-site */ 20 | outputPath: string 21 | 22 | getRoutes?: RouteFunc 23 | } 24 | 25 | export interface CLIConfig extends SiteGenConfig { 26 | /** the path to the ngmodule or factor */ 27 | serverModuleOrFactoryPath: string 28 | /** the path to the index.html */ 29 | indexHTMLPath: string 30 | } 31 | -------------------------------------------------------------------------------- /src/render.ts: -------------------------------------------------------------------------------- 1 | import 'core-js' 2 | import 'zone.js/dist/zone-node' 3 | import { renderModule, renderModuleFactory } from '@angular/platform-server' 4 | import { NgModuleFactory, Type, InjectionToken } from '@angular/core' 5 | import { SiteGenConfig } from './interfaces' 6 | import { UniversalCache } from './cache' 7 | 8 | 9 | export const CACHE = new InjectionToken('universal.cache') 10 | export const cache = {} 11 | /** 12 | * A thunk that takes a render method and later calls it with module or factory and platform options 13 | * @param renderMethod what method to render (renderModule | renderModuleFactory) 14 | */ 15 | const render = (renderMethod: Function) => { 16 | return function(moduleToRender, opts: {document: string, url: string, extraProviders?: any[]}) { 17 | return renderMethod.call(renderMethod, moduleToRender, opts) 18 | } 19 | } 20 | 21 | /** 22 | * compiles and creates a HTML string from an angular app 23 | * @param serverModuleOrFactory the NgFactoryModule or NgModule to render 24 | * @param document the index.html string 25 | * @param url the url to the page 26 | */ 27 | export async function renderPage ( 28 | serverModuleOrFactory: Type<{}> | NgModuleFactory<{}>, 29 | document: string, 30 | url: string = '/', 31 | config: SiteGenConfig 32 | ) { 33 | 34 | let renderFunc 35 | 36 | /** if the mdoule is a factory, we need to change renderFuncs */ 37 | if (serverModuleOrFactory instanceof NgModuleFactory) { 38 | renderFunc = render(renderModuleFactory) 39 | } else { 40 | renderFunc = render(renderModule) 41 | } 42 | 43 | const html = await renderFunc( 44 | serverModuleOrFactory, 45 | { 46 | document, 47 | url, 48 | extraProviders: [UniversalCache, {provide: CACHE, useValue: cache}] 49 | } 50 | ) 51 | 52 | return {html, url} 53 | } 54 | 55 | 56 | -------------------------------------------------------------------------------- /test-shim.js: -------------------------------------------------------------------------------- 1 | require('source-map-support').install({ 2 | environment: 'node' 3 | }); 4 | 5 | const jsdom = require('jsdom'); 6 | 7 | const {window} = new jsdom.JSDOM(''); 8 | 9 | 10 | // global.window = global.Window = window 11 | global.document = window.document; 12 | global.mediaMatch = window.mediaMatch; 13 | global.HTMLElement = window.HTMLElement; 14 | global.XMLHttpRequest = window.XMLHttpRequest; 15 | global.Node = window.Node; 16 | // global.scrollTo = window.scrollTo; 17 | // global.history = window.history; 18 | // global.clearInterval = window.clearInterval; 19 | // global.pageYOffset = window.pageYOffset; 20 | // global.sinon = require('sinon'); 21 | 22 | require('core-js/es6'); 23 | require('core-js/es7/reflect'); 24 | 25 | require('zone.js/dist/zone'); 26 | require('zone.js/dist/long-stack-trace-zone'); 27 | require('zone.js/dist/proxy'); 28 | require('zone.js/dist/sync-test'); 29 | require('zone.js/dist/async-test'); 30 | require('zone.js/dist/fake-async-test'); 31 | 32 | var testing = require('@angular/core/testing'); 33 | var browser = require('@angular/platform-browser-dynamic/testing'); 34 | 35 | testing.TestBed.initTestEnvironment(browser.BrowserDynamicTestingModule, browser.platformBrowserDynamicTesting()); 36 | -------------------------------------------------------------------------------- /tsconfig.cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "angularCompilerOptions": { 3 | "skipTemplateCodegen": true 4 | }, 5 | "compilerOptions": { 6 | "declaration": true, 7 | "emitDecoratorMetadata": true, 8 | "experimentalDecorators": true, 9 | "lib": [ 10 | "es2015", 11 | "dom" 12 | ], 13 | "module": "commonjs", 14 | "outDir": "./dist/cli", 15 | "sourceMap": true, 16 | "rootDir": "./src", 17 | "stripInternal": true, 18 | "target": "es5", 19 | "typeRoots": [ 20 | "./node_modules/@types", 21 | "./node_modules" 22 | ], 23 | "types": [ 24 | "node", 25 | "commander", 26 | "chalk" 27 | ] 28 | }, 29 | "files": [ 30 | "./src/cli.ts" 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "declaration": true, 4 | "emitDecoratorMetadata": true, 5 | "experimentalDecorators": true, 6 | "lib": [ 7 | "es2015", 8 | "dom" 9 | ], 10 | "module": "es2015", 11 | "moduleResolution": "node", 12 | "outDir": "./dist", 13 | "sourceMap": true, 14 | "stripInternal": true, 15 | "target": "es5", 16 | "types": [ 17 | "node" 18 | ] 19 | }, 20 | "exclude": [ 21 | "./src/**/*.spec.ts" 22 | ], 23 | "extends": "./tsconfig.json", 24 | "files": [ 25 | "./src/index.ts" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "angularCompilerOptions": { 3 | "skipTemplateCodegen": true 4 | }, 5 | "compilerOptions": { 6 | "declaration": true, 7 | "emitDecoratorMetadata": true, 8 | "experimentalDecorators": true, 9 | "lib": [ 10 | "es2015", 11 | "dom" 12 | ], 13 | "module": "commonjs", 14 | "outDir": "./dist", 15 | "sourceMap": true, 16 | "stripInternal": true, 17 | "target": "es5", 18 | "typeRoots": [ 19 | "./node_modules/@types", 20 | "./node_modules" 21 | ], 22 | "types": [ 23 | "node" 24 | ] 25 | }, 26 | "exclude": [ 27 | "./src/**/*.spec.ts" 28 | ], 29 | "include": [ 30 | "./src/**/*.ts" 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "types": [ 5 | "node", 6 | "mocha", 7 | "chai" 8 | ] 9 | }, 10 | "exclude": [] 11 | } 12 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": ["node_modules/tslint-no-unused-var"], 3 | "rules": { 4 | "max-line-length": [true, 100], 5 | "class-name": true, 6 | "comment-format": [ 7 | true, 8 | "check-space" 9 | ], 10 | "indent": [ 11 | true, 12 | "spaces" 13 | ], 14 | "eofline": true, 15 | "no-duplicate-variable": true, 16 | "no-eval": true, 17 | "no-arg": true, 18 | "no-internal-module": true, 19 | "no-trailing-whitespace": true, 20 | "no-bitwise": true, 21 | "no-shadowed-variable": true, 22 | "no-unused-expression": true, 23 | "no-unused-var": [true, {"ignore-pattern": "^(_.*)$"}], 24 | "one-line": [ 25 | true, 26 | "check-catch", 27 | "check-else", 28 | "check-open-brace", 29 | "check-whitespace" 30 | ], 31 | "quotemark": [ 32 | true, 33 | "single", 34 | "avoid-escape" 35 | ], 36 | // "semicolon": false, 37 | "typedef-whitespace": [ 38 | true, 39 | { 40 | "call-signature": "nospace", 41 | "index-signature": "nospace", 42 | "parameter": "nospace", 43 | "property-declaration": "nospace", 44 | "variable-declaration": "nospace" 45 | } 46 | ], 47 | "curly": true, 48 | "variable-name": [ 49 | true, 50 | "ban-keywords", 51 | "check-format", 52 | "allow-leading-underscore" 53 | ], 54 | "whitespace": [ 55 | true, 56 | "check-branch", 57 | "check-decl", 58 | "check-operator", 59 | "check-separator", 60 | "check-type" 61 | ] 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /webpack.cli.js: -------------------------------------------------------------------------------- 1 | const common = require('./webpack.config') 2 | const path = require('path') 3 | 4 | const root = (_path) => { 5 | return path.resolve(__dirname, _path) 6 | } 7 | 8 | module.exports = (o = {}) => { 9 | return Object.assign(common(o), { 10 | externals: [], 11 | entry: './cli.ts', 12 | output: { 13 | path: root('dist'), 14 | filename: 'cli.js' 15 | }, 16 | module: { 17 | rules: [ 18 | { 19 | test: /\.ts$/, 20 | loaders: [{ 21 | loader: 'awesome-typescript-loader', 22 | options: { 23 | configFileName: root('tsconfig.cli.json') 24 | } 25 | }], 26 | exclude: [/node_modules/, /\.spec\.ts$/] 27 | }, 28 | { 29 | test: /\.html$/, 30 | loader: 'raw-loader' 31 | } 32 | ] 33 | } 34 | }) 35 | } 36 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const path = require('path') 3 | 4 | const root = (_path) => { 5 | return path.resolve(__dirname, _path) 6 | } 7 | 8 | const moduleExternals = require('webpack-node-externals') 9 | 10 | module.exports = (envOptions = {}) => { 11 | return ({ 12 | entry: root('./src/index.ts'), 13 | output: { 14 | path: root('dist'), 15 | filename: 'universal-sitegen.js', 16 | library: 'universal-sitegen', 17 | libraryTarget: 'umd', 18 | umdNamedDefine: true 19 | }, 20 | target: 'node', 21 | 22 | externals: [moduleExternals({ 23 | whitelist: [ 24 | 'progress', 25 | 'chalk', 26 | 'prettysize', 27 | 'fs-extra' 28 | ] 29 | })], 30 | resolve: { 31 | extensions: ['.ts', '.js'], 32 | alias: { 33 | progress: 'progress', 34 | chalk: 'chalk', 35 | prettysize: 'prettysize', 36 | 'fs-extra': 'fs-extra' 37 | } 38 | }, 39 | module: { 40 | rules: [ 41 | { 42 | test: /\.ts$/, 43 | loaders: [{ 44 | loader: 'awesome-typescript-loader', 45 | options: { 46 | configFileName: root('tsconfig.json') 47 | } 48 | }], 49 | exclude: [/node_modules/, /\.spec\.ts$/] 50 | }, 51 | { 52 | test: /\.html$/, 53 | loader: 'raw-loader' 54 | } 55 | ] 56 | }, 57 | plugins: [ 58 | new webpack.ContextReplacementPlugin( 59 | /angular(\\|\/)core(\\|\/)@angular/ 60 | // location of your src 61 | // { 62 | // // your Angular Async Route paths relative to this root directory 63 | // } 64 | ) 65 | ] 66 | }) 67 | } 68 | -------------------------------------------------------------------------------- /webpack.testing.js: -------------------------------------------------------------------------------- 1 | const nodeExternals = require('webpack-node-externals') 2 | const webpack = require('webpack') 3 | const path = require('path') 4 | 5 | const root = function(p) { 6 | return path.resolve(__dirname, p) 7 | } 8 | 9 | const config = { 10 | resolve: { 11 | extensions: ['.ts', '.js', '.html', '.scss', '.css', '.gql'] 12 | }, 13 | resolveLoader: { 14 | moduleExtensions: ['-loader'] 15 | }, 16 | devtool: 'inline-source-map', 17 | output: { 18 | devtoolModuleFilenameTemplate: '[absolute-resource-path]', 19 | devtoolFallbackModuleFilenameTemplate: '[absolute-resource-path]?[hash]' 20 | }, 21 | target: 'node', 22 | externals: [nodeExternals()], 23 | module: { 24 | rules: [ 25 | { 26 | test: /\.ts$/, 27 | exclude: /node_modules/, 28 | rules: [ 29 | { 30 | test: () => process.env.NODE_ENV === 'coverage', 31 | exclude: /\.spec\.(js|ts)?$/, 32 | enforce: 'post', 33 | loader: 'istanbul-instrumenter-loader' 34 | }, 35 | { 36 | loaders: [ 37 | { 38 | loader: 'awesome-typescript-loader', 39 | options: { 40 | sourceMap: false, 41 | inlineSourceMap: true, 42 | configFileName: root('tsconfig.spec.json') 43 | } 44 | }, 45 | 'angular2-template-loader' 46 | ] 47 | } 48 | ] 49 | }, 50 | { 51 | test: /\.gql$/, 52 | loader: 'graphql-tag/loader' 53 | }, 54 | { 55 | test: /\.html$/, 56 | loader: 'raw-loader' 57 | }, 58 | { 59 | test: /\.scss$/, 60 | use: [ 61 | 'to-string-loader', 62 | 'css-loader', 63 | 'postcss-loader', 64 | 'sass-loader' 65 | ] 66 | }, 67 | { 68 | test: /\.css$/, 69 | loaders: ['to-string-loader', 'css-loader'] 70 | }, 71 | { 72 | test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)$/, 73 | loader: 'null-loader' 74 | } 75 | ] 76 | }, 77 | plugins: [ 78 | new webpack.ContextReplacementPlugin( 79 | /angular(\\|\/)core(\\|\/)@angular/, 80 | root('src'), // location of your src 81 | { 82 | // your Angular Async Route paths relative to this root directory 83 | } 84 | ) 85 | ] 86 | } 87 | 88 | module.exports = config 89 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@angular/animations@^4.1.3": 6 | version "4.1.3" 7 | resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-4.1.3.tgz#6e89a1e0fbfd6d0e90be4f2ae190aac67f83a411" 8 | 9 | "@angular/common@^4.1.3": 10 | version "4.1.3" 11 | resolved "https://registry.yarnpkg.com/@angular/common/-/common-4.1.3.tgz#e7c4791e32131cf74c239428c2a67daab2eef017" 12 | 13 | "@angular/compiler-cli@^4.1.3": 14 | version "4.1.3" 15 | resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-4.1.3.tgz#c2362ffdf65756471481f839fab675bcac213f96" 16 | dependencies: 17 | "@angular/tsc-wrapped" "4.1.3" 18 | minimist "^1.2.0" 19 | reflect-metadata "^0.1.2" 20 | 21 | "@angular/compiler@^4.1.3": 22 | version "4.1.3" 23 | resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-4.1.3.tgz#d2dd30853b0cf4a54758b4a314632c231f9c94c3" 24 | 25 | "@angular/core@^4.1.3": 26 | version "4.1.3" 27 | resolved "https://registry.yarnpkg.com/@angular/core/-/core-4.1.3.tgz#285498eb86ab7d0b6f982f8f9f487ef610013b35" 28 | 29 | "@angular/http@^4.1.3": 30 | version "4.1.3" 31 | resolved "https://registry.yarnpkg.com/@angular/http/-/http-4.1.3.tgz#eb9d1c302a0172815f9a573310d9be0bdeb845ae" 32 | 33 | "@angular/platform-browser-dynamic@^4.1.3": 34 | version "4.1.3" 35 | resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-4.1.3.tgz#3c13fdcf591d487f6efdc1d46913f280c6d8c2ec" 36 | 37 | "@angular/platform-browser@^4.1.3": 38 | version "4.1.3" 39 | resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-4.1.3.tgz#4fa1db5119dd178b315ddae5b329bee1a932a5bd" 40 | 41 | "@angular/platform-server@^4.1.3": 42 | version "4.1.3" 43 | resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-4.1.3.tgz#bbfae42b15730357751da0e145d686f925a94431" 44 | dependencies: 45 | parse5 "^3.0.1" 46 | xhr2 "^0.1.4" 47 | 48 | "@angular/tsc-wrapped@4.1.3": 49 | version "4.1.3" 50 | resolved "https://registry.yarnpkg.com/@angular/tsc-wrapped/-/tsc-wrapped-4.1.3.tgz#2d6372c9187bf1621eacd960b94b39c4f95293cd" 51 | dependencies: 52 | tsickle "^0.21.0" 53 | 54 | "@types/chai@^3.5.2": 55 | version "3.5.2" 56 | resolved "https://registry.yarnpkg.com/@types/chai/-/chai-3.5.2.tgz#c11cd2817d3a401b7ba0f5a420f35c56139b1c1e" 57 | 58 | "@types/chalk@^0.4.31": 59 | version "0.4.31" 60 | resolved "https://registry.yarnpkg.com/@types/chalk/-/chalk-0.4.31.tgz#a31d74241a6b1edbb973cf36d97a2896834a51f9" 61 | 62 | "@types/commander@2.9.0": 63 | version "2.9.0" 64 | resolved "https://registry.yarnpkg.com/@types/commander/-/commander-2.9.0.tgz#dd07af1fc35d76833e0da26ea67a2be088b5fafc" 65 | dependencies: 66 | "@types/node" "*" 67 | 68 | "@types/mocha@^2.2.41": 69 | version "2.2.41" 70 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-2.2.41.tgz#e27cf0817153eb9f2713b2d3f6c68f1e1c3ca608" 71 | 72 | "@types/node@*", "@types/node@^7.0.18": 73 | version "7.0.18" 74 | resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.18.tgz#cd67f27d3dc0cfb746f0bdd5e086c4c5d55be173" 75 | 76 | "@types/node@^6.0.46": 77 | version "6.0.73" 78 | resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.73.tgz#85dc4bb6f125377c75ddd2519a1eeb63f0a4ed70" 79 | 80 | "@types/sinon@^2.2.2": 81 | version "2.2.2" 82 | resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-2.2.2.tgz#a80da4868ba08accacbce4d37276f35e1ba0a52f" 83 | 84 | abab@^1.0.3: 85 | version "1.0.3" 86 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 87 | 88 | abbrev@1: 89 | version "1.1.0" 90 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 91 | 92 | acorn-dynamic-import@^2.0.0: 93 | version "2.0.2" 94 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 95 | dependencies: 96 | acorn "^4.0.3" 97 | 98 | acorn-globals@^3.1.0: 99 | version "3.1.0" 100 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 101 | dependencies: 102 | acorn "^4.0.4" 103 | 104 | acorn@^4.0.3, acorn@^4.0.4: 105 | version "4.0.11" 106 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 107 | 108 | acorn@^5.0.0: 109 | version "5.0.3" 110 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 111 | 112 | ajv-keywords@^1.1.1: 113 | version "1.5.1" 114 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 115 | 116 | ajv@^4.7.0, ajv@^4.9.1: 117 | version "4.11.8" 118 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 119 | dependencies: 120 | co "^4.6.0" 121 | json-stable-stringify "^1.0.1" 122 | 123 | ajv@^5.0.0: 124 | version "5.1.1" 125 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.1.1.tgz#6d9495b78eec4f2930536b2778ea40aa8645647a" 126 | dependencies: 127 | co "^4.6.0" 128 | json-stable-stringify "^1.0.1" 129 | 130 | align-text@^0.1.1, align-text@^0.1.3: 131 | version "0.1.4" 132 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 133 | dependencies: 134 | kind-of "^3.0.2" 135 | longest "^1.0.1" 136 | repeat-string "^1.5.2" 137 | 138 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 139 | version "1.0.2" 140 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 141 | 142 | amdefine@>=0.0.4: 143 | version "1.0.1" 144 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 145 | 146 | angular2-template-loader@^0.6.2: 147 | version "0.6.2" 148 | resolved "https://registry.yarnpkg.com/angular2-template-loader/-/angular2-template-loader-0.6.2.tgz#c0d44e90fff0fac95e8b23f043acda7fd1c51d7c" 149 | dependencies: 150 | loader-utils "^0.2.15" 151 | 152 | ansi-align@^2.0.0: 153 | version "2.0.0" 154 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 155 | dependencies: 156 | string-width "^2.0.0" 157 | 158 | ansi-regex@^2.0.0: 159 | version "2.1.1" 160 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 161 | 162 | ansi-styles@^2.2.1: 163 | version "2.2.1" 164 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 165 | 166 | anymatch@^1.3.0: 167 | version "1.3.0" 168 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 169 | dependencies: 170 | arrify "^1.0.0" 171 | micromatch "^2.1.5" 172 | 173 | append-transform@^0.4.0: 174 | version "0.4.0" 175 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 176 | dependencies: 177 | default-require-extensions "^1.0.0" 178 | 179 | aproba@^1.0.3: 180 | version "1.1.1" 181 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 182 | 183 | archy@^1.0.0: 184 | version "1.0.0" 185 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 186 | 187 | are-we-there-yet@~1.1.2: 188 | version "1.1.4" 189 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 190 | dependencies: 191 | delegates "^1.0.0" 192 | readable-stream "^2.0.6" 193 | 194 | argparse@^1.0.7: 195 | version "1.0.9" 196 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 197 | dependencies: 198 | sprintf-js "~1.0.2" 199 | 200 | arr-diff@^2.0.0: 201 | version "2.0.0" 202 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 203 | dependencies: 204 | arr-flatten "^1.0.1" 205 | 206 | arr-flatten@^1.0.1: 207 | version "1.0.3" 208 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 209 | 210 | array-equal@^1.0.0: 211 | version "1.0.0" 212 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 213 | 214 | array-unique@^0.2.1: 215 | version "0.2.1" 216 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 217 | 218 | arrify@^1.0.0, arrify@^1.0.1: 219 | version "1.0.1" 220 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 221 | 222 | asn1.js@^4.0.0: 223 | version "4.9.1" 224 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 225 | dependencies: 226 | bn.js "^4.0.0" 227 | inherits "^2.0.1" 228 | minimalistic-assert "^1.0.0" 229 | 230 | asn1@~0.2.3: 231 | version "0.2.3" 232 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 233 | 234 | assert-plus@1.0.0, assert-plus@^1.0.0: 235 | version "1.0.0" 236 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 237 | 238 | assert-plus@^0.2.0: 239 | version "0.2.0" 240 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 241 | 242 | assert@^1.1.1: 243 | version "1.4.1" 244 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 245 | dependencies: 246 | util "0.10.3" 247 | 248 | async-each@^1.0.0: 249 | version "1.0.1" 250 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 251 | 252 | async@^1.4.0: 253 | version "1.5.2" 254 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 255 | 256 | async@^2.1.2, async@^2.1.5: 257 | version "2.4.0" 258 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.0.tgz#4990200f18ea5b837c2cc4f8c031a6985c385611" 259 | dependencies: 260 | lodash "^4.14.0" 261 | 262 | asynckit@^0.4.0: 263 | version "0.4.0" 264 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 265 | 266 | autoprefixer@^6.3.1: 267 | version "6.7.7" 268 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" 269 | dependencies: 270 | browserslist "^1.7.6" 271 | caniuse-db "^1.0.30000634" 272 | normalize-range "^0.1.2" 273 | num2fraction "^1.2.2" 274 | postcss "^5.2.16" 275 | postcss-value-parser "^3.2.3" 276 | 277 | awesome-typescript-loader@^3.1.3: 278 | version "3.1.3" 279 | resolved "https://registry.yarnpkg.com/awesome-typescript-loader/-/awesome-typescript-loader-3.1.3.tgz#7eb41dfb136c2ea0e099bef038dc70c45f810223" 280 | dependencies: 281 | colors "^1.1.2" 282 | enhanced-resolve "^3.1.0" 283 | loader-utils "^1.1.0" 284 | lodash "^4.17.4" 285 | mkdirp "^0.5.1" 286 | object-assign "^4.1.1" 287 | source-map-support "^0.4.15" 288 | 289 | aws-sign2@~0.6.0: 290 | version "0.6.0" 291 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 292 | 293 | aws4@^1.2.1: 294 | version "1.6.0" 295 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 296 | 297 | babel-code-frame@^6.11.0, babel-code-frame@^6.20.0, babel-code-frame@^6.22.0: 298 | version "6.22.0" 299 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 300 | dependencies: 301 | chalk "^1.1.0" 302 | esutils "^2.0.2" 303 | js-tokens "^3.0.0" 304 | 305 | babel-generator@^6.18.0: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 308 | dependencies: 309 | babel-messages "^6.23.0" 310 | babel-runtime "^6.22.0" 311 | babel-types "^6.24.1" 312 | detect-indent "^4.0.0" 313 | jsesc "^1.3.0" 314 | lodash "^4.2.0" 315 | source-map "^0.5.0" 316 | trim-right "^1.0.1" 317 | 318 | babel-messages@^6.23.0: 319 | version "6.23.0" 320 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 321 | dependencies: 322 | babel-runtime "^6.22.0" 323 | 324 | babel-runtime@^6.22.0: 325 | version "6.23.0" 326 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 327 | dependencies: 328 | core-js "^2.4.0" 329 | regenerator-runtime "^0.10.0" 330 | 331 | babel-template@^6.16.0: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | babel-traverse "^6.24.1" 337 | babel-types "^6.24.1" 338 | babylon "^6.11.0" 339 | lodash "^4.2.0" 340 | 341 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 342 | version "6.24.1" 343 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 344 | dependencies: 345 | babel-code-frame "^6.22.0" 346 | babel-messages "^6.23.0" 347 | babel-runtime "^6.22.0" 348 | babel-types "^6.24.1" 349 | babylon "^6.15.0" 350 | debug "^2.2.0" 351 | globals "^9.0.0" 352 | invariant "^2.2.0" 353 | lodash "^4.2.0" 354 | 355 | babel-types@^6.18.0, babel-types@^6.24.1: 356 | version "6.24.1" 357 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 358 | dependencies: 359 | babel-runtime "^6.22.0" 360 | esutils "^2.0.2" 361 | lodash "^4.2.0" 362 | to-fast-properties "^1.0.1" 363 | 364 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 365 | version "6.17.1" 366 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.1.tgz#17f14fddf361b695981fe679385e4f1c01ebd86f" 367 | 368 | balanced-match@^0.4.1, balanced-match@^0.4.2: 369 | version "0.4.2" 370 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 371 | 372 | base64-js@^1.0.2: 373 | version "1.2.0" 374 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 375 | 376 | bcrypt-pbkdf@^1.0.0: 377 | version "1.0.1" 378 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 379 | dependencies: 380 | tweetnacl "^0.14.3" 381 | 382 | big.js@^3.1.3: 383 | version "3.1.3" 384 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 385 | 386 | binary-extensions@^1.0.0: 387 | version "1.8.0" 388 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 389 | 390 | block-stream@*: 391 | version "0.0.9" 392 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 393 | dependencies: 394 | inherits "~2.0.0" 395 | 396 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 397 | version "4.11.6" 398 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 399 | 400 | boom@2.x.x: 401 | version "2.10.1" 402 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 403 | dependencies: 404 | hoek "2.x.x" 405 | 406 | boxen@^1.0.0: 407 | version "1.1.0" 408 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.1.0.tgz#b1b69dd522305e807a99deee777dbd6e5167b102" 409 | dependencies: 410 | ansi-align "^2.0.0" 411 | camelcase "^4.0.0" 412 | chalk "^1.1.1" 413 | cli-boxes "^1.0.0" 414 | string-width "^2.0.0" 415 | term-size "^0.1.0" 416 | widest-line "^1.0.0" 417 | 418 | brace-expansion@^1.1.7: 419 | version "1.1.7" 420 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 421 | dependencies: 422 | balanced-match "^0.4.1" 423 | concat-map "0.0.1" 424 | 425 | braces@^1.8.2: 426 | version "1.8.5" 427 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 428 | dependencies: 429 | expand-range "^1.8.1" 430 | preserve "^0.2.0" 431 | repeat-element "^1.1.2" 432 | 433 | brorand@^1.0.1: 434 | version "1.1.0" 435 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 436 | 437 | browser-stdout@1.3.0: 438 | version "1.3.0" 439 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 440 | 441 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 442 | version "1.0.6" 443 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 444 | dependencies: 445 | buffer-xor "^1.0.2" 446 | cipher-base "^1.0.0" 447 | create-hash "^1.1.0" 448 | evp_bytestokey "^1.0.0" 449 | inherits "^2.0.1" 450 | 451 | browserify-cipher@^1.0.0: 452 | version "1.0.0" 453 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 454 | dependencies: 455 | browserify-aes "^1.0.4" 456 | browserify-des "^1.0.0" 457 | evp_bytestokey "^1.0.0" 458 | 459 | browserify-des@^1.0.0: 460 | version "1.0.0" 461 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 462 | dependencies: 463 | cipher-base "^1.0.1" 464 | des.js "^1.0.0" 465 | inherits "^2.0.1" 466 | 467 | browserify-rsa@^4.0.0: 468 | version "4.0.1" 469 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 470 | dependencies: 471 | bn.js "^4.1.0" 472 | randombytes "^2.0.1" 473 | 474 | browserify-sign@^4.0.0: 475 | version "4.0.4" 476 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 477 | dependencies: 478 | bn.js "^4.1.1" 479 | browserify-rsa "^4.0.0" 480 | create-hash "^1.1.0" 481 | create-hmac "^1.1.2" 482 | elliptic "^6.0.0" 483 | inherits "^2.0.1" 484 | parse-asn1 "^5.0.0" 485 | 486 | browserify-zlib@^0.1.4: 487 | version "0.1.4" 488 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 489 | dependencies: 490 | pako "~0.2.0" 491 | 492 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: 493 | version "1.7.7" 494 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 495 | dependencies: 496 | caniuse-db "^1.0.30000639" 497 | electron-to-chromium "^1.2.7" 498 | 499 | buffer-shims@~1.0.0: 500 | version "1.0.0" 501 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 502 | 503 | buffer-xor@^1.0.2: 504 | version "1.0.3" 505 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 506 | 507 | buffer@^4.3.0: 508 | version "4.9.1" 509 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 510 | dependencies: 511 | base64-js "^1.0.2" 512 | ieee754 "^1.1.4" 513 | isarray "^1.0.0" 514 | 515 | builtin-modules@^1.0.0: 516 | version "1.1.1" 517 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 518 | 519 | builtin-status-codes@^3.0.0: 520 | version "3.0.0" 521 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 522 | 523 | caching-transform@^1.0.0: 524 | version "1.0.1" 525 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 526 | dependencies: 527 | md5-hex "^1.2.0" 528 | mkdirp "^0.5.1" 529 | write-file-atomic "^1.1.4" 530 | 531 | camelcase@^1.0.2: 532 | version "1.2.1" 533 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 534 | 535 | camelcase@^3.0.0: 536 | version "3.0.0" 537 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 538 | 539 | camelcase@^4.0.0: 540 | version "4.1.0" 541 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 542 | 543 | caniuse-api@^1.5.2: 544 | version "1.6.1" 545 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" 546 | dependencies: 547 | browserslist "^1.3.6" 548 | caniuse-db "^1.0.30000529" 549 | lodash.memoize "^4.1.2" 550 | lodash.uniq "^4.5.0" 551 | 552 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: 553 | version "1.0.30000670" 554 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000670.tgz#90d33b79e3090e25829c311113c56d6b1788bf43" 555 | 556 | capture-stack-trace@^1.0.0: 557 | version "1.0.0" 558 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 559 | 560 | caseless@~0.12.0: 561 | version "0.12.0" 562 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 563 | 564 | center-align@^0.1.1: 565 | version "0.1.3" 566 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 567 | dependencies: 568 | align-text "^0.1.3" 569 | lazy-cache "^1.0.3" 570 | 571 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 572 | version "1.1.3" 573 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 574 | dependencies: 575 | ansi-styles "^2.2.1" 576 | escape-string-regexp "^1.0.2" 577 | has-ansi "^2.0.0" 578 | strip-ansi "^3.0.0" 579 | supports-color "^2.0.0" 580 | 581 | chokidar@^1.4.3: 582 | version "1.7.0" 583 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 584 | dependencies: 585 | anymatch "^1.3.0" 586 | async-each "^1.0.0" 587 | glob-parent "^2.0.0" 588 | inherits "^2.0.1" 589 | is-binary-path "^1.0.0" 590 | is-glob "^2.0.0" 591 | path-is-absolute "^1.0.0" 592 | readdirp "^2.0.0" 593 | optionalDependencies: 594 | fsevents "^1.0.0" 595 | 596 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 597 | version "1.0.3" 598 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 599 | dependencies: 600 | inherits "^2.0.1" 601 | 602 | clap@^1.0.9: 603 | version "1.1.3" 604 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.1.3.tgz#b3bd36e93dd4cbfb395a3c26896352445265c05b" 605 | dependencies: 606 | chalk "^1.1.3" 607 | 608 | cli-boxes@^1.0.0: 609 | version "1.0.0" 610 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 611 | 612 | cliui@^2.1.0: 613 | version "2.1.0" 614 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 615 | dependencies: 616 | center-align "^0.1.1" 617 | right-align "^0.1.1" 618 | wordwrap "0.0.2" 619 | 620 | cliui@^3.2.0: 621 | version "3.2.0" 622 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 623 | dependencies: 624 | string-width "^1.0.1" 625 | strip-ansi "^3.0.1" 626 | wrap-ansi "^2.0.0" 627 | 628 | clone-deep@^0.2.4: 629 | version "0.2.4" 630 | resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6" 631 | dependencies: 632 | for-own "^0.1.3" 633 | is-plain-object "^2.0.1" 634 | kind-of "^3.0.2" 635 | lazy-cache "^1.0.3" 636 | shallow-clone "^0.1.2" 637 | 638 | clone@^1.0.2: 639 | version "1.0.2" 640 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 641 | 642 | co@^4.6.0: 643 | version "4.6.0" 644 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 645 | 646 | coa@~1.0.1: 647 | version "1.0.1" 648 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.1.tgz#7f959346cfc8719e3f7233cd6852854a7c67d8a3" 649 | dependencies: 650 | q "^1.1.2" 651 | 652 | code-point-at@^1.0.0: 653 | version "1.1.0" 654 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 655 | 656 | color-convert@^1.3.0: 657 | version "1.9.0" 658 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 659 | dependencies: 660 | color-name "^1.1.1" 661 | 662 | color-name@^1.0.0, color-name@^1.1.1: 663 | version "1.1.2" 664 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 665 | 666 | color-string@^0.3.0: 667 | version "0.3.0" 668 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 669 | dependencies: 670 | color-name "^1.0.0" 671 | 672 | color@^0.11.0: 673 | version "0.11.4" 674 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 675 | dependencies: 676 | clone "^1.0.2" 677 | color-convert "^1.3.0" 678 | color-string "^0.3.0" 679 | 680 | colormin@^1.0.5: 681 | version "1.1.2" 682 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 683 | dependencies: 684 | color "^0.11.0" 685 | css-color-names "0.0.4" 686 | has "^1.0.1" 687 | 688 | colors@^1.1.2, colors@~1.1.2: 689 | version "1.1.2" 690 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 691 | 692 | combined-stream@^1.0.5, combined-stream@~1.0.5: 693 | version "1.0.5" 694 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 695 | dependencies: 696 | delayed-stream "~1.0.0" 697 | 698 | commander@2.9.0: 699 | version "2.9.0" 700 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 701 | dependencies: 702 | graceful-readlink ">= 1.0.0" 703 | 704 | commondir@^1.0.1: 705 | version "1.0.1" 706 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 707 | 708 | concat-map@0.0.1: 709 | version "0.0.1" 710 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 711 | 712 | configstore@^3.0.0: 713 | version "3.1.0" 714 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.0.tgz#45df907073e26dfa1cf4b2d52f5b60545eaa11d1" 715 | dependencies: 716 | dot-prop "^4.1.0" 717 | graceful-fs "^4.1.2" 718 | make-dir "^1.0.0" 719 | unique-string "^1.0.0" 720 | write-file-atomic "^2.0.0" 721 | xdg-basedir "^3.0.0" 722 | 723 | console-browserify@^1.1.0: 724 | version "1.1.0" 725 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 726 | dependencies: 727 | date-now "^0.1.4" 728 | 729 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 730 | version "1.1.0" 731 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 732 | 733 | constants-browserify@^1.0.0: 734 | version "1.0.0" 735 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 736 | 737 | content-type-parser@^1.0.1: 738 | version "1.0.1" 739 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 740 | 741 | convert-source-map@^1.3.0: 742 | version "1.5.0" 743 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 744 | 745 | core-js@^2.4.0, core-js@^2.4.1: 746 | version "2.4.1" 747 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 748 | 749 | core-util-is@~1.0.0: 750 | version "1.0.2" 751 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 752 | 753 | cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: 754 | version "2.1.3" 755 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.1.3.tgz#952771eb0dddc1cb3fa2f6fbe51a522e93b3ee0a" 756 | dependencies: 757 | is-directory "^0.3.1" 758 | js-yaml "^3.4.3" 759 | minimist "^1.2.0" 760 | object-assign "^4.1.0" 761 | os-homedir "^1.0.1" 762 | parse-json "^2.2.0" 763 | require-from-string "^1.1.0" 764 | 765 | create-ecdh@^4.0.0: 766 | version "4.0.0" 767 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 768 | dependencies: 769 | bn.js "^4.1.0" 770 | elliptic "^6.0.0" 771 | 772 | create-error-class@^3.0.0: 773 | version "3.0.2" 774 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 775 | dependencies: 776 | capture-stack-trace "^1.0.0" 777 | 778 | create-hash@^1.1.0, create-hash@^1.1.1, create-hash@^1.1.2: 779 | version "1.1.3" 780 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 781 | dependencies: 782 | cipher-base "^1.0.1" 783 | inherits "^2.0.1" 784 | ripemd160 "^2.0.0" 785 | sha.js "^2.4.0" 786 | 787 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 788 | version "1.1.6" 789 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 790 | dependencies: 791 | cipher-base "^1.0.3" 792 | create-hash "^1.1.0" 793 | inherits "^2.0.1" 794 | ripemd160 "^2.0.0" 795 | safe-buffer "^5.0.1" 796 | sha.js "^2.4.8" 797 | 798 | cross-spawn-async@^2.1.1: 799 | version "2.2.5" 800 | resolved "https://registry.yarnpkg.com/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz#845ff0c0834a3ded9d160daca6d390906bb288cc" 801 | dependencies: 802 | lru-cache "^4.0.0" 803 | which "^1.2.8" 804 | 805 | cross-spawn@^4: 806 | version "4.0.2" 807 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 808 | dependencies: 809 | lru-cache "^4.0.1" 810 | which "^1.2.9" 811 | 812 | cryptiles@2.x.x: 813 | version "2.0.5" 814 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 815 | dependencies: 816 | boom "2.x.x" 817 | 818 | crypto-browserify@^3.11.0: 819 | version "3.11.0" 820 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 821 | dependencies: 822 | browserify-cipher "^1.0.0" 823 | browserify-sign "^4.0.0" 824 | create-ecdh "^4.0.0" 825 | create-hash "^1.1.0" 826 | create-hmac "^1.1.0" 827 | diffie-hellman "^5.0.0" 828 | inherits "^2.0.1" 829 | pbkdf2 "^3.0.3" 830 | public-encrypt "^4.0.0" 831 | randombytes "^2.0.0" 832 | 833 | crypto-random-string@^1.0.0: 834 | version "1.0.0" 835 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 836 | 837 | css-color-names@0.0.4: 838 | version "0.0.4" 839 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 840 | 841 | css-loader@^0.28.1: 842 | version "0.28.1" 843 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.1.tgz#220325599f8f00452d9ceb4c3ca6c8a66798642d" 844 | dependencies: 845 | babel-code-frame "^6.11.0" 846 | css-selector-tokenizer "^0.7.0" 847 | cssnano ">=2.6.1 <4" 848 | loader-utils "^1.0.2" 849 | lodash.camelcase "^4.3.0" 850 | object-assign "^4.0.1" 851 | postcss "^5.0.6" 852 | postcss-modules-extract-imports "^1.0.0" 853 | postcss-modules-local-by-default "^1.0.1" 854 | postcss-modules-scope "^1.0.0" 855 | postcss-modules-values "^1.1.0" 856 | postcss-value-parser "^3.3.0" 857 | source-list-map "^0.1.7" 858 | 859 | css-selector-tokenizer@^0.6.0: 860 | version "0.6.0" 861 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.6.0.tgz#6445f582c7930d241dcc5007a43d6fcb8f073152" 862 | dependencies: 863 | cssesc "^0.1.0" 864 | fastparse "^1.1.1" 865 | regexpu-core "^1.0.0" 866 | 867 | css-selector-tokenizer@^0.7.0: 868 | version "0.7.0" 869 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 870 | dependencies: 871 | cssesc "^0.1.0" 872 | fastparse "^1.1.1" 873 | regexpu-core "^1.0.0" 874 | 875 | cssesc@^0.1.0: 876 | version "0.1.0" 877 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 878 | 879 | "cssnano@>=2.6.1 <4": 880 | version "3.10.0" 881 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 882 | dependencies: 883 | autoprefixer "^6.3.1" 884 | decamelize "^1.1.2" 885 | defined "^1.0.0" 886 | has "^1.0.1" 887 | object-assign "^4.0.1" 888 | postcss "^5.0.14" 889 | postcss-calc "^5.2.0" 890 | postcss-colormin "^2.1.8" 891 | postcss-convert-values "^2.3.4" 892 | postcss-discard-comments "^2.0.4" 893 | postcss-discard-duplicates "^2.0.1" 894 | postcss-discard-empty "^2.0.1" 895 | postcss-discard-overridden "^0.1.1" 896 | postcss-discard-unused "^2.2.1" 897 | postcss-filter-plugins "^2.0.0" 898 | postcss-merge-idents "^2.1.5" 899 | postcss-merge-longhand "^2.0.1" 900 | postcss-merge-rules "^2.0.3" 901 | postcss-minify-font-values "^1.0.2" 902 | postcss-minify-gradients "^1.0.1" 903 | postcss-minify-params "^1.0.4" 904 | postcss-minify-selectors "^2.0.4" 905 | postcss-normalize-charset "^1.1.0" 906 | postcss-normalize-url "^3.0.7" 907 | postcss-ordered-values "^2.1.0" 908 | postcss-reduce-idents "^2.2.2" 909 | postcss-reduce-initial "^1.0.0" 910 | postcss-reduce-transforms "^1.0.3" 911 | postcss-svgo "^2.1.1" 912 | postcss-unique-selectors "^2.0.2" 913 | postcss-value-parser "^3.2.3" 914 | postcss-zindex "^2.0.1" 915 | 916 | csso@~2.3.1: 917 | version "2.3.2" 918 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" 919 | dependencies: 920 | clap "^1.0.9" 921 | source-map "^0.5.3" 922 | 923 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 924 | version "0.3.2" 925 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 926 | 927 | "cssstyle@>= 0.2.37 < 0.3.0": 928 | version "0.2.37" 929 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 930 | dependencies: 931 | cssom "0.3.x" 932 | 933 | dashdash@^1.12.0: 934 | version "1.14.1" 935 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 936 | dependencies: 937 | assert-plus "^1.0.0" 938 | 939 | date-now@^0.1.4: 940 | version "0.1.4" 941 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 942 | 943 | debug-log@^1.0.1: 944 | version "1.0.1" 945 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 946 | 947 | debug@2.6.0: 948 | version "2.6.0" 949 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" 950 | dependencies: 951 | ms "0.7.2" 952 | 953 | debug@^2.2.0, debug@^2.6.3: 954 | version "2.6.8" 955 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 956 | dependencies: 957 | ms "2.0.0" 958 | 959 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 960 | version "1.2.0" 961 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 962 | 963 | deep-extend@~0.4.0: 964 | version "0.4.2" 965 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 966 | 967 | deep-is@~0.1.3: 968 | version "0.1.3" 969 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 970 | 971 | default-require-extensions@^1.0.0: 972 | version "1.0.0" 973 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 974 | dependencies: 975 | strip-bom "^2.0.0" 976 | 977 | defined@^1.0.0: 978 | version "1.0.0" 979 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 980 | 981 | delayed-stream@~1.0.0: 982 | version "1.0.0" 983 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 984 | 985 | delegates@^1.0.0: 986 | version "1.0.0" 987 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 988 | 989 | des.js@^1.0.0: 990 | version "1.0.0" 991 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 992 | dependencies: 993 | inherits "^2.0.1" 994 | minimalistic-assert "^1.0.0" 995 | 996 | detect-indent@^4.0.0: 997 | version "4.0.0" 998 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 999 | dependencies: 1000 | repeating "^2.0.0" 1001 | 1002 | diff@3.2.0, diff@^3.0.1: 1003 | version "3.2.0" 1004 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 1005 | 1006 | diffie-hellman@^5.0.0: 1007 | version "5.0.2" 1008 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1009 | dependencies: 1010 | bn.js "^4.1.0" 1011 | miller-rabin "^4.0.0" 1012 | randombytes "^2.0.0" 1013 | 1014 | domain-browser@^1.1.1: 1015 | version "1.1.7" 1016 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1017 | 1018 | dot-prop@^4.1.0: 1019 | version "4.1.1" 1020 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" 1021 | dependencies: 1022 | is-obj "^1.0.0" 1023 | 1024 | duplexer3@^0.1.4: 1025 | version "0.1.4" 1026 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1027 | 1028 | ecc-jsbn@~0.1.1: 1029 | version "0.1.1" 1030 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1031 | dependencies: 1032 | jsbn "~0.1.0" 1033 | 1034 | electron-to-chromium@^1.2.7: 1035 | version "1.3.11" 1036 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.11.tgz#744761df1d67b492b322ce9aa0aba5393260eb61" 1037 | 1038 | elliptic@^6.0.0: 1039 | version "6.4.0" 1040 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1041 | dependencies: 1042 | bn.js "^4.4.0" 1043 | brorand "^1.0.1" 1044 | hash.js "^1.0.0" 1045 | hmac-drbg "^1.0.0" 1046 | inherits "^2.0.1" 1047 | minimalistic-assert "^1.0.0" 1048 | minimalistic-crypto-utils "^1.0.0" 1049 | 1050 | emojis-list@^2.0.0: 1051 | version "2.1.0" 1052 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1053 | 1054 | enhanced-resolve@^3.0.0, enhanced-resolve@^3.1.0: 1055 | version "3.1.0" 1056 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec" 1057 | dependencies: 1058 | graceful-fs "^4.1.2" 1059 | memory-fs "^0.4.0" 1060 | object-assign "^4.0.1" 1061 | tapable "^0.2.5" 1062 | 1063 | errno@^0.1.3: 1064 | version "0.1.4" 1065 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1066 | dependencies: 1067 | prr "~0.0.0" 1068 | 1069 | error-ex@^1.2.0: 1070 | version "1.3.1" 1071 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1072 | dependencies: 1073 | is-arrayish "^0.2.1" 1074 | 1075 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 1076 | version "1.0.5" 1077 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1078 | 1079 | escodegen@^1.6.1: 1080 | version "1.8.1" 1081 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1082 | dependencies: 1083 | esprima "^2.7.1" 1084 | estraverse "^1.9.1" 1085 | esutils "^2.0.2" 1086 | optionator "^0.8.1" 1087 | optionalDependencies: 1088 | source-map "~0.2.0" 1089 | 1090 | esprima@^2.6.0, esprima@^2.7.1: 1091 | version "2.7.3" 1092 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1093 | 1094 | esprima@^3.1.1: 1095 | version "3.1.3" 1096 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1097 | 1098 | estraverse@^1.9.1: 1099 | version "1.9.3" 1100 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1101 | 1102 | esutils@^2.0.2: 1103 | version "2.0.2" 1104 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1105 | 1106 | events@^1.0.0: 1107 | version "1.1.1" 1108 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1109 | 1110 | evp_bytestokey@^1.0.0: 1111 | version "1.0.0" 1112 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1113 | dependencies: 1114 | create-hash "^1.1.1" 1115 | 1116 | execa@^0.4.0: 1117 | version "0.4.0" 1118 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.4.0.tgz#4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3" 1119 | dependencies: 1120 | cross-spawn-async "^2.1.1" 1121 | is-stream "^1.1.0" 1122 | npm-run-path "^1.0.0" 1123 | object-assign "^4.0.1" 1124 | path-key "^1.0.0" 1125 | strip-eof "^1.0.0" 1126 | 1127 | expand-brackets@^0.1.4: 1128 | version "0.1.5" 1129 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1130 | dependencies: 1131 | is-posix-bracket "^0.1.0" 1132 | 1133 | expand-range@^1.8.1: 1134 | version "1.8.2" 1135 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1136 | dependencies: 1137 | fill-range "^2.1.0" 1138 | 1139 | extend@~3.0.0: 1140 | version "3.0.1" 1141 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1142 | 1143 | extglob@^0.3.1: 1144 | version "0.3.2" 1145 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1146 | dependencies: 1147 | is-extglob "^1.0.0" 1148 | 1149 | extsprintf@1.0.2: 1150 | version "1.0.2" 1151 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1152 | 1153 | fast-levenshtein@~2.0.4: 1154 | version "2.0.6" 1155 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1156 | 1157 | fastparse@^1.1.1: 1158 | version "1.1.1" 1159 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1160 | 1161 | filename-regex@^2.0.0: 1162 | version "2.0.1" 1163 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1164 | 1165 | fill-range@^2.1.0: 1166 | version "2.2.3" 1167 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1168 | dependencies: 1169 | is-number "^2.1.0" 1170 | isobject "^2.0.0" 1171 | randomatic "^1.1.3" 1172 | repeat-element "^1.1.2" 1173 | repeat-string "^1.5.2" 1174 | 1175 | find-cache-dir@^0.1.1: 1176 | version "0.1.1" 1177 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1178 | dependencies: 1179 | commondir "^1.0.1" 1180 | mkdirp "^0.5.1" 1181 | pkg-dir "^1.0.0" 1182 | 1183 | find-up@^1.0.0, find-up@^1.1.2: 1184 | version "1.1.2" 1185 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1186 | dependencies: 1187 | path-exists "^2.0.0" 1188 | pinkie-promise "^2.0.0" 1189 | 1190 | findup-sync@~0.3.0: 1191 | version "0.3.0" 1192 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.3.0.tgz#37930aa5d816b777c03445e1966cc6790a4c0b16" 1193 | dependencies: 1194 | glob "~5.0.0" 1195 | 1196 | flatten@^1.0.2: 1197 | version "1.0.2" 1198 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1199 | 1200 | for-in@^0.1.3: 1201 | version "0.1.8" 1202 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" 1203 | 1204 | for-in@^1.0.1: 1205 | version "1.0.2" 1206 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1207 | 1208 | for-own@^0.1.3, for-own@^0.1.4: 1209 | version "0.1.5" 1210 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1211 | dependencies: 1212 | for-in "^1.0.1" 1213 | 1214 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1215 | version "1.5.6" 1216 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1217 | dependencies: 1218 | cross-spawn "^4" 1219 | signal-exit "^3.0.0" 1220 | 1221 | forever-agent@~0.6.1: 1222 | version "0.6.1" 1223 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1224 | 1225 | form-data@~2.1.1: 1226 | version "2.1.4" 1227 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1228 | dependencies: 1229 | asynckit "^0.4.0" 1230 | combined-stream "^1.0.5" 1231 | mime-types "^2.1.12" 1232 | 1233 | fs-extra@^0.30.0: 1234 | version "0.30.0" 1235 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 1236 | dependencies: 1237 | graceful-fs "^4.1.2" 1238 | jsonfile "^2.1.0" 1239 | klaw "^1.0.0" 1240 | path-is-absolute "^1.0.0" 1241 | rimraf "^2.2.8" 1242 | 1243 | fs-extra@^3.0.1: 1244 | version "3.0.1" 1245 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" 1246 | dependencies: 1247 | graceful-fs "^4.1.2" 1248 | jsonfile "^3.0.0" 1249 | universalify "^0.1.0" 1250 | 1251 | fs.realpath@^1.0.0: 1252 | version "1.0.0" 1253 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1254 | 1255 | fsevents@^1.0.0: 1256 | version "1.1.1" 1257 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1258 | dependencies: 1259 | nan "^2.3.0" 1260 | node-pre-gyp "^0.6.29" 1261 | 1262 | fstream-ignore@^1.0.5: 1263 | version "1.0.5" 1264 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1265 | dependencies: 1266 | fstream "^1.0.0" 1267 | inherits "2" 1268 | minimatch "^3.0.0" 1269 | 1270 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1271 | version "1.0.11" 1272 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1273 | dependencies: 1274 | graceful-fs "^4.1.2" 1275 | inherits "~2.0.0" 1276 | mkdirp ">=0.5 0" 1277 | rimraf "2" 1278 | 1279 | function-bind@^1.0.2: 1280 | version "1.1.0" 1281 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1282 | 1283 | gauge@~2.7.3: 1284 | version "2.7.4" 1285 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1286 | dependencies: 1287 | aproba "^1.0.3" 1288 | console-control-strings "^1.0.0" 1289 | has-unicode "^2.0.0" 1290 | object-assign "^4.1.0" 1291 | signal-exit "^3.0.0" 1292 | string-width "^1.0.1" 1293 | strip-ansi "^3.0.1" 1294 | wide-align "^1.1.0" 1295 | 1296 | get-caller-file@^1.0.1: 1297 | version "1.0.2" 1298 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1299 | 1300 | get-stream@^3.0.0: 1301 | version "3.0.0" 1302 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1303 | 1304 | getpass@^0.1.1: 1305 | version "0.1.7" 1306 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1307 | dependencies: 1308 | assert-plus "^1.0.0" 1309 | 1310 | glob-base@^0.3.0: 1311 | version "0.3.0" 1312 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1313 | dependencies: 1314 | glob-parent "^2.0.0" 1315 | is-glob "^2.0.0" 1316 | 1317 | glob-parent@^2.0.0: 1318 | version "2.0.0" 1319 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1320 | dependencies: 1321 | is-glob "^2.0.0" 1322 | 1323 | glob@7.1.1, glob@^7.0.5, glob@^7.0.6, glob@^7.1.1: 1324 | version "7.1.1" 1325 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1326 | dependencies: 1327 | fs.realpath "^1.0.0" 1328 | inflight "^1.0.4" 1329 | inherits "2" 1330 | minimatch "^3.0.2" 1331 | once "^1.3.0" 1332 | path-is-absolute "^1.0.0" 1333 | 1334 | glob@~5.0.0: 1335 | version "5.0.15" 1336 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1337 | dependencies: 1338 | inflight "^1.0.4" 1339 | inherits "2" 1340 | minimatch "2 || 3" 1341 | once "^1.3.0" 1342 | path-is-absolute "^1.0.0" 1343 | 1344 | globals@^9.0.0: 1345 | version "9.17.0" 1346 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1347 | 1348 | got@^6.7.1: 1349 | version "6.7.1" 1350 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1351 | dependencies: 1352 | create-error-class "^3.0.0" 1353 | duplexer3 "^0.1.4" 1354 | get-stream "^3.0.0" 1355 | is-redirect "^1.0.0" 1356 | is-retry-allowed "^1.0.0" 1357 | is-stream "^1.0.0" 1358 | lowercase-keys "^1.0.0" 1359 | safe-buffer "^5.0.1" 1360 | timed-out "^4.0.0" 1361 | unzip-response "^2.0.1" 1362 | url-parse-lax "^1.0.0" 1363 | 1364 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1365 | version "4.1.11" 1366 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1367 | 1368 | "graceful-readlink@>= 1.0.0": 1369 | version "1.0.1" 1370 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1371 | 1372 | growl@1.9.2: 1373 | version "1.9.2" 1374 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1375 | 1376 | handlebars@^4.0.3: 1377 | version "4.0.10" 1378 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1379 | dependencies: 1380 | async "^1.4.0" 1381 | optimist "^0.6.1" 1382 | source-map "^0.4.4" 1383 | optionalDependencies: 1384 | uglify-js "^2.6" 1385 | 1386 | har-schema@^1.0.5: 1387 | version "1.0.5" 1388 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1389 | 1390 | har-validator@~4.2.1: 1391 | version "4.2.1" 1392 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1393 | dependencies: 1394 | ajv "^4.9.1" 1395 | har-schema "^1.0.5" 1396 | 1397 | has-ansi@^2.0.0: 1398 | version "2.0.0" 1399 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1400 | dependencies: 1401 | ansi-regex "^2.0.0" 1402 | 1403 | has-flag@^1.0.0: 1404 | version "1.0.0" 1405 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1406 | 1407 | has-unicode@^2.0.0: 1408 | version "2.0.1" 1409 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1410 | 1411 | has@^1.0.1: 1412 | version "1.0.1" 1413 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1414 | dependencies: 1415 | function-bind "^1.0.2" 1416 | 1417 | hash-base@^2.0.0: 1418 | version "2.0.2" 1419 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1420 | dependencies: 1421 | inherits "^2.0.1" 1422 | 1423 | hash.js@^1.0.0, hash.js@^1.0.3: 1424 | version "1.0.3" 1425 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1426 | dependencies: 1427 | inherits "^2.0.1" 1428 | 1429 | hawk@~3.1.3: 1430 | version "3.1.3" 1431 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1432 | dependencies: 1433 | boom "2.x.x" 1434 | cryptiles "2.x.x" 1435 | hoek "2.x.x" 1436 | sntp "1.x.x" 1437 | 1438 | hmac-drbg@^1.0.0: 1439 | version "1.0.1" 1440 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1441 | dependencies: 1442 | hash.js "^1.0.3" 1443 | minimalistic-assert "^1.0.0" 1444 | minimalistic-crypto-utils "^1.0.1" 1445 | 1446 | hoek@2.x.x: 1447 | version "2.16.3" 1448 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1449 | 1450 | hosted-git-info@^2.1.4: 1451 | version "2.4.2" 1452 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1453 | 1454 | html-comment-regex@^1.1.0: 1455 | version "1.1.1" 1456 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 1457 | 1458 | html-encoding-sniffer@^1.0.1: 1459 | version "1.0.1" 1460 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1461 | dependencies: 1462 | whatwg-encoding "^1.0.1" 1463 | 1464 | http-signature@~1.1.0: 1465 | version "1.1.1" 1466 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1467 | dependencies: 1468 | assert-plus "^0.2.0" 1469 | jsprim "^1.2.2" 1470 | sshpk "^1.7.0" 1471 | 1472 | https-browserify@0.0.1: 1473 | version "0.0.1" 1474 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1475 | 1476 | iconv-lite@0.4.13: 1477 | version "0.4.13" 1478 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1479 | 1480 | icss-replace-symbols@^1.0.2: 1481 | version "1.0.2" 1482 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.0.2.tgz#cb0b6054eb3af6edc9ab1d62d01933e2d4c8bfa5" 1483 | 1484 | ieee754@^1.1.4: 1485 | version "1.1.8" 1486 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1487 | 1488 | imurmurhash@^0.1.4: 1489 | version "0.1.4" 1490 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1491 | 1492 | indexes-of@^1.0.1: 1493 | version "1.0.1" 1494 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1495 | 1496 | indexof@0.0.1: 1497 | version "0.0.1" 1498 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1499 | 1500 | inflight@^1.0.4: 1501 | version "1.0.6" 1502 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1503 | dependencies: 1504 | once "^1.3.0" 1505 | wrappy "1" 1506 | 1507 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1508 | version "2.0.3" 1509 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1510 | 1511 | inherits@2.0.1: 1512 | version "2.0.1" 1513 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1514 | 1515 | ini@~1.3.0: 1516 | version "1.3.4" 1517 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1518 | 1519 | interpret@^1.0.0, interpret@^1.0.1: 1520 | version "1.0.3" 1521 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1522 | 1523 | invariant@^2.2.0: 1524 | version "2.2.2" 1525 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1526 | dependencies: 1527 | loose-envify "^1.0.0" 1528 | 1529 | invert-kv@^1.0.0: 1530 | version "1.0.0" 1531 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1532 | 1533 | is-absolute-url@^2.0.0: 1534 | version "2.1.0" 1535 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 1536 | 1537 | is-arrayish@^0.2.1: 1538 | version "0.2.1" 1539 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1540 | 1541 | is-binary-path@^1.0.0: 1542 | version "1.0.1" 1543 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1544 | dependencies: 1545 | binary-extensions "^1.0.0" 1546 | 1547 | is-buffer@^1.0.2, is-buffer@^1.1.5: 1548 | version "1.1.5" 1549 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1550 | 1551 | is-builtin-module@^1.0.0: 1552 | version "1.0.0" 1553 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1554 | dependencies: 1555 | builtin-modules "^1.0.0" 1556 | 1557 | is-directory@^0.3.1: 1558 | version "0.3.1" 1559 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1560 | 1561 | is-dotfile@^1.0.0: 1562 | version "1.0.2" 1563 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1564 | 1565 | is-equal-shallow@^0.1.3: 1566 | version "0.1.3" 1567 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1568 | dependencies: 1569 | is-primitive "^2.0.0" 1570 | 1571 | is-extendable@^0.1.1: 1572 | version "0.1.1" 1573 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1574 | 1575 | is-extglob@^1.0.0: 1576 | version "1.0.0" 1577 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1578 | 1579 | is-finite@^1.0.0: 1580 | version "1.0.2" 1581 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1582 | dependencies: 1583 | number-is-nan "^1.0.0" 1584 | 1585 | is-fullwidth-code-point@^1.0.0: 1586 | version "1.0.0" 1587 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1588 | dependencies: 1589 | number-is-nan "^1.0.0" 1590 | 1591 | is-fullwidth-code-point@^2.0.0: 1592 | version "2.0.0" 1593 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1594 | 1595 | is-glob@^2.0.0, is-glob@^2.0.1: 1596 | version "2.0.1" 1597 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1598 | dependencies: 1599 | is-extglob "^1.0.0" 1600 | 1601 | is-npm@^1.0.0: 1602 | version "1.0.0" 1603 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1604 | 1605 | is-number@^2.0.2, is-number@^2.1.0: 1606 | version "2.1.0" 1607 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1608 | dependencies: 1609 | kind-of "^3.0.2" 1610 | 1611 | is-obj@^1.0.0: 1612 | version "1.0.1" 1613 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1614 | 1615 | is-plain-obj@^1.0.0: 1616 | version "1.1.0" 1617 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1618 | 1619 | is-plain-object@^2.0.1: 1620 | version "2.0.1" 1621 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.1.tgz#4d7ca539bc9db9b737b8acb612f2318ef92f294f" 1622 | dependencies: 1623 | isobject "^1.0.0" 1624 | 1625 | is-posix-bracket@^0.1.0: 1626 | version "0.1.1" 1627 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1628 | 1629 | is-primitive@^2.0.0: 1630 | version "2.0.0" 1631 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1632 | 1633 | is-redirect@^1.0.0: 1634 | version "1.0.0" 1635 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1636 | 1637 | is-retry-allowed@^1.0.0: 1638 | version "1.1.0" 1639 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1640 | 1641 | is-stream@^1.0.0, is-stream@^1.1.0: 1642 | version "1.1.0" 1643 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1644 | 1645 | is-svg@^2.0.0: 1646 | version "2.1.0" 1647 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 1648 | dependencies: 1649 | html-comment-regex "^1.1.0" 1650 | 1651 | is-typedarray@~1.0.0: 1652 | version "1.0.0" 1653 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1654 | 1655 | is-utf8@^0.2.0: 1656 | version "0.2.1" 1657 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1658 | 1659 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1660 | version "1.0.0" 1661 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1662 | 1663 | isexe@^2.0.0: 1664 | version "2.0.0" 1665 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1666 | 1667 | isobject@^1.0.0: 1668 | version "1.0.2" 1669 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-1.0.2.tgz#f0f9b8ce92dd540fa0740882e3835a2e022ec78a" 1670 | 1671 | isobject@^2.0.0: 1672 | version "2.1.0" 1673 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1674 | dependencies: 1675 | isarray "1.0.0" 1676 | 1677 | isstream@~0.1.2: 1678 | version "0.1.2" 1679 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1680 | 1681 | istanbul-instrumenter-loader@^2.0.0: 1682 | version "2.0.0" 1683 | resolved "https://registry.yarnpkg.com/istanbul-instrumenter-loader/-/istanbul-instrumenter-loader-2.0.0.tgz#e5492900ab0bba835efa8024cb00be9b3eea2700" 1684 | dependencies: 1685 | convert-source-map "^1.3.0" 1686 | istanbul-lib-instrument "^1.1.3" 1687 | loader-utils "^0.2.16" 1688 | object-assign "^4.1.0" 1689 | 1690 | istanbul-lib-coverage@^1.1.0, istanbul-lib-coverage@^1.1.1: 1691 | version "1.1.1" 1692 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1693 | 1694 | istanbul-lib-hook@^1.0.6: 1695 | version "1.0.7" 1696 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1697 | dependencies: 1698 | append-transform "^0.4.0" 1699 | 1700 | istanbul-lib-instrument@^1.1.3, istanbul-lib-instrument@^1.7.1: 1701 | version "1.7.2" 1702 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.2.tgz#6014b03d3470fb77638d5802508c255c06312e56" 1703 | dependencies: 1704 | babel-generator "^6.18.0" 1705 | babel-template "^6.16.0" 1706 | babel-traverse "^6.18.0" 1707 | babel-types "^6.18.0" 1708 | babylon "^6.13.0" 1709 | istanbul-lib-coverage "^1.1.1" 1710 | semver "^5.3.0" 1711 | 1712 | istanbul-lib-report@^1.1.0: 1713 | version "1.1.1" 1714 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1715 | dependencies: 1716 | istanbul-lib-coverage "^1.1.1" 1717 | mkdirp "^0.5.1" 1718 | path-parse "^1.0.5" 1719 | supports-color "^3.1.2" 1720 | 1721 | istanbul-lib-source-maps@^1.2.0: 1722 | version "1.2.1" 1723 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1724 | dependencies: 1725 | debug "^2.6.3" 1726 | istanbul-lib-coverage "^1.1.1" 1727 | mkdirp "^0.5.1" 1728 | rimraf "^2.6.1" 1729 | source-map "^0.5.3" 1730 | 1731 | istanbul-reports@^1.1.0: 1732 | version "1.1.1" 1733 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.1.tgz#042be5c89e175bc3f86523caab29c014e77fee4e" 1734 | dependencies: 1735 | handlebars "^4.0.3" 1736 | 1737 | jodid25519@^1.0.0: 1738 | version "1.0.2" 1739 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 1740 | dependencies: 1741 | jsbn "~0.1.0" 1742 | 1743 | js-base64@^2.1.9: 1744 | version "2.1.9" 1745 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" 1746 | 1747 | js-tokens@^3.0.0: 1748 | version "3.0.1" 1749 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 1750 | 1751 | js-yaml@^3.4.3: 1752 | version "3.8.4" 1753 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6" 1754 | dependencies: 1755 | argparse "^1.0.7" 1756 | esprima "^3.1.1" 1757 | 1758 | js-yaml@~3.7.0: 1759 | version "3.7.0" 1760 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1761 | dependencies: 1762 | argparse "^1.0.7" 1763 | esprima "^2.6.0" 1764 | 1765 | jsbn@~0.1.0: 1766 | version "0.1.1" 1767 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1768 | 1769 | jsdom@^10.1.0: 1770 | version "10.1.0" 1771 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-10.1.0.tgz#7765e00fd5c3567f34985a1c86ff466a61dacc6a" 1772 | dependencies: 1773 | abab "^1.0.3" 1774 | acorn "^4.0.4" 1775 | acorn-globals "^3.1.0" 1776 | array-equal "^1.0.0" 1777 | content-type-parser "^1.0.1" 1778 | cssom ">= 0.3.2 < 0.4.0" 1779 | cssstyle ">= 0.2.37 < 0.3.0" 1780 | escodegen "^1.6.1" 1781 | html-encoding-sniffer "^1.0.1" 1782 | nwmatcher ">= 1.3.9 < 2.0.0" 1783 | parse5 "^1.5.1" 1784 | pn "^1.0.0" 1785 | request "^2.79.0" 1786 | request-promise-native "^1.0.3" 1787 | sax "^1.2.1" 1788 | symbol-tree "^3.2.1" 1789 | tough-cookie "^2.3.2" 1790 | webidl-conversions "^4.0.0" 1791 | whatwg-encoding "^1.0.1" 1792 | whatwg-url "^4.3.0" 1793 | xml-name-validator "^2.0.1" 1794 | 1795 | jsesc@^1.3.0: 1796 | version "1.3.0" 1797 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1798 | 1799 | jsesc@~0.5.0: 1800 | version "0.5.0" 1801 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1802 | 1803 | json-loader@^0.5.4: 1804 | version "0.5.4" 1805 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 1806 | 1807 | json-schema@0.2.3: 1808 | version "0.2.3" 1809 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1810 | 1811 | json-stable-stringify@^1.0.1: 1812 | version "1.0.1" 1813 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1814 | dependencies: 1815 | jsonify "~0.0.0" 1816 | 1817 | json-stringify-safe@~5.0.1: 1818 | version "5.0.1" 1819 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1820 | 1821 | json3@3.3.2: 1822 | version "3.3.2" 1823 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1824 | 1825 | json5@^0.5.0, json5@^0.5.1: 1826 | version "0.5.1" 1827 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1828 | 1829 | jsonfile@^2.1.0: 1830 | version "2.4.0" 1831 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1832 | optionalDependencies: 1833 | graceful-fs "^4.1.6" 1834 | 1835 | jsonfile@^3.0.0: 1836 | version "3.0.0" 1837 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.0.tgz#92e7c7444e5ffd5fa32e6a9ae8b85034df8347d0" 1838 | optionalDependencies: 1839 | graceful-fs "^4.1.6" 1840 | 1841 | jsonify@~0.0.0: 1842 | version "0.0.0" 1843 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1844 | 1845 | jsprim@^1.2.2: 1846 | version "1.4.0" 1847 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1848 | dependencies: 1849 | assert-plus "1.0.0" 1850 | extsprintf "1.0.2" 1851 | json-schema "0.2.3" 1852 | verror "1.3.6" 1853 | 1854 | kind-of@^2.0.1: 1855 | version "2.0.1" 1856 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" 1857 | dependencies: 1858 | is-buffer "^1.0.2" 1859 | 1860 | kind-of@^3.0.2: 1861 | version "3.2.2" 1862 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1863 | dependencies: 1864 | is-buffer "^1.1.5" 1865 | 1866 | klaw@^1.0.0: 1867 | version "1.3.1" 1868 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1869 | optionalDependencies: 1870 | graceful-fs "^4.1.9" 1871 | 1872 | latest-version@^3.0.0: 1873 | version "3.1.0" 1874 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1875 | dependencies: 1876 | package-json "^4.0.0" 1877 | 1878 | lazy-cache@^0.2.3: 1879 | version "0.2.7" 1880 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" 1881 | 1882 | lazy-cache@^1.0.3: 1883 | version "1.0.4" 1884 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1885 | 1886 | lazy-req@^2.0.0: 1887 | version "2.0.0" 1888 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-2.0.0.tgz#c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4" 1889 | 1890 | lcid@^1.0.0: 1891 | version "1.0.0" 1892 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1893 | dependencies: 1894 | invert-kv "^1.0.0" 1895 | 1896 | levn@~0.3.0: 1897 | version "0.3.0" 1898 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1899 | dependencies: 1900 | prelude-ls "~1.1.2" 1901 | type-check "~0.3.2" 1902 | 1903 | load-json-file@^1.0.0: 1904 | version "1.1.0" 1905 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1906 | dependencies: 1907 | graceful-fs "^4.1.2" 1908 | parse-json "^2.2.0" 1909 | pify "^2.0.0" 1910 | pinkie-promise "^2.0.0" 1911 | strip-bom "^2.0.0" 1912 | 1913 | loader-runner@^2.3.0: 1914 | version "2.3.0" 1915 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1916 | 1917 | loader-utils@^0.2.13, loader-utils@^0.2.15, loader-utils@^0.2.16: 1918 | version "0.2.17" 1919 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 1920 | dependencies: 1921 | big.js "^3.1.3" 1922 | emojis-list "^2.0.0" 1923 | json5 "^0.5.0" 1924 | object-assign "^4.0.1" 1925 | 1926 | loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.x: 1927 | version "1.1.0" 1928 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1929 | dependencies: 1930 | big.js "^3.1.3" 1931 | emojis-list "^2.0.0" 1932 | json5 "^0.5.0" 1933 | 1934 | lodash._baseassign@^3.0.0: 1935 | version "3.2.0" 1936 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1937 | dependencies: 1938 | lodash._basecopy "^3.0.0" 1939 | lodash.keys "^3.0.0" 1940 | 1941 | lodash._basecopy@^3.0.0: 1942 | version "3.0.1" 1943 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1944 | 1945 | lodash._basecreate@^3.0.0: 1946 | version "3.0.3" 1947 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1948 | 1949 | lodash._getnative@^3.0.0: 1950 | version "3.9.1" 1951 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1952 | 1953 | lodash._isiterateecall@^3.0.0: 1954 | version "3.0.9" 1955 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1956 | 1957 | lodash.assign@^4.0.3, lodash.assign@^4.0.6: 1958 | version "4.2.0" 1959 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 1960 | 1961 | lodash.camelcase@^4.3.0: 1962 | version "4.3.0" 1963 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1964 | 1965 | lodash.create@3.1.1: 1966 | version "3.1.1" 1967 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1968 | dependencies: 1969 | lodash._baseassign "^3.0.0" 1970 | lodash._basecreate "^3.0.0" 1971 | lodash._isiterateecall "^3.0.0" 1972 | 1973 | lodash.isarguments@^3.0.0: 1974 | version "3.1.0" 1975 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1976 | 1977 | lodash.isarray@^3.0.0: 1978 | version "3.0.4" 1979 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1980 | 1981 | lodash.keys@^3.0.0: 1982 | version "3.1.2" 1983 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1984 | dependencies: 1985 | lodash._getnative "^3.0.0" 1986 | lodash.isarguments "^3.0.0" 1987 | lodash.isarray "^3.0.0" 1988 | 1989 | lodash.memoize@^4.1.2: 1990 | version "4.1.2" 1991 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1992 | 1993 | lodash.tail@^4.1.1: 1994 | version "4.1.1" 1995 | resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664" 1996 | 1997 | lodash.uniq@^4.5.0: 1998 | version "4.5.0" 1999 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 2000 | 2001 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2002 | version "4.17.4" 2003 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2004 | 2005 | longest@^1.0.1: 2006 | version "1.0.1" 2007 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2008 | 2009 | loose-envify@^1.0.0: 2010 | version "1.3.1" 2011 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2012 | dependencies: 2013 | js-tokens "^3.0.0" 2014 | 2015 | lowercase-keys@^1.0.0: 2016 | version "1.0.0" 2017 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2018 | 2019 | lru-cache@^4.0.0, lru-cache@^4.0.1: 2020 | version "4.0.2" 2021 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2022 | dependencies: 2023 | pseudomap "^1.0.1" 2024 | yallist "^2.0.0" 2025 | 2026 | macaddress@^0.2.8: 2027 | version "0.2.8" 2028 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 2029 | 2030 | make-dir@^1.0.0: 2031 | version "1.0.0" 2032 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" 2033 | dependencies: 2034 | pify "^2.3.0" 2035 | 2036 | math-expression-evaluator@^1.2.14: 2037 | version "1.2.17" 2038 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" 2039 | 2040 | md5-hex@^1.2.0: 2041 | version "1.3.0" 2042 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2043 | dependencies: 2044 | md5-o-matic "^0.1.1" 2045 | 2046 | md5-o-matic@^0.1.1: 2047 | version "0.1.1" 2048 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2049 | 2050 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2051 | version "0.4.1" 2052 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2053 | dependencies: 2054 | errno "^0.1.3" 2055 | readable-stream "^2.0.1" 2056 | 2057 | merge-source-map@^1.0.2: 2058 | version "1.0.3" 2059 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 2060 | dependencies: 2061 | source-map "^0.5.3" 2062 | 2063 | micromatch@^2.1.5, micromatch@^2.3.11: 2064 | version "2.3.11" 2065 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2066 | dependencies: 2067 | arr-diff "^2.0.0" 2068 | array-unique "^0.2.1" 2069 | braces "^1.8.2" 2070 | expand-brackets "^0.1.4" 2071 | extglob "^0.3.1" 2072 | filename-regex "^2.0.0" 2073 | is-extglob "^1.0.0" 2074 | is-glob "^2.0.1" 2075 | kind-of "^3.0.2" 2076 | normalize-path "^2.0.1" 2077 | object.omit "^2.0.0" 2078 | parse-glob "^3.0.4" 2079 | regex-cache "^0.4.2" 2080 | 2081 | miller-rabin@^4.0.0: 2082 | version "4.0.0" 2083 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 2084 | dependencies: 2085 | bn.js "^4.0.0" 2086 | brorand "^1.0.1" 2087 | 2088 | mime-db@~1.27.0: 2089 | version "1.27.0" 2090 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2091 | 2092 | mime-types@^2.1.12, mime-types@~2.1.7: 2093 | version "2.1.15" 2094 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2095 | dependencies: 2096 | mime-db "~1.27.0" 2097 | 2098 | minimalistic-assert@^1.0.0: 2099 | version "1.0.0" 2100 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2101 | 2102 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2103 | version "1.0.1" 2104 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2105 | 2106 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 2107 | version "3.0.4" 2108 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2109 | dependencies: 2110 | brace-expansion "^1.1.7" 2111 | 2112 | minimist@0.0.8, minimist@~0.0.1: 2113 | version "0.0.8" 2114 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2115 | 2116 | minimist@^1.2.0: 2117 | version "1.2.0" 2118 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2119 | 2120 | mixin-object@^2.0.1: 2121 | version "2.0.1" 2122 | resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" 2123 | dependencies: 2124 | for-in "^0.1.3" 2125 | is-extendable "^0.1.1" 2126 | 2127 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2128 | version "0.5.1" 2129 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2130 | dependencies: 2131 | minimist "0.0.8" 2132 | 2133 | mocha-webpack@^0.7.0: 2134 | version "0.7.0" 2135 | resolved "https://registry.yarnpkg.com/mocha-webpack/-/mocha-webpack-0.7.0.tgz#d3ae5ac7ddcf29cf947e8b0eed773fa4228e0cce" 2136 | dependencies: 2137 | anymatch "^1.3.0" 2138 | fs-extra "^0.30.0" 2139 | glob-parent "^2.0.0" 2140 | interpret "^1.0.1" 2141 | invariant "^2.2.0" 2142 | is-glob "^2.0.1" 2143 | loader-utils "^0.2.13" 2144 | lodash "^4.3.0" 2145 | normalize-path "^2.0.1" 2146 | object-hash "^1.1.2" 2147 | webpack-info-plugin "^0.1.0" 2148 | webpack-sources "^0.1.1" 2149 | yargs "^4.8.0" 2150 | 2151 | mocha@^3.4.1: 2152 | version "3.4.1" 2153 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.4.1.tgz#a3802b4aa381934cacb38de70cf771621da8f9af" 2154 | dependencies: 2155 | browser-stdout "1.3.0" 2156 | commander "2.9.0" 2157 | debug "2.6.0" 2158 | diff "3.2.0" 2159 | escape-string-regexp "1.0.5" 2160 | glob "7.1.1" 2161 | growl "1.9.2" 2162 | json3 "3.3.2" 2163 | lodash.create "3.1.1" 2164 | mkdirp "0.5.1" 2165 | supports-color "3.1.2" 2166 | 2167 | ms@0.7.2: 2168 | version "0.7.2" 2169 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2170 | 2171 | ms@2.0.0: 2172 | version "2.0.0" 2173 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2174 | 2175 | nan@^2.3.0: 2176 | version "2.6.2" 2177 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2178 | 2179 | node-libs-browser@^2.0.0: 2180 | version "2.0.0" 2181 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 2182 | dependencies: 2183 | assert "^1.1.1" 2184 | browserify-zlib "^0.1.4" 2185 | buffer "^4.3.0" 2186 | console-browserify "^1.1.0" 2187 | constants-browserify "^1.0.0" 2188 | crypto-browserify "^3.11.0" 2189 | domain-browser "^1.1.1" 2190 | events "^1.0.0" 2191 | https-browserify "0.0.1" 2192 | os-browserify "^0.2.0" 2193 | path-browserify "0.0.0" 2194 | process "^0.11.0" 2195 | punycode "^1.2.4" 2196 | querystring-es3 "^0.2.0" 2197 | readable-stream "^2.0.5" 2198 | stream-browserify "^2.0.1" 2199 | stream-http "^2.3.1" 2200 | string_decoder "^0.10.25" 2201 | timers-browserify "^2.0.2" 2202 | tty-browserify "0.0.0" 2203 | url "^0.11.0" 2204 | util "^0.10.3" 2205 | vm-browserify "0.0.4" 2206 | 2207 | node-pre-gyp@^0.6.29: 2208 | version "0.6.34" 2209 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2210 | dependencies: 2211 | mkdirp "^0.5.1" 2212 | nopt "^4.0.1" 2213 | npmlog "^4.0.2" 2214 | rc "^1.1.7" 2215 | request "^2.81.0" 2216 | rimraf "^2.6.1" 2217 | semver "^5.3.0" 2218 | tar "^2.2.1" 2219 | tar-pack "^3.4.0" 2220 | 2221 | nopt@^4.0.1: 2222 | version "4.0.1" 2223 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2224 | dependencies: 2225 | abbrev "1" 2226 | osenv "^0.1.4" 2227 | 2228 | normalize-package-data@^2.3.2: 2229 | version "2.3.8" 2230 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2231 | dependencies: 2232 | hosted-git-info "^2.1.4" 2233 | is-builtin-module "^1.0.0" 2234 | semver "2 || 3 || 4 || 5" 2235 | validate-npm-package-license "^3.0.1" 2236 | 2237 | normalize-path@^2.0.1: 2238 | version "2.1.1" 2239 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2240 | dependencies: 2241 | remove-trailing-separator "^1.0.1" 2242 | 2243 | normalize-range@^0.1.2: 2244 | version "0.1.2" 2245 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2246 | 2247 | normalize-url@^1.4.0: 2248 | version "1.9.1" 2249 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 2250 | dependencies: 2251 | object-assign "^4.0.1" 2252 | prepend-http "^1.0.0" 2253 | query-string "^4.1.0" 2254 | sort-keys "^1.0.0" 2255 | 2256 | npm-run-path@^1.0.0: 2257 | version "1.0.0" 2258 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-1.0.0.tgz#f5c32bf595fe81ae927daec52e82f8b000ac3c8f" 2259 | dependencies: 2260 | path-key "^1.0.0" 2261 | 2262 | npmlog@^4.0.2: 2263 | version "4.1.0" 2264 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2265 | dependencies: 2266 | are-we-there-yet "~1.1.2" 2267 | console-control-strings "~1.1.0" 2268 | gauge "~2.7.3" 2269 | set-blocking "~2.0.0" 2270 | 2271 | ntypescript@latest: 2272 | version "1.201609302242.1+c302893a6201cbd822d6040b8361ad7a0ee506fa" 2273 | resolved "https://registry.yarnpkg.com/ntypescript/-/ntypescript-1.201609302242.1.tgz#309bed5ffda2f695cbd70d3561b8c0807f025c7b" 2274 | 2275 | num2fraction@^1.2.2: 2276 | version "1.2.2" 2277 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2278 | 2279 | number-is-nan@^1.0.0: 2280 | version "1.0.1" 2281 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2282 | 2283 | "nwmatcher@>= 1.3.9 < 2.0.0": 2284 | version "1.3.9" 2285 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2286 | 2287 | nyc@^10.3.2: 2288 | version "10.3.2" 2289 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.3.2.tgz#f27f4d91f2a9db36c24f574ff5c6efff0233de46" 2290 | dependencies: 2291 | archy "^1.0.0" 2292 | arrify "^1.0.1" 2293 | caching-transform "^1.0.0" 2294 | convert-source-map "^1.3.0" 2295 | debug-log "^1.0.1" 2296 | default-require-extensions "^1.0.0" 2297 | find-cache-dir "^0.1.1" 2298 | find-up "^1.1.2" 2299 | foreground-child "^1.5.3" 2300 | glob "^7.0.6" 2301 | istanbul-lib-coverage "^1.1.0" 2302 | istanbul-lib-hook "^1.0.6" 2303 | istanbul-lib-instrument "^1.7.1" 2304 | istanbul-lib-report "^1.1.0" 2305 | istanbul-lib-source-maps "^1.2.0" 2306 | istanbul-reports "^1.1.0" 2307 | md5-hex "^1.2.0" 2308 | merge-source-map "^1.0.2" 2309 | micromatch "^2.3.11" 2310 | mkdirp "^0.5.0" 2311 | resolve-from "^2.0.0" 2312 | rimraf "^2.5.4" 2313 | signal-exit "^3.0.1" 2314 | spawn-wrap "1.2.4" 2315 | test-exclude "^4.1.0" 2316 | yargs "^7.1.0" 2317 | yargs-parser "^5.0.0" 2318 | 2319 | oauth-sign@~0.8.1: 2320 | version "0.8.2" 2321 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2322 | 2323 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2324 | version "4.1.1" 2325 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2326 | 2327 | object-hash@^1.1.2: 2328 | version "1.1.8" 2329 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.1.8.tgz#28a659cf987d96a4dabe7860289f3b5326c4a03c" 2330 | 2331 | object.omit@^2.0.0: 2332 | version "2.0.1" 2333 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2334 | dependencies: 2335 | for-own "^0.1.4" 2336 | is-extendable "^0.1.1" 2337 | 2338 | once@^1.3.0, once@^1.3.3: 2339 | version "1.4.0" 2340 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2341 | dependencies: 2342 | wrappy "1" 2343 | 2344 | optimist@^0.6.1, optimist@~0.6.0: 2345 | version "0.6.1" 2346 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2347 | dependencies: 2348 | minimist "~0.0.1" 2349 | wordwrap "~0.0.2" 2350 | 2351 | optionator@^0.8.1: 2352 | version "0.8.2" 2353 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2354 | dependencies: 2355 | deep-is "~0.1.3" 2356 | fast-levenshtein "~2.0.4" 2357 | levn "~0.3.0" 2358 | prelude-ls "~1.1.2" 2359 | type-check "~0.3.2" 2360 | wordwrap "~1.0.0" 2361 | 2362 | os-browserify@^0.2.0: 2363 | version "0.2.1" 2364 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2365 | 2366 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2367 | version "1.0.2" 2368 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2369 | 2370 | os-locale@^1.4.0: 2371 | version "1.4.0" 2372 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2373 | dependencies: 2374 | lcid "^1.0.0" 2375 | 2376 | os-tmpdir@^1.0.0: 2377 | version "1.0.2" 2378 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2379 | 2380 | osenv@^0.1.4: 2381 | version "0.1.4" 2382 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2383 | dependencies: 2384 | os-homedir "^1.0.0" 2385 | os-tmpdir "^1.0.0" 2386 | 2387 | package-json@^4.0.0: 2388 | version "4.0.1" 2389 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2390 | dependencies: 2391 | got "^6.7.1" 2392 | registry-auth-token "^3.0.1" 2393 | registry-url "^3.0.3" 2394 | semver "^5.1.0" 2395 | 2396 | pako@~0.2.0: 2397 | version "0.2.9" 2398 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2399 | 2400 | parse-asn1@^5.0.0: 2401 | version "5.1.0" 2402 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2403 | dependencies: 2404 | asn1.js "^4.0.0" 2405 | browserify-aes "^1.0.0" 2406 | create-hash "^1.1.0" 2407 | evp_bytestokey "^1.0.0" 2408 | pbkdf2 "^3.0.3" 2409 | 2410 | parse-glob@^3.0.4: 2411 | version "3.0.4" 2412 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2413 | dependencies: 2414 | glob-base "^0.3.0" 2415 | is-dotfile "^1.0.0" 2416 | is-extglob "^1.0.0" 2417 | is-glob "^2.0.0" 2418 | 2419 | parse-json@^2.2.0: 2420 | version "2.2.0" 2421 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2422 | dependencies: 2423 | error-ex "^1.2.0" 2424 | 2425 | parse5@^1.5.1: 2426 | version "1.5.1" 2427 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2428 | 2429 | parse5@^3.0.1: 2430 | version "3.0.2" 2431 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.2.tgz#05eff57f0ef4577fb144a79f8b9a967a6cc44510" 2432 | dependencies: 2433 | "@types/node" "^6.0.46" 2434 | 2435 | path-browserify@0.0.0: 2436 | version "0.0.0" 2437 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2438 | 2439 | path-exists@^2.0.0: 2440 | version "2.1.0" 2441 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2442 | dependencies: 2443 | pinkie-promise "^2.0.0" 2444 | 2445 | path-is-absolute@^1.0.0: 2446 | version "1.0.1" 2447 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2448 | 2449 | path-key@^1.0.0: 2450 | version "1.0.0" 2451 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-1.0.0.tgz#5d53d578019646c0d68800db4e146e6bdc2ac7af" 2452 | 2453 | path-parse@^1.0.5: 2454 | version "1.0.5" 2455 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2456 | 2457 | path-type@^1.0.0: 2458 | version "1.1.0" 2459 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2460 | dependencies: 2461 | graceful-fs "^4.1.2" 2462 | pify "^2.0.0" 2463 | pinkie-promise "^2.0.0" 2464 | 2465 | pbkdf2@^3.0.3: 2466 | version "3.0.12" 2467 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.12.tgz#be36785c5067ea48d806ff923288c5f750b6b8a2" 2468 | dependencies: 2469 | create-hash "^1.1.2" 2470 | create-hmac "^1.1.4" 2471 | ripemd160 "^2.0.1" 2472 | safe-buffer "^5.0.1" 2473 | sha.js "^2.4.8" 2474 | 2475 | performance-now@^0.2.0: 2476 | version "0.2.0" 2477 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2478 | 2479 | pify@^2.0.0, pify@^2.3.0: 2480 | version "2.3.0" 2481 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2482 | 2483 | pinkie-promise@^2.0.0: 2484 | version "2.0.1" 2485 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2486 | dependencies: 2487 | pinkie "^2.0.0" 2488 | 2489 | pinkie@^2.0.0: 2490 | version "2.0.4" 2491 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2492 | 2493 | pkg-dir@^1.0.0: 2494 | version "1.0.0" 2495 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2496 | dependencies: 2497 | find-up "^1.0.0" 2498 | 2499 | pn@^1.0.0: 2500 | version "1.0.0" 2501 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.0.0.tgz#1cf5a30b0d806cd18f88fc41a6b5d4ad615b3ba9" 2502 | 2503 | postcss-calc@^5.2.0: 2504 | version "5.3.1" 2505 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 2506 | dependencies: 2507 | postcss "^5.0.2" 2508 | postcss-message-helpers "^2.0.0" 2509 | reduce-css-calc "^1.2.6" 2510 | 2511 | postcss-colormin@^2.1.8: 2512 | version "2.2.2" 2513 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 2514 | dependencies: 2515 | colormin "^1.0.5" 2516 | postcss "^5.0.13" 2517 | postcss-value-parser "^3.2.3" 2518 | 2519 | postcss-convert-values@^2.3.4: 2520 | version "2.6.1" 2521 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 2522 | dependencies: 2523 | postcss "^5.0.11" 2524 | postcss-value-parser "^3.1.2" 2525 | 2526 | postcss-discard-comments@^2.0.4: 2527 | version "2.0.4" 2528 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 2529 | dependencies: 2530 | postcss "^5.0.14" 2531 | 2532 | postcss-discard-duplicates@^2.0.1: 2533 | version "2.1.0" 2534 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" 2535 | dependencies: 2536 | postcss "^5.0.4" 2537 | 2538 | postcss-discard-empty@^2.0.1: 2539 | version "2.1.0" 2540 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 2541 | dependencies: 2542 | postcss "^5.0.14" 2543 | 2544 | postcss-discard-overridden@^0.1.1: 2545 | version "0.1.1" 2546 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 2547 | dependencies: 2548 | postcss "^5.0.16" 2549 | 2550 | postcss-discard-unused@^2.2.1: 2551 | version "2.2.3" 2552 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 2553 | dependencies: 2554 | postcss "^5.0.14" 2555 | uniqs "^2.0.0" 2556 | 2557 | postcss-filter-plugins@^2.0.0: 2558 | version "2.0.2" 2559 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 2560 | dependencies: 2561 | postcss "^5.0.4" 2562 | uniqid "^4.0.0" 2563 | 2564 | postcss-load-config@^1.x: 2565 | version "1.2.0" 2566 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" 2567 | dependencies: 2568 | cosmiconfig "^2.1.0" 2569 | object-assign "^4.1.0" 2570 | postcss-load-options "^1.2.0" 2571 | postcss-load-plugins "^2.3.0" 2572 | 2573 | postcss-load-options@^1.2.0: 2574 | version "1.2.0" 2575 | resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" 2576 | dependencies: 2577 | cosmiconfig "^2.1.0" 2578 | object-assign "^4.1.0" 2579 | 2580 | postcss-load-plugins@^2.3.0: 2581 | version "2.3.0" 2582 | resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" 2583 | dependencies: 2584 | cosmiconfig "^2.1.1" 2585 | object-assign "^4.1.0" 2586 | 2587 | postcss-loader@^2.0.5: 2588 | version "2.0.5" 2589 | resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.0.5.tgz#c19d3e8b83eb1ac316f5621ef4c0ef5b3d1b8b3a" 2590 | dependencies: 2591 | loader-utils "^1.x" 2592 | postcss "^6.x" 2593 | postcss-load-config "^1.x" 2594 | schema-utils "^0.x" 2595 | 2596 | postcss-merge-idents@^2.1.5: 2597 | version "2.1.7" 2598 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 2599 | dependencies: 2600 | has "^1.0.1" 2601 | postcss "^5.0.10" 2602 | postcss-value-parser "^3.1.1" 2603 | 2604 | postcss-merge-longhand@^2.0.1: 2605 | version "2.0.2" 2606 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 2607 | dependencies: 2608 | postcss "^5.0.4" 2609 | 2610 | postcss-merge-rules@^2.0.3: 2611 | version "2.1.2" 2612 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" 2613 | dependencies: 2614 | browserslist "^1.5.2" 2615 | caniuse-api "^1.5.2" 2616 | postcss "^5.0.4" 2617 | postcss-selector-parser "^2.2.2" 2618 | vendors "^1.0.0" 2619 | 2620 | postcss-message-helpers@^2.0.0: 2621 | version "2.0.0" 2622 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 2623 | 2624 | postcss-minify-font-values@^1.0.2: 2625 | version "1.0.5" 2626 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 2627 | dependencies: 2628 | object-assign "^4.0.1" 2629 | postcss "^5.0.4" 2630 | postcss-value-parser "^3.0.2" 2631 | 2632 | postcss-minify-gradients@^1.0.1: 2633 | version "1.0.5" 2634 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 2635 | dependencies: 2636 | postcss "^5.0.12" 2637 | postcss-value-parser "^3.3.0" 2638 | 2639 | postcss-minify-params@^1.0.4: 2640 | version "1.2.2" 2641 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 2642 | dependencies: 2643 | alphanum-sort "^1.0.1" 2644 | postcss "^5.0.2" 2645 | postcss-value-parser "^3.0.2" 2646 | uniqs "^2.0.0" 2647 | 2648 | postcss-minify-selectors@^2.0.4: 2649 | version "2.1.1" 2650 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 2651 | dependencies: 2652 | alphanum-sort "^1.0.2" 2653 | has "^1.0.1" 2654 | postcss "^5.0.14" 2655 | postcss-selector-parser "^2.0.0" 2656 | 2657 | postcss-modules-extract-imports@^1.0.0: 2658 | version "1.0.1" 2659 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.0.1.tgz#8fb3fef9a6dd0420d3f6d4353cf1ff73f2b2a341" 2660 | dependencies: 2661 | postcss "^5.0.4" 2662 | 2663 | postcss-modules-local-by-default@^1.0.1: 2664 | version "1.1.1" 2665 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.1.1.tgz#29a10673fa37d19251265ca2ba3150d9040eb4ce" 2666 | dependencies: 2667 | css-selector-tokenizer "^0.6.0" 2668 | postcss "^5.0.4" 2669 | 2670 | postcss-modules-scope@^1.0.0: 2671 | version "1.0.2" 2672 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.0.2.tgz#ff977395e5e06202d7362290b88b1e8cd049de29" 2673 | dependencies: 2674 | css-selector-tokenizer "^0.6.0" 2675 | postcss "^5.0.4" 2676 | 2677 | postcss-modules-values@^1.1.0: 2678 | version "1.2.2" 2679 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.2.2.tgz#f0e7d476fe1ed88c5e4c7f97533a3e772ad94ca1" 2680 | dependencies: 2681 | icss-replace-symbols "^1.0.2" 2682 | postcss "^5.0.14" 2683 | 2684 | postcss-normalize-charset@^1.1.0: 2685 | version "1.1.1" 2686 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 2687 | dependencies: 2688 | postcss "^5.0.5" 2689 | 2690 | postcss-normalize-url@^3.0.7: 2691 | version "3.0.8" 2692 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 2693 | dependencies: 2694 | is-absolute-url "^2.0.0" 2695 | normalize-url "^1.4.0" 2696 | postcss "^5.0.14" 2697 | postcss-value-parser "^3.2.3" 2698 | 2699 | postcss-ordered-values@^2.1.0: 2700 | version "2.2.3" 2701 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 2702 | dependencies: 2703 | postcss "^5.0.4" 2704 | postcss-value-parser "^3.0.1" 2705 | 2706 | postcss-reduce-idents@^2.2.2: 2707 | version "2.4.0" 2708 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 2709 | dependencies: 2710 | postcss "^5.0.4" 2711 | postcss-value-parser "^3.0.2" 2712 | 2713 | postcss-reduce-initial@^1.0.0: 2714 | version "1.0.1" 2715 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 2716 | dependencies: 2717 | postcss "^5.0.4" 2718 | 2719 | postcss-reduce-transforms@^1.0.3: 2720 | version "1.0.4" 2721 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 2722 | dependencies: 2723 | has "^1.0.1" 2724 | postcss "^5.0.8" 2725 | postcss-value-parser "^3.0.1" 2726 | 2727 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 2728 | version "2.2.3" 2729 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" 2730 | dependencies: 2731 | flatten "^1.0.2" 2732 | indexes-of "^1.0.1" 2733 | uniq "^1.0.1" 2734 | 2735 | postcss-svgo@^2.1.1: 2736 | version "2.1.6" 2737 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 2738 | dependencies: 2739 | is-svg "^2.0.0" 2740 | postcss "^5.0.14" 2741 | postcss-value-parser "^3.2.3" 2742 | svgo "^0.7.0" 2743 | 2744 | postcss-unique-selectors@^2.0.2: 2745 | version "2.0.2" 2746 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 2747 | dependencies: 2748 | alphanum-sort "^1.0.1" 2749 | postcss "^5.0.4" 2750 | uniqs "^2.0.0" 2751 | 2752 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: 2753 | version "3.3.0" 2754 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 2755 | 2756 | postcss-zindex@^2.0.1: 2757 | version "2.2.0" 2758 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 2759 | dependencies: 2760 | has "^1.0.1" 2761 | postcss "^5.0.4" 2762 | uniqs "^2.0.0" 2763 | 2764 | postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16: 2765 | version "5.2.17" 2766 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b" 2767 | dependencies: 2768 | chalk "^1.1.3" 2769 | js-base64 "^2.1.9" 2770 | source-map "^0.5.6" 2771 | supports-color "^3.2.3" 2772 | 2773 | postcss@^6.x: 2774 | version "6.0.1" 2775 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2" 2776 | dependencies: 2777 | chalk "^1.1.3" 2778 | source-map "^0.5.6" 2779 | supports-color "^3.2.3" 2780 | 2781 | prelude-ls@~1.1.2: 2782 | version "1.1.2" 2783 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2784 | 2785 | prepend-http@^1.0.0, prepend-http@^1.0.1: 2786 | version "1.0.4" 2787 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2788 | 2789 | preserve@^0.2.0: 2790 | version "0.2.0" 2791 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2792 | 2793 | prettysize@^0.1.0: 2794 | version "0.1.0" 2795 | resolved "https://registry.yarnpkg.com/prettysize/-/prettysize-0.1.0.tgz#38ee534e2d298bc945fb7243203dd873cefc9679" 2796 | 2797 | process-nextick-args@~1.0.6: 2798 | version "1.0.7" 2799 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2800 | 2801 | process@^0.11.0: 2802 | version "0.11.10" 2803 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2804 | 2805 | progress@^2.0.0: 2806 | version "2.0.0" 2807 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2808 | 2809 | prr@~0.0.0: 2810 | version "0.0.0" 2811 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2812 | 2813 | pseudomap@^1.0.1: 2814 | version "1.0.2" 2815 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2816 | 2817 | public-encrypt@^4.0.0: 2818 | version "4.0.0" 2819 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2820 | dependencies: 2821 | bn.js "^4.1.0" 2822 | browserify-rsa "^4.0.0" 2823 | create-hash "^1.1.0" 2824 | parse-asn1 "^5.0.0" 2825 | randombytes "^2.0.1" 2826 | 2827 | punycode@1.3.2: 2828 | version "1.3.2" 2829 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2830 | 2831 | punycode@^1.2.4, punycode@^1.4.1: 2832 | version "1.4.1" 2833 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2834 | 2835 | q@^1.1.2: 2836 | version "1.5.0" 2837 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 2838 | 2839 | qs@~6.4.0: 2840 | version "6.4.0" 2841 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2842 | 2843 | query-string@^4.1.0: 2844 | version "4.3.4" 2845 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" 2846 | dependencies: 2847 | object-assign "^4.1.0" 2848 | strict-uri-encode "^1.0.0" 2849 | 2850 | querystring-es3@^0.2.0: 2851 | version "0.2.1" 2852 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2853 | 2854 | querystring@0.2.0: 2855 | version "0.2.0" 2856 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2857 | 2858 | randomatic@^1.1.3: 2859 | version "1.1.6" 2860 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2861 | dependencies: 2862 | is-number "^2.0.2" 2863 | kind-of "^3.0.2" 2864 | 2865 | randombytes@^2.0.0, randombytes@^2.0.1: 2866 | version "2.0.3" 2867 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 2868 | 2869 | raw-loader@^0.5.1: 2870 | version "0.5.1" 2871 | resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-0.5.1.tgz#0c3d0beaed8a01c966d9787bf778281252a979aa" 2872 | 2873 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 2874 | version "1.2.1" 2875 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2876 | dependencies: 2877 | deep-extend "~0.4.0" 2878 | ini "~1.3.0" 2879 | minimist "^1.2.0" 2880 | strip-json-comments "~2.0.1" 2881 | 2882 | read-pkg-up@^1.0.1: 2883 | version "1.0.1" 2884 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2885 | dependencies: 2886 | find-up "^1.0.0" 2887 | read-pkg "^1.0.0" 2888 | 2889 | read-pkg@^1.0.0: 2890 | version "1.1.0" 2891 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2892 | dependencies: 2893 | load-json-file "^1.0.0" 2894 | normalize-package-data "^2.3.2" 2895 | path-type "^1.0.0" 2896 | 2897 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6: 2898 | version "2.2.9" 2899 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2900 | dependencies: 2901 | buffer-shims "~1.0.0" 2902 | core-util-is "~1.0.0" 2903 | inherits "~2.0.1" 2904 | isarray "~1.0.0" 2905 | process-nextick-args "~1.0.6" 2906 | string_decoder "~1.0.0" 2907 | util-deprecate "~1.0.1" 2908 | 2909 | readdirp@^2.0.0: 2910 | version "2.1.0" 2911 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2912 | dependencies: 2913 | graceful-fs "^4.1.2" 2914 | minimatch "^3.0.2" 2915 | readable-stream "^2.0.2" 2916 | set-immediate-shim "^1.0.1" 2917 | 2918 | reduce-css-calc@^1.2.6: 2919 | version "1.3.0" 2920 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 2921 | dependencies: 2922 | balanced-match "^0.4.2" 2923 | math-expression-evaluator "^1.2.14" 2924 | reduce-function-call "^1.0.1" 2925 | 2926 | reduce-function-call@^1.0.1: 2927 | version "1.0.2" 2928 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 2929 | dependencies: 2930 | balanced-match "^0.4.2" 2931 | 2932 | reflect-metadata@^0.1.2: 2933 | version "0.1.10" 2934 | resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.10.tgz#b4f83704416acad89988c9b15635d47e03b9344a" 2935 | 2936 | regenerate@^1.2.1: 2937 | version "1.3.2" 2938 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2939 | 2940 | regenerator-runtime@^0.10.0: 2941 | version "0.10.5" 2942 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2943 | 2944 | regex-cache@^0.4.2: 2945 | version "0.4.3" 2946 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2947 | dependencies: 2948 | is-equal-shallow "^0.1.3" 2949 | is-primitive "^2.0.0" 2950 | 2951 | regexpu-core@^1.0.0: 2952 | version "1.0.0" 2953 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 2954 | dependencies: 2955 | regenerate "^1.2.1" 2956 | regjsgen "^0.2.0" 2957 | regjsparser "^0.1.4" 2958 | 2959 | registry-auth-token@^3.0.1: 2960 | version "3.3.1" 2961 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 2962 | dependencies: 2963 | rc "^1.1.6" 2964 | safe-buffer "^5.0.1" 2965 | 2966 | registry-url@^3.0.3: 2967 | version "3.1.0" 2968 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 2969 | dependencies: 2970 | rc "^1.0.1" 2971 | 2972 | regjsgen@^0.2.0: 2973 | version "0.2.0" 2974 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2975 | 2976 | regjsparser@^0.1.4: 2977 | version "0.1.5" 2978 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2979 | dependencies: 2980 | jsesc "~0.5.0" 2981 | 2982 | remove-trailing-separator@^1.0.1: 2983 | version "1.0.1" 2984 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2985 | 2986 | repeat-element@^1.1.2: 2987 | version "1.1.2" 2988 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2989 | 2990 | repeat-string@^1.5.2: 2991 | version "1.6.1" 2992 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2993 | 2994 | repeating@^2.0.0: 2995 | version "2.0.1" 2996 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2997 | dependencies: 2998 | is-finite "^1.0.0" 2999 | 3000 | request-promise-core@1.1.1: 3001 | version "1.1.1" 3002 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 3003 | dependencies: 3004 | lodash "^4.13.1" 3005 | 3006 | request-promise-native@^1.0.3: 3007 | version "1.0.4" 3008 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.4.tgz#86988ec8eee408e45579fce83bfd05b3adf9a155" 3009 | dependencies: 3010 | request-promise-core "1.1.1" 3011 | stealthy-require "^1.1.0" 3012 | tough-cookie ">=2.3.0" 3013 | 3014 | request@^2.79.0, request@^2.81.0: 3015 | version "2.81.0" 3016 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3017 | dependencies: 3018 | aws-sign2 "~0.6.0" 3019 | aws4 "^1.2.1" 3020 | caseless "~0.12.0" 3021 | combined-stream "~1.0.5" 3022 | extend "~3.0.0" 3023 | forever-agent "~0.6.1" 3024 | form-data "~2.1.1" 3025 | har-validator "~4.2.1" 3026 | hawk "~3.1.3" 3027 | http-signature "~1.1.0" 3028 | is-typedarray "~1.0.0" 3029 | isstream "~0.1.2" 3030 | json-stringify-safe "~5.0.1" 3031 | mime-types "~2.1.7" 3032 | oauth-sign "~0.8.1" 3033 | performance-now "^0.2.0" 3034 | qs "~6.4.0" 3035 | safe-buffer "^5.0.1" 3036 | stringstream "~0.0.4" 3037 | tough-cookie "~2.3.0" 3038 | tunnel-agent "^0.6.0" 3039 | uuid "^3.0.0" 3040 | 3041 | require-directory@^2.1.1: 3042 | version "2.1.1" 3043 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3044 | 3045 | require-from-string@^1.1.0: 3046 | version "1.2.1" 3047 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 3048 | 3049 | require-main-filename@^1.0.1: 3050 | version "1.0.1" 3051 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3052 | 3053 | resolve-from@^2.0.0: 3054 | version "2.0.0" 3055 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3056 | 3057 | resolve@^1.1.7: 3058 | version "1.3.3" 3059 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5" 3060 | dependencies: 3061 | path-parse "^1.0.5" 3062 | 3063 | right-align@^0.1.1: 3064 | version "0.1.3" 3065 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3066 | dependencies: 3067 | align-text "^0.1.1" 3068 | 3069 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3070 | version "2.6.1" 3071 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3072 | dependencies: 3073 | glob "^7.0.5" 3074 | 3075 | ripemd160@^2.0.0, ripemd160@^2.0.1: 3076 | version "2.0.1" 3077 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 3078 | dependencies: 3079 | hash-base "^2.0.0" 3080 | inherits "^2.0.1" 3081 | 3082 | rxjs@^5.4.0: 3083 | version "5.4.0" 3084 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.0.tgz#a7db14ab157f9d7aac6a56e655e7a3860d39bf26" 3085 | dependencies: 3086 | symbol-observable "^1.0.1" 3087 | 3088 | safe-buffer@^5.0.1: 3089 | version "5.0.1" 3090 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3091 | 3092 | sass-loader@^6.0.5: 3093 | version "6.0.5" 3094 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-6.0.5.tgz#a847910f36442aa56c5985879d54eb519e24a328" 3095 | dependencies: 3096 | async "^2.1.5" 3097 | clone-deep "^0.2.4" 3098 | loader-utils "^1.0.1" 3099 | lodash.tail "^4.1.1" 3100 | pify "^2.3.0" 3101 | 3102 | sax@^1.2.1, sax@~1.2.1: 3103 | version "1.2.2" 3104 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3105 | 3106 | schema-utils@^0.x: 3107 | version "0.3.0" 3108 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" 3109 | dependencies: 3110 | ajv "^5.0.0" 3111 | 3112 | semver-diff@^2.0.0: 3113 | version "2.1.0" 3114 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3115 | dependencies: 3116 | semver "^5.0.3" 3117 | 3118 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 3119 | version "5.3.0" 3120 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3121 | 3122 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3123 | version "2.0.0" 3124 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3125 | 3126 | set-immediate-shim@^1.0.1: 3127 | version "1.0.1" 3128 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3129 | 3130 | setimmediate@^1.0.4: 3131 | version "1.0.5" 3132 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3133 | 3134 | sha.js@^2.4.0, sha.js@^2.4.8: 3135 | version "2.4.8" 3136 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3137 | dependencies: 3138 | inherits "^2.0.1" 3139 | 3140 | shallow-clone@^0.1.2: 3141 | version "0.1.2" 3142 | resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" 3143 | dependencies: 3144 | is-extendable "^0.1.1" 3145 | kind-of "^2.0.1" 3146 | lazy-cache "^0.2.3" 3147 | mixin-object "^2.0.1" 3148 | 3149 | signal-exit@^2.0.0: 3150 | version "2.1.2" 3151 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3152 | 3153 | signal-exit@^3.0.0, signal-exit@^3.0.1: 3154 | version "3.0.2" 3155 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3156 | 3157 | slide@^1.1.5: 3158 | version "1.1.6" 3159 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3160 | 3161 | sntp@1.x.x: 3162 | version "1.0.9" 3163 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3164 | dependencies: 3165 | hoek "2.x.x" 3166 | 3167 | sort-keys@^1.0.0: 3168 | version "1.1.2" 3169 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3170 | dependencies: 3171 | is-plain-obj "^1.0.0" 3172 | 3173 | source-list-map@^0.1.7, source-list-map@~0.1.7: 3174 | version "0.1.8" 3175 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 3176 | 3177 | source-list-map@^1.1.1: 3178 | version "1.1.2" 3179 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.2.tgz#9889019d1024cce55cdc069498337ef6186a11a1" 3180 | 3181 | source-map-support@^0.4.15, source-map-support@^0.4.2: 3182 | version "0.4.15" 3183 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3184 | dependencies: 3185 | source-map "^0.5.6" 3186 | 3187 | source-map@^0.4.4: 3188 | version "0.4.4" 3189 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3190 | dependencies: 3191 | amdefine ">=0.0.4" 3192 | 3193 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 3194 | version "0.5.6" 3195 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3196 | 3197 | source-map@~0.2.0: 3198 | version "0.2.0" 3199 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3200 | dependencies: 3201 | amdefine ">=0.0.4" 3202 | 3203 | spawn-wrap@1.2.4: 3204 | version "1.2.4" 3205 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3206 | dependencies: 3207 | foreground-child "^1.3.3" 3208 | mkdirp "^0.5.0" 3209 | os-homedir "^1.0.1" 3210 | rimraf "^2.3.3" 3211 | signal-exit "^2.0.0" 3212 | which "^1.2.4" 3213 | 3214 | spdx-correct@~1.0.0: 3215 | version "1.0.2" 3216 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3217 | dependencies: 3218 | spdx-license-ids "^1.0.2" 3219 | 3220 | spdx-expression-parse@~1.0.0: 3221 | version "1.0.4" 3222 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3223 | 3224 | spdx-license-ids@^1.0.2: 3225 | version "1.2.2" 3226 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3227 | 3228 | sprintf-js@~1.0.2: 3229 | version "1.0.3" 3230 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3231 | 3232 | sshpk@^1.7.0: 3233 | version "1.13.0" 3234 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3235 | dependencies: 3236 | asn1 "~0.2.3" 3237 | assert-plus "^1.0.0" 3238 | dashdash "^1.12.0" 3239 | getpass "^0.1.1" 3240 | optionalDependencies: 3241 | bcrypt-pbkdf "^1.0.0" 3242 | ecc-jsbn "~0.1.1" 3243 | jodid25519 "^1.0.0" 3244 | jsbn "~0.1.0" 3245 | tweetnacl "~0.14.0" 3246 | 3247 | stealthy-require@^1.1.0: 3248 | version "1.1.1" 3249 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3250 | 3251 | stream-browserify@^2.0.1: 3252 | version "2.0.1" 3253 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3254 | dependencies: 3255 | inherits "~2.0.1" 3256 | readable-stream "^2.0.2" 3257 | 3258 | stream-http@^2.3.1: 3259 | version "2.7.1" 3260 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.1.tgz#546a51741ad5a6b07e9e31b0b10441a917df528a" 3261 | dependencies: 3262 | builtin-status-codes "^3.0.0" 3263 | inherits "^2.0.1" 3264 | readable-stream "^2.2.6" 3265 | to-arraybuffer "^1.0.0" 3266 | xtend "^4.0.0" 3267 | 3268 | strict-uri-encode@^1.0.0: 3269 | version "1.1.0" 3270 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 3271 | 3272 | string-width@^1.0.1, string-width@^1.0.2: 3273 | version "1.0.2" 3274 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3275 | dependencies: 3276 | code-point-at "^1.0.0" 3277 | is-fullwidth-code-point "^1.0.0" 3278 | strip-ansi "^3.0.0" 3279 | 3280 | string-width@^2.0.0: 3281 | version "2.0.0" 3282 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3283 | dependencies: 3284 | is-fullwidth-code-point "^2.0.0" 3285 | strip-ansi "^3.0.0" 3286 | 3287 | string_decoder@^0.10.25: 3288 | version "0.10.31" 3289 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3290 | 3291 | string_decoder@~1.0.0: 3292 | version "1.0.0" 3293 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 3294 | dependencies: 3295 | buffer-shims "~1.0.0" 3296 | 3297 | stringstream@~0.0.4: 3298 | version "0.0.5" 3299 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3300 | 3301 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3302 | version "3.0.1" 3303 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3304 | dependencies: 3305 | ansi-regex "^2.0.0" 3306 | 3307 | strip-bom@^2.0.0: 3308 | version "2.0.0" 3309 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3310 | dependencies: 3311 | is-utf8 "^0.2.0" 3312 | 3313 | strip-eof@^1.0.0: 3314 | version "1.0.0" 3315 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3316 | 3317 | strip-json-comments@~2.0.1: 3318 | version "2.0.1" 3319 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3320 | 3321 | supports-color@3.1.2, supports-color@^3.1.0: 3322 | version "3.1.2" 3323 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3324 | dependencies: 3325 | has-flag "^1.0.0" 3326 | 3327 | supports-color@^2.0.0: 3328 | version "2.0.0" 3329 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3330 | 3331 | supports-color@^3.1.2, supports-color@^3.2.3: 3332 | version "3.2.3" 3333 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3334 | dependencies: 3335 | has-flag "^1.0.0" 3336 | 3337 | svgo@^0.7.0: 3338 | version "0.7.2" 3339 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 3340 | dependencies: 3341 | coa "~1.0.1" 3342 | colors "~1.1.2" 3343 | csso "~2.3.1" 3344 | js-yaml "~3.7.0" 3345 | mkdirp "~0.5.1" 3346 | sax "~1.2.1" 3347 | whet.extend "~0.9.9" 3348 | 3349 | symbol-observable@^1.0.1: 3350 | version "1.0.4" 3351 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3352 | 3353 | symbol-tree@^3.2.1: 3354 | version "3.2.2" 3355 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3356 | 3357 | tapable@^0.2.5, tapable@~0.2.5: 3358 | version "0.2.6" 3359 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d" 3360 | 3361 | tar-pack@^3.4.0: 3362 | version "3.4.0" 3363 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3364 | dependencies: 3365 | debug "^2.2.0" 3366 | fstream "^1.0.10" 3367 | fstream-ignore "^1.0.5" 3368 | once "^1.3.3" 3369 | readable-stream "^2.1.4" 3370 | rimraf "^2.5.1" 3371 | tar "^2.2.1" 3372 | uid-number "^0.0.6" 3373 | 3374 | tar@^2.2.1: 3375 | version "2.2.1" 3376 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3377 | dependencies: 3378 | block-stream "*" 3379 | fstream "^1.0.2" 3380 | inherits "2" 3381 | 3382 | term-size@^0.1.0: 3383 | version "0.1.1" 3384 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-0.1.1.tgz#87360b96396cab5760963714cda0d0cbeecad9ca" 3385 | dependencies: 3386 | execa "^0.4.0" 3387 | 3388 | test-exclude@^4.1.0: 3389 | version "4.1.1" 3390 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3391 | dependencies: 3392 | arrify "^1.0.1" 3393 | micromatch "^2.3.11" 3394 | object-assign "^4.1.0" 3395 | read-pkg-up "^1.0.1" 3396 | require-main-filename "^1.0.1" 3397 | 3398 | timed-out@^4.0.0: 3399 | version "4.0.1" 3400 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3401 | 3402 | timers-browserify@^2.0.2: 3403 | version "2.0.2" 3404 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 3405 | dependencies: 3406 | setimmediate "^1.0.4" 3407 | 3408 | to-arraybuffer@^1.0.0: 3409 | version "1.0.1" 3410 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3411 | 3412 | to-fast-properties@^1.0.1: 3413 | version "1.0.3" 3414 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3415 | 3416 | to-string-loader@^1.1.5: 3417 | version "1.1.5" 3418 | resolved "https://registry.yarnpkg.com/to-string-loader/-/to-string-loader-1.1.5.tgz#7b7aa17891b7bb4947a7a11bfb03b5fde9c6e695" 3419 | dependencies: 3420 | loader-utils "^0.2.16" 3421 | 3422 | tough-cookie@>=2.3.0, tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3423 | version "2.3.2" 3424 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3425 | dependencies: 3426 | punycode "^1.4.1" 3427 | 3428 | tr46@~0.0.3: 3429 | version "0.0.3" 3430 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3431 | 3432 | trim-right@^1.0.1: 3433 | version "1.0.1" 3434 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3435 | 3436 | tsickle@^0.21.0: 3437 | version "0.21.6" 3438 | resolved "https://registry.yarnpkg.com/tsickle/-/tsickle-0.21.6.tgz#53b01b979c5c13fdb13afb3fb958177e5991588d" 3439 | dependencies: 3440 | minimist "^1.2.0" 3441 | mkdirp "^0.5.1" 3442 | source-map "^0.5.6" 3443 | source-map-support "^0.4.2" 3444 | 3445 | tslint-no-unused-var@^0.0.6: 3446 | version "0.0.6" 3447 | resolved "https://registry.yarnpkg.com/tslint-no-unused-var/-/tslint-no-unused-var-0.0.6.tgz#e1ab1001bba656e77c0eac285f9354ca5f30bf6a" 3448 | 3449 | tslint@~4.5.1: 3450 | version "4.5.1" 3451 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-4.5.1.tgz#05356871bef23a434906734006fc188336ba824b" 3452 | dependencies: 3453 | babel-code-frame "^6.20.0" 3454 | colors "^1.1.2" 3455 | diff "^3.0.1" 3456 | findup-sync "~0.3.0" 3457 | glob "^7.1.1" 3458 | optimist "~0.6.0" 3459 | resolve "^1.1.7" 3460 | tsutils "^1.1.0" 3461 | update-notifier "^2.0.0" 3462 | 3463 | tsutils@^1.1.0: 3464 | version "1.9.1" 3465 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-1.9.1.tgz#b9f9ab44e55af9681831d5f28d0aeeaf5c750cb0" 3466 | 3467 | tty-browserify@0.0.0: 3468 | version "0.0.0" 3469 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3470 | 3471 | tunnel-agent@^0.6.0: 3472 | version "0.6.0" 3473 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3474 | dependencies: 3475 | safe-buffer "^5.0.1" 3476 | 3477 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3478 | version "0.14.5" 3479 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3480 | 3481 | type-check@~0.3.2: 3482 | version "0.3.2" 3483 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3484 | dependencies: 3485 | prelude-ls "~1.1.2" 3486 | 3487 | typescript@^2.3.2: 3488 | version "2.3.2" 3489 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.3.2.tgz#f0f045e196f69a72f06b25fd3bd39d01c3ce9984" 3490 | 3491 | uglify-js@^2.6, uglify-js@^2.8.5: 3492 | version "2.8.26" 3493 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.26.tgz#3a1db8ae0a0aba7f92e1ddadadbd0293d549f90e" 3494 | dependencies: 3495 | source-map "~0.5.1" 3496 | yargs "~3.10.0" 3497 | optionalDependencies: 3498 | uglify-to-browserify "~1.0.0" 3499 | 3500 | uglify-to-browserify@~1.0.0: 3501 | version "1.0.2" 3502 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3503 | 3504 | uid-number@^0.0.6: 3505 | version "0.0.6" 3506 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3507 | 3508 | uniq@^1.0.1: 3509 | version "1.0.1" 3510 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 3511 | 3512 | uniqid@^4.0.0: 3513 | version "4.1.1" 3514 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 3515 | dependencies: 3516 | macaddress "^0.2.8" 3517 | 3518 | uniqs@^2.0.0: 3519 | version "2.0.0" 3520 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 3521 | 3522 | unique-string@^1.0.0: 3523 | version "1.0.0" 3524 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3525 | dependencies: 3526 | crypto-random-string "^1.0.0" 3527 | 3528 | universalify@^0.1.0: 3529 | version "0.1.0" 3530 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.0.tgz#9eb1c4651debcc670cc94f1a75762332bb967778" 3531 | 3532 | unzip-response@^2.0.1: 3533 | version "2.0.1" 3534 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3535 | 3536 | update-notifier@^2.0.0: 3537 | version "2.1.0" 3538 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.1.0.tgz#ec0c1e53536b76647a24b77cb83966d9315123d9" 3539 | dependencies: 3540 | boxen "^1.0.0" 3541 | chalk "^1.0.0" 3542 | configstore "^3.0.0" 3543 | is-npm "^1.0.0" 3544 | latest-version "^3.0.0" 3545 | lazy-req "^2.0.0" 3546 | semver-diff "^2.0.0" 3547 | xdg-basedir "^3.0.0" 3548 | 3549 | url-parse-lax@^1.0.0: 3550 | version "1.0.0" 3551 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3552 | dependencies: 3553 | prepend-http "^1.0.1" 3554 | 3555 | url@^0.11.0: 3556 | version "0.11.0" 3557 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3558 | dependencies: 3559 | punycode "1.3.2" 3560 | querystring "0.2.0" 3561 | 3562 | util-deprecate@~1.0.1: 3563 | version "1.0.2" 3564 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3565 | 3566 | util@0.10.3, util@^0.10.3: 3567 | version "0.10.3" 3568 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3569 | dependencies: 3570 | inherits "2.0.1" 3571 | 3572 | uuid@^3.0.0: 3573 | version "3.0.1" 3574 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3575 | 3576 | validate-npm-package-license@^3.0.1: 3577 | version "3.0.1" 3578 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3579 | dependencies: 3580 | spdx-correct "~1.0.0" 3581 | spdx-expression-parse "~1.0.0" 3582 | 3583 | vendors@^1.0.0: 3584 | version "1.0.1" 3585 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 3586 | 3587 | verror@1.3.6: 3588 | version "1.3.6" 3589 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3590 | dependencies: 3591 | extsprintf "1.0.2" 3592 | 3593 | vm-browserify@0.0.4: 3594 | version "0.0.4" 3595 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3596 | dependencies: 3597 | indexof "0.0.1" 3598 | 3599 | watchpack@^1.3.1: 3600 | version "1.3.1" 3601 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87" 3602 | dependencies: 3603 | async "^2.1.2" 3604 | chokidar "^1.4.3" 3605 | graceful-fs "^4.1.2" 3606 | 3607 | webidl-conversions@^3.0.0: 3608 | version "3.0.1" 3609 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3610 | 3611 | webidl-conversions@^4.0.0: 3612 | version "4.0.1" 3613 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3614 | 3615 | webpack-info-plugin@^0.1.0: 3616 | version "0.1.0" 3617 | resolved "https://registry.yarnpkg.com/webpack-info-plugin/-/webpack-info-plugin-0.1.0.tgz#dffe7aa88fcb96c59cc450976421eaf98cdb7901" 3618 | dependencies: 3619 | chalk "^1.1.1" 3620 | 3621 | webpack-node-externals@^1.6.0: 3622 | version "1.6.0" 3623 | resolved "https://registry.yarnpkg.com/webpack-node-externals/-/webpack-node-externals-1.6.0.tgz#232c62ec6092b100635a3d29d83c1747128df9bd" 3624 | 3625 | webpack-sources@^0.1.1: 3626 | version "0.1.5" 3627 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.5.tgz#aa1f3abf0f0d74db7111c40e500b84f966640750" 3628 | dependencies: 3629 | source-list-map "~0.1.7" 3630 | source-map "~0.5.3" 3631 | 3632 | webpack-sources@^0.2.3: 3633 | version "0.2.3" 3634 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.2.3.tgz#17c62bfaf13c707f9d02c479e0dcdde8380697fb" 3635 | dependencies: 3636 | source-list-map "^1.1.1" 3637 | source-map "~0.5.3" 3638 | 3639 | webpack@^2.5.1: 3640 | version "2.5.1" 3641 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.5.1.tgz#61742f0cf8af555b87460a9cd8bba2f1e3ee2fce" 3642 | dependencies: 3643 | acorn "^5.0.0" 3644 | acorn-dynamic-import "^2.0.0" 3645 | ajv "^4.7.0" 3646 | ajv-keywords "^1.1.1" 3647 | async "^2.1.2" 3648 | enhanced-resolve "^3.0.0" 3649 | interpret "^1.0.0" 3650 | json-loader "^0.5.4" 3651 | json5 "^0.5.1" 3652 | loader-runner "^2.3.0" 3653 | loader-utils "^0.2.16" 3654 | memory-fs "~0.4.1" 3655 | mkdirp "~0.5.0" 3656 | node-libs-browser "^2.0.0" 3657 | source-map "^0.5.3" 3658 | supports-color "^3.1.0" 3659 | tapable "~0.2.5" 3660 | uglify-js "^2.8.5" 3661 | watchpack "^1.3.1" 3662 | webpack-sources "^0.2.3" 3663 | yargs "^6.0.0" 3664 | 3665 | whatwg-encoding@^1.0.1: 3666 | version "1.0.1" 3667 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3668 | dependencies: 3669 | iconv-lite "0.4.13" 3670 | 3671 | whatwg-url@^4.3.0: 3672 | version "4.8.0" 3673 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3674 | dependencies: 3675 | tr46 "~0.0.3" 3676 | webidl-conversions "^3.0.0" 3677 | 3678 | whet.extend@~0.9.9: 3679 | version "0.9.9" 3680 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 3681 | 3682 | which-module@^1.0.0: 3683 | version "1.0.0" 3684 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3685 | 3686 | which@^1.2.4, which@^1.2.8, which@^1.2.9: 3687 | version "1.2.14" 3688 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3689 | dependencies: 3690 | isexe "^2.0.0" 3691 | 3692 | wide-align@^1.1.0: 3693 | version "1.1.2" 3694 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3695 | dependencies: 3696 | string-width "^1.0.2" 3697 | 3698 | widest-line@^1.0.0: 3699 | version "1.0.0" 3700 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3701 | dependencies: 3702 | string-width "^1.0.1" 3703 | 3704 | window-size@0.1.0: 3705 | version "0.1.0" 3706 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3707 | 3708 | window-size@^0.2.0: 3709 | version "0.2.0" 3710 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 3711 | 3712 | wordwrap@0.0.2, wordwrap@~0.0.2: 3713 | version "0.0.2" 3714 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3715 | 3716 | wordwrap@~1.0.0: 3717 | version "1.0.0" 3718 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3719 | 3720 | wrap-ansi@^2.0.0: 3721 | version "2.1.0" 3722 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3723 | dependencies: 3724 | string-width "^1.0.1" 3725 | strip-ansi "^3.0.1" 3726 | 3727 | wrappy@1: 3728 | version "1.0.2" 3729 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3730 | 3731 | write-file-atomic@^1.1.4: 3732 | version "1.3.4" 3733 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3734 | dependencies: 3735 | graceful-fs "^4.1.11" 3736 | imurmurhash "^0.1.4" 3737 | slide "^1.1.5" 3738 | 3739 | write-file-atomic@^2.0.0: 3740 | version "2.1.0" 3741 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" 3742 | dependencies: 3743 | graceful-fs "^4.1.11" 3744 | imurmurhash "^0.1.4" 3745 | slide "^1.1.5" 3746 | 3747 | xdg-basedir@^3.0.0: 3748 | version "3.0.0" 3749 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3750 | 3751 | xhr2@^0.1.4: 3752 | version "0.1.4" 3753 | resolved "https://registry.yarnpkg.com/xhr2/-/xhr2-0.1.4.tgz#7f87658847716db5026323812f818cadab387a5f" 3754 | 3755 | xml-name-validator@^2.0.1: 3756 | version "2.0.1" 3757 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3758 | 3759 | xtend@^4.0.0: 3760 | version "4.0.1" 3761 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3762 | 3763 | y18n@^3.2.1: 3764 | version "3.2.1" 3765 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3766 | 3767 | yallist@^2.0.0: 3768 | version "2.1.2" 3769 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3770 | 3771 | yargs-parser@^2.4.1: 3772 | version "2.4.1" 3773 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" 3774 | dependencies: 3775 | camelcase "^3.0.0" 3776 | lodash.assign "^4.0.6" 3777 | 3778 | yargs-parser@^4.2.0: 3779 | version "4.2.1" 3780 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3781 | dependencies: 3782 | camelcase "^3.0.0" 3783 | 3784 | yargs-parser@^5.0.0: 3785 | version "5.0.0" 3786 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 3787 | dependencies: 3788 | camelcase "^3.0.0" 3789 | 3790 | yargs@^4.8.0: 3791 | version "4.8.1" 3792 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" 3793 | dependencies: 3794 | cliui "^3.2.0" 3795 | decamelize "^1.1.1" 3796 | get-caller-file "^1.0.1" 3797 | lodash.assign "^4.0.3" 3798 | os-locale "^1.4.0" 3799 | read-pkg-up "^1.0.1" 3800 | require-directory "^2.1.1" 3801 | require-main-filename "^1.0.1" 3802 | set-blocking "^2.0.0" 3803 | string-width "^1.0.1" 3804 | which-module "^1.0.0" 3805 | window-size "^0.2.0" 3806 | y18n "^3.2.1" 3807 | yargs-parser "^2.4.1" 3808 | 3809 | yargs@^6.0.0: 3810 | version "6.6.0" 3811 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3812 | dependencies: 3813 | camelcase "^3.0.0" 3814 | cliui "^3.2.0" 3815 | decamelize "^1.1.1" 3816 | get-caller-file "^1.0.1" 3817 | os-locale "^1.4.0" 3818 | read-pkg-up "^1.0.1" 3819 | require-directory "^2.1.1" 3820 | require-main-filename "^1.0.1" 3821 | set-blocking "^2.0.0" 3822 | string-width "^1.0.2" 3823 | which-module "^1.0.0" 3824 | y18n "^3.2.1" 3825 | yargs-parser "^4.2.0" 3826 | 3827 | yargs@^7.1.0: 3828 | version "7.1.0" 3829 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 3830 | dependencies: 3831 | camelcase "^3.0.0" 3832 | cliui "^3.2.0" 3833 | decamelize "^1.1.1" 3834 | get-caller-file "^1.0.1" 3835 | os-locale "^1.4.0" 3836 | read-pkg-up "^1.0.1" 3837 | require-directory "^2.1.1" 3838 | require-main-filename "^1.0.1" 3839 | set-blocking "^2.0.0" 3840 | string-width "^1.0.2" 3841 | which-module "^1.0.0" 3842 | y18n "^3.2.1" 3843 | yargs-parser "^5.0.0" 3844 | 3845 | yargs@~3.10.0: 3846 | version "3.10.0" 3847 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3848 | dependencies: 3849 | camelcase "^1.0.2" 3850 | cliui "^2.1.0" 3851 | decamelize "^1.0.0" 3852 | window-size "0.1.0" 3853 | 3854 | zone.js@^0.8.10: 3855 | version "0.8.10" 3856 | resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.8.10.tgz#6d1b696492c029cdbe808e59e87bbd9491b98aa8" 3857 | --------------------------------------------------------------------------------