├── .angular-cli.json ├── .editorconfig ├── .firebaserc ├── .gitignore ├── LICENSE ├── README.md ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── firebase.json ├── functions ├── .eslintrc.json ├── index.js ├── package.json └── yarn.lock ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ └── app.server.module.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.server.ts ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.server.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.angular-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "./node_modules/@angular/cli/lib/config/schema.json", 3 | "project": { 4 | "name": "angular-universal-firebase" 5 | }, 6 | "apps": [ 7 | { 8 | "root": "src", 9 | "outDir": "dist", 10 | "assets": [ 11 | "assets", 12 | "favicon.ico" 13 | ], 14 | "index": "index.html", 15 | "main": "main.ts", 16 | "polyfills": "polyfills.ts", 17 | "test": "test.ts", 18 | "tsconfig": "tsconfig.app.json", 19 | "testTsconfig": "tsconfig.spec.json", 20 | "prefix": "app", 21 | "styles": [ 22 | "styles.css" 23 | ], 24 | "scripts": [], 25 | "environmentSource": "environments/environment.ts", 26 | "environments": { 27 | "dev": "environments/environment.ts", 28 | "prod": "environments/environment.prod.ts" 29 | } 30 | }, 31 | { 32 | "root": "src", 33 | "outDir": "dist-server/", 34 | "assets": [ 35 | "assets", 36 | "favicon.ico" 37 | ], 38 | "index": "index.html", 39 | "main": "main.server.ts", 40 | "polyfills": "polyfills.ts", 41 | "test": "test.ts", 42 | "tsconfig": "tsconfig.server.json", 43 | "testTsconfig": "tsconfig.spec.json", 44 | "prefix": "app", 45 | "styles": [ 46 | "styles.css" 47 | ], 48 | "scripts": [], 49 | "environmentSource": "environments/environment.ts", 50 | "environments": { 51 | "dev": "environments/environment.ts", 52 | "prod": "environments/environment.prod.ts" 53 | }, 54 | "platform": "server", 55 | "name": "universal" 56 | } 57 | ], 58 | "e2e": { 59 | "protractor": { 60 | "config": "./protractor.conf.js" 61 | } 62 | }, 63 | "lint": [ 64 | { 65 | "project": "src/tsconfig.app.json", 66 | "exclude": "**/node_modules/**" 67 | }, 68 | { 69 | "project": "src/tsconfig.spec.json", 70 | "exclude": "**/node_modules/**" 71 | }, 72 | { 73 | "project": "e2e/tsconfig.e2e.json", 74 | "exclude": "**/node_modules/**" 75 | } 76 | ], 77 | "test": { 78 | "karma": { 79 | "config": "./karma.conf.js" 80 | } 81 | }, 82 | "defaults": { 83 | "styleExt": "css", 84 | "component": {} 85 | } 86 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "angular-universal-fireba-57b9c" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /dist-server 6 | /functions/dist 7 | /functions/dist-server 8 | /tmp 9 | /out-tsc 10 | 11 | # dependencies 12 | /node_modules 13 | /functions/node_modules 14 | 15 | # IDEs and editors 16 | /.idea 17 | .project 18 | .classpath 19 | .c9/ 20 | *.launch 21 | .settings/ 22 | *.sublime-workspace 23 | 24 | # IDE - VSCode 25 | .vscode/* 26 | !.vscode/settings.json 27 | !.vscode/tasks.json 28 | !.vscode/launch.json 29 | !.vscode/extensions.json 30 | 31 | # misc 32 | /.sass-cache 33 | /connect.lock 34 | /coverage 35 | /libpeerconnection.log 36 | npm-debug.log 37 | testem.log 38 | /typings 39 | 40 | # e2e 41 | /e2e/*.js 42 | /e2e/*.map 43 | 44 | # System Files 45 | .DS_Store 46 | Thumbs.db 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Stanza987 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Deploy Angular Universal App with Firebase 2 | This step-by-step tutorial will show you how to deploy a Angular App with server-side rendering using Angular Universal with Firebase Hosting. This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.7.1. 3 | * Angular version: 5.2.6 4 | * Firebase CLI version: 3.17.4 5 | 6 | # Generate a Universal Angular App 7 | Angular CLI has native Universal support starting from v1.6. We will use the CLI to quickly generate Angular Universal server files, and then make some minor changes for our production build. 8 | 9 | 1. Create a new Angular project 10 | ``` 11 | ng new angular-universal-firebase 12 | ``` 13 | 14 | 2. Generate Angular Universal using Angular CLI (v1.6 or greater) 15 | ``` 16 | ng generate universal universal 17 | ``` 18 | 19 | 3. Install `@angular/platform-server` 20 | ``` 21 | yarn add @angular/platform-server 22 | ``` 23 | 24 | 4. Modify `main.server.ts` to the following: 25 | ```typescript 26 | import { enableProdMode } from '@angular/core'; 27 | export { AppServerModule } from './app/app.server.module'; 28 | 29 | enableProdMode(); 30 | ``` 31 | 32 | 5. Add `/dist-server` to `.gitignore` 33 | ```git 34 | # compiled output 35 | /dist 36 | /dist-server 37 | ... 38 | ``` 39 | 40 | 6. Build the app (`/dist` folder) and the server to render the app (`/dist-server` folder). 41 | ``` 42 | ng build --prod && ng build --prod --app universal --output-hashing=none 43 | ``` 44 | 45 | # Deploying to Firebase 46 | Since we now have an Angular app with a `/dist` and `/dist-server` directories, we will now use Firebase Cloud Functions to serve our application. This guide was originally written by *Aaron Te* and can be found at [Hackernoon: Deploy Angular Universal w/ Firebase](https://hackernoon.com/deploy-angular-universal-w-firebase-ad70ea2413a1), but has been slightly modified with minor changes. 47 | 48 | 1. Create a Firebase project (eg. `angular-universal-firebase`) 49 | 50 | 2. Log in to firebase using 51 | ``` 52 | firebase login 53 | ``` 54 | 55 | 3. Initialize Firebase in the Angular project 56 | ``` 57 | firebase init 58 | ``` 59 | * Select `Functions` and `Hosting` for features 60 | * Select the firebase project you created (eg. `angular-universal-firebase`) 61 | * Select `javascipt` as the language used to write Cloud Functions 62 | * Select `no` to install dependencies with npm 63 | * Select all defaults for `Hosting` 64 | 65 | 4. Add Angular dependencies to `functions/package.json`, including @angular, rxjs, and zone.js. The easiest way to add these dependencies will be to copy them from your root `package.json` file. **IMPORTANT: Install dependencies in the `functions` directory with yarn. NPM does not properly install `firebase-admin`**. You will have to install express using `yarn add express`. 66 | ```json 67 | "dependencies": { 68 | "@angular/animations": "^5.2.6", 69 | "@angular/common": "^5.2.6", 70 | "@angular/compiler": "^5.2.6", 71 | "@angular/core": "^5.2.6", 72 | "@angular/forms": "^5.2.6", 73 | "@angular/http": "^5.2.6", 74 | "@angular/platform-browser": "^5.2.6", 75 | "@angular/platform-browser-dynamic": "^5.2.6", 76 | "@angular/platform-server": "^5.2.6", 77 | "@angular/router": "^5.2.6", 78 | "express": "^4.16.2", 79 | "firebase-admin": "~5.9.0", 80 | "firebase-functions": "^0.8.1", 81 | "rxjs": "^5.5.6", 82 | "zone.js": "^0.8.20" 83 | }, 84 | ``` 85 | 86 | 5. Install all dependencies in the `functions` directory using `yarn`. 87 | ``` 88 | yarn install 89 | ``` 90 | 91 | 6. Copy the `dist` and `dist-server` folders into the `functions` directory. This is because Firebase functions cannot access files outside of this directory. There should now be exact copies of those two folders in `functions/dist` and `functions/dist-server`, respectively. 92 | 93 | 7. Create Firebase function (`index.js`) to serve the app. This file is found in the `functions` directory. 94 | ```javascript 95 | require('zone.js/dist/zone-node'); 96 | 97 | const functions = require('firebase-functions'); 98 | const express = require('express'); 99 | const path = require('path'); 100 | 101 | const { enableProdMode } = require('@angular/core'); 102 | const { renderModuleFactory } = require('@angular/platform-server'); 103 | const { AppServerModuleNgFactory } = require('./dist-server/main.bundle'); 104 | 105 | enableProdMode(); 106 | 107 | const index = require('fs') 108 | .readFileSync(path.resolve(__dirname, './dist/index.html'), 'utf8') 109 | .toString(); 110 | 111 | let app = express(); 112 | 113 | app.get('**', function (req, res) { 114 | renderModuleFactory(AppServerModuleNgFactory, { 115 | url: req.path, 116 | document: index 117 | }).then(html => res.status(200).send(html)); 118 | }); 119 | 120 | exports.ssr = functions.https.onRequest(app); 121 | ``` 122 | 123 | 8. Update `firebase.json` to: 124 | ```json 125 | { 126 | "hosting": { 127 | "public": "dist", 128 | "ignore": [ 129 | "firebase.json", 130 | "**/.*", 131 | "**/node_modules/**" 132 | ], 133 | "rewrites": [{ 134 | "source": "**", 135 | "function": "ssr" 136 | }] 137 | } 138 | } 139 | ``` 140 | 141 | 9. Delete the `/public` folder that was automatically generated by Firebase functions during the `firebase init` process 142 | ``` 143 | rm -rf public 144 | ``` 145 | 146 | 10. Delete `dist/index.html` from the root directory. This is so Firebase won’t serve the html file but rather run the ssr function. 147 | 148 | 11. Add `functions/dist`, `functions/dist-server` and `functions/node_modules` to `.gitignore` 149 | ```git 150 | # compiled output 151 | /dist 152 | /dist-server 153 | /functions/dist 154 | /functions/dist-server 155 | ... 156 | 157 | # dependencies 158 | /node_modules 159 | /functions/node_modules 160 | ``` 161 | 162 | 12. Deploy to Firebase 163 | ``` 164 | firebase deploy 165 | ``` 166 | 167 | # Further help 168 | To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). 169 | -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | 3 | describe('angular-universal-firebase App', () => { 4 | let page: AppPage; 5 | 6 | beforeEach(() => { 7 | page = new AppPage(); 8 | }); 9 | 10 | it('should display welcome message', () => { 11 | page.navigateTo(); 12 | expect(page.getParagraphText()).toEqual('Welcome to app!'); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getParagraphText() { 9 | return element(by.css('app-root h1')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "baseUrl": "./", 6 | "module": "commonjs", 7 | "target": "es5", 8 | "types": [ 9 | "jasmine", 10 | "jasminewd2", 11 | "node" 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosting": { 3 | "public": "dist", 4 | "ignore": [ 5 | "firebase.json", 6 | "**/.*", 7 | "**/node_modules/**" 8 | ], 9 | "rewrites": [ 10 | { 11 | "source": "**", 12 | "function": "ssr" 13 | } 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parserOptions": { 3 | // Required for certain syntax usages 4 | "ecmaVersion": 6 5 | }, 6 | "plugins": [ 7 | "promise" 8 | ], 9 | "extends": "eslint:recommended", 10 | "rules": { 11 | // Removed rule "disallow the use of console" from recommended eslint rules 12 | "no-console": "off", 13 | 14 | // Removed rule "disallow multiple spaces in regular expressions" from recommended eslint rules 15 | "no-regex-spaces": "off", 16 | 17 | // Removed rule "disallow the use of debugger" from recommended eslint rules 18 | "no-debugger": "off", 19 | 20 | // Removed rule "disallow unused variables" from recommended eslint rules 21 | "no-unused-vars": "off", 22 | 23 | // Removed rule "disallow mixed spaces and tabs for indentation" from recommended eslint rules 24 | "no-mixed-spaces-and-tabs": "off", 25 | 26 | // Removed rule "disallow the use of undeclared variables unless mentioned in /*global */ comments" from recommended eslint rules 27 | "no-undef": "off", 28 | 29 | // Warn against template literal placeholder syntax in regular strings 30 | "no-template-curly-in-string": 1, 31 | 32 | // Warn if return statements do not either always or never specify values 33 | "consistent-return": 1, 34 | 35 | // Warn if no return statements in callbacks of array methods 36 | "array-callback-return": 1, 37 | 38 | // Require the use of === and !== 39 | "eqeqeq": 2, 40 | 41 | // Disallow the use of alert, confirm, and prompt 42 | "no-alert": 2, 43 | 44 | // Disallow the use of arguments.caller or arguments.callee 45 | "no-caller": 2, 46 | 47 | // Disallow null comparisons without type-checking operators 48 | "no-eq-null": 2, 49 | 50 | // Disallow the use of eval() 51 | "no-eval": 2, 52 | 53 | // Warn against extending native types 54 | "no-extend-native": 1, 55 | 56 | // Warn against unnecessary calls to .bind() 57 | "no-extra-bind": 1, 58 | 59 | // Warn against unnecessary labels 60 | "no-extra-label": 1, 61 | 62 | // Disallow leading or trailing decimal points in numeric literals 63 | "no-floating-decimal": 2, 64 | 65 | // Warn against shorthand type conversions 66 | "no-implicit-coercion": 1, 67 | 68 | // Warn against function declarations and expressions inside loop statements 69 | "no-loop-func": 1, 70 | 71 | // Disallow new operators with the Function object 72 | "no-new-func": 2, 73 | 74 | // Warn against new operators with the String, Number, and Boolean objects 75 | "no-new-wrappers": 1, 76 | 77 | // Disallow throwing literals as exceptions 78 | "no-throw-literal": 2, 79 | 80 | // Require using Error objects as Promise rejection reasons 81 | "prefer-promise-reject-errors": 2, 82 | 83 | // Enforce “for” loop update clause moving the counter in the right direction 84 | "for-direction": 2, 85 | 86 | // Enforce return statements in getters 87 | "getter-return": 2, 88 | 89 | // Disallow await inside of loops 90 | "no-await-in-loop": 2, 91 | 92 | // Disallow comparing against -0 93 | "no-compare-neg-zero": 2, 94 | 95 | // Warn against catch clause parameters from shadowing variables in the outer scope 96 | "no-catch-shadow": 1, 97 | 98 | // Disallow identifiers from shadowing restricted names 99 | "no-shadow-restricted-names": 2, 100 | 101 | // Enforce return statements in callbacks of array methods 102 | "callback-return": 2, 103 | 104 | // Require error handling in callbacks 105 | "handle-callback-err": 2, 106 | 107 | // Warn against string concatenation with __dirname and __filename 108 | "no-path-concat": 1, 109 | 110 | // Prefer using arrow functions for callbacks 111 | "prefer-arrow-callback": 1, 112 | 113 | // Return inside each then() to create readable and reusable Promise chains. 114 | // Forces developers to return console logs and http calls in promises. 115 | "promise/always-return": 2, 116 | 117 | //Enforces the use of catch() on un-returned promises 118 | "promise/catch-or-return": 2, 119 | 120 | // Warn against nested then() or catch() statements 121 | "promise/no-nesting": 1 122 | } 123 | } 124 | -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- 1 | require('zone.js/dist/zone-node'); 2 | 3 | const functions = require('firebase-functions'); 4 | const express = require('express'); 5 | const path = require('path'); 6 | 7 | const { enableProdMode } = require('@angular/core'); 8 | const { renderModuleFactory } = require('@angular/platform-server'); 9 | const { AppServerModuleNgFactory } = require('./dist-server/main.bundle'); 10 | 11 | enableProdMode(); 12 | 13 | const index = require('fs') 14 | .readFileSync(path.resolve(__dirname, './dist/index.html'), 'utf8') 15 | .toString(); 16 | 17 | let app = express(); 18 | 19 | app.get('**', function (req, res) { 20 | renderModuleFactory(AppServerModuleNgFactory, { 21 | url: req.path, 22 | document: index 23 | }).then(html => res.status(200).send(html)); 24 | }); 25 | 26 | exports.ssr = functions.https.onRequest(app); -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "functions", 3 | "description": "Cloud Functions for Firebase", 4 | "scripts": { 5 | "lint": "./node_modules/.bin/eslint .", 6 | "serve": "firebase serve --only functions", 7 | "shell": "firebase experimental:functions:shell", 8 | "start": "npm run shell", 9 | "deploy": "firebase deploy --only functions", 10 | "logs": "firebase functions:log" 11 | }, 12 | "dependencies": { 13 | "@angular/animations": "^5.2.6", 14 | "@angular/common": "^5.2.6", 15 | "@angular/compiler": "^5.2.6", 16 | "@angular/core": "^5.2.6", 17 | "@angular/forms": "^5.2.6", 18 | "@angular/http": "^5.2.6", 19 | "@angular/platform-browser": "^5.2.6", 20 | "@angular/platform-browser-dynamic": "^5.2.6", 21 | "@angular/platform-server": "^5.2.6", 22 | "@angular/router": "^5.2.6", 23 | "express": "^4.16.2", 24 | "firebase-admin": "~5.9.0", 25 | "firebase-functions": "^0.8.1", 26 | "rxjs": "^5.5.6", 27 | "zone.js": "^0.8.20" 28 | }, 29 | "devDependencies": { 30 | "eslint": "^4.12.0", 31 | "eslint-plugin-promise": "^3.6.0" 32 | }, 33 | "private": true 34 | } 35 | -------------------------------------------------------------------------------- /functions/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@angular/animations@^5.2.6": 6 | version "5.2.6" 7 | resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-5.2.6.tgz#433aace8929ce362762dcccdb5044c3945a194bd" 8 | dependencies: 9 | tslib "^1.7.1" 10 | 11 | "@angular/common@^5.2.6": 12 | version "5.2.6" 13 | resolved "https://registry.yarnpkg.com/@angular/common/-/common-5.2.6.tgz#0c6771739f1407eae0533e82c3ee42425badd489" 14 | dependencies: 15 | tslib "^1.7.1" 16 | 17 | "@angular/compiler@^5.2.6": 18 | version "5.2.6" 19 | resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-5.2.6.tgz#0abf72b46c401688342057e3fb7cd59fef0a5ab1" 20 | dependencies: 21 | tslib "^1.7.1" 22 | 23 | "@angular/core@^5.2.6": 24 | version "5.2.6" 25 | resolved "https://registry.yarnpkg.com/@angular/core/-/core-5.2.6.tgz#483fb0b720d563d3ec4d1895878249beafa39b9b" 26 | dependencies: 27 | tslib "^1.7.1" 28 | 29 | "@angular/forms@^5.2.6": 30 | version "5.2.6" 31 | resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-5.2.6.tgz#fa3e37a9e97fa3e2b24d8564a66a11d430379bfe" 32 | dependencies: 33 | tslib "^1.7.1" 34 | 35 | "@angular/http@^5.2.6": 36 | version "5.2.6" 37 | resolved "https://registry.yarnpkg.com/@angular/http/-/http-5.2.6.tgz#4fa92e61b9848f8571c61ae9ad32af27cd71b043" 38 | dependencies: 39 | tslib "^1.7.1" 40 | 41 | "@angular/platform-browser-dynamic@^5.2.6": 42 | version "5.2.6" 43 | resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-5.2.6.tgz#8795cca57306b7bdc2bc166d3928bc8eb145125c" 44 | dependencies: 45 | tslib "^1.7.1" 46 | 47 | "@angular/platform-browser@^5.2.6": 48 | version "5.2.6" 49 | resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-5.2.6.tgz#ecb8a6d37506ffb3f181ea10696a3c7feaf1674c" 50 | dependencies: 51 | tslib "^1.7.1" 52 | 53 | "@angular/platform-server@^5.2.6": 54 | version "5.2.6" 55 | resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-5.2.6.tgz#9a218acabd7a95b215ad8884f2f1d03d6faed024" 56 | dependencies: 57 | domino "^1.0.29" 58 | tslib "^1.7.1" 59 | xhr2 "^0.1.4" 60 | 61 | "@angular/router@^5.2.6": 62 | version "5.2.6" 63 | resolved "https://registry.yarnpkg.com/@angular/router/-/router-5.2.6.tgz#513b555d5cc4b206833646468ffb47fa8f5c1c0b" 64 | dependencies: 65 | tslib "^1.7.1" 66 | 67 | "@firebase/app-types@0.1.0": 68 | version "0.1.0" 69 | resolved "https://registry.yarnpkg.com/@firebase/app-types/-/app-types-0.1.0.tgz#27069ba4f8d74990eae7c88ec8f3d282e5215786" 70 | 71 | "@firebase/app@^0.1.1": 72 | version "0.1.5" 73 | resolved "https://registry.yarnpkg.com/@firebase/app/-/app-0.1.5.tgz#3e7610a69ba6dbebc649a1b785eb898619c8a067" 74 | dependencies: 75 | "@firebase/app-types" "0.1.0" 76 | "@firebase/util" "0.1.5" 77 | 78 | "@firebase/database-types@0.1.0": 79 | version "0.1.0" 80 | resolved "https://registry.yarnpkg.com/@firebase/database-types/-/database-types-0.1.0.tgz#dbc9e096cf1061ac422f17e8957baac6d3c018a7" 81 | 82 | "@firebase/database@^0.1.3": 83 | version "0.1.6" 84 | resolved "https://registry.yarnpkg.com/@firebase/database/-/database-0.1.6.tgz#52d92224398544dbd62e813729365d1b81b22df4" 85 | dependencies: 86 | "@firebase/database-types" "0.1.0" 87 | "@firebase/util" "0.1.5" 88 | faye-websocket "0.11.1" 89 | 90 | "@firebase/util@0.1.5": 91 | version "0.1.5" 92 | resolved "https://registry.yarnpkg.com/@firebase/util/-/util-0.1.5.tgz#b8daf57cedda1c035fddf5ca9c56b86a1f95b38b" 93 | 94 | "@google-cloud/common-grpc@^0.5.3": 95 | version "0.5.5" 96 | resolved "https://registry.yarnpkg.com/@google-cloud/common-grpc/-/common-grpc-0.5.5.tgz#ca805d7bbbcf47bbd82cf603e0386e963d6f5804" 97 | dependencies: 98 | "@google-cloud/common" "^0.16.1" 99 | dot-prop "^4.2.0" 100 | duplexify "^3.5.1" 101 | extend "^3.0.1" 102 | grpc "~1.7.2" 103 | is "^3.2.0" 104 | modelo "^4.2.0" 105 | retry-request "^3.3.1" 106 | through2 "^2.0.3" 107 | 108 | "@google-cloud/common@^0.15.1": 109 | version "0.15.1" 110 | resolved "https://registry.yarnpkg.com/@google-cloud/common/-/common-0.15.1.tgz#a6f79535de626cc0e05b0ccda9db0c36099e47a3" 111 | dependencies: 112 | array-uniq "^1.0.3" 113 | arrify "^1.0.1" 114 | concat-stream "^1.6.0" 115 | create-error-class "^3.0.2" 116 | duplexify "^3.5.0" 117 | ent "^2.2.0" 118 | extend "^3.0.1" 119 | google-auto-auth "^0.8.0" 120 | is "^3.2.0" 121 | log-driver "^1.2.5" 122 | methmeth "^1.1.0" 123 | modelo "^4.2.0" 124 | request "^2.79.0" 125 | retry-request "^3.0.0" 126 | split-array-stream "^1.0.0" 127 | stream-events "^1.0.1" 128 | string-format-obj "^1.1.0" 129 | through2 "^2.0.3" 130 | 131 | "@google-cloud/common@^0.16.1": 132 | version "0.16.1" 133 | resolved "https://registry.yarnpkg.com/@google-cloud/common/-/common-0.16.1.tgz#e1f9fc49553362997e1fbff737444f1b460ded78" 134 | dependencies: 135 | array-uniq "^1.0.3" 136 | arrify "^1.0.1" 137 | concat-stream "^1.6.0" 138 | create-error-class "^3.0.2" 139 | duplexify "^3.5.0" 140 | ent "^2.2.0" 141 | extend "^3.0.1" 142 | google-auto-auth "^0.9.0" 143 | is "^3.2.0" 144 | log-driver "1.2.5" 145 | methmeth "^1.1.0" 146 | modelo "^4.2.0" 147 | request "^2.79.0" 148 | retry-request "^3.0.0" 149 | split-array-stream "^1.0.0" 150 | stream-events "^1.0.1" 151 | string-format-obj "^1.1.0" 152 | through2 "^2.0.3" 153 | 154 | "@google-cloud/firestore@^0.11.2": 155 | version "0.11.2" 156 | resolved "https://registry.yarnpkg.com/@google-cloud/firestore/-/firestore-0.11.2.tgz#b511a1ec7a3b9df5cc453034b24391b0ccff9b1d" 157 | dependencies: 158 | "@google-cloud/common" "^0.15.1" 159 | "@google-cloud/common-grpc" "^0.5.3" 160 | bun "^0.0.12" 161 | extend "^3.0.1" 162 | functional-red-black-tree "^1.0.1" 163 | google-gax "^0.14.3" 164 | is "^3.2.1" 165 | safe-buffer "^5.1.1" 166 | through2 "^2.0.3" 167 | 168 | "@google-cloud/storage@^1.2.1": 169 | version "1.5.1" 170 | resolved "https://registry.yarnpkg.com/@google-cloud/storage/-/storage-1.5.1.tgz#6c790260b87e7a1bcc637ec3747151db75bcf34f" 171 | dependencies: 172 | "@google-cloud/common" "^0.15.1" 173 | arrify "^1.0.0" 174 | async "^2.0.1" 175 | concat-stream "^1.5.0" 176 | create-error-class "^3.0.2" 177 | duplexify "^3.5.0" 178 | extend "^3.0.0" 179 | gcs-resumable-upload "^0.8.2" 180 | hash-stream-validation "^0.2.1" 181 | is "^3.0.1" 182 | mime-types "^2.0.8" 183 | once "^1.3.1" 184 | pumpify "^1.3.3" 185 | request "^2.83.0" 186 | safe-buffer "^5.1.1" 187 | snakeize "^0.1.0" 188 | stream-events "^1.0.1" 189 | string-format-obj "^1.0.0" 190 | through2 "^2.0.0" 191 | 192 | "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": 193 | version "1.1.2" 194 | resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" 195 | 196 | "@protobufjs/base64@^1.1.2": 197 | version "1.1.2" 198 | resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" 199 | 200 | "@protobufjs/codegen@^2.0.4": 201 | version "2.0.4" 202 | resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" 203 | 204 | "@protobufjs/eventemitter@^1.1.0": 205 | version "1.1.0" 206 | resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" 207 | 208 | "@protobufjs/fetch@^1.1.0": 209 | version "1.1.0" 210 | resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" 211 | dependencies: 212 | "@protobufjs/aspromise" "^1.1.1" 213 | "@protobufjs/inquire" "^1.1.0" 214 | 215 | "@protobufjs/float@^1.0.2": 216 | version "1.0.2" 217 | resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" 218 | 219 | "@protobufjs/inquire@^1.1.0": 220 | version "1.1.0" 221 | resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" 222 | 223 | "@protobufjs/path@^1.1.2": 224 | version "1.1.2" 225 | resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" 226 | 227 | "@protobufjs/pool@^1.1.0": 228 | version "1.1.0" 229 | resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" 230 | 231 | "@protobufjs/utf8@^1.1.0": 232 | version "1.1.0" 233 | resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" 234 | 235 | "@types/body-parser@*": 236 | version "1.16.8" 237 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.16.8.tgz#687ec34140624a3bec2b1a8ea9268478ae8f3be3" 238 | dependencies: 239 | "@types/express" "*" 240 | "@types/node" "*" 241 | 242 | "@types/express-serve-static-core@*": 243 | version "4.11.0" 244 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.11.0.tgz#aaaf472777191c3e56ec7aa160034c6b55ebdd59" 245 | dependencies: 246 | "@types/node" "*" 247 | 248 | "@types/express@*", "@types/express@^4.0.33": 249 | version "4.11.0" 250 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.11.0.tgz#234d65280af917cb290634b7a8d6bcac24aecbad" 251 | dependencies: 252 | "@types/body-parser" "*" 253 | "@types/express-serve-static-core" "*" 254 | "@types/serve-static" "*" 255 | 256 | "@types/google-cloud__storage@^1.1.1": 257 | version "1.1.7" 258 | resolved "https://registry.yarnpkg.com/@types/google-cloud__storage/-/google-cloud__storage-1.1.7.tgz#f4b568b163cce16314f32f954f5b7d5c9001fa86" 259 | dependencies: 260 | "@types/node" "*" 261 | 262 | "@types/jsonwebtoken@^7.1.32": 263 | version "7.2.5" 264 | resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-7.2.5.tgz#413159d570ec45fc3e7da7ea3f7bca6fb9300e72" 265 | dependencies: 266 | "@types/node" "*" 267 | 268 | "@types/lodash@^4.14.34": 269 | version "4.14.91" 270 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.91.tgz#794611b28056d16b5436059c6d800b39d573cd3a" 271 | 272 | "@types/long@^3.0.32": 273 | version "3.0.32" 274 | resolved "https://registry.yarnpkg.com/@types/long/-/long-3.0.32.tgz#f4e5af31e9e9b196d8e5fca8a5e2e20aa3d60b69" 275 | 276 | "@types/mime@*": 277 | version "2.0.0" 278 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.0.tgz#5a7306e367c539b9f6543499de8dd519fac37a8b" 279 | 280 | "@types/node@*", "@types/node@^8.0.53": 281 | version "8.5.2" 282 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.5.2.tgz#83b8103fa9a2c2e83d78f701a9aa7c9539739aa5" 283 | 284 | "@types/serve-static@*": 285 | version "1.13.1" 286 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.1.tgz#1d2801fa635d274cd97d4ec07e26b21b44127492" 287 | dependencies: 288 | "@types/express-serve-static-core" "*" 289 | "@types/mime" "*" 290 | 291 | "@types/sha1@^1.1.0": 292 | version "1.1.1" 293 | resolved "https://registry.yarnpkg.com/@types/sha1/-/sha1-1.1.1.tgz#ab34efa782ff948d402d896afc9f10f41e94dd44" 294 | dependencies: 295 | "@types/node" "*" 296 | 297 | abbrev@1: 298 | version "1.1.1" 299 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 300 | 301 | accepts@~1.3.4: 302 | version "1.3.4" 303 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f" 304 | dependencies: 305 | mime-types "~2.1.16" 306 | negotiator "0.6.1" 307 | 308 | acorn-es7-plugin@^1.0.12: 309 | version "1.1.7" 310 | resolved "https://registry.yarnpkg.com/acorn-es7-plugin/-/acorn-es7-plugin-1.1.7.tgz#f2ee1f3228a90eead1245f9ab1922eb2e71d336b" 311 | 312 | acorn-jsx@^3.0.0: 313 | version "3.0.1" 314 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 315 | dependencies: 316 | acorn "^3.0.4" 317 | 318 | acorn@^3.0.4: 319 | version "3.3.0" 320 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 321 | 322 | acorn@^4.0.0: 323 | version "4.0.13" 324 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 325 | 326 | acorn@^5.4.0: 327 | version "5.5.0" 328 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.0.tgz#1abb587fbf051f94e3de20e6b26ef910b1828298" 329 | 330 | ajv-keywords@^3.0.0: 331 | version "3.1.0" 332 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.1.0.tgz#ac2b27939c543e95d2c06e7f7f5c27be4aa543be" 333 | 334 | ajv@^4.9.1: 335 | version "4.11.8" 336 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 337 | dependencies: 338 | co "^4.6.0" 339 | json-stable-stringify "^1.0.1" 340 | 341 | ajv@^5.1.0, ajv@^5.3.0: 342 | version "5.5.2" 343 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 344 | dependencies: 345 | co "^4.6.0" 346 | fast-deep-equal "^1.0.0" 347 | fast-json-stable-stringify "^2.0.0" 348 | json-schema-traverse "^0.3.0" 349 | 350 | ajv@^6.0.1: 351 | version "6.2.0" 352 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.2.0.tgz#afac295bbaa0152449e522742e4547c1ae9328d2" 353 | dependencies: 354 | fast-deep-equal "^1.0.0" 355 | fast-json-stable-stringify "^2.0.0" 356 | json-schema-traverse "^0.3.0" 357 | 358 | ansi-escapes@^3.0.0: 359 | version "3.0.0" 360 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 361 | 362 | ansi-regex@^2.0.0: 363 | version "2.1.1" 364 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 365 | 366 | ansi-regex@^3.0.0: 367 | version "3.0.0" 368 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 369 | 370 | ansi-styles@^2.2.1: 371 | version "2.2.1" 372 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 373 | 374 | ansi-styles@^3.2.0: 375 | version "3.2.0" 376 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 377 | dependencies: 378 | color-convert "^1.9.0" 379 | 380 | aproba@^1.0.3: 381 | version "1.2.0" 382 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 383 | 384 | are-we-there-yet@~1.1.2: 385 | version "1.1.4" 386 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 387 | dependencies: 388 | delegates "^1.0.0" 389 | readable-stream "^2.0.6" 390 | 391 | argparse@^1.0.7: 392 | version "1.0.10" 393 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 394 | dependencies: 395 | sprintf-js "~1.0.2" 396 | 397 | arguejs@^0.2.3: 398 | version "0.2.3" 399 | resolved "https://registry.yarnpkg.com/arguejs/-/arguejs-0.2.3.tgz#b6f939f5fe0e3cd1f3f93e2aa9262424bf312af7" 400 | 401 | array-filter@^1.0.0: 402 | version "1.0.0" 403 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83" 404 | 405 | array-flatten@1.1.1: 406 | version "1.1.1" 407 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 408 | 409 | array-union@^1.0.1: 410 | version "1.0.2" 411 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 412 | dependencies: 413 | array-uniq "^1.0.1" 414 | 415 | array-uniq@^1.0.1, array-uniq@^1.0.3: 416 | version "1.0.3" 417 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 418 | 419 | arrify@^1.0.0, arrify@^1.0.1: 420 | version "1.0.1" 421 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 422 | 423 | ascli@~1: 424 | version "1.0.1" 425 | resolved "https://registry.yarnpkg.com/ascli/-/ascli-1.0.1.tgz#bcfa5974a62f18e81cabaeb49732ab4a88f906bc" 426 | dependencies: 427 | colour "~0.7.1" 428 | optjs "~3.2.2" 429 | 430 | asn1@~0.2.3: 431 | version "0.2.3" 432 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 433 | 434 | assert-plus@1.0.0, assert-plus@^1.0.0: 435 | version "1.0.0" 436 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 437 | 438 | assert-plus@^0.2.0: 439 | version "0.2.0" 440 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 441 | 442 | async@^2.0.1, async@^2.3.0, async@^2.4.0: 443 | version "2.6.0" 444 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 445 | dependencies: 446 | lodash "^4.14.0" 447 | 448 | asynckit@^0.4.0: 449 | version "0.4.0" 450 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 451 | 452 | aws-sign2@~0.6.0: 453 | version "0.6.0" 454 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 455 | 456 | aws-sign2@~0.7.0: 457 | version "0.7.0" 458 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 459 | 460 | aws4@^1.2.1, aws4@^1.6.0: 461 | version "1.6.0" 462 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 463 | 464 | axios@^0.17.1: 465 | version "0.17.1" 466 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.17.1.tgz#2d8e3e5d0bdbd7327f91bc814f5c57660f81824d" 467 | dependencies: 468 | follow-redirects "^1.2.5" 469 | is-buffer "^1.1.5" 470 | 471 | babel-code-frame@^6.22.0: 472 | version "6.26.0" 473 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 474 | dependencies: 475 | chalk "^1.1.3" 476 | esutils "^2.0.2" 477 | js-tokens "^3.0.2" 478 | 479 | balanced-match@^1.0.0: 480 | version "1.0.0" 481 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 482 | 483 | base64url@2.0.0, base64url@^2.0.0: 484 | version "2.0.0" 485 | resolved "https://registry.yarnpkg.com/base64url/-/base64url-2.0.0.tgz#eac16e03ea1438eff9423d69baa36262ed1f70bb" 486 | 487 | bcrypt-pbkdf@^1.0.0: 488 | version "1.0.1" 489 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 490 | dependencies: 491 | tweetnacl "^0.14.3" 492 | 493 | block-stream@*: 494 | version "0.0.9" 495 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 496 | dependencies: 497 | inherits "~2.0.0" 498 | 499 | body-parser@1.18.2: 500 | version "1.18.2" 501 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" 502 | dependencies: 503 | bytes "3.0.0" 504 | content-type "~1.0.4" 505 | debug "2.6.9" 506 | depd "~1.1.1" 507 | http-errors "~1.6.2" 508 | iconv-lite "0.4.19" 509 | on-finished "~2.3.0" 510 | qs "6.5.1" 511 | raw-body "2.3.2" 512 | type-is "~1.6.15" 513 | 514 | boom@2.x.x: 515 | version "2.10.1" 516 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 517 | dependencies: 518 | hoek "2.x.x" 519 | 520 | boom@4.x.x: 521 | version "4.3.1" 522 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 523 | dependencies: 524 | hoek "4.x.x" 525 | 526 | boom@5.x.x: 527 | version "5.2.0" 528 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 529 | dependencies: 530 | hoek "4.x.x" 531 | 532 | brace-expansion@^1.1.7: 533 | version "1.1.8" 534 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 535 | dependencies: 536 | balanced-match "^1.0.0" 537 | concat-map "0.0.1" 538 | 539 | buffer-equal-constant-time@1.0.1: 540 | version "1.0.1" 541 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" 542 | 543 | buffer-equal@^1.0.0: 544 | version "1.0.0" 545 | resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" 546 | 547 | bun@^0.0.12: 548 | version "0.0.12" 549 | resolved "https://registry.yarnpkg.com/bun/-/bun-0.0.12.tgz#d54fae69f895557f275423bc14b404030b20a5fc" 550 | dependencies: 551 | readable-stream "~1.0.32" 552 | 553 | bytebuffer@~5: 554 | version "5.0.1" 555 | resolved "https://registry.yarnpkg.com/bytebuffer/-/bytebuffer-5.0.1.tgz#582eea4b1a873b6d020a48d58df85f0bba6cfddd" 556 | dependencies: 557 | long "~3" 558 | 559 | bytes@3.0.0: 560 | version "3.0.0" 561 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 562 | 563 | call-signature@0.0.2: 564 | version "0.0.2" 565 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 566 | 567 | caller-path@^0.1.0: 568 | version "0.1.0" 569 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 570 | dependencies: 571 | callsites "^0.2.0" 572 | 573 | callsites@^0.2.0: 574 | version "0.2.0" 575 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 576 | 577 | camelcase@^2.0.1: 578 | version "2.1.1" 579 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 580 | 581 | capture-stack-trace@^1.0.0: 582 | version "1.0.0" 583 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 584 | 585 | caseless@~0.12.0: 586 | version "0.12.0" 587 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 588 | 589 | chalk@^1.1.3: 590 | version "1.1.3" 591 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 592 | dependencies: 593 | ansi-styles "^2.2.1" 594 | escape-string-regexp "^1.0.2" 595 | has-ansi "^2.0.0" 596 | strip-ansi "^3.0.0" 597 | supports-color "^2.0.0" 598 | 599 | chalk@^2.0.0, chalk@^2.1.0: 600 | version "2.3.1" 601 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796" 602 | dependencies: 603 | ansi-styles "^3.2.0" 604 | escape-string-regexp "^1.0.5" 605 | supports-color "^5.2.0" 606 | 607 | chardet@^0.4.0: 608 | version "0.4.2" 609 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 610 | 611 | "charenc@>= 0.0.1": 612 | version "0.0.2" 613 | resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" 614 | 615 | circular-json@^0.3.1: 616 | version "0.3.3" 617 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 618 | 619 | cli-cursor@^2.1.0: 620 | version "2.1.0" 621 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 622 | dependencies: 623 | restore-cursor "^2.0.0" 624 | 625 | cli-width@^2.0.0: 626 | version "2.2.0" 627 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 628 | 629 | cliui@^3.0.3: 630 | version "3.2.0" 631 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 632 | dependencies: 633 | string-width "^1.0.1" 634 | strip-ansi "^3.0.1" 635 | wrap-ansi "^2.0.0" 636 | 637 | co@^4.6.0: 638 | version "4.6.0" 639 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 640 | 641 | code-point-at@^1.0.0: 642 | version "1.1.0" 643 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 644 | 645 | color-convert@^1.9.0: 646 | version "1.9.1" 647 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 648 | dependencies: 649 | color-name "^1.1.1" 650 | 651 | color-name@^1.1.1: 652 | version "1.1.3" 653 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 654 | 655 | colour@~0.7.1: 656 | version "0.7.1" 657 | resolved "https://registry.yarnpkg.com/colour/-/colour-0.7.1.tgz#9cb169917ec5d12c0736d3e8685746df1cadf778" 658 | 659 | combined-stream@^1.0.5, combined-stream@~1.0.5: 660 | version "1.0.5" 661 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 662 | dependencies: 663 | delayed-stream "~1.0.0" 664 | 665 | concat-map@0.0.1: 666 | version "0.0.1" 667 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 668 | 669 | concat-stream@^1.5.0, concat-stream@^1.6.0: 670 | version "1.6.0" 671 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 672 | dependencies: 673 | inherits "^2.0.3" 674 | readable-stream "^2.2.2" 675 | typedarray "^0.0.6" 676 | 677 | configstore@^3.0.0: 678 | version "3.1.1" 679 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 680 | dependencies: 681 | dot-prop "^4.1.0" 682 | graceful-fs "^4.1.2" 683 | make-dir "^1.0.0" 684 | unique-string "^1.0.0" 685 | write-file-atomic "^2.0.0" 686 | xdg-basedir "^3.0.0" 687 | 688 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 689 | version "1.1.0" 690 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 691 | 692 | content-disposition@0.5.2: 693 | version "0.5.2" 694 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 695 | 696 | content-type@~1.0.4: 697 | version "1.0.4" 698 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 699 | 700 | cookie-signature@1.0.6: 701 | version "1.0.6" 702 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 703 | 704 | cookie@0.3.1: 705 | version "0.3.1" 706 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 707 | 708 | core-js@^2.0.0: 709 | version "2.5.3" 710 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 711 | 712 | core-util-is@1.0.2, core-util-is@~1.0.0: 713 | version "1.0.2" 714 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 715 | 716 | create-error-class@^3.0.2: 717 | version "3.0.2" 718 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 719 | dependencies: 720 | capture-stack-trace "^1.0.0" 721 | 722 | cross-spawn@^5.1.0: 723 | version "5.1.0" 724 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 725 | dependencies: 726 | lru-cache "^4.0.1" 727 | shebang-command "^1.2.0" 728 | which "^1.2.9" 729 | 730 | "crypt@>= 0.0.1": 731 | version "0.0.2" 732 | resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" 733 | 734 | cryptiles@2.x.x: 735 | version "2.0.5" 736 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 737 | dependencies: 738 | boom "2.x.x" 739 | 740 | cryptiles@3.x.x: 741 | version "3.1.2" 742 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 743 | dependencies: 744 | boom "5.x.x" 745 | 746 | crypto-random-string@^1.0.0: 747 | version "1.0.0" 748 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 749 | 750 | dashdash@^1.12.0: 751 | version "1.14.1" 752 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 753 | dependencies: 754 | assert-plus "^1.0.0" 755 | 756 | debug@2.6.9, debug@^2.2.0: 757 | version "2.6.9" 758 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 759 | dependencies: 760 | ms "2.0.0" 761 | 762 | debug@^3.1.0: 763 | version "3.1.0" 764 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 765 | dependencies: 766 | ms "2.0.0" 767 | 768 | decamelize@^1.1.1: 769 | version "1.2.0" 770 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 771 | 772 | deep-extend@~0.4.0: 773 | version "0.4.2" 774 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 775 | 776 | deep-is@~0.1.3: 777 | version "0.1.3" 778 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 779 | 780 | define-properties@^1.1.2: 781 | version "1.1.2" 782 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 783 | dependencies: 784 | foreach "^2.0.5" 785 | object-keys "^1.0.8" 786 | 787 | del@^2.0.2: 788 | version "2.2.2" 789 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 790 | dependencies: 791 | globby "^5.0.0" 792 | is-path-cwd "^1.0.0" 793 | is-path-in-cwd "^1.0.0" 794 | object-assign "^4.0.1" 795 | pify "^2.0.0" 796 | pinkie-promise "^2.0.0" 797 | rimraf "^2.2.8" 798 | 799 | delayed-stream@~1.0.0: 800 | version "1.0.0" 801 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 802 | 803 | delegates@^1.0.0: 804 | version "1.0.0" 805 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 806 | 807 | depd@1.1.1, depd@~1.1.1: 808 | version "1.1.1" 809 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 810 | 811 | destroy@~1.0.4: 812 | version "1.0.4" 813 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 814 | 815 | detect-libc@^1.0.2: 816 | version "1.0.3" 817 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 818 | 819 | diff-match-patch@^1.0.0: 820 | version "1.0.0" 821 | resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.0.tgz#1cc3c83a490d67f95d91e39f6ad1f2e086b63048" 822 | 823 | dir-glob@^2.0.0: 824 | version "2.0.0" 825 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" 826 | dependencies: 827 | arrify "^1.0.1" 828 | path-type "^3.0.0" 829 | 830 | doctrine@^2.1.0: 831 | version "2.1.0" 832 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 833 | dependencies: 834 | esutils "^2.0.2" 835 | 836 | domino@^1.0.29: 837 | version "1.0.30" 838 | resolved "https://registry.yarnpkg.com/domino/-/domino-1.0.30.tgz#54a4154ecae968616680f8feba3cedff355c71f4" 839 | 840 | dot-prop@^4.1.0, dot-prop@^4.2.0: 841 | version "4.2.0" 842 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 843 | dependencies: 844 | is-obj "^1.0.0" 845 | 846 | duplexify@^3.1.2, duplexify@^3.5.0, duplexify@^3.5.1: 847 | version "3.5.1" 848 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.1.tgz#4e1516be68838bc90a49994f0b39a6e5960befcd" 849 | dependencies: 850 | end-of-stream "^1.0.0" 851 | inherits "^2.0.1" 852 | readable-stream "^2.0.0" 853 | stream-shift "^1.0.0" 854 | 855 | eastasianwidth@^0.1.1: 856 | version "0.1.1" 857 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.1.1.tgz#44d656de9da415694467335365fb3147b8572b7c" 858 | 859 | ecc-jsbn@~0.1.1: 860 | version "0.1.1" 861 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 862 | dependencies: 863 | jsbn "~0.1.0" 864 | 865 | ecdsa-sig-formatter@1.0.9: 866 | version "1.0.9" 867 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.9.tgz#4bc926274ec3b5abb5016e7e1d60921ac262b2a1" 868 | dependencies: 869 | base64url "^2.0.0" 870 | safe-buffer "^5.0.1" 871 | 872 | ee-first@1.1.1: 873 | version "1.1.1" 874 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 875 | 876 | empower-core@^0.6.2: 877 | version "0.6.2" 878 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.2.tgz#5adef566088e31fba80ba0a36df47d7094169144" 879 | dependencies: 880 | call-signature "0.0.2" 881 | core-js "^2.0.0" 882 | 883 | empower@^1.2.3: 884 | version "1.2.3" 885 | resolved "https://registry.yarnpkg.com/empower/-/empower-1.2.3.tgz#6f0da73447f4edd838fec5c60313a88ba5cb852b" 886 | dependencies: 887 | core-js "^2.0.0" 888 | empower-core "^0.6.2" 889 | 890 | encodeurl@~1.0.1: 891 | version "1.0.1" 892 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 893 | 894 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 895 | version "1.4.0" 896 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.0.tgz#7a90d833efda6cfa6eac0f4949dbb0fad3a63206" 897 | dependencies: 898 | once "^1.4.0" 899 | 900 | ent@^2.2.0: 901 | version "2.2.0" 902 | resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" 903 | 904 | escape-html@~1.0.3: 905 | version "1.0.3" 906 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 907 | 908 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 909 | version "1.0.5" 910 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 911 | 912 | eslint-plugin-promise@^3.6.0: 913 | version "3.6.0" 914 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.6.0.tgz#54b7658c8f454813dc2a870aff8152ec4969ba75" 915 | 916 | eslint-scope@^3.7.1: 917 | version "3.7.1" 918 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 919 | dependencies: 920 | esrecurse "^4.1.0" 921 | estraverse "^4.1.1" 922 | 923 | eslint-visitor-keys@^1.0.0: 924 | version "1.0.0" 925 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 926 | 927 | eslint@^4.12.0: 928 | version "4.18.1" 929 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.1.tgz#b9138440cb1e98b2f44a0d578c6ecf8eae6150b0" 930 | dependencies: 931 | ajv "^5.3.0" 932 | babel-code-frame "^6.22.0" 933 | chalk "^2.1.0" 934 | concat-stream "^1.6.0" 935 | cross-spawn "^5.1.0" 936 | debug "^3.1.0" 937 | doctrine "^2.1.0" 938 | eslint-scope "^3.7.1" 939 | eslint-visitor-keys "^1.0.0" 940 | espree "^3.5.2" 941 | esquery "^1.0.0" 942 | esutils "^2.0.2" 943 | file-entry-cache "^2.0.0" 944 | functional-red-black-tree "^1.0.1" 945 | glob "^7.1.2" 946 | globals "^11.0.1" 947 | ignore "^3.3.3" 948 | imurmurhash "^0.1.4" 949 | inquirer "^3.0.6" 950 | is-resolvable "^1.0.0" 951 | js-yaml "^3.9.1" 952 | json-stable-stringify-without-jsonify "^1.0.1" 953 | levn "^0.3.0" 954 | lodash "^4.17.4" 955 | minimatch "^3.0.2" 956 | mkdirp "^0.5.1" 957 | natural-compare "^1.4.0" 958 | optionator "^0.8.2" 959 | path-is-inside "^1.0.2" 960 | pluralize "^7.0.0" 961 | progress "^2.0.0" 962 | require-uncached "^1.0.3" 963 | semver "^5.3.0" 964 | strip-ansi "^4.0.0" 965 | strip-json-comments "~2.0.1" 966 | table "^4.0.1" 967 | text-table "~0.2.0" 968 | 969 | espree@^3.5.2: 970 | version "3.5.3" 971 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.3.tgz#931e0af64e7fbbed26b050a29daad1fc64799fa6" 972 | dependencies: 973 | acorn "^5.4.0" 974 | acorn-jsx "^3.0.0" 975 | 976 | esprima@^4.0.0: 977 | version "4.0.0" 978 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 979 | 980 | espurify@^1.6.0: 981 | version "1.7.0" 982 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 983 | dependencies: 984 | core-js "^2.0.0" 985 | 986 | esquery@^1.0.0: 987 | version "1.0.0" 988 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 989 | dependencies: 990 | estraverse "^4.0.0" 991 | 992 | esrecurse@^4.1.0: 993 | version "4.2.1" 994 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 995 | dependencies: 996 | estraverse "^4.1.0" 997 | 998 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 999 | version "4.2.0" 1000 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1001 | 1002 | esutils@^2.0.2: 1003 | version "2.0.2" 1004 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1005 | 1006 | etag@~1.8.1: 1007 | version "1.8.1" 1008 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1009 | 1010 | express@^4.0.33, express@^4.16.2: 1011 | version "4.16.2" 1012 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c" 1013 | dependencies: 1014 | accepts "~1.3.4" 1015 | array-flatten "1.1.1" 1016 | body-parser "1.18.2" 1017 | content-disposition "0.5.2" 1018 | content-type "~1.0.4" 1019 | cookie "0.3.1" 1020 | cookie-signature "1.0.6" 1021 | debug "2.6.9" 1022 | depd "~1.1.1" 1023 | encodeurl "~1.0.1" 1024 | escape-html "~1.0.3" 1025 | etag "~1.8.1" 1026 | finalhandler "1.1.0" 1027 | fresh "0.5.2" 1028 | merge-descriptors "1.0.1" 1029 | methods "~1.1.2" 1030 | on-finished "~2.3.0" 1031 | parseurl "~1.3.2" 1032 | path-to-regexp "0.1.7" 1033 | proxy-addr "~2.0.2" 1034 | qs "6.5.1" 1035 | range-parser "~1.2.0" 1036 | safe-buffer "5.1.1" 1037 | send "0.16.1" 1038 | serve-static "1.13.1" 1039 | setprototypeof "1.1.0" 1040 | statuses "~1.3.1" 1041 | type-is "~1.6.15" 1042 | utils-merge "1.0.1" 1043 | vary "~1.1.2" 1044 | 1045 | extend@^3.0.0, extend@^3.0.1, extend@~3.0.0, extend@~3.0.1: 1046 | version "3.0.1" 1047 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1048 | 1049 | external-editor@^2.0.4: 1050 | version "2.1.0" 1051 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 1052 | dependencies: 1053 | chardet "^0.4.0" 1054 | iconv-lite "^0.4.17" 1055 | tmp "^0.0.33" 1056 | 1057 | extsprintf@1.3.0: 1058 | version "1.3.0" 1059 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1060 | 1061 | extsprintf@^1.2.0: 1062 | version "1.4.0" 1063 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1064 | 1065 | fast-deep-equal@^1.0.0: 1066 | version "1.0.0" 1067 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1068 | 1069 | fast-json-stable-stringify@^2.0.0: 1070 | version "2.0.0" 1071 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1072 | 1073 | fast-levenshtein@~2.0.4: 1074 | version "2.0.6" 1075 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1076 | 1077 | faye-websocket@0.11.1: 1078 | version "0.11.1" 1079 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" 1080 | dependencies: 1081 | websocket-driver ">=0.5.1" 1082 | 1083 | faye-websocket@0.9.3: 1084 | version "0.9.3" 1085 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.9.3.tgz#482a505b0df0ae626b969866d3bd740cdb962e83" 1086 | dependencies: 1087 | websocket-driver ">=0.5.1" 1088 | 1089 | figures@^2.0.0: 1090 | version "2.0.0" 1091 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1092 | dependencies: 1093 | escape-string-regexp "^1.0.5" 1094 | 1095 | file-entry-cache@^2.0.0: 1096 | version "2.0.0" 1097 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1098 | dependencies: 1099 | flat-cache "^1.2.1" 1100 | object-assign "^4.0.1" 1101 | 1102 | finalhandler@1.1.0: 1103 | version "1.1.0" 1104 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5" 1105 | dependencies: 1106 | debug "2.6.9" 1107 | encodeurl "~1.0.1" 1108 | escape-html "~1.0.3" 1109 | on-finished "~2.3.0" 1110 | parseurl "~1.3.2" 1111 | statuses "~1.3.1" 1112 | unpipe "~1.0.0" 1113 | 1114 | firebase-admin@~5.9.0: 1115 | version "5.9.0" 1116 | resolved "https://registry.yarnpkg.com/firebase-admin/-/firebase-admin-5.9.0.tgz#ef58a6932e4c0c09a0e96917334eef0f43658c44" 1117 | dependencies: 1118 | "@firebase/app" "^0.1.1" 1119 | "@firebase/database" "^0.1.3" 1120 | "@google-cloud/firestore" "^0.11.2" 1121 | "@google-cloud/storage" "^1.2.1" 1122 | "@types/google-cloud__storage" "^1.1.1" 1123 | "@types/node" "^8.0.53" 1124 | faye-websocket "0.9.3" 1125 | jsonwebtoken "8.1.0" 1126 | node-forge "0.7.1" 1127 | 1128 | firebase-functions@^0.8.1: 1129 | version "0.8.1" 1130 | resolved "https://registry.yarnpkg.com/firebase-functions/-/firebase-functions-0.8.1.tgz#a42fe6d243862c406af16e1c16b1d0a81ec24c03" 1131 | dependencies: 1132 | "@types/express" "^4.0.33" 1133 | "@types/jsonwebtoken" "^7.1.32" 1134 | "@types/lodash" "^4.14.34" 1135 | "@types/sha1" "^1.1.0" 1136 | express "^4.0.33" 1137 | jsonwebtoken "^7.1.9" 1138 | lodash "^4.6.1" 1139 | sha1 "^1.1.1" 1140 | 1141 | flat-cache@^1.2.1: 1142 | version "1.3.0" 1143 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1144 | dependencies: 1145 | circular-json "^0.3.1" 1146 | del "^2.0.2" 1147 | graceful-fs "^4.1.2" 1148 | write "^0.2.1" 1149 | 1150 | follow-redirects@^1.2.5: 1151 | version "1.4.1" 1152 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.4.1.tgz#d8120f4518190f55aac65bb6fc7b85fcd666d6aa" 1153 | dependencies: 1154 | debug "^3.1.0" 1155 | 1156 | foreach@^2.0.5: 1157 | version "2.0.5" 1158 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1159 | 1160 | forever-agent@~0.6.1: 1161 | version "0.6.1" 1162 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1163 | 1164 | form-data@~2.1.1: 1165 | version "2.1.4" 1166 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1167 | dependencies: 1168 | asynckit "^0.4.0" 1169 | combined-stream "^1.0.5" 1170 | mime-types "^2.1.12" 1171 | 1172 | form-data@~2.3.1: 1173 | version "2.3.1" 1174 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1175 | dependencies: 1176 | asynckit "^0.4.0" 1177 | combined-stream "^1.0.5" 1178 | mime-types "^2.1.12" 1179 | 1180 | forwarded@~0.1.2: 1181 | version "0.1.2" 1182 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1183 | 1184 | fresh@0.5.2: 1185 | version "0.5.2" 1186 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1187 | 1188 | fs.realpath@^1.0.0: 1189 | version "1.0.0" 1190 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1191 | 1192 | fstream-ignore@^1.0.5: 1193 | version "1.0.5" 1194 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1195 | dependencies: 1196 | fstream "^1.0.0" 1197 | inherits "2" 1198 | minimatch "^3.0.0" 1199 | 1200 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1201 | version "1.0.11" 1202 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1203 | dependencies: 1204 | graceful-fs "^4.1.2" 1205 | inherits "~2.0.0" 1206 | mkdirp ">=0.5 0" 1207 | rimraf "2" 1208 | 1209 | functional-red-black-tree@^1.0.1: 1210 | version "1.0.1" 1211 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1212 | 1213 | gauge@~2.7.3: 1214 | version "2.7.4" 1215 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1216 | dependencies: 1217 | aproba "^1.0.3" 1218 | console-control-strings "^1.0.0" 1219 | has-unicode "^2.0.0" 1220 | object-assign "^4.1.0" 1221 | signal-exit "^3.0.0" 1222 | string-width "^1.0.1" 1223 | strip-ansi "^3.0.1" 1224 | wide-align "^1.1.0" 1225 | 1226 | gcp-metadata@^0.3.0: 1227 | version "0.3.1" 1228 | resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-0.3.1.tgz#313814456e7c3d0eeb8f8b084b33579e886f829a" 1229 | dependencies: 1230 | extend "^3.0.0" 1231 | retry-request "^3.0.0" 1232 | 1233 | gcp-metadata@^0.6.1: 1234 | version "0.6.1" 1235 | resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-0.6.1.tgz#62d54871fc6aeeac6a688e094abc886cb7aaacd0" 1236 | dependencies: 1237 | axios "^0.17.1" 1238 | extend "^3.0.1" 1239 | retry-axios "0.3.0" 1240 | 1241 | gcs-resumable-upload@^0.8.2: 1242 | version "0.8.2" 1243 | resolved "https://registry.yarnpkg.com/gcs-resumable-upload/-/gcs-resumable-upload-0.8.2.tgz#37df02470430395a789a637e72cabc80677ae964" 1244 | dependencies: 1245 | buffer-equal "^1.0.0" 1246 | configstore "^3.0.0" 1247 | google-auto-auth "^0.7.1" 1248 | pumpify "^1.3.3" 1249 | request "^2.81.0" 1250 | stream-events "^1.0.1" 1251 | through2 "^2.0.0" 1252 | 1253 | getpass@^0.1.1: 1254 | version "0.1.7" 1255 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1256 | dependencies: 1257 | assert-plus "^1.0.0" 1258 | 1259 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1260 | version "7.1.2" 1261 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1262 | dependencies: 1263 | fs.realpath "^1.0.0" 1264 | inflight "^1.0.4" 1265 | inherits "2" 1266 | minimatch "^3.0.4" 1267 | once "^1.3.0" 1268 | path-is-absolute "^1.0.0" 1269 | 1270 | globals@^11.0.1: 1271 | version "11.3.0" 1272 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0" 1273 | 1274 | globby@^5.0.0: 1275 | version "5.0.0" 1276 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1277 | dependencies: 1278 | array-union "^1.0.1" 1279 | arrify "^1.0.0" 1280 | glob "^7.0.3" 1281 | object-assign "^4.0.1" 1282 | pify "^2.0.0" 1283 | pinkie-promise "^2.0.0" 1284 | 1285 | globby@^7.1.1: 1286 | version "7.1.1" 1287 | resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" 1288 | dependencies: 1289 | array-union "^1.0.1" 1290 | dir-glob "^2.0.0" 1291 | glob "^7.1.2" 1292 | ignore "^3.3.5" 1293 | pify "^3.0.0" 1294 | slash "^1.0.0" 1295 | 1296 | google-auth-library@^0.10.0: 1297 | version "0.10.0" 1298 | resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-0.10.0.tgz#6e15babee85fd1dd14d8d128a295b6838d52136e" 1299 | dependencies: 1300 | gtoken "^1.2.1" 1301 | jws "^3.1.4" 1302 | lodash.noop "^3.0.1" 1303 | request "^2.74.0" 1304 | 1305 | google-auth-library@^0.12.0: 1306 | version "0.12.0" 1307 | resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-0.12.0.tgz#a3fc6c296d00bb54e4d877ef581a05947330d07f" 1308 | dependencies: 1309 | gtoken "^1.2.3" 1310 | jws "^3.1.4" 1311 | lodash.isstring "^4.0.1" 1312 | lodash.merge "^4.6.0" 1313 | request "^2.81.0" 1314 | 1315 | google-auto-auth@^0.7.1: 1316 | version "0.7.2" 1317 | resolved "https://registry.yarnpkg.com/google-auto-auth/-/google-auto-auth-0.7.2.tgz#bf9352d5c4a0897bf31fd9c491028b765fbea71e" 1318 | dependencies: 1319 | async "^2.3.0" 1320 | gcp-metadata "^0.3.0" 1321 | google-auth-library "^0.10.0" 1322 | request "^2.79.0" 1323 | 1324 | google-auto-auth@^0.8.0: 1325 | version "0.8.2" 1326 | resolved "https://registry.yarnpkg.com/google-auto-auth/-/google-auto-auth-0.8.2.tgz#928ee8954514a2ea179de8dd4e97f04d40d13d0a" 1327 | dependencies: 1328 | async "^2.3.0" 1329 | gcp-metadata "^0.3.0" 1330 | google-auth-library "^0.12.0" 1331 | request "^2.79.0" 1332 | 1333 | google-auto-auth@^0.9.0: 1334 | version "0.9.4" 1335 | resolved "https://registry.yarnpkg.com/google-auto-auth/-/google-auto-auth-0.9.4.tgz#eba19a5f44d5277848591503f821cb9b45da381d" 1336 | dependencies: 1337 | async "^2.3.0" 1338 | gcp-metadata "^0.6.1" 1339 | google-auth-library "^0.12.0" 1340 | request "^2.79.0" 1341 | 1342 | google-gax@^0.14.3: 1343 | version "0.14.5" 1344 | resolved "https://registry.yarnpkg.com/google-gax/-/google-gax-0.14.5.tgz#b2c73c61df6cead94f90421d17f44ff161f623c7" 1345 | dependencies: 1346 | extend "^3.0.0" 1347 | globby "^7.1.1" 1348 | google-auto-auth "^0.9.0" 1349 | google-proto-files "^0.14.1" 1350 | grpc "~1.7.2" 1351 | is-stream-ended "^0.1.0" 1352 | lodash "^4.17.2" 1353 | protobufjs "^6.8.0" 1354 | readable-stream "^2.2.2" 1355 | through2 "^2.0.3" 1356 | 1357 | google-p12-pem@^0.1.0: 1358 | version "0.1.2" 1359 | resolved "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-0.1.2.tgz#33c46ab021aa734fa0332b3960a9a3ffcb2f3177" 1360 | dependencies: 1361 | node-forge "^0.7.1" 1362 | 1363 | google-proto-files@^0.14.1: 1364 | version "0.14.2" 1365 | resolved "https://registry.yarnpkg.com/google-proto-files/-/google-proto-files-0.14.2.tgz#958cffea7e8888e00b9a6c55ed1362c06b426f4c" 1366 | dependencies: 1367 | globby "^7.1.1" 1368 | power-assert "^1.4.4" 1369 | prettier "^1.10.2" 1370 | protobufjs "^6.8.0" 1371 | 1372 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1373 | version "4.1.11" 1374 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1375 | 1376 | grpc@~1.7.2: 1377 | version "1.7.3" 1378 | resolved "https://registry.yarnpkg.com/grpc/-/grpc-1.7.3.tgz#c9d034324e2ec8a06cfaa577a044a116f96c8c90" 1379 | dependencies: 1380 | arguejs "^0.2.3" 1381 | lodash "^4.15.0" 1382 | nan "^2.0.0" 1383 | node-pre-gyp "^0.6.39" 1384 | protobufjs "^5.0.0" 1385 | 1386 | gtoken@^1.2.1, gtoken@^1.2.3: 1387 | version "1.2.3" 1388 | resolved "https://registry.yarnpkg.com/gtoken/-/gtoken-1.2.3.tgz#5509571b8afd4322e124cf66cf68115284c476d8" 1389 | dependencies: 1390 | google-p12-pem "^0.1.0" 1391 | jws "^3.0.0" 1392 | mime "^1.4.1" 1393 | request "^2.72.0" 1394 | 1395 | har-schema@^1.0.5: 1396 | version "1.0.5" 1397 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1398 | 1399 | har-schema@^2.0.0: 1400 | version "2.0.0" 1401 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1402 | 1403 | har-validator@~4.2.1: 1404 | version "4.2.1" 1405 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1406 | dependencies: 1407 | ajv "^4.9.1" 1408 | har-schema "^1.0.5" 1409 | 1410 | har-validator@~5.0.3: 1411 | version "5.0.3" 1412 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1413 | dependencies: 1414 | ajv "^5.1.0" 1415 | har-schema "^2.0.0" 1416 | 1417 | has-ansi@^2.0.0: 1418 | version "2.0.0" 1419 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1420 | dependencies: 1421 | ansi-regex "^2.0.0" 1422 | 1423 | has-flag@^3.0.0: 1424 | version "3.0.0" 1425 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1426 | 1427 | has-unicode@^2.0.0: 1428 | version "2.0.1" 1429 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1430 | 1431 | hash-stream-validation@^0.2.1: 1432 | version "0.2.1" 1433 | resolved "https://registry.yarnpkg.com/hash-stream-validation/-/hash-stream-validation-0.2.1.tgz#ecc9b997b218be5bb31298628bb807869b73dcd1" 1434 | dependencies: 1435 | through2 "^2.0.0" 1436 | 1437 | hawk@3.1.3, hawk@~3.1.3: 1438 | version "3.1.3" 1439 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1440 | dependencies: 1441 | boom "2.x.x" 1442 | cryptiles "2.x.x" 1443 | hoek "2.x.x" 1444 | sntp "1.x.x" 1445 | 1446 | hawk@~6.0.2: 1447 | version "6.0.2" 1448 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1449 | dependencies: 1450 | boom "4.x.x" 1451 | cryptiles "3.x.x" 1452 | hoek "4.x.x" 1453 | sntp "2.x.x" 1454 | 1455 | hoek@2.x.x: 1456 | version "2.16.3" 1457 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1458 | 1459 | hoek@4.x.x: 1460 | version "4.2.0" 1461 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1462 | 1463 | http-errors@1.6.2, http-errors@~1.6.2: 1464 | version "1.6.2" 1465 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 1466 | dependencies: 1467 | depd "1.1.1" 1468 | inherits "2.0.3" 1469 | setprototypeof "1.0.3" 1470 | statuses ">= 1.3.1 < 2" 1471 | 1472 | http-parser-js@>=0.4.0: 1473 | version "0.4.9" 1474 | resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.9.tgz#ea1a04fb64adff0242e9974f297dd4c3cad271e1" 1475 | 1476 | http-signature@~1.1.0: 1477 | version "1.1.1" 1478 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1479 | dependencies: 1480 | assert-plus "^0.2.0" 1481 | jsprim "^1.2.2" 1482 | sshpk "^1.7.0" 1483 | 1484 | http-signature@~1.2.0: 1485 | version "1.2.0" 1486 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1487 | dependencies: 1488 | assert-plus "^1.0.0" 1489 | jsprim "^1.2.2" 1490 | sshpk "^1.7.0" 1491 | 1492 | iconv-lite@0.4.19, iconv-lite@^0.4.17: 1493 | version "0.4.19" 1494 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1495 | 1496 | ignore@^3.3.3, ignore@^3.3.5: 1497 | version "3.3.7" 1498 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1499 | 1500 | imurmurhash@^0.1.4: 1501 | version "0.1.4" 1502 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1503 | 1504 | indexof@0.0.1: 1505 | version "0.0.1" 1506 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1507 | 1508 | inflight@^1.0.4: 1509 | version "1.0.6" 1510 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1511 | dependencies: 1512 | once "^1.3.0" 1513 | wrappy "1" 1514 | 1515 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1516 | version "2.0.3" 1517 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1518 | 1519 | ini@~1.3.0: 1520 | version "1.3.5" 1521 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1522 | 1523 | inquirer@^3.0.6: 1524 | version "3.3.0" 1525 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1526 | dependencies: 1527 | ansi-escapes "^3.0.0" 1528 | chalk "^2.0.0" 1529 | cli-cursor "^2.1.0" 1530 | cli-width "^2.0.0" 1531 | external-editor "^2.0.4" 1532 | figures "^2.0.0" 1533 | lodash "^4.3.0" 1534 | mute-stream "0.0.7" 1535 | run-async "^2.2.0" 1536 | rx-lite "^4.0.8" 1537 | rx-lite-aggregates "^4.0.8" 1538 | string-width "^2.1.0" 1539 | strip-ansi "^4.0.0" 1540 | through "^2.3.6" 1541 | 1542 | invert-kv@^1.0.0: 1543 | version "1.0.0" 1544 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1545 | 1546 | ipaddr.js@1.5.2: 1547 | version "1.5.2" 1548 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0" 1549 | 1550 | is-buffer@^1.1.5: 1551 | version "1.1.6" 1552 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1553 | 1554 | is-fullwidth-code-point@^1.0.0: 1555 | version "1.0.0" 1556 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1557 | dependencies: 1558 | number-is-nan "^1.0.0" 1559 | 1560 | is-fullwidth-code-point@^2.0.0: 1561 | version "2.0.0" 1562 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1563 | 1564 | is-obj@^1.0.0: 1565 | version "1.0.1" 1566 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1567 | 1568 | is-path-cwd@^1.0.0: 1569 | version "1.0.0" 1570 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1571 | 1572 | is-path-in-cwd@^1.0.0: 1573 | version "1.0.0" 1574 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1575 | dependencies: 1576 | is-path-inside "^1.0.0" 1577 | 1578 | is-path-inside@^1.0.0: 1579 | version "1.0.1" 1580 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1581 | dependencies: 1582 | path-is-inside "^1.0.1" 1583 | 1584 | is-promise@^2.1.0: 1585 | version "2.1.0" 1586 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1587 | 1588 | is-resolvable@^1.0.0: 1589 | version "1.1.0" 1590 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 1591 | 1592 | is-stream-ended@^0.1.0: 1593 | version "0.1.3" 1594 | resolved "https://registry.yarnpkg.com/is-stream-ended/-/is-stream-ended-0.1.3.tgz#a0473b267c756635486beedc7e3344e549d152ac" 1595 | 1596 | is-typedarray@~1.0.0: 1597 | version "1.0.0" 1598 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1599 | 1600 | is@^3.0.1, is@^3.2.0, is@^3.2.1: 1601 | version "3.2.1" 1602 | resolved "https://registry.yarnpkg.com/is/-/is-3.2.1.tgz#d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5" 1603 | 1604 | isarray@0.0.1: 1605 | version "0.0.1" 1606 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1607 | 1608 | isarray@~1.0.0: 1609 | version "1.0.0" 1610 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1611 | 1612 | isemail@1.x.x: 1613 | version "1.2.0" 1614 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-1.2.0.tgz#be03df8cc3e29de4d2c5df6501263f1fa4595e9a" 1615 | 1616 | isexe@^2.0.0: 1617 | version "2.0.0" 1618 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1619 | 1620 | isstream@~0.1.2: 1621 | version "0.1.2" 1622 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1623 | 1624 | joi@^6.10.1: 1625 | version "6.10.1" 1626 | resolved "https://registry.yarnpkg.com/joi/-/joi-6.10.1.tgz#4d50c318079122000fe5f16af1ff8e1917b77e06" 1627 | dependencies: 1628 | hoek "2.x.x" 1629 | isemail "1.x.x" 1630 | moment "2.x.x" 1631 | topo "1.x.x" 1632 | 1633 | js-tokens@^3.0.2: 1634 | version "3.0.2" 1635 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1636 | 1637 | js-yaml@^3.9.1: 1638 | version "3.10.0" 1639 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1640 | dependencies: 1641 | argparse "^1.0.7" 1642 | esprima "^4.0.0" 1643 | 1644 | jsbn@~0.1.0: 1645 | version "0.1.1" 1646 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1647 | 1648 | json-schema-traverse@^0.3.0: 1649 | version "0.3.1" 1650 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1651 | 1652 | json-schema@0.2.3: 1653 | version "0.2.3" 1654 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1655 | 1656 | json-stable-stringify-without-jsonify@^1.0.1: 1657 | version "1.0.1" 1658 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1659 | 1660 | json-stable-stringify@^1.0.1: 1661 | version "1.0.1" 1662 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1663 | dependencies: 1664 | jsonify "~0.0.0" 1665 | 1666 | json-stringify-safe@~5.0.1: 1667 | version "5.0.1" 1668 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1669 | 1670 | jsonify@~0.0.0: 1671 | version "0.0.0" 1672 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1673 | 1674 | jsonwebtoken@8.1.0: 1675 | version "8.1.0" 1676 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.1.0.tgz#c6397cd2e5fd583d65c007a83dc7bb78e6982b83" 1677 | dependencies: 1678 | jws "^3.1.4" 1679 | lodash.includes "^4.3.0" 1680 | lodash.isboolean "^3.0.3" 1681 | lodash.isinteger "^4.0.4" 1682 | lodash.isnumber "^3.0.3" 1683 | lodash.isplainobject "^4.0.6" 1684 | lodash.isstring "^4.0.1" 1685 | lodash.once "^4.0.0" 1686 | ms "^2.0.0" 1687 | xtend "^4.0.1" 1688 | 1689 | jsonwebtoken@^7.1.9: 1690 | version "7.4.3" 1691 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-7.4.3.tgz#77f5021de058b605a1783fa1283e99812e645638" 1692 | dependencies: 1693 | joi "^6.10.1" 1694 | jws "^3.1.4" 1695 | lodash.once "^4.0.0" 1696 | ms "^2.0.0" 1697 | xtend "^4.0.1" 1698 | 1699 | jsprim@^1.2.2: 1700 | version "1.4.1" 1701 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1702 | dependencies: 1703 | assert-plus "1.0.0" 1704 | extsprintf "1.3.0" 1705 | json-schema "0.2.3" 1706 | verror "1.10.0" 1707 | 1708 | jwa@^1.1.4: 1709 | version "1.1.5" 1710 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.5.tgz#a0552ce0220742cd52e153774a32905c30e756e5" 1711 | dependencies: 1712 | base64url "2.0.0" 1713 | buffer-equal-constant-time "1.0.1" 1714 | ecdsa-sig-formatter "1.0.9" 1715 | safe-buffer "^5.0.1" 1716 | 1717 | jws@^3.0.0, jws@^3.1.4: 1718 | version "3.1.4" 1719 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.4.tgz#f9e8b9338e8a847277d6444b1464f61880e050a2" 1720 | dependencies: 1721 | base64url "^2.0.0" 1722 | jwa "^1.1.4" 1723 | safe-buffer "^5.0.1" 1724 | 1725 | lcid@^1.0.0: 1726 | version "1.0.0" 1727 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1728 | dependencies: 1729 | invert-kv "^1.0.0" 1730 | 1731 | levn@^0.3.0, levn@~0.3.0: 1732 | version "0.3.0" 1733 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1734 | dependencies: 1735 | prelude-ls "~1.1.2" 1736 | type-check "~0.3.2" 1737 | 1738 | lodash.includes@^4.3.0: 1739 | version "4.3.0" 1740 | resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" 1741 | 1742 | lodash.isboolean@^3.0.3: 1743 | version "3.0.3" 1744 | resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" 1745 | 1746 | lodash.isinteger@^4.0.4: 1747 | version "4.0.4" 1748 | resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" 1749 | 1750 | lodash.isnumber@^3.0.3: 1751 | version "3.0.3" 1752 | resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" 1753 | 1754 | lodash.isplainobject@^4.0.6: 1755 | version "4.0.6" 1756 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 1757 | 1758 | lodash.isstring@^4.0.1: 1759 | version "4.0.1" 1760 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 1761 | 1762 | lodash.merge@^4.6.0: 1763 | version "4.6.0" 1764 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 1765 | 1766 | lodash.noop@^3.0.1: 1767 | version "3.0.1" 1768 | resolved "https://registry.yarnpkg.com/lodash.noop/-/lodash.noop-3.0.1.tgz#38188f4d650a3a474258439b96ec45b32617133c" 1769 | 1770 | lodash.once@^4.0.0: 1771 | version "4.1.1" 1772 | resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" 1773 | 1774 | lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.6.1: 1775 | version "4.17.4" 1776 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1777 | 1778 | lodash@^4.3.0: 1779 | version "4.17.5" 1780 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 1781 | 1782 | log-driver@1.2.5, log-driver@^1.2.5: 1783 | version "1.2.5" 1784 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056" 1785 | 1786 | long@^3.2.0, long@~3: 1787 | version "3.2.0" 1788 | resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b" 1789 | 1790 | lru-cache@^4.0.1: 1791 | version "4.1.1" 1792 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1793 | dependencies: 1794 | pseudomap "^1.0.2" 1795 | yallist "^2.1.2" 1796 | 1797 | make-dir@^1.0.0: 1798 | version "1.1.0" 1799 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 1800 | dependencies: 1801 | pify "^3.0.0" 1802 | 1803 | media-typer@0.3.0: 1804 | version "0.3.0" 1805 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1806 | 1807 | merge-descriptors@1.0.1: 1808 | version "1.0.1" 1809 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1810 | 1811 | methmeth@^1.1.0: 1812 | version "1.1.0" 1813 | resolved "https://registry.yarnpkg.com/methmeth/-/methmeth-1.1.0.tgz#e80a26618e52f5c4222861bb748510bd10e29089" 1814 | 1815 | methods@~1.1.2: 1816 | version "1.1.2" 1817 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1818 | 1819 | mime-db@~1.30.0: 1820 | version "1.30.0" 1821 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1822 | 1823 | mime-types@^2.0.8, mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17, mime-types@~2.1.7: 1824 | version "2.1.17" 1825 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1826 | dependencies: 1827 | mime-db "~1.30.0" 1828 | 1829 | mime@1.4.1: 1830 | version "1.4.1" 1831 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" 1832 | 1833 | mime@^1.4.1: 1834 | version "1.6.0" 1835 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 1836 | 1837 | mimic-fn@^1.0.0: 1838 | version "1.2.0" 1839 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1840 | 1841 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1842 | version "3.0.4" 1843 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1844 | dependencies: 1845 | brace-expansion "^1.1.7" 1846 | 1847 | minimist@0.0.8: 1848 | version "0.0.8" 1849 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1850 | 1851 | minimist@^1.2.0: 1852 | version "1.2.0" 1853 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1854 | 1855 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1856 | version "0.5.1" 1857 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1858 | dependencies: 1859 | minimist "0.0.8" 1860 | 1861 | modelo@^4.2.0: 1862 | version "4.2.0" 1863 | resolved "https://registry.yarnpkg.com/modelo/-/modelo-4.2.0.tgz#3b4b420023a66ca7e32bdba16e710937e14d1b0b" 1864 | 1865 | moment@2.x.x: 1866 | version "2.20.1" 1867 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.20.1.tgz#d6eb1a46cbcc14a2b2f9434112c1ff8907f313fd" 1868 | 1869 | ms@2.0.0: 1870 | version "2.0.0" 1871 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1872 | 1873 | ms@^2.0.0: 1874 | version "2.1.1" 1875 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1876 | 1877 | mute-stream@0.0.7: 1878 | version "0.0.7" 1879 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1880 | 1881 | nan@^2.0.0: 1882 | version "2.8.0" 1883 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1884 | 1885 | natural-compare@^1.4.0: 1886 | version "1.4.0" 1887 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1888 | 1889 | negotiator@0.6.1: 1890 | version "0.6.1" 1891 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1892 | 1893 | node-forge@0.7.1, node-forge@^0.7.1: 1894 | version "0.7.1" 1895 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.1.tgz#9da611ea08982f4b94206b3beb4cc9665f20c300" 1896 | 1897 | node-pre-gyp@^0.6.39: 1898 | version "0.6.39" 1899 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1900 | dependencies: 1901 | detect-libc "^1.0.2" 1902 | hawk "3.1.3" 1903 | mkdirp "^0.5.1" 1904 | nopt "^4.0.1" 1905 | npmlog "^4.0.2" 1906 | rc "^1.1.7" 1907 | request "2.81.0" 1908 | rimraf "^2.6.1" 1909 | semver "^5.3.0" 1910 | tar "^2.2.1" 1911 | tar-pack "^3.4.0" 1912 | 1913 | nopt@^4.0.1: 1914 | version "4.0.1" 1915 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1916 | dependencies: 1917 | abbrev "1" 1918 | osenv "^0.1.4" 1919 | 1920 | npmlog@^4.0.2: 1921 | version "4.1.2" 1922 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1923 | dependencies: 1924 | are-we-there-yet "~1.1.2" 1925 | console-control-strings "~1.1.0" 1926 | gauge "~2.7.3" 1927 | set-blocking "~2.0.0" 1928 | 1929 | number-is-nan@^1.0.0: 1930 | version "1.0.1" 1931 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1932 | 1933 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 1934 | version "0.8.2" 1935 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1936 | 1937 | object-assign@^4.0.1, object-assign@^4.1.0: 1938 | version "4.1.1" 1939 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1940 | 1941 | object-keys@^1.0.0, object-keys@^1.0.8: 1942 | version "1.0.11" 1943 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1944 | 1945 | on-finished@~2.3.0: 1946 | version "2.3.0" 1947 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1948 | dependencies: 1949 | ee-first "1.1.1" 1950 | 1951 | once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: 1952 | version "1.4.0" 1953 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1954 | dependencies: 1955 | wrappy "1" 1956 | 1957 | onetime@^2.0.0: 1958 | version "2.0.1" 1959 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1960 | dependencies: 1961 | mimic-fn "^1.0.0" 1962 | 1963 | optionator@^0.8.2: 1964 | version "0.8.2" 1965 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1966 | dependencies: 1967 | deep-is "~0.1.3" 1968 | fast-levenshtein "~2.0.4" 1969 | levn "~0.3.0" 1970 | prelude-ls "~1.1.2" 1971 | type-check "~0.3.2" 1972 | wordwrap "~1.0.0" 1973 | 1974 | optjs@~3.2.2: 1975 | version "3.2.2" 1976 | resolved "https://registry.yarnpkg.com/optjs/-/optjs-3.2.2.tgz#69a6ce89c442a44403141ad2f9b370bd5bb6f4ee" 1977 | 1978 | os-homedir@^1.0.0: 1979 | version "1.0.2" 1980 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1981 | 1982 | os-locale@^1.4.0: 1983 | version "1.4.0" 1984 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 1985 | dependencies: 1986 | lcid "^1.0.0" 1987 | 1988 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: 1989 | version "1.0.2" 1990 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1991 | 1992 | osenv@^0.1.4: 1993 | version "0.1.4" 1994 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1995 | dependencies: 1996 | os-homedir "^1.0.0" 1997 | os-tmpdir "^1.0.0" 1998 | 1999 | parseurl@~1.3.2: 2000 | version "1.3.2" 2001 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 2002 | 2003 | path-is-absolute@^1.0.0: 2004 | version "1.0.1" 2005 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2006 | 2007 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2008 | version "1.0.2" 2009 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2010 | 2011 | path-to-regexp@0.1.7: 2012 | version "0.1.7" 2013 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2014 | 2015 | path-type@^3.0.0: 2016 | version "3.0.0" 2017 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2018 | dependencies: 2019 | pify "^3.0.0" 2020 | 2021 | performance-now@^0.2.0: 2022 | version "0.2.0" 2023 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2024 | 2025 | performance-now@^2.1.0: 2026 | version "2.1.0" 2027 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2028 | 2029 | pify@^2.0.0: 2030 | version "2.3.0" 2031 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2032 | 2033 | pify@^3.0.0: 2034 | version "3.0.0" 2035 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2036 | 2037 | pinkie-promise@^2.0.0: 2038 | version "2.0.1" 2039 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2040 | dependencies: 2041 | pinkie "^2.0.0" 2042 | 2043 | pinkie@^2.0.0: 2044 | version "2.0.4" 2045 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2046 | 2047 | pluralize@^7.0.0: 2048 | version "7.0.0" 2049 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2050 | 2051 | power-assert-context-formatter@^1.0.7: 2052 | version "1.1.1" 2053 | resolved "https://registry.yarnpkg.com/power-assert-context-formatter/-/power-assert-context-formatter-1.1.1.tgz#edba352d3ed8a603114d667265acce60d689ccdf" 2054 | dependencies: 2055 | core-js "^2.0.0" 2056 | power-assert-context-traversal "^1.1.1" 2057 | 2058 | power-assert-context-reducer-ast@^1.0.7: 2059 | version "1.1.2" 2060 | resolved "https://registry.yarnpkg.com/power-assert-context-reducer-ast/-/power-assert-context-reducer-ast-1.1.2.tgz#484a99e26f4973ff8832e5c5cc756702e6094174" 2061 | dependencies: 2062 | acorn "^4.0.0" 2063 | acorn-es7-plugin "^1.0.12" 2064 | core-js "^2.0.0" 2065 | espurify "^1.6.0" 2066 | estraverse "^4.2.0" 2067 | 2068 | power-assert-context-traversal@^1.1.1: 2069 | version "1.1.1" 2070 | resolved "https://registry.yarnpkg.com/power-assert-context-traversal/-/power-assert-context-traversal-1.1.1.tgz#88cabca0d13b6359f07d3d3e8afa699264577ed9" 2071 | dependencies: 2072 | core-js "^2.0.0" 2073 | estraverse "^4.1.0" 2074 | 2075 | power-assert-formatter@^1.3.1: 2076 | version "1.4.1" 2077 | resolved "https://registry.yarnpkg.com/power-assert-formatter/-/power-assert-formatter-1.4.1.tgz#5dc125ed50a3dfb1dda26c19347f3bf58ec2884a" 2078 | dependencies: 2079 | core-js "^2.0.0" 2080 | power-assert-context-formatter "^1.0.7" 2081 | power-assert-context-reducer-ast "^1.0.7" 2082 | power-assert-renderer-assertion "^1.0.7" 2083 | power-assert-renderer-comparison "^1.0.7" 2084 | power-assert-renderer-diagram "^1.0.7" 2085 | power-assert-renderer-file "^1.0.7" 2086 | 2087 | power-assert-renderer-assertion@^1.0.7: 2088 | version "1.1.1" 2089 | resolved "https://registry.yarnpkg.com/power-assert-renderer-assertion/-/power-assert-renderer-assertion-1.1.1.tgz#cbfc0e77e0086a8f96af3f1d8e67b9ee7e28ce98" 2090 | dependencies: 2091 | power-assert-renderer-base "^1.1.1" 2092 | power-assert-util-string-width "^1.1.1" 2093 | 2094 | power-assert-renderer-base@^1.1.1: 2095 | version "1.1.1" 2096 | resolved "https://registry.yarnpkg.com/power-assert-renderer-base/-/power-assert-renderer-base-1.1.1.tgz#96a650c6fd05ee1bc1f66b54ad61442c8b3f63eb" 2097 | 2098 | power-assert-renderer-comparison@^1.0.7: 2099 | version "1.1.1" 2100 | resolved "https://registry.yarnpkg.com/power-assert-renderer-comparison/-/power-assert-renderer-comparison-1.1.1.tgz#d7439d97d85156be4e30a00f2fb5a72514ce3c08" 2101 | dependencies: 2102 | core-js "^2.0.0" 2103 | diff-match-patch "^1.0.0" 2104 | power-assert-renderer-base "^1.1.1" 2105 | stringifier "^1.3.0" 2106 | type-name "^2.0.1" 2107 | 2108 | power-assert-renderer-diagram@^1.0.7: 2109 | version "1.1.2" 2110 | resolved "https://registry.yarnpkg.com/power-assert-renderer-diagram/-/power-assert-renderer-diagram-1.1.2.tgz#655f8f711935a9b6d541b86327654717c637a986" 2111 | dependencies: 2112 | core-js "^2.0.0" 2113 | power-assert-renderer-base "^1.1.1" 2114 | power-assert-util-string-width "^1.1.1" 2115 | stringifier "^1.3.0" 2116 | 2117 | power-assert-renderer-file@^1.0.7: 2118 | version "1.1.1" 2119 | resolved "https://registry.yarnpkg.com/power-assert-renderer-file/-/power-assert-renderer-file-1.1.1.tgz#a37e2bbd178ccacd04e78dbb79c92fe34933c5e7" 2120 | dependencies: 2121 | power-assert-renderer-base "^1.1.1" 2122 | 2123 | power-assert-util-string-width@^1.1.1: 2124 | version "1.1.1" 2125 | resolved "https://registry.yarnpkg.com/power-assert-util-string-width/-/power-assert-util-string-width-1.1.1.tgz#be659eb7937fdd2e6c9a77268daaf64bd5b7c592" 2126 | dependencies: 2127 | eastasianwidth "^0.1.1" 2128 | 2129 | power-assert@^1.4.4: 2130 | version "1.4.4" 2131 | resolved "https://registry.yarnpkg.com/power-assert/-/power-assert-1.4.4.tgz#9295ea7437196f5a601fde420f042631186d7517" 2132 | dependencies: 2133 | define-properties "^1.1.2" 2134 | empower "^1.2.3" 2135 | power-assert-formatter "^1.3.1" 2136 | universal-deep-strict-equal "^1.2.1" 2137 | xtend "^4.0.0" 2138 | 2139 | prelude-ls@~1.1.2: 2140 | version "1.1.2" 2141 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2142 | 2143 | prettier@^1.10.2: 2144 | version "1.11.0" 2145 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.11.0.tgz#c024f70cab158c993f50fc0c25ffe738cb8b0f85" 2146 | 2147 | process-nextick-args@~1.0.6: 2148 | version "1.0.7" 2149 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2150 | 2151 | progress@^2.0.0: 2152 | version "2.0.0" 2153 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2154 | 2155 | protobufjs@^5.0.0: 2156 | version "5.0.2" 2157 | resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-5.0.2.tgz#59748d7dcf03d2db22c13da9feb024e16ab80c91" 2158 | dependencies: 2159 | ascli "~1" 2160 | bytebuffer "~5" 2161 | glob "^7.0.5" 2162 | yargs "^3.10.0" 2163 | 2164 | protobufjs@^6.8.0: 2165 | version "6.8.3" 2166 | resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.8.3.tgz#d3746fae45f6b2fe77e7e6761471e41080164b19" 2167 | dependencies: 2168 | "@protobufjs/aspromise" "^1.1.2" 2169 | "@protobufjs/base64" "^1.1.2" 2170 | "@protobufjs/codegen" "^2.0.4" 2171 | "@protobufjs/eventemitter" "^1.1.0" 2172 | "@protobufjs/fetch" "^1.1.0" 2173 | "@protobufjs/float" "^1.0.2" 2174 | "@protobufjs/inquire" "^1.1.0" 2175 | "@protobufjs/path" "^1.1.2" 2176 | "@protobufjs/pool" "^1.1.0" 2177 | "@protobufjs/utf8" "^1.1.0" 2178 | "@types/long" "^3.0.32" 2179 | "@types/node" "^8.0.53" 2180 | long "^3.2.0" 2181 | 2182 | proxy-addr@~2.0.2: 2183 | version "2.0.2" 2184 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec" 2185 | dependencies: 2186 | forwarded "~0.1.2" 2187 | ipaddr.js "1.5.2" 2188 | 2189 | pseudomap@^1.0.2: 2190 | version "1.0.2" 2191 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2192 | 2193 | pump@^1.0.0: 2194 | version "1.0.3" 2195 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" 2196 | dependencies: 2197 | end-of-stream "^1.1.0" 2198 | once "^1.3.1" 2199 | 2200 | pumpify@^1.3.3: 2201 | version "1.3.5" 2202 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.3.5.tgz#1b671c619940abcaeac0ad0e3a3c164be760993b" 2203 | dependencies: 2204 | duplexify "^3.1.2" 2205 | inherits "^2.0.1" 2206 | pump "^1.0.0" 2207 | 2208 | punycode@^1.4.1: 2209 | version "1.4.1" 2210 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2211 | 2212 | qs@6.5.1, qs@~6.5.1: 2213 | version "6.5.1" 2214 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2215 | 2216 | qs@~6.4.0: 2217 | version "6.4.0" 2218 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2219 | 2220 | range-parser@~1.2.0: 2221 | version "1.2.0" 2222 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2223 | 2224 | raw-body@2.3.2: 2225 | version "2.3.2" 2226 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" 2227 | dependencies: 2228 | bytes "3.0.0" 2229 | http-errors "1.6.2" 2230 | iconv-lite "0.4.19" 2231 | unpipe "1.0.0" 2232 | 2233 | rc@^1.1.7: 2234 | version "1.2.2" 2235 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2236 | dependencies: 2237 | deep-extend "~0.4.0" 2238 | ini "~1.3.0" 2239 | minimist "^1.2.0" 2240 | strip-json-comments "~2.0.1" 2241 | 2242 | readable-stream@^2.0.0, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 2243 | version "2.3.3" 2244 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2245 | dependencies: 2246 | core-util-is "~1.0.0" 2247 | inherits "~2.0.3" 2248 | isarray "~1.0.0" 2249 | process-nextick-args "~1.0.6" 2250 | safe-buffer "~5.1.1" 2251 | string_decoder "~1.0.3" 2252 | util-deprecate "~1.0.1" 2253 | 2254 | readable-stream@~1.0.32: 2255 | version "1.0.34" 2256 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2257 | dependencies: 2258 | core-util-is "~1.0.0" 2259 | inherits "~2.0.1" 2260 | isarray "0.0.1" 2261 | string_decoder "~0.10.x" 2262 | 2263 | request@2.81.0: 2264 | version "2.81.0" 2265 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2266 | dependencies: 2267 | aws-sign2 "~0.6.0" 2268 | aws4 "^1.2.1" 2269 | caseless "~0.12.0" 2270 | combined-stream "~1.0.5" 2271 | extend "~3.0.0" 2272 | forever-agent "~0.6.1" 2273 | form-data "~2.1.1" 2274 | har-validator "~4.2.1" 2275 | hawk "~3.1.3" 2276 | http-signature "~1.1.0" 2277 | is-typedarray "~1.0.0" 2278 | isstream "~0.1.2" 2279 | json-stringify-safe "~5.0.1" 2280 | mime-types "~2.1.7" 2281 | oauth-sign "~0.8.1" 2282 | performance-now "^0.2.0" 2283 | qs "~6.4.0" 2284 | safe-buffer "^5.0.1" 2285 | stringstream "~0.0.4" 2286 | tough-cookie "~2.3.0" 2287 | tunnel-agent "^0.6.0" 2288 | uuid "^3.0.0" 2289 | 2290 | request@^2.72.0, request@^2.74.0, request@^2.79.0, request@^2.81.0, request@^2.83.0: 2291 | version "2.83.0" 2292 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 2293 | dependencies: 2294 | aws-sign2 "~0.7.0" 2295 | aws4 "^1.6.0" 2296 | caseless "~0.12.0" 2297 | combined-stream "~1.0.5" 2298 | extend "~3.0.1" 2299 | forever-agent "~0.6.1" 2300 | form-data "~2.3.1" 2301 | har-validator "~5.0.3" 2302 | hawk "~6.0.2" 2303 | http-signature "~1.2.0" 2304 | is-typedarray "~1.0.0" 2305 | isstream "~0.1.2" 2306 | json-stringify-safe "~5.0.1" 2307 | mime-types "~2.1.17" 2308 | oauth-sign "~0.8.2" 2309 | performance-now "^2.1.0" 2310 | qs "~6.5.1" 2311 | safe-buffer "^5.1.1" 2312 | stringstream "~0.0.5" 2313 | tough-cookie "~2.3.3" 2314 | tunnel-agent "^0.6.0" 2315 | uuid "^3.1.0" 2316 | 2317 | require-uncached@^1.0.3: 2318 | version "1.0.3" 2319 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2320 | dependencies: 2321 | caller-path "^0.1.0" 2322 | resolve-from "^1.0.0" 2323 | 2324 | resolve-from@^1.0.0: 2325 | version "1.0.1" 2326 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2327 | 2328 | restore-cursor@^2.0.0: 2329 | version "2.0.0" 2330 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2331 | dependencies: 2332 | onetime "^2.0.0" 2333 | signal-exit "^3.0.2" 2334 | 2335 | retry-axios@0.3.0: 2336 | version "0.3.0" 2337 | resolved "https://registry.yarnpkg.com/retry-axios/-/retry-axios-0.3.0.tgz#7858ad369872d6acaf05fd97b0490969c9c35ee2" 2338 | 2339 | retry-request@^3.0.0, retry-request@^3.3.1: 2340 | version "3.3.1" 2341 | resolved "https://registry.yarnpkg.com/retry-request/-/retry-request-3.3.1.tgz#fb71276235a617e97551e9be737ab5b91591fb9e" 2342 | dependencies: 2343 | request "^2.81.0" 2344 | through2 "^2.0.0" 2345 | 2346 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2347 | version "2.6.2" 2348 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2349 | dependencies: 2350 | glob "^7.0.5" 2351 | 2352 | run-async@^2.2.0: 2353 | version "2.3.0" 2354 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2355 | dependencies: 2356 | is-promise "^2.1.0" 2357 | 2358 | rx-lite-aggregates@^4.0.8: 2359 | version "4.0.8" 2360 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2361 | dependencies: 2362 | rx-lite "*" 2363 | 2364 | rx-lite@*, rx-lite@^4.0.8: 2365 | version "4.0.8" 2366 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2367 | 2368 | rxjs@^5.5.6: 2369 | version "5.5.6" 2370 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.6.tgz#e31fb96d6fd2ff1fd84bcea8ae9c02d007179c02" 2371 | dependencies: 2372 | symbol-observable "1.0.1" 2373 | 2374 | safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2375 | version "5.1.1" 2376 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2377 | 2378 | semver@^5.3.0: 2379 | version "5.4.1" 2380 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2381 | 2382 | send@0.16.1: 2383 | version "0.16.1" 2384 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3" 2385 | dependencies: 2386 | debug "2.6.9" 2387 | depd "~1.1.1" 2388 | destroy "~1.0.4" 2389 | encodeurl "~1.0.1" 2390 | escape-html "~1.0.3" 2391 | etag "~1.8.1" 2392 | fresh "0.5.2" 2393 | http-errors "~1.6.2" 2394 | mime "1.4.1" 2395 | ms "2.0.0" 2396 | on-finished "~2.3.0" 2397 | range-parser "~1.2.0" 2398 | statuses "~1.3.1" 2399 | 2400 | serve-static@1.13.1: 2401 | version "1.13.1" 2402 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719" 2403 | dependencies: 2404 | encodeurl "~1.0.1" 2405 | escape-html "~1.0.3" 2406 | parseurl "~1.3.2" 2407 | send "0.16.1" 2408 | 2409 | set-blocking@~2.0.0: 2410 | version "2.0.0" 2411 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2412 | 2413 | setprototypeof@1.0.3: 2414 | version "1.0.3" 2415 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 2416 | 2417 | setprototypeof@1.1.0: 2418 | version "1.1.0" 2419 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 2420 | 2421 | sha1@^1.1.1: 2422 | version "1.1.1" 2423 | resolved "https://registry.yarnpkg.com/sha1/-/sha1-1.1.1.tgz#addaa7a93168f393f19eb2b15091618e2700f848" 2424 | dependencies: 2425 | charenc ">= 0.0.1" 2426 | crypt ">= 0.0.1" 2427 | 2428 | shebang-command@^1.2.0: 2429 | version "1.2.0" 2430 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2431 | dependencies: 2432 | shebang-regex "^1.0.0" 2433 | 2434 | shebang-regex@^1.0.0: 2435 | version "1.0.0" 2436 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2437 | 2438 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2439 | version "3.0.2" 2440 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2441 | 2442 | slash@^1.0.0: 2443 | version "1.0.0" 2444 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2445 | 2446 | slice-ansi@1.0.0: 2447 | version "1.0.0" 2448 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2449 | dependencies: 2450 | is-fullwidth-code-point "^2.0.0" 2451 | 2452 | snakeize@^0.1.0: 2453 | version "0.1.0" 2454 | resolved "https://registry.yarnpkg.com/snakeize/-/snakeize-0.1.0.tgz#10c088d8b58eb076b3229bb5a04e232ce126422d" 2455 | 2456 | sntp@1.x.x: 2457 | version "1.0.9" 2458 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2459 | dependencies: 2460 | hoek "2.x.x" 2461 | 2462 | sntp@2.x.x: 2463 | version "2.1.0" 2464 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2465 | dependencies: 2466 | hoek "4.x.x" 2467 | 2468 | split-array-stream@^1.0.0: 2469 | version "1.0.3" 2470 | resolved "https://registry.yarnpkg.com/split-array-stream/-/split-array-stream-1.0.3.tgz#d2b75a8e5e0d824d52fdec8b8225839dc2e35dfa" 2471 | dependencies: 2472 | async "^2.4.0" 2473 | is-stream-ended "^0.1.0" 2474 | 2475 | sprintf-js@~1.0.2: 2476 | version "1.0.3" 2477 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2478 | 2479 | sshpk@^1.7.0: 2480 | version "1.13.1" 2481 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2482 | dependencies: 2483 | asn1 "~0.2.3" 2484 | assert-plus "^1.0.0" 2485 | dashdash "^1.12.0" 2486 | getpass "^0.1.1" 2487 | optionalDependencies: 2488 | bcrypt-pbkdf "^1.0.0" 2489 | ecc-jsbn "~0.1.1" 2490 | jsbn "~0.1.0" 2491 | tweetnacl "~0.14.0" 2492 | 2493 | "statuses@>= 1.3.1 < 2": 2494 | version "1.4.0" 2495 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 2496 | 2497 | statuses@~1.3.1: 2498 | version "1.3.1" 2499 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 2500 | 2501 | stream-events@^1.0.1: 2502 | version "1.0.2" 2503 | resolved "https://registry.yarnpkg.com/stream-events/-/stream-events-1.0.2.tgz#abf39f66c0890a4eb795bc8d5e859b2615b590b2" 2504 | dependencies: 2505 | stubs "^3.0.0" 2506 | 2507 | stream-shift@^1.0.0: 2508 | version "1.0.0" 2509 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2510 | 2511 | string-format-obj@^1.0.0, string-format-obj@^1.1.0: 2512 | version "1.1.0" 2513 | resolved "https://registry.yarnpkg.com/string-format-obj/-/string-format-obj-1.1.0.tgz#7635610b1ef397013e8478be98a170e04983d068" 2514 | 2515 | string-width@^1.0.1, string-width@^1.0.2: 2516 | version "1.0.2" 2517 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2518 | dependencies: 2519 | code-point-at "^1.0.0" 2520 | is-fullwidth-code-point "^1.0.0" 2521 | strip-ansi "^3.0.0" 2522 | 2523 | string-width@^2.1.0, string-width@^2.1.1: 2524 | version "2.1.1" 2525 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2526 | dependencies: 2527 | is-fullwidth-code-point "^2.0.0" 2528 | strip-ansi "^4.0.0" 2529 | 2530 | string_decoder@~0.10.x: 2531 | version "0.10.31" 2532 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2533 | 2534 | string_decoder@~1.0.3: 2535 | version "1.0.3" 2536 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2537 | dependencies: 2538 | safe-buffer "~5.1.0" 2539 | 2540 | stringifier@^1.3.0: 2541 | version "1.3.0" 2542 | resolved "https://registry.yarnpkg.com/stringifier/-/stringifier-1.3.0.tgz#def18342f6933db0f2dbfc9aa02175b448c17959" 2543 | dependencies: 2544 | core-js "^2.0.0" 2545 | traverse "^0.6.6" 2546 | type-name "^2.0.1" 2547 | 2548 | stringstream@~0.0.4, stringstream@~0.0.5: 2549 | version "0.0.5" 2550 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2551 | 2552 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2553 | version "3.0.1" 2554 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2555 | dependencies: 2556 | ansi-regex "^2.0.0" 2557 | 2558 | strip-ansi@^4.0.0: 2559 | version "4.0.0" 2560 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2561 | dependencies: 2562 | ansi-regex "^3.0.0" 2563 | 2564 | strip-json-comments@~2.0.1: 2565 | version "2.0.1" 2566 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2567 | 2568 | stubs@^3.0.0: 2569 | version "3.0.0" 2570 | resolved "https://registry.yarnpkg.com/stubs/-/stubs-3.0.0.tgz#e8d2ba1fa9c90570303c030b6900f7d5f89abe5b" 2571 | 2572 | supports-color@^2.0.0: 2573 | version "2.0.0" 2574 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2575 | 2576 | supports-color@^5.2.0: 2577 | version "5.2.0" 2578 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a" 2579 | dependencies: 2580 | has-flag "^3.0.0" 2581 | 2582 | symbol-observable@1.0.1: 2583 | version "1.0.1" 2584 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" 2585 | 2586 | table@^4.0.1: 2587 | version "4.0.3" 2588 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc" 2589 | dependencies: 2590 | ajv "^6.0.1" 2591 | ajv-keywords "^3.0.0" 2592 | chalk "^2.1.0" 2593 | lodash "^4.17.4" 2594 | slice-ansi "1.0.0" 2595 | string-width "^2.1.1" 2596 | 2597 | tar-pack@^3.4.0: 2598 | version "3.4.1" 2599 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2600 | dependencies: 2601 | debug "^2.2.0" 2602 | fstream "^1.0.10" 2603 | fstream-ignore "^1.0.5" 2604 | once "^1.3.3" 2605 | readable-stream "^2.1.4" 2606 | rimraf "^2.5.1" 2607 | tar "^2.2.1" 2608 | uid-number "^0.0.6" 2609 | 2610 | tar@^2.2.1: 2611 | version "2.2.1" 2612 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2613 | dependencies: 2614 | block-stream "*" 2615 | fstream "^1.0.2" 2616 | inherits "2" 2617 | 2618 | text-table@~0.2.0: 2619 | version "0.2.0" 2620 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2621 | 2622 | through2@^2.0.0, through2@^2.0.3: 2623 | version "2.0.3" 2624 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2625 | dependencies: 2626 | readable-stream "^2.1.5" 2627 | xtend "~4.0.1" 2628 | 2629 | through@^2.3.6: 2630 | version "2.3.8" 2631 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2632 | 2633 | tmp@^0.0.33: 2634 | version "0.0.33" 2635 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2636 | dependencies: 2637 | os-tmpdir "~1.0.2" 2638 | 2639 | topo@1.x.x: 2640 | version "1.1.0" 2641 | resolved "https://registry.yarnpkg.com/topo/-/topo-1.1.0.tgz#e9d751615d1bb87dc865db182fa1ca0a5ef536d5" 2642 | dependencies: 2643 | hoek "2.x.x" 2644 | 2645 | tough-cookie@~2.3.0, tough-cookie@~2.3.3: 2646 | version "2.3.3" 2647 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2648 | dependencies: 2649 | punycode "^1.4.1" 2650 | 2651 | traverse@^0.6.6: 2652 | version "0.6.6" 2653 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 2654 | 2655 | tslib@^1.7.1: 2656 | version "1.8.1" 2657 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.8.1.tgz#6946af2d1d651a7b1863b531d6e5afa41aa44eac" 2658 | 2659 | tunnel-agent@^0.6.0: 2660 | version "0.6.0" 2661 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2662 | dependencies: 2663 | safe-buffer "^5.0.1" 2664 | 2665 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2666 | version "0.14.5" 2667 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2668 | 2669 | type-check@~0.3.2: 2670 | version "0.3.2" 2671 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2672 | dependencies: 2673 | prelude-ls "~1.1.2" 2674 | 2675 | type-is@~1.6.15: 2676 | version "1.6.15" 2677 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 2678 | dependencies: 2679 | media-typer "0.3.0" 2680 | mime-types "~2.1.15" 2681 | 2682 | type-name@^2.0.1: 2683 | version "2.0.2" 2684 | resolved "https://registry.yarnpkg.com/type-name/-/type-name-2.0.2.tgz#efe7d4123d8ac52afff7f40c7e4dec5266008fb4" 2685 | 2686 | typedarray@^0.0.6: 2687 | version "0.0.6" 2688 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2689 | 2690 | uid-number@^0.0.6: 2691 | version "0.0.6" 2692 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2693 | 2694 | unique-string@^1.0.0: 2695 | version "1.0.0" 2696 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 2697 | dependencies: 2698 | crypto-random-string "^1.0.0" 2699 | 2700 | universal-deep-strict-equal@^1.2.1: 2701 | version "1.2.2" 2702 | resolved "https://registry.yarnpkg.com/universal-deep-strict-equal/-/universal-deep-strict-equal-1.2.2.tgz#0da4ac2f73cff7924c81fa4de018ca562ca2b0a7" 2703 | dependencies: 2704 | array-filter "^1.0.0" 2705 | indexof "0.0.1" 2706 | object-keys "^1.0.0" 2707 | 2708 | unpipe@1.0.0, unpipe@~1.0.0: 2709 | version "1.0.0" 2710 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2711 | 2712 | util-deprecate@~1.0.1: 2713 | version "1.0.2" 2714 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2715 | 2716 | utils-merge@1.0.1: 2717 | version "1.0.1" 2718 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 2719 | 2720 | uuid@^3.0.0, uuid@^3.1.0: 2721 | version "3.1.0" 2722 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2723 | 2724 | vary@~1.1.2: 2725 | version "1.1.2" 2726 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 2727 | 2728 | verror@1.10.0: 2729 | version "1.10.0" 2730 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2731 | dependencies: 2732 | assert-plus "^1.0.0" 2733 | core-util-is "1.0.2" 2734 | extsprintf "^1.2.0" 2735 | 2736 | websocket-driver@>=0.5.1: 2737 | version "0.7.0" 2738 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" 2739 | dependencies: 2740 | http-parser-js ">=0.4.0" 2741 | websocket-extensions ">=0.1.1" 2742 | 2743 | websocket-extensions@>=0.1.1: 2744 | version "0.1.3" 2745 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" 2746 | 2747 | which@^1.2.9: 2748 | version "1.3.0" 2749 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2750 | dependencies: 2751 | isexe "^2.0.0" 2752 | 2753 | wide-align@^1.1.0: 2754 | version "1.1.2" 2755 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2756 | dependencies: 2757 | string-width "^1.0.2" 2758 | 2759 | window-size@^0.1.4: 2760 | version "0.1.4" 2761 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 2762 | 2763 | wordwrap@~1.0.0: 2764 | version "1.0.0" 2765 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2766 | 2767 | wrap-ansi@^2.0.0: 2768 | version "2.1.0" 2769 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2770 | dependencies: 2771 | string-width "^1.0.1" 2772 | strip-ansi "^3.0.1" 2773 | 2774 | wrappy@1: 2775 | version "1.0.2" 2776 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2777 | 2778 | write-file-atomic@^2.0.0: 2779 | version "2.3.0" 2780 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2781 | dependencies: 2782 | graceful-fs "^4.1.11" 2783 | imurmurhash "^0.1.4" 2784 | signal-exit "^3.0.2" 2785 | 2786 | write@^0.2.1: 2787 | version "0.2.1" 2788 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2789 | dependencies: 2790 | mkdirp "^0.5.1" 2791 | 2792 | xdg-basedir@^3.0.0: 2793 | version "3.0.0" 2794 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 2795 | 2796 | xhr2@^0.1.4: 2797 | version "0.1.4" 2798 | resolved "https://registry.yarnpkg.com/xhr2/-/xhr2-0.1.4.tgz#7f87658847716db5026323812f818cadab387a5f" 2799 | 2800 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 2801 | version "4.0.1" 2802 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2803 | 2804 | y18n@^3.2.0: 2805 | version "3.2.1" 2806 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2807 | 2808 | yallist@^2.1.2: 2809 | version "2.1.2" 2810 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2811 | 2812 | yargs@^3.10.0: 2813 | version "3.32.0" 2814 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" 2815 | dependencies: 2816 | camelcase "^2.0.1" 2817 | cliui "^3.0.3" 2818 | decamelize "^1.1.1" 2819 | os-locale "^1.4.0" 2820 | string-width "^1.0.1" 2821 | window-size "^0.1.4" 2822 | y18n "^3.2.0" 2823 | 2824 | zone.js@^0.8.20: 2825 | version "0.8.20" 2826 | resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.8.20.tgz#a218c48db09464b19ff6fc8f0d4bb5b1046e185d" 2827 | -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- 1 | // Karma configuration file, see link for more information 2 | // https://karma-runner.github.io/1.0/config/configuration-file.html 3 | 4 | module.exports = function (config) { 5 | config.set({ 6 | basePath: '', 7 | frameworks: ['jasmine', '@angular/cli'], 8 | plugins: [ 9 | require('karma-jasmine'), 10 | require('karma-chrome-launcher'), 11 | require('karma-jasmine-html-reporter'), 12 | require('karma-coverage-istanbul-reporter'), 13 | require('@angular/cli/plugins/karma') 14 | ], 15 | client:{ 16 | clearContext: false // leave Jasmine Spec Runner output visible in browser 17 | }, 18 | coverageIstanbulReporter: { 19 | reports: [ 'html', 'lcovonly' ], 20 | fixWebpackSourcePaths: true 21 | }, 22 | angularCli: { 23 | environment: 'dev' 24 | }, 25 | reporters: ['progress', 'kjhtml'], 26 | port: 9876, 27 | colors: true, 28 | logLevel: config.LOG_INFO, 29 | autoWatch: true, 30 | browsers: ['Chrome'], 31 | singleRun: false 32 | }); 33 | }; 34 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-universal-firebase", 3 | "version": "0.0.0", 4 | "license": "MIT", 5 | "scripts": { 6 | "ng": "ng", 7 | "start": "ng serve", 8 | "build": "ng build --prod && ng build --prod --app universal --output-hashing=none", 9 | "test": "ng test", 10 | "lint": "ng lint", 11 | "e2e": "ng e2e" 12 | }, 13 | "private": true, 14 | "dependencies": { 15 | "@angular/animations": "^5.2.6", 16 | "@angular/common": "^5.2.6", 17 | "@angular/compiler": "^5.2.6", 18 | "@angular/core": "^5.2.6", 19 | "@angular/forms": "^5.2.6", 20 | "@angular/http": "^5.2.6", 21 | "@angular/platform-browser": "^5.2.6", 22 | "@angular/platform-browser-dynamic": "^5.2.6", 23 | "@angular/platform-server": "^5.2.6", 24 | "@angular/router": "^5.2.6", 25 | "core-js": "^2.5.3", 26 | "rxjs": "^5.5.6", 27 | "zone.js": "^0.8.20" 28 | }, 29 | "devDependencies": { 30 | "@angular/cli": "1.7.1", 31 | "@angular/compiler-cli": "^5.2.6", 32 | "@angular/language-service": "^5.2.6", 33 | "@types/jasmine": "~2.5.53", 34 | "@types/jasminewd2": "~2.0.2", 35 | "@types/node": "~6.0.60", 36 | "codelyzer": "^4.0.1", 37 | "jasmine-core": "~2.6.2", 38 | "jasmine-spec-reporter": "~4.1.0", 39 | "karma": "~1.7.0", 40 | "karma-chrome-launcher": "~2.1.1", 41 | "karma-cli": "~1.0.1", 42 | "karma-coverage-istanbul-reporter": "^1.2.1", 43 | "karma-jasmine": "~1.1.0", 44 | "karma-jasmine-html-reporter": "^0.2.2", 45 | "protractor": "~5.1.2", 46 | "ts-node": "~3.2.0", 47 | "tslint": "~5.7.0", 48 | "typescript": "~2.5.3" 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- 1 | // Protractor configuration file, see link for more information 2 | // https://github.com/angular/protractor/blob/master/lib/config.ts 3 | 4 | const { SpecReporter } = require('jasmine-spec-reporter'); 5 | 6 | exports.config = { 7 | allScriptsTimeout: 11000, 8 | specs: [ 9 | './e2e/**/*.e2e-spec.ts' 10 | ], 11 | capabilities: { 12 | 'browserName': 'chrome' 13 | }, 14 | directConnect: true, 15 | baseUrl: 'http://localhost:4200/', 16 | framework: 'jasmine', 17 | jasmineNodeOpts: { 18 | showColors: true, 19 | defaultTimeoutInterval: 30000, 20 | print: function() {} 21 | }, 22 | onPrepare() { 23 | require('ts-node').register({ 24 | project: 'e2e/tsconfig.e2e.json' 25 | }); 26 | jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } })); 27 | } 28 | }; 29 | -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyeosakul/angular-universal-firebase/d998874f748e1685e44419d050ae0745a56a566c/src/app/app.component.css -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |

4 | Welcome to {{ title }}! 5 |

6 | Angular Logo 7 |
8 |

Here are some links to help you start:

9 | 20 | 21 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- 1 | import { TestBed, async } from '@angular/core/testing'; 2 | import { AppComponent } from './app.component'; 3 | describe('AppComponent', () => { 4 | beforeEach(async(() => { 5 | TestBed.configureTestingModule({ 6 | declarations: [ 7 | AppComponent 8 | ], 9 | }).compileComponents(); 10 | })); 11 | it('should create the app', async(() => { 12 | const fixture = TestBed.createComponent(AppComponent); 13 | const app = fixture.debugElement.componentInstance; 14 | expect(app).toBeTruthy(); 15 | })); 16 | it(`should have as title 'app'`, async(() => { 17 | const fixture = TestBed.createComponent(AppComponent); 18 | const app = fixture.debugElement.componentInstance; 19 | expect(app.title).toEqual('app'); 20 | })); 21 | it('should render title in a h1 tag', async(() => { 22 | const fixture = TestBed.createComponent(AppComponent); 23 | fixture.detectChanges(); 24 | const compiled = fixture.debugElement.nativeElement; 25 | expect(compiled.querySelector('h1').textContent).toContain('Welcome to app!'); 26 | })); 27 | }); 28 | -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'app'; 10 | } 11 | -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { BrowserModule } from '@angular/platform-browser'; 2 | import { NgModule } from '@angular/core'; 3 | 4 | 5 | import { AppComponent } from './app.component'; 6 | 7 | 8 | @NgModule({ 9 | declarations: [ 10 | AppComponent 11 | ], 12 | imports: [ 13 | BrowserModule.withServerTransition({ appId: 'serverApp' }) 14 | ], 15 | providers: [], 16 | bootstrap: [AppComponent] 17 | }) 18 | export class AppModule { } 19 | -------------------------------------------------------------------------------- /src/app/app.server.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | import { ServerModule } from '@angular/platform-server'; 3 | 4 | import { AppModule } from './app.module'; 5 | import { AppComponent } from './app.component'; 6 | 7 | @NgModule({ 8 | imports: [ 9 | AppModule, 10 | ServerModule, 11 | ], 12 | bootstrap: [AppComponent], 13 | }) 14 | export class AppServerModule {} 15 | -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyeosakul/angular-universal-firebase/d998874f748e1685e44419d050ae0745a56a566c/src/assets/.gitkeep -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // The file contents for the current environment will overwrite these during build. 2 | // The build system defaults to the dev environment which uses `environment.ts`, but if you do 3 | // `ng build --env=prod` then `environment.prod.ts` will be used instead. 4 | // The list of which env maps to which file can be found in `.angular-cli.json`. 5 | 6 | export const environment = { 7 | production: false 8 | }; 9 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanleyeosakul/angular-universal-firebase/d998874f748e1685e44419d050ae0745a56a566c/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AngularUniversalFirebase 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | export { AppServerModule } from './app/app.server.module'; 3 | 4 | enableProdMode(); 5 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | document.addEventListener('DOMContentLoaded', () => { 12 | platformBrowserDynamic().bootstrapModule(AppModule) 13 | .catch(err => console.log(err)); 14 | }); 15 | -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * This file includes polyfills needed by Angular and is loaded before the app. 3 | * You can add your own extra polyfills to this file. 4 | * 5 | * This file is divided into 2 sections: 6 | * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. 7 | * 2. Application imports. Files imported after ZoneJS that should be loaded before your main 8 | * file. 9 | * 10 | * The current setup is for so-called "evergreen" browsers; the last versions of browsers that 11 | * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), 12 | * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. 13 | * 14 | * Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html 15 | */ 16 | 17 | /*************************************************************************************************** 18 | * BROWSER POLYFILLS 19 | */ 20 | 21 | /** IE9, IE10 and IE11 requires all of the following polyfills. **/ 22 | // import 'core-js/es6/symbol'; 23 | // import 'core-js/es6/object'; 24 | // import 'core-js/es6/function'; 25 | // import 'core-js/es6/parse-int'; 26 | // import 'core-js/es6/parse-float'; 27 | // import 'core-js/es6/number'; 28 | // import 'core-js/es6/math'; 29 | // import 'core-js/es6/string'; 30 | // import 'core-js/es6/date'; 31 | // import 'core-js/es6/array'; 32 | // import 'core-js/es6/regexp'; 33 | // import 'core-js/es6/map'; 34 | // import 'core-js/es6/weak-map'; 35 | // import 'core-js/es6/set'; 36 | 37 | /** IE10 and IE11 requires the following for NgClass support on SVG elements */ 38 | // import 'classlist.js'; // Run `npm install --save classlist.js`. 39 | 40 | /** IE10 and IE11 requires the following for the Reflect API. */ 41 | // import 'core-js/es6/reflect'; 42 | 43 | 44 | /** Evergreen browsers require these. **/ 45 | // Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove. 46 | import 'core-js/es7/reflect'; 47 | 48 | 49 | /** 50 | * Required to support Web Animations `@angular/platform-browser/animations`. 51 | * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation 52 | **/ 53 | // import 'web-animations-js'; // Run `npm install --save web-animations-js`. 54 | 55 | 56 | 57 | /*************************************************************************************************** 58 | * Zone JS is required by default for Angular itself. 59 | */ 60 | import 'zone.js/dist/zone'; // Included with Angular CLI. 61 | 62 | 63 | 64 | /*************************************************************************************************** 65 | * APPLICATION IMPORTS 66 | */ 67 | -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- 1 | // This file is required by karma.conf.js and loads recursively all the .spec and framework files 2 | 3 | import 'zone.js/dist/long-stack-trace-zone'; 4 | import 'zone.js/dist/proxy.js'; 5 | import 'zone.js/dist/sync-test'; 6 | import 'zone.js/dist/jasmine-patch'; 7 | import 'zone.js/dist/async-test'; 8 | import 'zone.js/dist/fake-async-test'; 9 | import { getTestBed } from '@angular/core/testing'; 10 | import { 11 | BrowserDynamicTestingModule, 12 | platformBrowserDynamicTesting 13 | } from '@angular/platform-browser-dynamic/testing'; 14 | 15 | // Unfortunately there's no typing for the `__karma__` variable. Just declare it as any. 16 | declare const __karma__: any; 17 | declare const require: any; 18 | 19 | // Prevent Karma from running prematurely. 20 | __karma__.loaded = function () {}; 21 | 22 | // First, initialize the Angular testing environment. 23 | getTestBed().initTestEnvironment( 24 | BrowserDynamicTestingModule, 25 | platformBrowserDynamicTesting() 26 | ); 27 | // Then we find all the tests. 28 | const context = require.context('./', true, /\.spec\.ts$/); 29 | // And load the modules. 30 | context.keys().map(context); 31 | // Finally, start Karma to run the tests. 32 | __karma__.start(); 33 | -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/app", 5 | "baseUrl": "./", 6 | "module": "es2015", 7 | "types": [] 8 | }, 9 | "exclude": [ 10 | "test.ts", 11 | "**/*.spec.ts" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /src/tsconfig.server.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../dist-server/", 5 | "baseUrl": "./", 6 | "module": "commonjs", 7 | "types": [] 8 | }, 9 | "exclude": [ 10 | "test.ts", 11 | "**/*.spec.ts" 12 | ], 13 | "angularCompilerOptions": { 14 | "entryModule": "app/app.server.module#AppServerModule" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/spec", 5 | "baseUrl": "./", 6 | "module": "commonjs", 7 | "target": "es5", 8 | "types": [ 9 | "jasmine", 10 | "node" 11 | ] 12 | }, 13 | "files": [ 14 | "test.ts" 15 | ], 16 | "include": [ 17 | "**/*.spec.ts", 18 | "**/*.d.ts" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- 1 | /* SystemJS module definition */ 2 | declare var module: NodeModule; 3 | interface NodeModule { 4 | id: string; 5 | } 6 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "outDir": "./dist/out-tsc", 5 | "sourceMap": true, 6 | "declaration": false, 7 | "moduleResolution": "node", 8 | "emitDecoratorMetadata": true, 9 | "experimentalDecorators": true, 10 | "target": "es5", 11 | "typeRoots": [ 12 | "node_modules/@types" 13 | ], 14 | "lib": [ 15 | "es2017", 16 | "dom" 17 | ] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rulesDirectory": [ 3 | "node_modules/codelyzer" 4 | ], 5 | "rules": { 6 | "arrow-return-shorthand": true, 7 | "callable-types": true, 8 | "class-name": true, 9 | "comment-format": [ 10 | true, 11 | "check-space" 12 | ], 13 | "curly": true, 14 | "deprecation": { 15 | "severity": "warn" 16 | }, 17 | "eofline": true, 18 | "forin": true, 19 | "import-blacklist": [ 20 | true, 21 | "rxjs", 22 | "rxjs/Rx" 23 | ], 24 | "import-spacing": true, 25 | "indent": [ 26 | true, 27 | "spaces" 28 | ], 29 | "interface-over-type-literal": true, 30 | "label-position": true, 31 | "max-line-length": [ 32 | true, 33 | 140 34 | ], 35 | "member-access": false, 36 | "member-ordering": [ 37 | true, 38 | { 39 | "order": [ 40 | "static-field", 41 | "instance-field", 42 | "static-method", 43 | "instance-method" 44 | ] 45 | } 46 | ], 47 | "no-arg": true, 48 | "no-bitwise": true, 49 | "no-console": [ 50 | true, 51 | "debug", 52 | "info", 53 | "time", 54 | "timeEnd", 55 | "trace" 56 | ], 57 | "no-construct": true, 58 | "no-debugger": true, 59 | "no-duplicate-super": true, 60 | "no-empty": false, 61 | "no-empty-interface": true, 62 | "no-eval": true, 63 | "no-inferrable-types": [ 64 | true, 65 | "ignore-params" 66 | ], 67 | "no-misused-new": true, 68 | "no-non-null-assertion": true, 69 | "no-shadowed-variable": true, 70 | "no-string-literal": false, 71 | "no-string-throw": true, 72 | "no-switch-case-fall-through": true, 73 | "no-trailing-whitespace": true, 74 | "no-unnecessary-initializer": true, 75 | "no-unused-expression": true, 76 | "no-use-before-declare": true, 77 | "no-var-keyword": true, 78 | "object-literal-sort-keys": false, 79 | "one-line": [ 80 | true, 81 | "check-open-brace", 82 | "check-catch", 83 | "check-else", 84 | "check-whitespace" 85 | ], 86 | "prefer-const": true, 87 | "quotemark": [ 88 | true, 89 | "single" 90 | ], 91 | "radix": true, 92 | "semicolon": [ 93 | true, 94 | "always" 95 | ], 96 | "triple-equals": [ 97 | true, 98 | "allow-null-check" 99 | ], 100 | "typedef-whitespace": [ 101 | true, 102 | { 103 | "call-signature": "nospace", 104 | "index-signature": "nospace", 105 | "parameter": "nospace", 106 | "property-declaration": "nospace", 107 | "variable-declaration": "nospace" 108 | } 109 | ], 110 | "typeof-compare": true, 111 | "unified-signatures": true, 112 | "variable-name": false, 113 | "whitespace": [ 114 | true, 115 | "check-branch", 116 | "check-decl", 117 | "check-operator", 118 | "check-separator", 119 | "check-type" 120 | ], 121 | "directive-selector": [ 122 | true, 123 | "attribute", 124 | "app", 125 | "camelCase" 126 | ], 127 | "component-selector": [ 128 | true, 129 | "element", 130 | "app", 131 | "kebab-case" 132 | ], 133 | "no-output-on-prefix": true, 134 | "use-input-property-decorator": true, 135 | "use-output-property-decorator": true, 136 | "use-host-property-decorator": true, 137 | "no-input-rename": true, 138 | "no-output-rename": true, 139 | "use-life-cycle-interface": true, 140 | "use-pipe-transform-interface": true, 141 | "component-class-suffix": true, 142 | "directive-class-suffix": true 143 | } 144 | } 145 | --------------------------------------------------------------------------------