├── .gitignore ├── package-lock.json ├── package.json ├── readme.MD ├── src ├── admin.ts ├── core │ ├── constants.ts │ ├── endpoints.ts │ └── utils.ts ├── index.ts ├── middlewares │ └── guard.ts ├── models │ ├── firebase-error.ts │ └── firebase-user.ts ├── providers │ ├── email-password-provider.ts │ └── social-providers.ts ├── types.ts ├── types │ └── express.d.ts └── user │ └── account.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | *.skip 2 | .idea 3 | *.ppk 4 | *.glue 5 | firebase.json 6 | 7 | .DS_Store 8 | 9 | # Logs 10 | logs 11 | *.log 12 | npm-debug.log* 13 | yarn-debug.log* 14 | yarn-error.log* 15 | 16 | # Runtime data 17 | pids 18 | *.pid 19 | *.seed 20 | *.pid.lock 21 | 22 | # Directory for instrumented libs generated by jscoverage/JSCover 23 | lib-cov 24 | 25 | # Coverage directory used by tools like istanbul 26 | coverage 27 | 28 | # nyc test coverage 29 | .nyc_output 30 | 31 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 32 | .grunt 33 | 34 | # Bower dependency directory (https://bower.io/) 35 | bower_components 36 | 37 | # node-waf configuration 38 | .lock-wscript 39 | 40 | # Compiled binary addons (http://nodejs.org/api/addons.html) 41 | build/Release 42 | dist/ 43 | 44 | # Dependency directories 45 | node_modules/ 46 | jspm_packages/ 47 | 48 | # Typescript v1 declaration files 49 | typings/ 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional REPL history 58 | .node_repl_history 59 | 60 | # Output of 'npm pack' 61 | *.tgz 62 | 63 | # Yarn Integrity file 64 | .yarn-integrity 65 | 66 | # dotenv environment variables file 67 | .env 68 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Rudigo", 3 | "name": "firebaseauth", 4 | "version": "1.0.0", 5 | "description": "Firebase authentication library - a node js wrapper around the Firebase REST API. It can generate Firebase auth token based on given email-password combination or OAuth token (issued by Google, Facebook, Twitter or Github). This Firebase token can then be used with REST queries against Firebase Database endpoints or for protecting resources on a server.", 6 | "main": "dist/index.js", 7 | "types": "dist/index.d.ts", 8 | "scripts": { 9 | "build": "tsc" 10 | }, 11 | "repository": { 12 | "url": "https://github.com/ThisIsRudigo/firebaseauth.git" 13 | }, 14 | "license": "ISC", 15 | "dependencies": { 16 | "express": "^4.16.3", 17 | "firebase-admin": "^5.2.1", 18 | "request": "^2.81.0", 19 | "request-promise": "^4.2.1", 20 | "typescript": "^2.7.2", 21 | "validator": "^8.2.0" 22 | }, 23 | "devDependencies": { 24 | "@types/express": "^4.11.1", 25 | "@types/node": "^9.6.0", 26 | "@types/request-promise": "^4.1.41", 27 | "@types/validator": "^9.4.1", 28 | "ts-node": "^5.0.0", 29 | "tslint": "^5.9.1", 30 | "typescript": "^2.7.2" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /readme.MD: -------------------------------------------------------------------------------- 1 | Firebase Authentication Library for Node JS 2 | =========================================== 3 | 4 | Firebase authentication library - a node js wrapper around the Firebase REST API. It can generate Firebase auth token based on given email-password combination or OAuth token (issued by Google, Facebook, Twitter or Github). This Firebase token can then be used with REST queries against Firebase Database endpoints or for protecting resources/endpoints on a server. 5 | 6 | # Installation and Setup 7 | 8 | ## Install 9 | ``` 10 | $ npm install firebaseauth 11 | ``` 12 | ## Setup 13 | To use firebase authentication, you need to sign into or create an account at [https://console.firebase.google.com]. 14 | From the firebase console, create a project or select an existing one. 15 | 16 | Go to Overview -> Settings icon -> Project settings (General tab) to get your Web API Key 17 | 18 | It is best practice to store api keys, secrets and passwords as environment variables. 19 | ```javascript 20 | const FirebaseAuth = require('firebaseauth'); // or import FirebaseAuth from 'firebaseauth'; 21 | const firebase = new FirebaseAuth(process.env.FIREBASE_API_KEY); 22 | ``` 23 | 24 | # Usage 25 | 26 | ## Authentication with Email and Password 27 | Ensure you have enabled email-password authentication from your [firebase console](https://console.firebase.google.com, "Firebase Console"). From the console, go to Authentication (Sign in method tab) and enable Email/Password 28 | #### Simple registration with email and password only 29 | ```javascript 30 | firebase.registerWithEmail(email, password, function(err, result) { 31 | if (err) 32 | console.log(err); 33 | else 34 | console.log(result); 35 | }); 36 | ``` 37 | #### Register with email, password and name 38 | ```javascript 39 | firebase.registerWithEmail(email, password, name, function(err, result){ 40 | if (err) 41 | console.log(err); 42 | else 43 | console.log(result); 44 | }); 45 | ``` 46 | #### Register with email, password and other info 47 | ```javascript 48 | var extras = { 49 | name: string, 50 | photoUrl: string | url, 51 | requestVerification: boolean 52 | } 53 | firebase.registerWithEmail(email, password, extras, function(err, result){ 54 | if (err) 55 | console.log(err); 56 | else 57 | console.log(result); 58 | }); 59 | ``` 60 | #### Sign in with Email and Password 61 | ```javascript 62 | firebase.signInWithEmail(email, password, function(err, result){ 63 | if (err) 64 | console.log(err); 65 | else 66 | console.log(result); 67 | }); 68 | ``` 69 | 70 | ## Authentication with Facebook Account 71 | Ensure you have enabled Facebook authentication from your [firebase console](https://console.firebase.google.com, "Firebase Console"). From the console, go to Authentication (Sign in method tab) and enable Facebook. 72 | 73 | Follow the instructions at [https://firebase.google.com/docs/auth/web/facebook-login](https://firebase.google.com/docs/auth/web/facebook-login) (Steps 2 and 3 _specifically_ of the Before you begin section) to properly set up and configure Facebook authentication on your firebase project 74 | #### Sign in with Facebook access token 75 | ```javascript 76 | firebase.loginWithFacebook(token, function(err, result) { 77 | if (err) 78 | console.log(err); 79 | else 80 | console.log(result); 81 | }); 82 | ``` 83 | #### Link email account to Facebook account 84 | Login with Facebook may fail to return a valid firebase token if the email associated with the Facebook account has already been used on this firebase project. In such instances, the result returned from the above call will have `sameCredentialExists = true`. 85 | 86 | If the email was previously associated with an email/password account, then you can link both accounts a follows: 87 | 88 | First, login with the email and password to get the firebase idToken (token), then get Facebook access token like in the step above and then... 89 | ```javascript 90 | firebase.linkWithFacebook(idToken, access_token, function(err, result) { 91 | if (err) 92 | console.log(err); 93 | else 94 | console.log(result); 95 | }); 96 | ``` 97 | 98 | ## Authentication with Google (Gmail) account 99 | Ensure you have enabled authentication with Google from your [firebase console](https://console.firebase.google.com, "Firebase Console"). From the console, go to Authentication (Sign in method tab) and enable Google. 100 | #### Sign in with Google account 101 | ```javascript 102 | firebase.loginWithGoogle(token, function(err, result) { 103 | if (err) 104 | console.log(err); 105 | else 106 | console.log(result); 107 | }); 108 | ``` 109 | #### Link email account to Google account 110 | Login with Google may fail to return a valid firebase token if the gmail address has already been used on this firebase project. In such instances, the result returned from the above call will have `sameCredentialExists = true`. 111 | 112 | If the email was previously associated with an email/password account, then you can link both accounts in a similar fashion as explained under [Link email account to Facebook account](#link-email-account-to-facebook-account). 113 | ```javascript 114 | firebase.linkWithGoogle(idToken, access_token, function(err, result) { 115 | if (err) 116 | console.log(err); 117 | else 118 | console.log(result); 119 | }); 120 | ``` 121 | 122 | ## Authentication with Twitter Account 123 | Ensure you have enabled Twitter authentication from your [firebase console](https://console.firebase.google.com, "Firebase Console"). From the console, go to Authentication (Sign in method tab) and enable Twitter. 124 | 125 | Follow the instructions at [https://firebase.google.com/docs/auth/web/twitter-login](https://firebase.google.com/docs/auth/web/twitter-login) (Steps 2 and 3 specifically of the Before you begin section) to properly set up and configure Twitter authentication on your firebase project 126 | #### Sign in with Twitter Account 127 | ```javascript 128 | firebase.loginWithTwitter(token, function(err, result) { 129 | if (err) 130 | console.log(err); 131 | else 132 | console.log(result); 133 | }); 134 | ``` 135 | #### Link email account to Twitter account 136 | Login with Twitter may fail to return a valid firebase token if the email address associated with the twitter account has already been used on this firebase project. In such instances, the result returned from the above call will have `sameCredentialExists = true`. 137 | 138 | If the email was previously associated with an email/password account, then you can link both accounts in a similar fashion as explained under [Link email account to Facebook account](#link-email-account-to-facebook-account). 139 | ```javascript 140 | firebase.linkWithTwitter(idToken, access_token, function(err, result) { 141 | if (err) 142 | console.log(err); 143 | else 144 | console.log(result); 145 | }); 146 | ``` 147 | 148 | ## Authentication with Github 149 | Ensure you have enabled Github authentication from your [firebase console](https://console.firebase.google.com, "Firebase Console"). From the console, go to Authentication (Sign in method tab) and enable Github. 150 | 151 | Follow the instructions at [https://firebase.google.com/docs/auth/web/github-auth](https://firebase.google.com/docs/auth/web/github-auth) (Steps 2 and 3 specifically of the Before you begin section) to properly set up and configure Github authentication on your firebase project 152 | #### Sign in with Github Account 153 | ``` 154 | firebase.loginWithGithub(token, function(err, result) { 155 | if (err) 156 | console.log(err); 157 | else 158 | console.log(result); 159 | }); 160 | ``` 161 | #### Link email account to Github account 162 | Login with Github may fail to return a valid firebase token if the email address associated with the Github account has already been used on this firebase project. In such instances, the result returned from the above call will have `sameCredentialExists = true`. 163 | 164 | If the email was previously associated with an email/password account, then you can link both accounts in a similar fashion as explained under [Link email account to Facebook account](#link-email-account-to-facebook-account). 165 | ```javascript 166 | firebase.linkWithGithub(idToken, access_token, function(err, result) { 167 | if (err) 168 | console.log(err); 169 | else 170 | console.log(result); 171 | }); 172 | ``` 173 | 174 | ## Send Verification Email to user 175 | ``` 176 | firebase.sendVerificationEmail(token, function(err, result) { 177 | if (err) 178 | console.log(err); 179 | else 180 | console.log(result); 181 | }); 182 | ``` 183 | 184 | ## Verify user with oobCode gotten from verification email 185 | ``` 186 | firebase.verifyEmail(oobcode, function(err, result) { 187 | if (err) 188 | console.log(err); 189 | else 190 | console.log(result); 191 | }); 192 | ``` 193 | 194 | ## Get user information 195 | ``` 196 | firebase.getProfile(token, function(err, result) { 197 | if (err) 198 | console.log(err); 199 | else{ 200 | console.log(result); //array of connected accounts 201 | console.log(result[0].profileUrls); 202 | } 203 | }); 204 | ``` 205 | 206 | ## Update user information 207 | ``` 208 | firebase.updateProfile(token, name, function(err, result) { 209 | if (err) 210 | console.log(err); 211 | else 212 | console.log(result); 213 | }); 214 | 215 | firebase.updateProfile(token, name, photoUrl, function(err, result) { 216 | if (err) 217 | console.log(err); 218 | else 219 | console.log(result); 220 | }); 221 | ``` 222 | 223 | ## Send password reset email 224 | ``` 225 | firebase.sendPasswordResetEmail(email, function(err, result) { 226 | if (err) 227 | console.log(err); 228 | else 229 | console.log(result); 230 | }); 231 | ``` 232 | 233 | ## Verify password reset oobCode 234 | ``` 235 | firebase.verifyPasswordResetcode(oobCode, function(err, result) { 236 | if (err) 237 | console.log(err); 238 | else 239 | console.log(result); 240 | }); 241 | ``` 242 | 243 | ## Reset password using oobCode gotten from password reset email 244 | ``` 245 | firebase.resetPassword(oobcode, newPassword, function(err, result) { 246 | if (err) 247 | console.log(err); 248 | else 249 | console.log(result); 250 | }); 251 | ``` 252 | 253 | ## Refresh Firebase Access Token 254 | ``` 255 | firebase.refreshToken(refreshToken, function(err, result) { 256 | if (err) 257 | console.log(err); 258 | else 259 | console.log(result); 260 | }); 261 | ``` 262 | 263 | ## Restrict access to resources/endpoints to only firebase-authorized users 264 | 265 | ### Step 1 - Get service account json from your firebase project console 266 | 267 | From your console, go to Project Overview -> Settings icon -> Project settings (Service Accounts tab) 268 | 269 | ``` 270 | // create JSON object from your service account json file 271 | const serviceAccount = require("../path/to/serviceAccountKey.json"); 272 | ``` 273 | 274 | ### Step 2 - Initialize token checking middleware for express 275 | Setup default token middleware with following behaviour 276 | - Checks for "token" in request header, body and query in that order (`req.headers.token || req.body.token || req.query.token`) 277 | - If token is not found or is invalid, 401 response is sent with relevant error message 278 | - If token is properly decoded, user id and original token sent by user is returned in `req.user` (v0.2.0 and later) 279 | - If token is properly decoded, full user info (token, id, displayName, email etc) is returned in `req.user` (v0.1.1 and earlier) 280 | 281 | ``` 282 | const firebaseTokenMiddleware = FirebaseAuth.initTokenMiddleware(serviceAccount); // v1.0.0 and later 283 | const firebaseTokenMiddleware = FirebaseAuth.defaultTokenMiddleware(serviceAccount); // v0.2.0 to 0.9.9 284 | const firebaseTokenMiddleware = firebase.protect(serviceAccount); // v0.1.1 and earlier 285 | ``` 286 | 287 | ### Register a callback 288 | You can register a callback to perform other operations after token verification or customize responses on token verification error. 289 | 290 | When using a callback, remember to call `next()` or respond with an error after processing the information returned to the callback 291 | ``` 292 | const middlewareCallback = function(req, res, next, error, data) { 293 | if (error === 'ERROR_NO_TOKEN') { 294 | // token not supplied 295 | res.status(401).json({error: "No token provided"}); 296 | } 297 | else if (error === 'ERROR_INVALID_TOKEN') { 298 | // token failed verification 299 | res.status(401).json({error: "Unauthorized access"}); 300 | } 301 | else if (error) { 302 | // some other error occurred (this should never happen!) 303 | res.status(500).json({error: "Unexpected error"}); 304 | } 305 | else if (data.error) { 306 | // there was no error with verifying the token, thus user id can be found in data.userId 307 | // there was however an error in getting user info from firebase using the id 308 | res.status(401).json({error: "An error occurred while trying to verify your credentials"}); 309 | } 310 | else { 311 | // data contains user id and token (v0.2.0 and later) and full user information (id, displayName, email etc) for v0.1.1 and earlier 312 | req.user = data; 313 | next(); 314 | } 315 | }; 316 | const firebaseTokenMiddleware = FirebaseAuth.initTokenMiddleware(serviceAccount, middlewareCallback); // v1.0.0 and later 317 | const firebaseTokenMiddleware = new FirebaseAuth.Guard(serviceAccount, middlewareCallback); // v0.2.0 to 0.9.9 318 | const firebaseTokenMiddleware = firebase.protect(serviceAccount, middlewareCallback); // v0.1.1 and earlier 319 | ``` 320 | 321 | ### Specify options (v0.2.0 and later only) 322 | You can specify which field to check in req header, body or query for user token instead of the default `token` field. 323 | 324 | You can also indicate if to include additional information about the user when verifying the token. 325 | 326 | ``` 327 | const options = { 328 | tokenField: "access_token", 329 | userIdOnly: false 330 | }; 331 | const firebaseTokenMiddleware = FirebaseAuth.initTokenMiddleware(serviceAccount, options); // v1.0.0 and later 332 | const firebaseTokenMiddleware = new FirebaseAuth.Guard(serviceAccount, options); // v0.2.0 to 0.9.9 333 | 334 | // use with callback 335 | const firebaseTokenMiddleware = FirebaseAuth.initTokenMiddleware(serviceAccount, options, middlewareCallback); // v1.0.0 and later 336 | const firebaseTokenMiddleware = new FirebaseAuth.Guard(serviceAccount, options, middlewareCallback); // v0.2.0 to 0.9.9 337 | ``` 338 | 339 | ### Step 3 - Protect endpoints with Firebase Access Token and Express 340 | ``` 341 | var express = require('express'); 342 | var app = express(); 343 | 344 | // to protect all routes below this point 345 | app.use(firebaseTokenMiddleware); 346 | 347 | // to protect specific endpoints 348 | app.use('/protected-path', firebaseTokenMiddleware, function(req, res) { 349 | res.send('hello there. your user id is ' + req.user.id); 350 | }) 351 | ``` 352 | 353 | # Errors 354 | 355 | All errors have the following structure 356 | ``` 357 | { 358 | code: any of the error codes below, 359 | message: human-readable description of the error, 360 | originalError: original response from firebase 361 | } 362 | ``` 363 | 364 | ## Error Codes 365 | ``` 366 | //general errors 367 | INVALID_ACCESS_TOKEN 368 | CREDENTIAL_TOO_OLD_LOGIN_AGAIN 369 | 370 | //possible errors from Third Party Authentication 371 | INVALID_PROVIDER_ID 372 | MISSING_REQUEST_URI 373 | MISSING_REQUEST_URI 374 | INVALID_REQUEST_BODY 375 | 376 | //possible errors from Email/Password Account Signup or Signin 377 | INVALID_EMAIL 378 | MISSING_PASSWORD 379 | 380 | //possible errors from Email/Password Account Signup 381 | WEAK_PASSWORD 382 | EMAIL_EXISTS 383 | 384 | //possible errors from Email/Password Signin 385 | INVALID_PASSWORD 386 | EMAIL_NOT_FOUND 387 | USER_DISABLED 388 | 389 | //possible errors from Email/Password Signin or Password Recovery or Email/Password Sign up 390 | MISSING_EMAIL 391 | 392 | //possible errors from Password Recovery 393 | MISSING_REQ_TYPE 394 | 395 | //possible errors from email verification and password reset 396 | INVALID_OOB_CODE 397 | 398 | //possible errors from Getting Linked Accounts 399 | INVALID_IDENTIFIER 400 | MISSING_IDENTIFIER 401 | FEDERATED_USER_ID_ALREADY_LINKED 402 | 403 | //possible errors from Account Delete 404 | USER_NOT_FOUND 405 | 406 | //errors from protect middleware 407 | ERROR_NO_TOKEN 408 | ERROR_INVALID_TOKEN 409 | 410 | //other errors 411 | NETWORK_NOT_AVAILABLE 412 | UNKNOWN_ERROR 413 | ``` 414 | -------------------------------------------------------------------------------- /src/admin.ts: -------------------------------------------------------------------------------- 1 | import admin from "firebase-admin"; 2 | 3 | export const FirebaseAdmin = admin; 4 | 5 | declare namespace Admin { 6 | 7 | } 8 | 9 | class Admin { 10 | constructor(serviceAccount: any) { 11 | if (typeof(serviceAccount) !== 'object' 12 | || typeof(serviceAccount.type) !== 'string' 13 | || serviceAccount.type !== 'service_account') { 14 | throw new Error('serviceAccount is not a firebase service account credential json object'); 15 | } 16 | 17 | admin.initializeApp({ credential: admin.credential.cert(serviceAccount) }); 18 | } 19 | 20 | get(): admin { 21 | return admin; 22 | } 23 | } 24 | 25 | export function changePasswordAsAdmin(serviceAccount: any) { 26 | if (typeof(serviceAccount) !== 'object' 27 | || typeof(serviceAccount.type) !== 'string' 28 | || serviceAccount.type !== 'service_account') { 29 | throw new Error('serviceAccount is not a firebase service account credential json object'); 30 | } 31 | 32 | admin.initializeApp({ credential: admin.credential.cert(serviceAccount) }); 33 | 34 | admin.auth().updateUser("", { password: }); 35 | } 36 | 37 | /* 38 | if (typeof(serviceAccount) !== 'object' 39 | || typeof(serviceAccount.type) !== 'string' 40 | || serviceAccount.type !== 'service_account') { 41 | throw new Error('serviceAccount is not a firebase service account credential json object'); 42 | } 43 | 44 | return admin.initializeApp({ credential: admin.credential.cert(serviceAccount) }); 45 | */ -------------------------------------------------------------------------------- /src/core/constants.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | errorCodes: { 3 | INVALID_ARGUMENT_ERROR: "INVALID_ARGUMENT" 4 | } 5 | } -------------------------------------------------------------------------------- /src/core/endpoints.ts: -------------------------------------------------------------------------------- 1 | import * as utils from "./utils"; 2 | 3 | export default class EndPoints { 4 | static urls = (apiKey: string) => { 5 | return { 6 | signInUrl: `https://www.googleapis.com/identitytoolkit/v3/relyingparty/verifyPassword?key=${apiKey}`, 7 | signUpUrl: `https://www.googleapis.com/identitytoolkit/v3/relyingparty/signupNewUser?key=${apiKey}`, 8 | sendVerificationEmailUrl: 9 | `https://www.googleapis.com/identitytoolkit/v3/relyingparty/getOobConfirmationCode?key=${apiKey}`, 10 | verifyEmailUrl: `https://www.googleapis.com/identitytoolkit/v3/relyingparty/setAccountInfo?key=${apiKey}`, 11 | sendPasswordResetEmailUrl: 12 | `https://www.googleapis.com/identitytoolkit/v3/relyingparty/getOobConfirmationCode?key=${apiKey}`, 13 | verifyPasswordResetcodeUrl: `https://www.googleapis.com/identitytoolkit/v3/relyingparty/resetPassword?key=${apiKey}`, 14 | resetPasswordUrl: `https://www.googleapis.com/identitytoolkit/v3/relyingparty/resetPassword?key=${apiKey}`, 15 | changePasswordUrl: `https://www.googleapis.com/identitytoolkit/v3/relyingparty/setAccountInfo?key=${apiKey}`, 16 | changeEmailUrl: `https://www.googleapis.com/identitytoolkit/v3/relyingparty/setAccountInfo?key=${apiKey}`, 17 | accountInfoUrl:`https://www.googleapis.com/identitytoolkit/v3/relyingparty/getAccountInfo?key=${apiKey}`, 18 | refreshTokenUrl: `https://securetoken.googleapis.com/v1/token?key=${apiKey}`, 19 | updateAccountInfoUrl: `https://www.googleapis.com/identitytoolkit/v3/relyingparty/setAccountInfo?key=${apiKey}`, 20 | socialIdentityUrl: `https://www.googleapis.com/identitytoolkit/v3/relyingparty/verifyAssertion?key=${apiKey}` 21 | } 22 | }; 23 | 24 | static post(url: string, body: any) { 25 | return utils.callEndpoint('POST', url, body); 26 | } 27 | } -------------------------------------------------------------------------------- /src/core/utils.ts: -------------------------------------------------------------------------------- 1 | import FirebaseError from "../models/firebase-error"; 2 | import constants from "./constants"; 3 | const rp = require("request-promise"); 4 | import { SocialUser, FirebaseUser } from "../models/firebase-user"; 5 | 6 | export function callEndpoint(method: string, url: string, data?: any, callback?: any) { 7 | const options: any =  { 8 | method: method, 9 | uri: url 10 | }; 11 | 12 | if (data && method.toLowerCase().trim() === "post") { 13 | options.body = data; 14 | options.json = true; 15 | } 16 | 17 | if (!callback || typeof(callback) !== "function") 18 | return rp(options); 19 | 20 | rp(options).then((data: any) => callback(null, data)) 21 | .catch((error: any) => callback(error)); 22 | } 23 | 24 | export function invalidArgumentError(argument: string) { 25 | return new FirebaseError(constants.errorCodes.INVALID_ARGUMENT_ERROR, `Invalid or missing field: ${argument}`); 26 | } 27 | 28 | export function processFirebaseAuthResult(firebaseAuthResult: any) { 29 | const authResult: any = processBasicFirebaseAuthResult(firebaseAuthResult); 30 | 31 | if (firebaseAuthResult.providerId && firebaseAuthResult.providerId.toLowerCase() !== "password") 32 | authResult.user = new SocialUser(firebaseAuthResult); 33 | else 34 | authResult.user = new FirebaseUser(firebaseAuthResult); 35 | 36 | return authResult; 37 | } 38 | 39 | export function processBasicFirebaseAuthResult(firebaseAuthResult: any) { 40 | const expiresIn = firebaseAuthResult.expiresIn || firebaseAuthResult.expires_in; 41 | const expiry = (parseInt(expiresIn) - 60) * 1000; // minus 60 seconds for network lag 42 | 43 | return { 44 | token: firebaseAuthResult.idToken || firebaseAuthResult.id_token, 45 | expiryMilliseconds: expiry, 46 | refreshToken: firebaseAuthResult.refreshToken || firebaseAuthResult.refresh_token 47 | }; 48 | } 49 | 50 | export function processFirebaseError(error: any) { 51 | // format for errors from firebase 52 | // var errorData = new { error = new { code = 0, message = "errorid" } }; 53 | 54 | let errorCode = "UNKNOWN_ERROR", 55 | errorMessage = "Some error occurred", 56 | originalError = error; 57 | 58 | if (error.error && error.error.message === "invalid access_token, error code 43.") { 59 | errorCode = "INVALID_ACCESS_TOKEN"; 60 | errorMessage = "Invalid access token"; 61 | } 62 | 63 | if (error && error.error && error.error.error) { 64 | originalError = error.error.error; 65 | 66 | // valid error from firebase, check for message 67 | errorCode = error.error.error.message; 68 | 69 | switch (error.error.error.message) { 70 | // general errors 71 | case "CREDENTIAL_TOO_OLD_LOGIN_AGAIN": 72 | errorMessage = "You need to login again"; 73 | break; 74 | 75 | // possible errors from Third Party Authentication using GoogleIdentityUrl 76 | case "INVALID_PROVIDER_ID : Provider Id is not supported.": 77 | errorCode = "INVALID_PROVIDER_ID"; 78 | errorMessage = "Provider Id is not supported"; 79 | break; 80 | case "MISSING_REQUEST_URI": 81 | errorMessage = "Invalid request. REquest url is missing"; 82 | break; 83 | case "A system error has occurred - missing or invalid postBody": 84 | errorCode = "INVALID_REQUEST_BODY"; 85 | errorMessage = "Missing or invalid postBody"; 86 | break; 87 | case "INVALID_ID_TOKEN": 88 | case "invalid access_token, error code 43.": 89 | errorCode = "INVALID_ACCESS_TOKEN"; 90 | errorMessage = "Invalid access token"; 91 | break; 92 | 93 | // possible errors from Email/Password Account Signup (via signupNewUser or setAccountInfo) or Signin 94 | case "INVALID_EMAIL": 95 | errorMessage = "Email address not valid"; 96 | break; 97 | case "MISSING_PASSWORD": 98 | errorMessage = "Password not provided"; 99 | break; 100 | 101 | // possible errors from Email/Password Account Signup (via signupNewUser or setAccountInfo) 102 | case "WEAK_PASSWORD : Password should be at least 6 characters": 103 | errorCode = "WEAK_PASSWORD"; 104 | errorMessage = "Password should be at least 6 characters"; 105 | break; 106 | case "EMAIL_EXISTS": 107 | errorMessage = "A user already exists with this email address"; 108 | break; 109 | 110 | // possible errors from Email/Password Signin 111 | case "INVALID_PASSWORD": 112 | errorMessage = "Password is incorrect"; 113 | break; 114 | case "EMAIL_NOT_FOUND": 115 | errorMessage = "No user account exists with that email"; 116 | break; 117 | case "USER_DISABLED": 118 | errorMessage = "User account is disabled"; 119 | break; 120 | 121 | // possible errors from Account Delete 122 | case "USER_NOT_FOUND": 123 | errorMessage = "User account does not exist"; 124 | break; 125 | 126 | // possible errors from Email/Password Signin or Password Recovery or Email/Password Sign up using setAccountInfo 127 | case "MISSING_EMAIL": 128 | errorMessage = "Email not provided"; 129 | break; 130 | 131 | // possible errors from Password Recovery 132 | case "MISSING_REQ_TYPE": 133 | errorMessage = "Password recovery type not set"; 134 | break; 135 | 136 | // possible errors from email verification and password reset 137 | case "INVALID_OOB_CODE": 138 | errorMessage = "Code (oobCode) is invalid"; 139 | break; 140 | 141 | // possible errors from Getting Linked Accounts 142 | case "INVALID_IDENTIFIER": 143 | errorMessage = "Unknown or invalid identifier"; 144 | break; 145 | case "MISSING_IDENTIFIER": 146 | errorMessage = "Identifier not provided"; 147 | break; 148 | case "FEDERATED_USER_ID_ALREADY_LINKED": 149 | errorMessage = "Account has already been linked"; 150 | break; 151 | } 152 | } 153 | else if (error.error) { 154 | originalError = error.error; 155 | // not firebase error! 156 | 157 | if (error.error) { 158 | switch (error.error.code) { 159 | // internet error on server or resource not available(?) 160 | case "ENOENT": 161 | case "ENOTFOUND": 162 | errorCode = "NETWORK_NOT_AVAILABLE"; 163 | errorMessage = "Remote host is unreachable"; 164 | break; 165 | } 166 | } 167 | } 168 | 169 | return new FirebaseError(errorCode, errorMessage, originalError); 170 | } 171 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | import * as emailPasswordProvider from "./providers/email-password-provider"; 4 | import * as socialProviders from "./providers/social-providers"; 5 | import * as account from "./user/account"; 6 | import { Callback } from "./types"; 7 | import { Guard, GuardCallback, GuardOptions } from "./middlewares/guard"; 8 | import { RequestHandler } from "express"; 9 | 10 | class FirebaseAuth { 11 | private apiKey: string; 12 | 13 | constructor(apiKey: string) { 14 | this.apiKey = apiKey; 15 | } 16 | 17 | static initTokenMiddleware(serviceAccount: any): RequestHandler; 18 | static initTokenMiddleware(serviceAccount: any, options: GuardOptions): RequestHandler; 19 | static initTokenMiddleware(serviceAccount: any, callback: GuardCallback): RequestHandler; 20 | static initTokenMiddleware(serviceAccount: any, options: GuardOptions, callback: GuardCallback): RequestHandler; 21 | static initTokenMiddleware(serviceAccount: any, optionsOrCallback?: any, callback?: GuardCallback): RequestHandler { 22 | return new Guard(serviceAccount, optionsOrCallback, callback).middleware; 23 | } 24 | 25 | signInWithEmail(email: string, password: string, callback?: Callback) { 26 | return emailPasswordProvider.signIn(this.apiKey, email, password, callback); 27 | } 28 | 29 | sendVerificationEmail(token: string, callback?: Callback) { 30 | return emailPasswordProvider.sendVerificationEmail(this.apiKey, token, callback); 31 | } 32 | 33 | verifyEmail(oobcode: string, callback?: Callback) { 34 | return emailPasswordProvider.verifyEmail(this.apiKey, oobcode, callback); 35 | } 36 | 37 | sendPasswordResetEmail(email: string, callback?: Callback) { 38 | return emailPasswordProvider.sendPasswordResetEmail(this.apiKey, email, callback); 39 | } 40 | 41 | verifyPasswordResetcode(oobcode: string, callback?: Callback) { 42 | return emailPasswordProvider.verifyPasswordResetCode(this.apiKey, oobcode, callback); 43 | } 44 | 45 | resetPassword(oobcode: string, newPassword: string, callback?: Callback) { 46 | return emailPasswordProvider.resetPassword(this.apiKey, oobcode, newPassword, callback); 47 | } 48 | 49 | changePassword(token: string, password: string, callback?: Callback) { 50 | return emailPasswordProvider.changePassword(this.apiKey, token, password, callback); 51 | } 52 | 53 | changeEmail(token: string, email: string, callback: Callback) { 54 | emailPasswordProvider.changeEmail(this.apiKey, token, email, callback); 55 | } 56 | 57 | getProfile(token: string, callback?: Callback) { 58 | account.getProfile(this.apiKey, token, callback); 59 | } 60 | 61 | updateProfile(token: string, name: string, photoUrl: string, callback?: Callback) { 62 | return account.updateProfile(this.apiKey, token, name, photoUrl, callback); 63 | } 64 | 65 | refreshToken(refreshToken: string, callback?: Callback) { 66 | return account.refreshToken(this.apiKey, refreshToken, callback); 67 | } 68 | 69 | registerWithEmail(email: string, password: string, extras: any, callback?: Callback) { 70 | return emailPasswordProvider.register(this.apiKey, email, password, extras, callback); 71 | } 72 | 73 | loginWithFacebook(providerToken: string, callback?: Callback) { 74 | return socialProviders.loginWithFacebook(this.apiKey, providerToken, callback); 75 | } 76 | 77 | linkWithFacebook(idToken: string, providerToken: string, callback?: Function) { 78 | return socialProviders.linkWithFacebook(this.apiKey, idToken, providerToken, callback); 79 | } 80 | 81 | loginWithGoogle(providerToken: string, callback?: Callback) { 82 | return socialProviders.loginWithGoogle(this.apiKey, providerToken, callback); 83 | } 84 | 85 | linkWithGoogle(idToken: string, providerToken: string, callback?: Function) { 86 | return socialProviders.linkWithGoogle(this.apiKey, idToken, providerToken, callback); 87 | } 88 | 89 | loginWithGithub(providerToken: string, callback?: Callback) { 90 | return socialProviders.loginWithGithub(this.apiKey, providerToken, callback); 91 | } 92 | 93 | linkWithGithub(idToken: string, providerToken: string, callback?: Function) { 94 | return socialProviders.linkWithGithub(this.apiKey, idToken, providerToken, callback); 95 | } 96 | 97 | loginWithTwitter(providerToken: string, callback?: Callback) { 98 | return socialProviders.loginWithTwitter(this.apiKey, providerToken, callback); 99 | } 100 | 101 | linkWithTwitter(idToken: string, providerToken: string, callback?: Function) { 102 | return socialProviders.linkWithTwitter(this.apiKey, idToken, providerToken, callback); 103 | } 104 | } 105 | 106 | export = FirebaseAuth; 107 | -------------------------------------------------------------------------------- /src/middlewares/guard.ts: -------------------------------------------------------------------------------- 1 | import * as admin from "firebase-admin"; 2 | import { UserProfile } from "../models/firebase-user"; 3 | import { Request, Response, NextFunction } from "express"; 4 | 5 | const ERROR_NO_TOKEN = "ERROR_NO_TOKEN"; 6 | const ERROR_INVALID_TOKEN = "ERROR_INVALID_TOKEN"; 7 | const ERROR_RETRIEVE_USER_INFO = "ERROR_RETRIEVE_USER_INFO"; 8 | 9 | export type GuardCallback = (req: Request, res: Response, next: NextFunction, error?: any, data?: any) => void; 10 | export interface GuardOptions { 11 | userIdOnly: boolean; 12 | tokenField: string; 13 | } 14 | 15 | export class Guard { 16 | private callback: GuardCallback; 17 | private options: GuardOptions; 18 | 19 | constructor(serviceAccount: any); 20 | constructor(serviceAccount: any, options: GuardOptions); 21 | constructor(serviceAccount: any, callback: GuardCallback); 22 | constructor(serviceAccount: any, options: GuardOptions, callback: GuardCallback); 23 | constructor(serviceAccount: any, optionsOrCallback?: any, callback?: GuardCallback) { 24 | if (typeof(serviceAccount) !== 'object' 25 | || typeof(serviceAccount.type) !== 'string' 26 | || serviceAccount.type !== 'service_account') { 27 | throw new Error('serviceAccount is not a firebase service account credential json object'); 28 | } 29 | 30 | admin.initializeApp({ 31 | credential: admin.credential.cert(serviceAccount) 32 | }); 33 | 34 | if (!callback && optionsOrCallback instanceof Function) { 35 | this.callback = optionsOrCallback; 36 | } 37 | else if (optionsOrCallback instanceof Object) { 38 | this.options = optionsOrCallback; 39 | } 40 | 41 | if (!!callback) { 42 | this.callback = callback; 43 | } 44 | 45 | if (!this.options) { 46 | this.options = { 47 | tokenField: "token", 48 | userIdOnly: true 49 | }; 50 | } 51 | } 52 | 53 | middleware = (req: Request, res: Response, next: NextFunction) => { 54 | const token = req.headers[this.options.tokenField] || (req.body && req.body[this.options.tokenField]) || req.query[this.options.tokenField]; 55 | if (!token) { 56 | this.callback ? this.callback(req, res, next, ERROR_NO_TOKEN) : res.status(401).json({error: "No token provided"}); 57 | return; 58 | } 59 | 60 | admin.auth().verifyIdToken(token) 61 | .then((decodedToken) => { 62 | const info: any = { 63 | id: decodedToken.uid, 64 | token: token 65 | }; 66 | if (this.options.userIdOnly) { 67 | if (this.callback) { 68 | this.callback(req, res, next, undefined, info); 69 | } 70 | else { 71 | req.user = info; 72 | next(); 73 | } 74 | } 75 | else { 76 | this.fetchUserInfo(info.id, token, req, res, next); 77 | } 78 | }) 79 | .catch((error) => { 80 | if (this.callback) { 81 | this.callback(req, res, next, ERROR_INVALID_TOKEN); 82 | } 83 | else { 84 | res.status(401).json({ 85 | message: "Unauthorized", 86 | error: error 87 | }); 88 | } 89 | }) 90 | }; 91 | 92 | private fetchUserInfo = (userId: string, token: string, req: any, res: any, next: Function) => { 93 | admin.auth().getUser(userId) 94 | .then(function(userRecord) { 95 | const userInfo: any = new UserProfile(userRecord.toJSON()); 96 | userInfo.token = token; 97 | if (this.callback) { 98 | this.callback(req, res, next, undefined, userInfo); 99 | } 100 | else { 101 | req.user = userInfo; 102 | next(); 103 | } 104 | }) 105 | .catch(function(error) { 106 | if (this.callback) { 107 | this.callback(req, res, next, ERROR_RETRIEVE_USER_INFO, { userId: userId, error: error }); 108 | } 109 | else { 110 | res.status(401).json({error: "An error occurred while trying to load your account info"}); 111 | } 112 | }); 113 | }; 114 | } -------------------------------------------------------------------------------- /src/models/firebase-error.ts: -------------------------------------------------------------------------------- 1 | export default class FirebaseError { 2 | code: string; 3 | message: string; 4 | originalError?: any; 5 | 6 | constructor(code: string, message: string, originalError?: any) { 7 | this.code = code; 8 | this.message = message; 9 | this.originalError = originalError; 10 | } 11 | } -------------------------------------------------------------------------------- /src/models/firebase-user.ts: -------------------------------------------------------------------------------- 1 | export class FirebaseUser { 2 | email: string; 3 | displayName: string; 4 | id: string; 5 | newUser: boolean; 6 | authenticatedWith: string; 7 | emailVerified: boolean; 8 | photoUrl: string; 9 | socialProfileUrl: string; 10 | sameCredentialExists: boolean; 11 | rawUserInfo: any; 12 | accountDisabled: boolean; 13 | profileUrls: any[]; 14 | 15 | constructor(firebaseAuthResult: any) { 16 | this.email = firebaseAuthResult.email; 17 | this.displayName = firebaseAuthResult.displayName || ""; 18 | this.photoUrl = firebaseAuthResult.photoUrl || ""; 19 | this.id = firebaseAuthResult.localId || firebaseAuthResult.user_id || firebaseAuthResult.uid; 20 | this.newUser = (firebaseAuthResult.registered === false); 21 | this.authenticatedWith = "password"; 22 | } 23 | } 24 | 25 | export class SocialUser extends FirebaseUser { 26 | constructor(firebaseAuthResult: any) { 27 | super(firebaseAuthResult); 28 | this.emailVerified = firebaseAuthResult.emailVerified; 29 | this.photoUrl = firebaseAuthResult.photoUrl; 30 | this.authenticatedWith = firebaseAuthResult.providerId; 31 | this.socialProfileUrl = firebaseAuthResult.federatedId; 32 | this.sameCredentialExists = firebaseAuthResult.needConfirmation; 33 | this.rawUserInfo = firebaseAuthResult.rawUserInfo; 34 | } 35 | } 36 | 37 | export class UserProfile extends FirebaseUser { 38 | constructor(firebaseUserInfo: any) { 39 | super(firebaseUserInfo); 40 | this.emailVerified = firebaseUserInfo.emailVerified; 41 | this.photoUrl = firebaseUserInfo.photoUrl || firebaseUserInfo.photoURL; 42 | this.accountDisabled = (firebaseUserInfo.disabled === true); 43 | 44 | const providers = firebaseUserInfo.providerUserInfo || firebaseUserInfo.providerData; 45 | if (providers) { 46 | this.profileUrls = providers.map((provider: any) => { 47 | return { 48 | authenticatedWith: provider.providerId, 49 | profileUrl: provider.federatedId 50 | }; 51 | }); 52 | } 53 | } 54 | } -------------------------------------------------------------------------------- /src/providers/email-password-provider.ts: -------------------------------------------------------------------------------- 1 | import * as admin from "firebase-admin"; 2 | import * as utils from "../core/utils"; 3 | import Endpoints from "../core/endpoints"; 4 | import * as validator from "validator"; 5 | import { updateProfile } from "../user/account"; 6 | import { FirebaseUser } from "../models/firebase-user"; 7 | 8 | export interface FirebaseResponse { 9 | user: FirebaseUser; 10 | token: string; 11 | refreshToken: string; 12 | expiryMilliseconds: number; 13 | } 14 | 15 | export interface Extras { 16 | name: string; 17 | photoUrl: string; 18 | requestVerification: boolean; 19 | } 20 | 21 | export function register(apiKey: string, email: string, password: string, extras: string|Extras, callback?: Function): Promise; 22 | export function register(apiKey: string, email: string, password: string, extras: string|Extras, callback: Function): Promise | void { 23 | return new Promise(function (resolve, reject) { 24 | 25 | if (typeof(callback) !== "function") { 26 | callback = (err: any, res: any) => { 27 | if (err) return reject(err); 28 | return resolve(res); 29 | }; 30 | } 31 | 32 | if (!validator.isEmail(email)) { 33 | callback(utils.invalidArgumentError("Email")); 34 | return; 35 | } 36 | 37 | if (!validator.isLength(password, {min: 6})) { 38 | callback(utils.invalidArgumentError("Password. Password must be at least 6 characters")); 39 | return; 40 | } 41 | 42 | let name: string, photoUrl: string, requestVerification: boolean; 43 | 44 | if (extras) { 45 | if (typeof(extras) === "string") { 46 | name = extras; 47 | } 48 | else { 49 | name = extras.name; 50 | photoUrl = extras.photoUrl; 51 | requestVerification = extras.requestVerification; 52 | } 53 | } 54 | 55 | if (name && !validator.isLength(name, {min: 2})) { 56 | callback(utils.invalidArgumentError("Name")); 57 | return; 58 | } 59 | 60 | if (photoUrl && !validator.isURL(photoUrl)) { 61 | callback(utils.invalidArgumentError("Photo Url. Not a valid URL")); 62 | return; 63 | } 64 | 65 | if (requestVerification && typeof(requestVerification) !== "boolean") { 66 | callback(utils.invalidArgumentError("requestVerification")); 67 | return; 68 | } 69 | 70 | const payload = { 71 | email: email, 72 | password: password, 73 | returnSecureToken: true 74 | }; 75 | const registerEndpoint = Endpoints.urls(apiKey).signUpUrl; 76 | 77 | Endpoints.post(registerEndpoint, payload) 78 | .then((userInfo: any) => { 79 | // get token and other basic auth info 80 | const authResult = utils.processFirebaseAuthResult(userInfo); 81 | 82 | // to send verification email? 83 | if (requestVerification === true) { 84 | sendVerificationEmail(apiKey, authResult.token, 85 | () => completeRegistration(apiKey, name, photoUrl, authResult, callback)); 86 | } 87 | else { 88 | completeRegistration(apiKey, name, photoUrl, authResult, callback); 89 | } 90 |     }) 91 |     .catch((err: any) => callback(utils.processFirebaseError(err))); 92 | 93 | }); 94 | } 95 | 96 | function completeRegistration(apiKey: string, name: string, photoUrl: string, authResult: any, callback: Function) { 97 | if (name || photoUrl) { 98 | // save name as well before returning to caller 99 | updateProfile(apiKey, authResult.token, name, photoUrl, (err: any, user: any) => { 100 | authResult.user = user; 101 | callback(err, authResult); // will return error as well if the profile update failed 102 | }); 103 | } 104 | else { 105 | // no extra info to update 106 | callback(undefined, authResult); 107 | } 108 | } 109 | 110 | export function signIn(apiKey: string, email: string, password: string, callback?: Function): Promise; 111 | export function signIn(apiKey: string, email: string, password: string, callback: Function): Promise | void { 112 | return new Promise((resolve, reject) => { 113 | if (typeof(callback) !== "function") { 114 | callback = (err: any, res: any) => { 115 | if (err) return reject(err); 116 | return resolve(res); 117 | }; 118 | } 119 | 120 | if (!validator.isEmail(email)) { 121 | callback(utils.invalidArgumentError("Email")); 122 | return; 123 | } 124 | 125 | if (!validator.isLength(password, {min: 6})) { 126 | callback(utils.invalidArgumentError("Password. Password must be at least 6 characters")); 127 | return; 128 | } 129 | 130 | const payload = { 131 | email: email, 132 | password: password, 133 | returnSecureToken: true 134 | }; 135 | 136 | Endpoints.post(Endpoints.urls(apiKey).signInUrl, payload) 137 | .then((userInfo: any) => callback(undefined, utils.processFirebaseAuthResult(userInfo))) 138 |     .catch((err: any) => callback(utils.processFirebaseError(err))); 139 | }); 140 | 141 | } 142 | 143 | export function sendVerificationEmail(apiKey: string, token: string, callback?: Function) { 144 | return new Promise((resolve, reject) => { 145 | if (typeof(callback) !== "function") { 146 | callback = (err: any, res: any) => { 147 | if (err) return reject(err); 148 | return resolve(res); 149 | }; 150 | } 151 | if (token.trim().length === 0) { 152 | callback(utils.invalidArgumentError("Token")); 153 | return; 154 | } 155 | 156 | const payload = { 157 | idToken: token, 158 | requestType: "VERIFY_EMAIL" 159 | }; 160 | 161 | Endpoints.post(Endpoints.urls(apiKey).sendVerificationEmailUrl, payload) 162 | .then(() => callback(undefined, { status: "success" })) 163 |     .catch((err: any) => callback(utils.processFirebaseError(err))); 164 | }); 165 | } 166 | 167 | export function verifyEmail(apiKey: string, oobCode: string, callback?: Function) { 168 | return new Promise((resolve, reject) => { 169 | if (typeof(callback) !== "function") { 170 | callback = (err: any, res: any) => { 171 | if (err) return reject(err); 172 | return resolve(res); 173 | }; 174 | } 175 | const payload = { oobCode: oobCode }; 176 | 177 | Endpoints.post(Endpoints.urls(apiKey).verifyEmailUrl, payload) 178 | .then((userInfo: any) => callback(undefined, new FirebaseUser(userInfo))) 179 | .catch((err: any) => callback(utils.processFirebaseError(err))); 180 | }); 181 | } 182 | 183 | export function sendPasswordResetEmail(apiKey: string, email: string, callback?: Function) { 184 | return new Promise((resolve, reject) => { 185 | if (typeof(callback) !== "function") { 186 | callback = (err: any, res: any) => { 187 | if (err) return reject(err); 188 | return resolve(res); 189 | }; 190 | } 191 | if (!validator.isEmail(email)) { 192 | callback(utils.invalidArgumentError("Email")); 193 | return; 194 | } 195 | 196 | const payload = { 197 | email: email, 198 | requestType: "PASSWORD_RESET" 199 | }; 200 | 201 | Endpoints.post(Endpoints.urls(apiKey).sendPasswordResetEmailUrl, payload) 202 | .then(() => callback(undefined, { status: "success" })) 203 | .catch((err: any) => callback(utils.processFirebaseError(err))); 204 | }); 205 | } 206 | 207 | export function verifyPasswordResetCode(apiKey: string, oobCode: string, callback?: Function) { 208 | return new Promise((resolve, reject) => { 209 | if (typeof(callback) !== "function") { 210 | callback = (err: any, res: any) => { 211 | if (err) return reject(err); 212 | return resolve(res); 213 | }; 214 | } 215 | if (typeof(oobCode) !== "string") { 216 | callback(utils.invalidArgumentError("oobCode")); 217 | return; 218 | } 219 | 220 | Endpoints.post(Endpoints.urls(apiKey).verifyPasswordResetcodeUrl, { oobCode: oobCode }) 221 | .then(() => callback(undefined, { verified: true })) 222 | .catch((err: any) => callback(utils.processFirebaseError(err))); 223 | }); 224 | } 225 | 226 | export function resetPassword(apiKey: string, oobCode: string, newPassword: string, callback?: Function) { 227 | return new Promise((resolve, reject) => { 228 | if (typeof(callback) !== "function") { 229 | callback = (err: any, res: any) => { 230 | if (err) return reject(err); 231 | return resolve(res); 232 | }; 233 | } 234 | if (!validator.isLength(newPassword, { min: 6 })) { 235 | callback(utils.invalidArgumentError("Password. Password must be at least 6 characters")); 236 | return; 237 | } 238 | 239 | const payload = { 240 | oobCode: oobCode, 241 | newPassword: newPassword 242 | }; 243 | 244 | Endpoints.post(Endpoints.urls(apiKey).resetPasswordUrl, payload) 245 | .then(() => callback(undefined, { status: "success" })) 246 | .catch((err: any) => callback(utils.processFirebaseError(err))); 247 | }); 248 | } 249 | 250 | export function changePassword(apiKey: string, token: string, password: string, callback?: Function) { 251 | return new Promise((resolve, reject) => { 252 | if (typeof(callback) !== "function") { 253 | callback = (err: any, res: any) => { 254 | if (err) return reject(err); 255 | return resolve(res); 256 | }; 257 | } 258 | const payload = { 259 | password: password, 260 | idToken: token, 261 | returnSecureToken: true 262 | }; 263 | 264 | if (!validator.isLength(password, {min: 6})) { 265 | callback(utils.invalidArgumentError("Password. Password must be at least 6 characters")); 266 | return; 267 | } 268 | 269 | Endpoints.post(Endpoints.urls(apiKey).changePasswordUrl, payload) 270 | .then((userInfo: any) => callback(undefined, utils.processFirebaseAuthResult(userInfo))) 271 | .catch((err: any) => callback(utils.processFirebaseError(err))); 272 | }); 273 | 274 | export function changeEmail(apiKey: string, token: string, email: string, callback?: Function) { 275 | const payload = { 276 | email: email, 277 | idToken: token, 278 | returnSecureToken: true 279 | }; 280 | 281 | if (!validator.isEmail(email)) { 282 | callback(utils.invalidArgumentError('Email')); 283 | return; 284 | } 285 | 286 | Endpoints.post(Endpoints.urls(apiKey).changeEmailUrl, payload) 287 | .then((userInfo: any) => callback(null, utils.processFirebaseAuthResult(userInfo))) 288 | .catch((err: any) => callback(utils.processFirebaseError(err))); 289 | } 290 | -------------------------------------------------------------------------------- /src/providers/social-providers.ts: -------------------------------------------------------------------------------- 1 | import * as utils from "../core/utils"; 2 | import Endpoints from "../core/endpoints"; 3 | 4 | const ids = { 5 | Facebook: "facebook.com", 6 | Google: "google.com", 7 | Github: "github.com", 8 | Twitter: "twitter.com" 9 | }; 10 | 11 | function loginWithProviderID(apiKey: string, providerToken: string, providerId: string, callback?: Function) { 12 | return new Promise((resolve, reject) => { 13 | if (typeof(callback) !== "function") { 14 | callback = (err: any, res: any) => { 15 | if (err) return reject(err); 16 | return resolve(res); 17 | }; 18 | } 19 | if (providerToken.trim().length === 0) { 20 | callback(utils.invalidArgumentError("providerToken")); 21 | return; 22 | } 23 | 24 | const payload = { 25 | postBody: "access_token=" + providerToken + "&providerId=" + providerId, 26 | requestUri: "http://localhost", 27 | returnSecureToken: true, 28 | returnIdpCredential: true 29 | }; 30 | 31 | Endpoints.post(Endpoints.urls(apiKey).socialIdentityUrl, payload) 32 | .then((userInfo: any) => callback(undefined, utils.processFirebaseAuthResult(userInfo))) 33 |     .catch((err: any) => callback(utils.processFirebaseError(err))); 34 | }); 35 | } 36 | 37 | function linkWithProviderID(apiKey: string, idToken: string, providerToken: string, providerId: string, callback?: Function) { 38 | if (providerToken.trim().length === 0) { 39 | callback(utils.invalidArgumentError("providerToken")); 40 | return; 41 | } 42 | 43 | const payload = { 44 | idToken: idToken, 45 | postBody: "access_token=" + providerToken + "&providerId=" + providerId, 46 | requestUri: "http://localhost", 47 | returnSecureToken: true, 48 | returnIdpCredential: true 49 | }; 50 | 51 | Endpoints.post(Endpoints.urls(apiKey).socialIdentityUrl, payload) 52 | .then((userInfo: any) => callback(undefined, utils.processFirebaseAuthResult(userInfo))) 53 | .catch((err: any) => callback(utils.processFirebaseError(err))); 54 | } 55 | 56 | export function loginWithFacebook(apiKey: string, providerToken: string, callback?: Function) { 57 | return new Promise((resolve, reject) => { 58 | if (typeof(callback) !== "function") { 59 | callback = (err: any, res: any) => { 60 | if (err) return reject(err); 61 | return resolve(res); 62 | }; 63 | } 64 | loginWithProviderID(apiKey, providerToken, ids.Facebook, callback); 65 | }); 66 | } 67 | 68 | export function loginWithGoogle(apiKey: string, providerToken: string, callback?: Function) { 69 | return new Promise((resolve, reject) => { 70 | if (typeof(callback) !== "function") { 71 | callback = (err: any, res: any) => { 72 | if (err) return reject(err); 73 | return resolve(res); 74 | }; 75 | } 76 | loginWithProviderID(apiKey, providerToken, ids.Google, callback); 77 | }); 78 | } 79 | 80 | export function loginWithGithub(apiKey: string, providerToken: string, callback?: Function) { 81 | return new Promise((resolve, reject) => { 82 | if (typeof(callback) !== "function") { 83 | callback = (err: any, res: any) => { 84 | if (err) return reject(err); 85 | return resolve(res); 86 | }; 87 | } 88 | loginWithProviderID(apiKey, providerToken, ids.Github, callback); 89 | }); 90 | } 91 | 92 | export function loginWithTwitter(apiKey: string, providerToken: string, callback?: Function) { 93 | return new Promise((resolve, reject) => { 94 | if (typeof(callback) !== "function") { 95 | callback = (err: any, res: any) => { 96 | if (err) return reject(err); 97 | return resolve(res); 98 | }; 99 | } 100 | loginWithProviderID(apiKey, providerToken, ids.Twitter, callback); 101 | }); 102 | } 103 | 104 | export function linkWithFacebook(apiKey: string, idToken: string, providerToken: string, callback?: Function) { 105 | return new Promise((resolve, reject) => { 106 | if (typeof(callback) !== "function") { 107 | callback = (err: any, res: any) => { 108 | if (err) return reject(err); 109 | return resolve(res); 110 | }; 111 | } 112 | linkWithProviderID(apiKey, idToken, providerToken, ids.Facebook, callback); 113 | }); 114 | } 115 | 116 | export function linkWithGoogle(apiKey: string, idToken: string, providerToken: string, callback?: Function) { 117 | return new Promise((resolve, reject) => { 118 | if (typeof(callback) !== "function") { 119 | callback = (err: any, res: any) => { 120 | if (err) return reject(err); 121 | return resolve(res); 122 | }; 123 | } 124 | linkWithProviderID(apiKey, idToken, providerToken, ids.Google, callback); 125 | }); 126 | } 127 | 128 | export function linkWithGithub(apiKey: string, idToken: string, providerToken: string, callback?: Function) { 129 | return new Promise((resolve, reject) => { 130 | if (typeof(callback) !== "function") { 131 | callback = (err: any, res: any) => { 132 | if (err) return reject(err); 133 | return resolve(res); 134 | }; 135 | } 136 | linkWithProviderID(apiKey, idToken, providerToken, ids.Github, callback); 137 | }); 138 | } 139 | 140 | export function linkWithTwitter(apiKey: string, idToken: string, providerToken: string, callback?: Function) { 141 | return new Promise((resolve, reject) => { 142 | if (typeof(callback) !== "function") { 143 | callback = (err: any, res: any) => { 144 | if (err) return reject(err); 145 | return resolve(res); 146 | }; 147 | } 148 | linkWithProviderID(apiKey, idToken, providerToken, ids.Twitter, callback); 149 | }); 150 | } 151 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | import FirebaseError from "./models/firebase-error"; 2 | 3 | export type Callback = (error: FirebaseError, result: any) => void; -------------------------------------------------------------------------------- /src/types/express.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import * as express from "express"; 3 | import { FirebaseUser } from "../models/firebase-user"; 4 | 5 | declare module "express" { 6 | interface Request { 7 | user: UserTokenRecord; 8 | } 9 | } 10 | 11 | interface UserTokenRecord extends FirebaseUser { 12 | token: string; 13 | } -------------------------------------------------------------------------------- /src/user/account.ts: -------------------------------------------------------------------------------- 1 | import * as utils from "../core/utils"; 2 | import Endpoints from "../core/endpoints"; 3 | import * as validator from "validator"; 4 | import { UserProfile } from "../models/firebase-user"; 5 | 6 | export function getProfile(apiKey: string, token: string, callback?: Function) { 7 | return new Promise((resolve, reject) => { 8 | if (typeof(callback) !== "function") { 9 | callback = (err: any, res: any) => { 10 | if (err) return reject(err); 11 | return resolve(res); 12 | }; 13 | } 14 | if (token.trim().length === 0) { 15 | callback(utils.invalidArgumentError("Token")); 16 | return; 17 | } 18 | 19 | const payload = { idToken: token }; 20 | 21 | Endpoints.post(Endpoints.urls(apiKey).accountInfoUrl, payload) 22 | .then((result: any) => { 23 | const users = result.users.map((firebaseUserResult: any) => new UserProfile(firebaseUserResult)); 24 | callback(undefined, users); 25 | }) 26 |     .catch((err: any) => { 27 | callback(utils.processFirebaseError(err)); 28 | }); 29 | }); 30 | } 31 | 32 | export function updateProfile(apiKey: string, token: string, name: string, ...more: any[]) { 33 | return new Promise((resolve, reject) => { 34 | let photoUrl: string; 35 | let callback: Function; 36 | 37 | if (more.length === 1) { 38 | // expect callback 39 | callback = more[0]; 40 | } 41 | else if (more.length === 2) { 42 | photoUrl = more[0]; 43 | callback = more[1]; 44 | } 45 | 46 | if (typeof(callback) !== "function") { 47 | callback = (err: any, res: any) => { 48 | if (err) return reject(err); 49 | return resolve(res); 50 | }; 51 | } 52 | 53 | if (token.trim().length === 0) { 54 | callback(utils.invalidArgumentError("Token")); 55 | return; 56 | } 57 | 58 | if (!validator.isLength(name, {min: 2})) { 59 | callback(utils.invalidArgumentError("Name")); 60 | return; 61 | } 62 | 63 | if (photoUrl && !validator.isURL(photoUrl)) { 64 | callback(utils.invalidArgumentError("Photo Url. Not a valid URL")); 65 | return; 66 | } 67 | 68 | const payload: any = { 69 | idToken: token, 70 | displayName: name, 71 | returnSecureToken: true 72 | }; 73 | 74 | if (photoUrl) 75 | payload.photoUrl = photoUrl; 76 | 77 | Endpoints.post(Endpoints.urls(apiKey).updateAccountInfoUrl, payload) 78 | .then((updatedUserInfo: any) => callback(undefined, new UserProfile(updatedUserInfo))) 79 | .catch((err: any) => utils.processFirebaseError(err)); 80 | }); 81 | } 82 | 83 | export function refreshToken(apiKey: string, refreshToken: string, callback?: Function) { 84 | return new Promise((resolve, reject) => { 85 | if (typeof(callback) !== "function") { 86 | callback = (err: any, res: any) => { 87 | if (err) return reject(err); 88 | return resolve(res); 89 | }; 90 | } 91 | if (refreshToken.trim().length === 0) { 92 | callback(utils.invalidArgumentError("Refresh Token")); 93 | return; 94 | } 95 | 96 | const payload = { 97 | refreshToken: refreshToken, 98 | grant_type: "refresh_token" 99 | }; 100 | 101 | const refreshTokenEndpoint = Endpoints.urls(apiKey).refreshTokenUrl; 102 | Endpoints.post(refreshTokenEndpoint, payload) 103 | .then((userInfo: any) => callback(undefined, utils.processBasicFirebaseAuthResult(userInfo))) 104 | .catch((err: any) => callback(utils.processFirebaseError(err))); 105 | }); 106 | } 107 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "declaration": true, 4 | "module": "commonjs", 5 | "esModuleInterop": true, 6 | "target": "es6", 7 | "noImplicitAny": true, 8 | "moduleResolution": "node", 9 | "sourceMap": true, 10 | "outDir": "dist", 11 | "baseUrl": "./node_modules", 12 | "paths": { 13 | "*": [ 14 | "node_modules/*", 15 | "src/types/*" 16 | ] 17 | } 18 | }, 19 | "include": [ 20 | "src/**/*" 21 | ] 22 | } -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "class-name": true, 4 | "comment-format": [ 5 | true, 6 | "check-space" 7 | ], 8 | "indent": [ 9 | true, 10 | "spaces" 11 | ], 12 | "one-line": [ 13 | true, 14 | "check-open-brace", 15 | "check-whitespace" 16 | ], 17 | "no-var-keyword": true, 18 | "quotemark": [ 19 | true, 20 | "double", 21 | "avoid-escape" 22 | ], 23 | "semicolon": [ 24 | true, 25 | "always", 26 | "ignore-bound-class-methods" 27 | ], 28 | "whitespace": [ 29 | true, 30 | "check-branch", 31 | "check-decl", 32 | "check-operator", 33 | "check-module", 34 | "check-separator", 35 | "check-type" 36 | ], 37 | "typedef-whitespace": [ 38 | true, 39 | { 40 | "call-signature": "nospace", 41 | "index-signature": "nospace", 42 | "parameter": "nospace", 43 | "property-declaration": "nospace", 44 | "variable-declaration": "nospace" 45 | }, 46 | { 47 | "call-signature": "onespace", 48 | "index-signature": "onespace", 49 | "parameter": "onespace", 50 | "property-declaration": "onespace", 51 | "variable-declaration": "onespace" 52 | } 53 | ], 54 | "no-internal-module": true, 55 | "no-trailing-whitespace": true, 56 | "no-null-keyword": true, 57 | "prefer-const": true, 58 | "jsdoc-format": true 59 | } 60 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@firebase/app-types@0.1.2": 6 | version "0.1.2" 7 | resolved "https://registry.yarnpkg.com/@firebase/app-types/-/app-types-0.1.2.tgz#a20cb346e3be374c0bdee6b102de0ea5e8e6fa27" 8 | 9 | "@firebase/app@^0.1.10": 10 | version "0.1.10" 11 | resolved "https://registry.yarnpkg.com/@firebase/app/-/app-0.1.10.tgz#fc80c62dbe4d601cad1495bc095309adb9074f85" 12 | dependencies: 13 | "@firebase/app-types" "0.1.2" 14 | "@firebase/util" "0.1.10" 15 | tslib "^1.9.0" 16 | 17 | "@firebase/database-types@0.2.0": 18 | version "0.2.0" 19 | resolved "https://registry.yarnpkg.com/@firebase/database-types/-/database-types-0.2.0.tgz#c442af71e4c376e6bb78f6aa62645b5a0e2b87b6" 20 | 21 | "@firebase/database@^0.2.0": 22 | version "0.2.1" 23 | resolved "https://registry.yarnpkg.com/@firebase/database/-/database-0.2.1.tgz#af4f3b80a7bccd4a561fdc76d8c1867243dd0665" 24 | dependencies: 25 | "@firebase/database-types" "0.2.0" 26 | "@firebase/logger" "0.1.0" 27 | "@firebase/util" "0.1.10" 28 | faye-websocket "0.11.1" 29 | tslib "^1.9.0" 30 | 31 | "@firebase/logger@0.1.0": 32 | version "0.1.0" 33 | resolved "https://registry.yarnpkg.com/@firebase/logger/-/logger-0.1.0.tgz#0a7b3af8a43e4b48cc9b16e518c07d8a2ea290e8" 34 | 35 | "@firebase/util@0.1.10": 36 | version "0.1.10" 37 | resolved "https://registry.yarnpkg.com/@firebase/util/-/util-0.1.10.tgz#7898f6e36c8231c287c4024c313000df677b1363" 38 | dependencies: 39 | tslib "^1.9.0" 40 | 41 | "@google-cloud/common-grpc@^0.6.0": 42 | version "0.6.0" 43 | resolved "https://registry.yarnpkg.com/@google-cloud/common-grpc/-/common-grpc-0.6.0.tgz#e5a561c9bcfc39e9dc97c70dfc6181856f836f5e" 44 | dependencies: 45 | "@google-cloud/common" "^0.16.1" 46 | dot-prop "^4.2.0" 47 | duplexify "^3.5.1" 48 | extend "^3.0.1" 49 | grpc "~1.9.1" 50 | is "^3.2.0" 51 | modelo "^4.2.0" 52 | retry-request "^3.3.1" 53 | through2 "^2.0.3" 54 | 55 | "@google-cloud/common@^0.16.0", "@google-cloud/common@^0.16.1": 56 | version "0.16.2" 57 | resolved "https://registry.yarnpkg.com/@google-cloud/common/-/common-0.16.2.tgz#029b3c7c4a425f1374045ba8f6a878bd50e4761c" 58 | dependencies: 59 | array-uniq "^1.0.3" 60 | arrify "^1.0.1" 61 | concat-stream "^1.6.0" 62 | create-error-class "^3.0.2" 63 | duplexify "^3.5.0" 64 | ent "^2.2.0" 65 | extend "^3.0.1" 66 | google-auto-auth "^0.9.0" 67 | is "^3.2.0" 68 | log-driver "1.2.7" 69 | methmeth "^1.1.0" 70 | modelo "^4.2.0" 71 | request "^2.79.0" 72 | retry-request "^3.0.0" 73 | split-array-stream "^1.0.0" 74 | stream-events "^1.0.1" 75 | string-format-obj "^1.1.0" 76 | through2 "^2.0.3" 77 | 78 | "@google-cloud/firestore@^0.13.0": 79 | version "0.13.0" 80 | resolved "https://registry.yarnpkg.com/@google-cloud/firestore/-/firestore-0.13.0.tgz#b56f014b13422103a8b7f01fbb5f0cd6cf49c7a7" 81 | dependencies: 82 | "@google-cloud/common" "^0.16.0" 83 | "@google-cloud/common-grpc" "^0.6.0" 84 | bun "^0.0.12" 85 | deep-equal "^1.0.1" 86 | extend "^3.0.1" 87 | functional-red-black-tree "^1.0.1" 88 | google-gax "^0.15.0" 89 | is "^3.2.1" 90 | safe-buffer "^5.1.1" 91 | through2 "^2.0.3" 92 | 93 | "@google-cloud/storage@^1.6.0": 94 | version "1.6.0" 95 | resolved "https://registry.yarnpkg.com/@google-cloud/storage/-/storage-1.6.0.tgz#3dea740e24bf097d91f16596e2915052907679a2" 96 | dependencies: 97 | "@google-cloud/common" "^0.16.1" 98 | arrify "^1.0.0" 99 | async "^2.0.1" 100 | compressible "^2.0.12" 101 | concat-stream "^1.5.0" 102 | create-error-class "^3.0.2" 103 | duplexify "^3.5.0" 104 | extend "^3.0.0" 105 | gcs-resumable-upload "^0.9.0" 106 | hash-stream-validation "^0.2.1" 107 | is "^3.0.1" 108 | mime "^2.2.0" 109 | mime-types "^2.0.8" 110 | once "^1.3.1" 111 | pumpify "^1.3.3" 112 | request "^2.83.0" 113 | safe-buffer "^5.1.1" 114 | snakeize "^0.1.0" 115 | stream-events "^1.0.1" 116 | string-format-obj "^1.0.0" 117 | through2 "^2.0.0" 118 | 119 | "@mrmlnc/readdir-enhanced@^2.2.1": 120 | version "2.2.1" 121 | resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" 122 | dependencies: 123 | call-me-maybe "^1.0.1" 124 | glob-to-regexp "^0.3.0" 125 | 126 | "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": 127 | version "1.1.2" 128 | resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" 129 | 130 | "@protobufjs/base64@^1.1.2": 131 | version "1.1.2" 132 | resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" 133 | 134 | "@protobufjs/codegen@^2.0.4": 135 | version "2.0.4" 136 | resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" 137 | 138 | "@protobufjs/eventemitter@^1.1.0": 139 | version "1.1.0" 140 | resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" 141 | 142 | "@protobufjs/fetch@^1.1.0": 143 | version "1.1.0" 144 | resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" 145 | dependencies: 146 | "@protobufjs/aspromise" "^1.1.1" 147 | "@protobufjs/inquire" "^1.1.0" 148 | 149 | "@protobufjs/float@^1.0.2": 150 | version "1.0.2" 151 | resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" 152 | 153 | "@protobufjs/inquire@^1.1.0": 154 | version "1.1.0" 155 | resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" 156 | 157 | "@protobufjs/path@^1.1.2": 158 | version "1.1.2" 159 | resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" 160 | 161 | "@protobufjs/pool@^1.1.0": 162 | version "1.1.0" 163 | resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" 164 | 165 | "@protobufjs/utf8@^1.1.0": 166 | version "1.1.0" 167 | resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" 168 | 169 | "@types/bluebird@*": 170 | version "3.5.20" 171 | resolved "https://registry.yarnpkg.com/@types/bluebird/-/bluebird-3.5.20.tgz#f6363172add6f4eabb8cada53ca9af2781e8d6a1" 172 | 173 | "@types/body-parser@*": 174 | version "1.16.8" 175 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.16.8.tgz#687ec34140624a3bec2b1a8ea9268478ae8f3be3" 176 | dependencies: 177 | "@types/express" "*" 178 | "@types/node" "*" 179 | 180 | "@types/caseless@*": 181 | version "0.12.1" 182 | resolved "https://registry.yarnpkg.com/@types/caseless/-/caseless-0.12.1.tgz#9794c69c8385d0192acc471a540d1f8e0d16218a" 183 | 184 | "@types/events@*": 185 | version "1.2.0" 186 | resolved "https://registry.yarnpkg.com/@types/events/-/events-1.2.0.tgz#81a6731ce4df43619e5c8c945383b3e62a89ea86" 187 | 188 | "@types/express-serve-static-core@*": 189 | version "4.11.1" 190 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.11.1.tgz#f6f7212382d59b19d696677bcaa48a37280f5d45" 191 | dependencies: 192 | "@types/events" "*" 193 | "@types/node" "*" 194 | 195 | "@types/express@*", "@types/express@^4.11.1": 196 | version "4.11.1" 197 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.11.1.tgz#f99663b3ab32d04cb11db612ef5dd7933f75465b" 198 | dependencies: 199 | "@types/body-parser" "*" 200 | "@types/express-serve-static-core" "*" 201 | "@types/serve-static" "*" 202 | 203 | "@types/form-data@*": 204 | version "2.2.1" 205 | resolved "https://registry.yarnpkg.com/@types/form-data/-/form-data-2.2.1.tgz#ee2b3b8eaa11c0938289953606b745b738c54b1e" 206 | dependencies: 207 | "@types/node" "*" 208 | 209 | "@types/google-cloud__storage@^1.1.7": 210 | version "1.1.7" 211 | resolved "https://registry.yarnpkg.com/@types/google-cloud__storage/-/google-cloud__storage-1.1.7.tgz#f4b568b163cce16314f32f954f5b7d5c9001fa86" 212 | dependencies: 213 | "@types/node" "*" 214 | 215 | "@types/long@^3.0.32": 216 | version "3.0.32" 217 | resolved "https://registry.yarnpkg.com/@types/long/-/long-3.0.32.tgz#f4e5af31e9e9b196d8e5fca8a5e2e20aa3d60b69" 218 | 219 | "@types/mime@*": 220 | version "2.0.0" 221 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.0.tgz#5a7306e367c539b9f6543499de8dd519fac37a8b" 222 | 223 | "@types/node@*": 224 | version "9.4.7" 225 | resolved "https://registry.yarnpkg.com/@types/node/-/node-9.4.7.tgz#57d81cd98719df2c9de118f2d5f3b1120dcd7275" 226 | 227 | "@types/node@^8.0.53", "@types/node@^8.9.4": 228 | version "8.9.5" 229 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.9.5.tgz#162b864bc70be077e6db212b322754917929e976" 230 | 231 | "@types/node@^9.6.0": 232 | version "9.6.0" 233 | resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.0.tgz#d3480ee666df9784b1001a1872a2f6ccefb6c2d7" 234 | 235 | "@types/request-promise@^4.1.41": 236 | version "4.1.41" 237 | resolved "https://registry.yarnpkg.com/@types/request-promise/-/request-promise-4.1.41.tgz#1e254d51362d7edcb714b60cde303bcbe0ab1ee0" 238 | dependencies: 239 | "@types/bluebird" "*" 240 | "@types/request" "*" 241 | 242 | "@types/request@*": 243 | version "2.47.0" 244 | resolved "https://registry.yarnpkg.com/@types/request/-/request-2.47.0.tgz#76a666cee4cb85dcffea6cd4645227926d9e114e" 245 | dependencies: 246 | "@types/caseless" "*" 247 | "@types/form-data" "*" 248 | "@types/node" "*" 249 | "@types/tough-cookie" "*" 250 | 251 | "@types/serve-static@*": 252 | version "1.13.1" 253 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.1.tgz#1d2801fa635d274cd97d4ec07e26b21b44127492" 254 | dependencies: 255 | "@types/express-serve-static-core" "*" 256 | "@types/mime" "*" 257 | 258 | "@types/tough-cookie@*": 259 | version "2.3.2" 260 | resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-2.3.2.tgz#e0d481d8bb282ad8a8c9e100ceb72c995fb5e709" 261 | 262 | "@types/validator@^9.4.0": 263 | version "9.4.0" 264 | resolved "https://registry.yarnpkg.com/@types/validator/-/validator-9.4.0.tgz#a4a80a31d3e4e094806ec446557808423379858d" 265 | 266 | abbrev@1: 267 | version "1.1.1" 268 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 269 | 270 | accepts@~1.3.5: 271 | version "1.3.5" 272 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" 273 | dependencies: 274 | mime-types "~2.1.18" 275 | negotiator "0.6.1" 276 | 277 | acorn-es7-plugin@^1.0.12: 278 | version "1.1.7" 279 | resolved "https://registry.yarnpkg.com/acorn-es7-plugin/-/acorn-es7-plugin-1.1.7.tgz#f2ee1f3228a90eead1245f9ab1922eb2e71d336b" 280 | 281 | acorn@^4.0.0: 282 | version "4.0.13" 283 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 284 | 285 | ajv@^4.9.1: 286 | version "4.11.8" 287 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 288 | dependencies: 289 | co "^4.6.0" 290 | json-stable-stringify "^1.0.1" 291 | 292 | ajv@^5.1.0: 293 | version "5.5.2" 294 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 295 | dependencies: 296 | co "^4.6.0" 297 | fast-deep-equal "^1.0.0" 298 | fast-json-stable-stringify "^2.0.0" 299 | json-schema-traverse "^0.3.0" 300 | 301 | ansi-regex@^2.0.0: 302 | version "2.1.1" 303 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 304 | 305 | ansi-styles@^2.2.1: 306 | version "2.2.1" 307 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 308 | 309 | ansi-styles@^3.2.1: 310 | version "3.2.1" 311 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 312 | dependencies: 313 | color-convert "^1.9.0" 314 | 315 | aproba@^1.0.3: 316 | version "1.2.0" 317 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 318 | 319 | are-we-there-yet@~1.1.2: 320 | version "1.1.4" 321 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 322 | dependencies: 323 | delegates "^1.0.0" 324 | readable-stream "^2.0.6" 325 | 326 | argparse@^1.0.7: 327 | version "1.0.10" 328 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 329 | dependencies: 330 | sprintf-js "~1.0.2" 331 | 332 | arr-diff@^4.0.0: 333 | version "4.0.0" 334 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 335 | 336 | arr-flatten@^1.1.0: 337 | version "1.1.0" 338 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 339 | 340 | arr-union@^3.1.0: 341 | version "3.1.0" 342 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 343 | 344 | array-filter@^1.0.0: 345 | version "1.0.0" 346 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83" 347 | 348 | array-flatten@1.1.1: 349 | version "1.1.1" 350 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 351 | 352 | array-union@^1.0.1: 353 | version "1.0.2" 354 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 355 | dependencies: 356 | array-uniq "^1.0.1" 357 | 358 | array-uniq@^1.0.1, array-uniq@^1.0.3: 359 | version "1.0.3" 360 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 361 | 362 | array-unique@^0.3.2: 363 | version "0.3.2" 364 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 365 | 366 | arrify@^1.0.0, arrify@^1.0.1: 367 | version "1.0.1" 368 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 369 | 370 | ascli@~1: 371 | version "1.0.1" 372 | resolved "https://registry.yarnpkg.com/ascli/-/ascli-1.0.1.tgz#bcfa5974a62f18e81cabaeb49732ab4a88f906bc" 373 | dependencies: 374 | colour "~0.7.1" 375 | optjs "~3.2.2" 376 | 377 | asn1@~0.2.3: 378 | version "0.2.3" 379 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 380 | 381 | assert-plus@1.0.0, assert-plus@^1.0.0: 382 | version "1.0.0" 383 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 384 | 385 | assert-plus@^0.2.0: 386 | version "0.2.0" 387 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 388 | 389 | assign-symbols@^1.0.0: 390 | version "1.0.0" 391 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 392 | 393 | async@^2.0.1, async@^2.3.0, async@^2.4.0: 394 | version "2.6.0" 395 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 396 | dependencies: 397 | lodash "^4.14.0" 398 | 399 | asynckit@^0.4.0: 400 | version "0.4.0" 401 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 402 | 403 | atob@^2.0.0: 404 | version "2.0.3" 405 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d" 406 | 407 | aws-sign2@~0.6.0: 408 | version "0.6.0" 409 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 410 | 411 | aws-sign2@~0.7.0: 412 | version "0.7.0" 413 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 414 | 415 | aws4@^1.2.1, aws4@^1.6.0: 416 | version "1.6.0" 417 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 418 | 419 | axios@^0.18.0: 420 | version "0.18.0" 421 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.18.0.tgz#32d53e4851efdc0a11993b6cd000789d70c05102" 422 | dependencies: 423 | follow-redirects "^1.3.0" 424 | is-buffer "^1.1.5" 425 | 426 | babel-code-frame@^6.22.0: 427 | version "6.26.0" 428 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 429 | dependencies: 430 | chalk "^1.1.3" 431 | esutils "^2.0.2" 432 | js-tokens "^3.0.2" 433 | 434 | balanced-match@^1.0.0: 435 | version "1.0.0" 436 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 437 | 438 | base64url@2.0.0, base64url@^2.0.0: 439 | version "2.0.0" 440 | resolved "https://registry.yarnpkg.com/base64url/-/base64url-2.0.0.tgz#eac16e03ea1438eff9423d69baa36262ed1f70bb" 441 | 442 | base@^0.11.1: 443 | version "0.11.2" 444 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 445 | dependencies: 446 | cache-base "^1.0.1" 447 | class-utils "^0.3.5" 448 | component-emitter "^1.2.1" 449 | define-property "^1.0.0" 450 | isobject "^3.0.1" 451 | mixin-deep "^1.2.0" 452 | pascalcase "^0.1.1" 453 | 454 | bcrypt-pbkdf@^1.0.0: 455 | version "1.0.1" 456 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 457 | dependencies: 458 | tweetnacl "^0.14.3" 459 | 460 | block-stream@*: 461 | version "0.0.9" 462 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 463 | dependencies: 464 | inherits "~2.0.0" 465 | 466 | bluebird@^3.5.0: 467 | version "3.5.1" 468 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 469 | 470 | body-parser@1.18.2: 471 | version "1.18.2" 472 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454" 473 | dependencies: 474 | bytes "3.0.0" 475 | content-type "~1.0.4" 476 | debug "2.6.9" 477 | depd "~1.1.1" 478 | http-errors "~1.6.2" 479 | iconv-lite "0.4.19" 480 | on-finished "~2.3.0" 481 | qs "6.5.1" 482 | raw-body "2.3.2" 483 | type-is "~1.6.15" 484 | 485 | boom@2.x.x: 486 | version "2.10.1" 487 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 488 | dependencies: 489 | hoek "2.x.x" 490 | 491 | boom@4.x.x: 492 | version "4.3.1" 493 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 494 | dependencies: 495 | hoek "4.x.x" 496 | 497 | boom@5.x.x: 498 | version "5.2.0" 499 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 500 | dependencies: 501 | hoek "4.x.x" 502 | 503 | brace-expansion@^1.1.7: 504 | version "1.1.11" 505 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 506 | dependencies: 507 | balanced-match "^1.0.0" 508 | concat-map "0.0.1" 509 | 510 | braces@^2.3.1: 511 | version "2.3.1" 512 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb" 513 | dependencies: 514 | arr-flatten "^1.1.0" 515 | array-unique "^0.3.2" 516 | define-property "^1.0.0" 517 | extend-shallow "^2.0.1" 518 | fill-range "^4.0.0" 519 | isobject "^3.0.1" 520 | kind-of "^6.0.2" 521 | repeat-element "^1.1.2" 522 | snapdragon "^0.8.1" 523 | snapdragon-node "^2.0.1" 524 | split-string "^3.0.2" 525 | to-regex "^3.0.1" 526 | 527 | buffer-equal-constant-time@1.0.1: 528 | version "1.0.1" 529 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" 530 | 531 | buffer-equal@^1.0.0: 532 | version "1.0.0" 533 | resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" 534 | 535 | buffer-from@^1.0.0: 536 | version "1.0.0" 537 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 538 | 539 | builtin-modules@^1.1.1: 540 | version "1.1.1" 541 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 542 | 543 | bun@^0.0.12: 544 | version "0.0.12" 545 | resolved "https://registry.yarnpkg.com/bun/-/bun-0.0.12.tgz#d54fae69f895557f275423bc14b404030b20a5fc" 546 | dependencies: 547 | readable-stream "~1.0.32" 548 | 549 | bytebuffer@~5: 550 | version "5.0.1" 551 | resolved "https://registry.yarnpkg.com/bytebuffer/-/bytebuffer-5.0.1.tgz#582eea4b1a873b6d020a48d58df85f0bba6cfddd" 552 | dependencies: 553 | long "~3" 554 | 555 | bytes@3.0.0: 556 | version "3.0.0" 557 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 558 | 559 | cache-base@^1.0.1: 560 | version "1.0.1" 561 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 562 | dependencies: 563 | collection-visit "^1.0.0" 564 | component-emitter "^1.2.1" 565 | get-value "^2.0.6" 566 | has-value "^1.0.0" 567 | isobject "^3.0.1" 568 | set-value "^2.0.0" 569 | to-object-path "^0.3.0" 570 | union-value "^1.0.0" 571 | unset-value "^1.0.0" 572 | 573 | call-me-maybe@^1.0.1: 574 | version "1.0.1" 575 | resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" 576 | 577 | call-signature@0.0.2: 578 | version "0.0.2" 579 | resolved "https://registry.yarnpkg.com/call-signature/-/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" 580 | 581 | camelcase@^2.0.1: 582 | version "2.1.1" 583 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 584 | 585 | capture-stack-trace@^1.0.0: 586 | version "1.0.0" 587 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 588 | 589 | caseless@~0.12.0: 590 | version "0.12.0" 591 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 592 | 593 | chalk@^1.1.3: 594 | version "1.1.3" 595 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 596 | dependencies: 597 | ansi-styles "^2.2.1" 598 | escape-string-regexp "^1.0.2" 599 | has-ansi "^2.0.0" 600 | strip-ansi "^3.0.0" 601 | supports-color "^2.0.0" 602 | 603 | chalk@^2.3.0: 604 | version "2.3.2" 605 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" 606 | dependencies: 607 | ansi-styles "^3.2.1" 608 | escape-string-regexp "^1.0.5" 609 | supports-color "^5.3.0" 610 | 611 | class-utils@^0.3.5: 612 | version "0.3.6" 613 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 614 | dependencies: 615 | arr-union "^3.1.0" 616 | define-property "^0.2.5" 617 | isobject "^3.0.0" 618 | static-extend "^0.1.1" 619 | 620 | cliui@^3.0.3: 621 | version "3.2.0" 622 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 623 | dependencies: 624 | string-width "^1.0.1" 625 | strip-ansi "^3.0.1" 626 | wrap-ansi "^2.0.0" 627 | 628 | co@^4.6.0: 629 | version "4.6.0" 630 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 631 | 632 | code-point-at@^1.0.0: 633 | version "1.1.0" 634 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 635 | 636 | collection-visit@^1.0.0: 637 | version "1.0.0" 638 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 639 | dependencies: 640 | map-visit "^1.0.0" 641 | object-visit "^1.0.0" 642 | 643 | color-convert@^1.9.0: 644 | version "1.9.1" 645 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 646 | dependencies: 647 | color-name "^1.1.1" 648 | 649 | color-name@^1.1.1: 650 | version "1.1.3" 651 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 652 | 653 | colour@~0.7.1: 654 | version "0.7.1" 655 | resolved "https://registry.yarnpkg.com/colour/-/colour-0.7.1.tgz#9cb169917ec5d12c0736d3e8685746df1cadf778" 656 | 657 | combined-stream@1.0.6, combined-stream@^1.0.5, combined-stream@~1.0.5: 658 | version "1.0.6" 659 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 660 | dependencies: 661 | delayed-stream "~1.0.0" 662 | 663 | commander@^2.12.1: 664 | version "2.15.1" 665 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 666 | 667 | component-emitter@^1.2.1: 668 | version "1.2.1" 669 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 670 | 671 | compressible@^2.0.12: 672 | version "2.0.13" 673 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.13.tgz#0d1020ab924b2fdb4d6279875c7d6daba6baa7a9" 674 | dependencies: 675 | mime-db ">= 1.33.0 < 2" 676 | 677 | concat-map@0.0.1: 678 | version "0.0.1" 679 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 680 | 681 | concat-stream@^1.5.0, concat-stream@^1.6.0: 682 | version "1.6.2" 683 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 684 | dependencies: 685 | buffer-from "^1.0.0" 686 | inherits "^2.0.3" 687 | readable-stream "^2.2.2" 688 | typedarray "^0.0.6" 689 | 690 | configstore@^3.0.0: 691 | version "3.1.1" 692 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 693 | dependencies: 694 | dot-prop "^4.1.0" 695 | graceful-fs "^4.1.2" 696 | make-dir "^1.0.0" 697 | unique-string "^1.0.0" 698 | write-file-atomic "^2.0.0" 699 | xdg-basedir "^3.0.0" 700 | 701 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 702 | version "1.1.0" 703 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 704 | 705 | content-disposition@0.5.2: 706 | version "0.5.2" 707 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 708 | 709 | content-type@~1.0.4: 710 | version "1.0.4" 711 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 712 | 713 | cookie-signature@1.0.6: 714 | version "1.0.6" 715 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 716 | 717 | cookie@0.3.1: 718 | version "0.3.1" 719 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 720 | 721 | copy-descriptor@^0.1.0: 722 | version "0.1.1" 723 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 724 | 725 | core-js@^2.0.0: 726 | version "2.5.3" 727 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 728 | 729 | core-util-is@1.0.2, core-util-is@~1.0.0: 730 | version "1.0.2" 731 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 732 | 733 | create-error-class@^3.0.2: 734 | version "3.0.2" 735 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 736 | dependencies: 737 | capture-stack-trace "^1.0.0" 738 | 739 | cryptiles@2.x.x: 740 | version "2.0.5" 741 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 742 | dependencies: 743 | boom "2.x.x" 744 | 745 | cryptiles@3.x.x: 746 | version "3.1.2" 747 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 748 | dependencies: 749 | boom "5.x.x" 750 | 751 | crypto-random-string@^1.0.0: 752 | version "1.0.0" 753 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 754 | 755 | dashdash@^1.12.0: 756 | version "1.14.1" 757 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 758 | dependencies: 759 | assert-plus "^1.0.0" 760 | 761 | debug@2.6.9, debug@^2.2.0, debug@^2.3.3: 762 | version "2.6.9" 763 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 764 | dependencies: 765 | ms "2.0.0" 766 | 767 | debug@^3.1.0: 768 | version "3.1.0" 769 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 770 | dependencies: 771 | ms "2.0.0" 772 | 773 | decamelize@^1.1.1: 774 | version "1.2.0" 775 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 776 | 777 | decode-uri-component@^0.2.0: 778 | version "0.2.0" 779 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 780 | 781 | deep-equal@^1.0.1: 782 | version "1.0.1" 783 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 784 | 785 | deep-extend@~0.4.0: 786 | version "0.4.2" 787 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 788 | 789 | define-properties@^1.1.2: 790 | version "1.1.2" 791 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 792 | dependencies: 793 | foreach "^2.0.5" 794 | object-keys "^1.0.8" 795 | 796 | define-property@^0.2.5: 797 | version "0.2.5" 798 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 799 | dependencies: 800 | is-descriptor "^0.1.0" 801 | 802 | define-property@^1.0.0: 803 | version "1.0.0" 804 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 805 | dependencies: 806 | is-descriptor "^1.0.0" 807 | 808 | define-property@^2.0.2: 809 | version "2.0.2" 810 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 811 | dependencies: 812 | is-descriptor "^1.0.2" 813 | isobject "^3.0.1" 814 | 815 | delayed-stream@~1.0.0: 816 | version "1.0.0" 817 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 818 | 819 | delegates@^1.0.0: 820 | version "1.0.0" 821 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 822 | 823 | depd@1.1.1: 824 | version "1.1.1" 825 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 826 | 827 | depd@~1.1.1, depd@~1.1.2: 828 | version "1.1.2" 829 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 830 | 831 | destroy@~1.0.4: 832 | version "1.0.4" 833 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 834 | 835 | detect-libc@^1.0.2: 836 | version "1.0.3" 837 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 838 | 839 | diff-match-patch@^1.0.0: 840 | version "1.0.0" 841 | resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.0.tgz#1cc3c83a490d67f95d91e39f6ad1f2e086b63048" 842 | 843 | diff@^3.1.0, diff@^3.2.0: 844 | version "3.5.0" 845 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 846 | 847 | dir-glob@^2.0.0: 848 | version "2.0.0" 849 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" 850 | dependencies: 851 | arrify "^1.0.1" 852 | path-type "^3.0.0" 853 | 854 | dot-prop@^4.1.0, dot-prop@^4.2.0: 855 | version "4.2.0" 856 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 857 | dependencies: 858 | is-obj "^1.0.0" 859 | 860 | duplexify@^3.5.0, duplexify@^3.5.1, duplexify@^3.5.3: 861 | version "3.5.4" 862 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.4.tgz#4bb46c1796eabebeec4ca9a2e66b808cb7a3d8b4" 863 | dependencies: 864 | end-of-stream "^1.0.0" 865 | inherits "^2.0.1" 866 | readable-stream "^2.0.0" 867 | stream-shift "^1.0.0" 868 | 869 | eastasianwidth@^0.1.1: 870 | version "0.1.1" 871 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.1.1.tgz#44d656de9da415694467335365fb3147b8572b7c" 872 | 873 | ecc-jsbn@~0.1.1: 874 | version "0.1.1" 875 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 876 | dependencies: 877 | jsbn "~0.1.0" 878 | 879 | ecdsa-sig-formatter@1.0.9: 880 | version "1.0.9" 881 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.9.tgz#4bc926274ec3b5abb5016e7e1d60921ac262b2a1" 882 | dependencies: 883 | base64url "^2.0.0" 884 | safe-buffer "^5.0.1" 885 | 886 | ee-first@1.1.1: 887 | version "1.1.1" 888 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 889 | 890 | empower-core@^0.6.2: 891 | version "0.6.2" 892 | resolved "https://registry.yarnpkg.com/empower-core/-/empower-core-0.6.2.tgz#5adef566088e31fba80ba0a36df47d7094169144" 893 | dependencies: 894 | call-signature "0.0.2" 895 | core-js "^2.0.0" 896 | 897 | empower@^1.2.3: 898 | version "1.2.3" 899 | resolved "https://registry.yarnpkg.com/empower/-/empower-1.2.3.tgz#6f0da73447f4edd838fec5c60313a88ba5cb852b" 900 | dependencies: 901 | core-js "^2.0.0" 902 | empower-core "^0.6.2" 903 | 904 | encodeurl@~1.0.2: 905 | version "1.0.2" 906 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 907 | 908 | end-of-stream@^1.0.0, end-of-stream@^1.1.0: 909 | version "1.4.1" 910 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 911 | dependencies: 912 | once "^1.4.0" 913 | 914 | ent@^2.2.0: 915 | version "2.2.0" 916 | resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" 917 | 918 | escape-html@~1.0.3: 919 | version "1.0.3" 920 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 921 | 922 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 923 | version "1.0.5" 924 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 925 | 926 | esprima@^4.0.0: 927 | version "4.0.0" 928 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 929 | 930 | espurify@^1.6.0: 931 | version "1.7.0" 932 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 933 | dependencies: 934 | core-js "^2.0.0" 935 | 936 | estraverse@^4.1.0, estraverse@^4.2.0: 937 | version "4.2.0" 938 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 939 | 940 | esutils@^2.0.2: 941 | version "2.0.2" 942 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 943 | 944 | etag@~1.8.1: 945 | version "1.8.1" 946 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 947 | 948 | expand-brackets@^2.1.4: 949 | version "2.1.4" 950 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 951 | dependencies: 952 | debug "^2.3.3" 953 | define-property "^0.2.5" 954 | extend-shallow "^2.0.1" 955 | posix-character-classes "^0.1.0" 956 | regex-not "^1.0.0" 957 | snapdragon "^0.8.1" 958 | to-regex "^3.0.1" 959 | 960 | express@^4.16.3: 961 | version "4.16.3" 962 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.3.tgz#6af8a502350db3246ecc4becf6b5a34d22f7ed53" 963 | dependencies: 964 | accepts "~1.3.5" 965 | array-flatten "1.1.1" 966 | body-parser "1.18.2" 967 | content-disposition "0.5.2" 968 | content-type "~1.0.4" 969 | cookie "0.3.1" 970 | cookie-signature "1.0.6" 971 | debug "2.6.9" 972 | depd "~1.1.2" 973 | encodeurl "~1.0.2" 974 | escape-html "~1.0.3" 975 | etag "~1.8.1" 976 | finalhandler "1.1.1" 977 | fresh "0.5.2" 978 | merge-descriptors "1.0.1" 979 | methods "~1.1.2" 980 | on-finished "~2.3.0" 981 | parseurl "~1.3.2" 982 | path-to-regexp "0.1.7" 983 | proxy-addr "~2.0.3" 984 | qs "6.5.1" 985 | range-parser "~1.2.0" 986 | safe-buffer "5.1.1" 987 | send "0.16.2" 988 | serve-static "1.13.2" 989 | setprototypeof "1.1.0" 990 | statuses "~1.4.0" 991 | type-is "~1.6.16" 992 | utils-merge "1.0.1" 993 | vary "~1.1.2" 994 | 995 | extend-shallow@^2.0.1: 996 | version "2.0.1" 997 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 998 | dependencies: 999 | is-extendable "^0.1.0" 1000 | 1001 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1002 | version "3.0.2" 1003 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1004 | dependencies: 1005 | assign-symbols "^1.0.0" 1006 | is-extendable "^1.0.1" 1007 | 1008 | extend@^3.0.0, extend@^3.0.1, extend@~3.0.0, extend@~3.0.1: 1009 | version "3.0.1" 1010 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1011 | 1012 | extglob@^2.0.4: 1013 | version "2.0.4" 1014 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1015 | dependencies: 1016 | array-unique "^0.3.2" 1017 | define-property "^1.0.0" 1018 | expand-brackets "^2.1.4" 1019 | extend-shallow "^2.0.1" 1020 | fragment-cache "^0.2.1" 1021 | regex-not "^1.0.0" 1022 | snapdragon "^0.8.1" 1023 | to-regex "^3.0.1" 1024 | 1025 | extsprintf@1.3.0: 1026 | version "1.3.0" 1027 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1028 | 1029 | extsprintf@^1.2.0: 1030 | version "1.4.0" 1031 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1032 | 1033 | fast-deep-equal@^1.0.0: 1034 | version "1.1.0" 1035 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1036 | 1037 | fast-glob@^2.0.2: 1038 | version "2.2.0" 1039 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.0.tgz#e9d032a69b86bef46fc03d935408f02fb211d9fc" 1040 | dependencies: 1041 | "@mrmlnc/readdir-enhanced" "^2.2.1" 1042 | glob-parent "^3.1.0" 1043 | is-glob "^4.0.0" 1044 | merge2 "^1.2.1" 1045 | micromatch "^3.1.8" 1046 | 1047 | fast-json-stable-stringify@^2.0.0: 1048 | version "2.0.0" 1049 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1050 | 1051 | faye-websocket@0.11.1: 1052 | version "0.11.1" 1053 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" 1054 | dependencies: 1055 | websocket-driver ">=0.5.1" 1056 | 1057 | faye-websocket@0.9.3: 1058 | version "0.9.3" 1059 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.9.3.tgz#482a505b0df0ae626b969866d3bd740cdb962e83" 1060 | dependencies: 1061 | websocket-driver ">=0.5.1" 1062 | 1063 | fill-range@^4.0.0: 1064 | version "4.0.0" 1065 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1066 | dependencies: 1067 | extend-shallow "^2.0.1" 1068 | is-number "^3.0.0" 1069 | repeat-string "^1.6.1" 1070 | to-regex-range "^2.1.0" 1071 | 1072 | finalhandler@1.1.1: 1073 | version "1.1.1" 1074 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105" 1075 | dependencies: 1076 | debug "2.6.9" 1077 | encodeurl "~1.0.2" 1078 | escape-html "~1.0.3" 1079 | on-finished "~2.3.0" 1080 | parseurl "~1.3.2" 1081 | statuses "~1.4.0" 1082 | unpipe "~1.0.0" 1083 | 1084 | firebase-admin@^5.2.1: 1085 | version "5.11.0" 1086 | resolved "https://registry.yarnpkg.com/firebase-admin/-/firebase-admin-5.11.0.tgz#0fd023fe46c9b7b09bde5c05e6b63e78d63f2e0d" 1087 | dependencies: 1088 | "@firebase/app" "^0.1.10" 1089 | "@firebase/database" "^0.2.0" 1090 | "@google-cloud/firestore" "^0.13.0" 1091 | "@google-cloud/storage" "^1.6.0" 1092 | "@types/google-cloud__storage" "^1.1.7" 1093 | "@types/node" "^8.0.53" 1094 | faye-websocket "0.9.3" 1095 | jsonwebtoken "8.1.0" 1096 | node-forge "0.7.1" 1097 | 1098 | follow-redirects@^1.3.0: 1099 | version "1.4.1" 1100 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.4.1.tgz#d8120f4518190f55aac65bb6fc7b85fcd666d6aa" 1101 | dependencies: 1102 | debug "^3.1.0" 1103 | 1104 | for-in@^1.0.2: 1105 | version "1.0.2" 1106 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1107 | 1108 | foreach@^2.0.5: 1109 | version "2.0.5" 1110 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1111 | 1112 | forever-agent@~0.6.1: 1113 | version "0.6.1" 1114 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1115 | 1116 | form-data@~2.1.1: 1117 | version "2.1.4" 1118 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1119 | dependencies: 1120 | asynckit "^0.4.0" 1121 | combined-stream "^1.0.5" 1122 | mime-types "^2.1.12" 1123 | 1124 | form-data@~2.3.1: 1125 | version "2.3.2" 1126 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1127 | dependencies: 1128 | asynckit "^0.4.0" 1129 | combined-stream "1.0.6" 1130 | mime-types "^2.1.12" 1131 | 1132 | forwarded@~0.1.2: 1133 | version "0.1.2" 1134 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1135 | 1136 | fragment-cache@^0.2.1: 1137 | version "0.2.1" 1138 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1139 | dependencies: 1140 | map-cache "^0.2.2" 1141 | 1142 | fresh@0.5.2: 1143 | version "0.5.2" 1144 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1145 | 1146 | fs.realpath@^1.0.0: 1147 | version "1.0.0" 1148 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1149 | 1150 | fstream-ignore@^1.0.5: 1151 | version "1.0.5" 1152 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1153 | dependencies: 1154 | fstream "^1.0.0" 1155 | inherits "2" 1156 | minimatch "^3.0.0" 1157 | 1158 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1159 | version "1.0.11" 1160 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1161 | dependencies: 1162 | graceful-fs "^4.1.2" 1163 | inherits "~2.0.0" 1164 | mkdirp ">=0.5 0" 1165 | rimraf "2" 1166 | 1167 | functional-red-black-tree@^1.0.1: 1168 | version "1.0.1" 1169 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1170 | 1171 | gauge@~2.7.3: 1172 | version "2.7.4" 1173 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1174 | dependencies: 1175 | aproba "^1.0.3" 1176 | console-control-strings "^1.0.0" 1177 | has-unicode "^2.0.0" 1178 | object-assign "^4.1.0" 1179 | signal-exit "^3.0.0" 1180 | string-width "^1.0.1" 1181 | strip-ansi "^3.0.1" 1182 | wide-align "^1.1.0" 1183 | 1184 | gcp-metadata@^0.6.1, gcp-metadata@^0.6.2: 1185 | version "0.6.3" 1186 | resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-0.6.3.tgz#4550c08859c528b370459bd77a7187ea0bdbc4ab" 1187 | dependencies: 1188 | axios "^0.18.0" 1189 | extend "^3.0.1" 1190 | retry-axios "0.3.2" 1191 | 1192 | gcs-resumable-upload@^0.9.0: 1193 | version "0.9.0" 1194 | resolved "https://registry.yarnpkg.com/gcs-resumable-upload/-/gcs-resumable-upload-0.9.0.tgz#644202149696ad114358bc1e0cf43a60b5ec0454" 1195 | dependencies: 1196 | buffer-equal "^1.0.0" 1197 | configstore "^3.0.0" 1198 | google-auto-auth "^0.9.0" 1199 | pumpify "^1.3.3" 1200 | request "^2.81.0" 1201 | stream-events "^1.0.1" 1202 | through2 "^2.0.0" 1203 | 1204 | get-value@^2.0.3, get-value@^2.0.6: 1205 | version "2.0.6" 1206 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1207 | 1208 | getpass@^0.1.1: 1209 | version "0.1.7" 1210 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1211 | dependencies: 1212 | assert-plus "^1.0.0" 1213 | 1214 | glob-parent@^3.1.0: 1215 | version "3.1.0" 1216 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 1217 | dependencies: 1218 | is-glob "^3.1.0" 1219 | path-dirname "^1.0.0" 1220 | 1221 | glob-to-regexp@^0.3.0: 1222 | version "0.3.0" 1223 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" 1224 | 1225 | glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1226 | version "7.1.2" 1227 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1228 | dependencies: 1229 | fs.realpath "^1.0.0" 1230 | inflight "^1.0.4" 1231 | inherits "2" 1232 | minimatch "^3.0.4" 1233 | once "^1.3.0" 1234 | path-is-absolute "^1.0.0" 1235 | 1236 | globby@^7.1.1: 1237 | version "7.1.1" 1238 | resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" 1239 | dependencies: 1240 | array-union "^1.0.1" 1241 | dir-glob "^2.0.0" 1242 | glob "^7.1.2" 1243 | ignore "^3.3.5" 1244 | pify "^3.0.0" 1245 | slash "^1.0.0" 1246 | 1247 | globby@^8.0.0: 1248 | version "8.0.1" 1249 | resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.1.tgz#b5ad48b8aa80b35b814fc1281ecc851f1d2b5b50" 1250 | dependencies: 1251 | array-union "^1.0.1" 1252 | dir-glob "^2.0.0" 1253 | fast-glob "^2.0.2" 1254 | glob "^7.1.2" 1255 | ignore "^3.3.5" 1256 | pify "^3.0.0" 1257 | slash "^1.0.0" 1258 | 1259 | google-auth-library@^1.3.1: 1260 | version "1.3.2" 1261 | resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-1.3.2.tgz#053d5cae7fb2b83367adad25bd0b8c80e2a38125" 1262 | dependencies: 1263 | axios "^0.18.0" 1264 | gcp-metadata "^0.6.2" 1265 | gtoken "^2.1.1" 1266 | jws "^3.1.4" 1267 | lodash.isstring "^4.0.1" 1268 | lru-cache "^4.1.2" 1269 | retry-axios "^0.3.2" 1270 | 1271 | google-auto-auth@^0.9.0: 1272 | version "0.9.7" 1273 | resolved "https://registry.yarnpkg.com/google-auto-auth/-/google-auto-auth-0.9.7.tgz#70b357ec9ec8e2368cf89a659309a15a1472596b" 1274 | dependencies: 1275 | async "^2.3.0" 1276 | gcp-metadata "^0.6.1" 1277 | google-auth-library "^1.3.1" 1278 | request "^2.79.0" 1279 | 1280 | google-gax@^0.15.0: 1281 | version "0.15.0" 1282 | resolved "https://registry.yarnpkg.com/google-gax/-/google-gax-0.15.0.tgz#347f8a6af76dd4b3b261249c906d2c471feadf27" 1283 | dependencies: 1284 | extend "^3.0.0" 1285 | globby "^8.0.0" 1286 | google-auto-auth "^0.9.0" 1287 | google-proto-files "^0.15.0" 1288 | grpc "~1.9.1" 1289 | is-stream-ended "^0.1.0" 1290 | lodash "^4.17.2" 1291 | protobufjs "^6.8.0" 1292 | readable-stream "^2.2.2" 1293 | through2 "^2.0.3" 1294 | 1295 | google-p12-pem@^1.0.0: 1296 | version "1.0.2" 1297 | resolved "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-1.0.2.tgz#c8a3843504012283a0dbffc7430b7c753ecd4b07" 1298 | dependencies: 1299 | node-forge "^0.7.4" 1300 | pify "^3.0.0" 1301 | 1302 | google-proto-files@^0.15.0: 1303 | version "0.15.1" 1304 | resolved "https://registry.yarnpkg.com/google-proto-files/-/google-proto-files-0.15.1.tgz#5c9c485e574e2c100fe829a5ec0bbb3d9bc789a2" 1305 | dependencies: 1306 | globby "^7.1.1" 1307 | power-assert "^1.4.4" 1308 | protobufjs "^6.8.0" 1309 | 1310 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1311 | version "4.1.11" 1312 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1313 | 1314 | grpc@~1.9.1: 1315 | version "1.9.1" 1316 | resolved "https://registry.yarnpkg.com/grpc/-/grpc-1.9.1.tgz#18d7cfce153ebf952559e62dadbc8bbb85da1eac" 1317 | dependencies: 1318 | lodash "^4.15.0" 1319 | nan "^2.0.0" 1320 | node-pre-gyp "^0.6.39" 1321 | protobufjs "^5.0.0" 1322 | 1323 | gtoken@^2.1.1: 1324 | version "2.2.0" 1325 | resolved "https://registry.yarnpkg.com/gtoken/-/gtoken-2.2.0.tgz#b9383199fb820113a3469bf0a207b03ca45a0363" 1326 | dependencies: 1327 | axios "^0.18.0" 1328 | google-p12-pem "^1.0.0" 1329 | jws "^3.1.4" 1330 | mime "^2.2.0" 1331 | pify "^3.0.0" 1332 | 1333 | har-schema@^1.0.5: 1334 | version "1.0.5" 1335 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1336 | 1337 | har-schema@^2.0.0: 1338 | version "2.0.0" 1339 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1340 | 1341 | har-validator@~4.2.1: 1342 | version "4.2.1" 1343 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1344 | dependencies: 1345 | ajv "^4.9.1" 1346 | har-schema "^1.0.5" 1347 | 1348 | har-validator@~5.0.3: 1349 | version "5.0.3" 1350 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1351 | dependencies: 1352 | ajv "^5.1.0" 1353 | har-schema "^2.0.0" 1354 | 1355 | has-ansi@^2.0.0: 1356 | version "2.0.0" 1357 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1358 | dependencies: 1359 | ansi-regex "^2.0.0" 1360 | 1361 | has-flag@^3.0.0: 1362 | version "3.0.0" 1363 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1364 | 1365 | has-unicode@^2.0.0: 1366 | version "2.0.1" 1367 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1368 | 1369 | has-value@^0.3.1: 1370 | version "0.3.1" 1371 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1372 | dependencies: 1373 | get-value "^2.0.3" 1374 | has-values "^0.1.4" 1375 | isobject "^2.0.0" 1376 | 1377 | has-value@^1.0.0: 1378 | version "1.0.0" 1379 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1380 | dependencies: 1381 | get-value "^2.0.6" 1382 | has-values "^1.0.0" 1383 | isobject "^3.0.0" 1384 | 1385 | has-values@^0.1.4: 1386 | version "0.1.4" 1387 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1388 | 1389 | has-values@^1.0.0: 1390 | version "1.0.0" 1391 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1392 | dependencies: 1393 | is-number "^3.0.0" 1394 | kind-of "^4.0.0" 1395 | 1396 | hash-stream-validation@^0.2.1: 1397 | version "0.2.1" 1398 | resolved "https://registry.yarnpkg.com/hash-stream-validation/-/hash-stream-validation-0.2.1.tgz#ecc9b997b218be5bb31298628bb807869b73dcd1" 1399 | dependencies: 1400 | through2 "^2.0.0" 1401 | 1402 | hawk@3.1.3, hawk@~3.1.3: 1403 | version "3.1.3" 1404 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1405 | dependencies: 1406 | boom "2.x.x" 1407 | cryptiles "2.x.x" 1408 | hoek "2.x.x" 1409 | sntp "1.x.x" 1410 | 1411 | hawk@~6.0.2: 1412 | version "6.0.2" 1413 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1414 | dependencies: 1415 | boom "4.x.x" 1416 | cryptiles "3.x.x" 1417 | hoek "4.x.x" 1418 | sntp "2.x.x" 1419 | 1420 | hoek@2.x.x: 1421 | version "2.16.3" 1422 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1423 | 1424 | hoek@4.x.x: 1425 | version "4.2.1" 1426 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.1.tgz#9634502aa12c445dd5a7c5734b572bb8738aacbb" 1427 | 1428 | http-errors@1.6.2, http-errors@~1.6.2: 1429 | version "1.6.2" 1430 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 1431 | dependencies: 1432 | depd "1.1.1" 1433 | inherits "2.0.3" 1434 | setprototypeof "1.0.3" 1435 | statuses ">= 1.3.1 < 2" 1436 | 1437 | http-parser-js@>=0.4.0: 1438 | version "0.4.11" 1439 | resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.11.tgz#5b720849c650903c27e521633d94696ee95f3529" 1440 | 1441 | http-signature@~1.1.0: 1442 | version "1.1.1" 1443 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1444 | dependencies: 1445 | assert-plus "^0.2.0" 1446 | jsprim "^1.2.2" 1447 | sshpk "^1.7.0" 1448 | 1449 | http-signature@~1.2.0: 1450 | version "1.2.0" 1451 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1452 | dependencies: 1453 | assert-plus "^1.0.0" 1454 | jsprim "^1.2.2" 1455 | sshpk "^1.7.0" 1456 | 1457 | iconv-lite@0.4.19: 1458 | version "0.4.19" 1459 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1460 | 1461 | ignore@^3.3.5: 1462 | version "3.3.7" 1463 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1464 | 1465 | imurmurhash@^0.1.4: 1466 | version "0.1.4" 1467 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1468 | 1469 | indexof@0.0.1: 1470 | version "0.0.1" 1471 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1472 | 1473 | inflight@^1.0.4: 1474 | version "1.0.6" 1475 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1476 | dependencies: 1477 | once "^1.3.0" 1478 | wrappy "1" 1479 | 1480 | 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: 1481 | version "2.0.3" 1482 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1483 | 1484 | ini@~1.3.0: 1485 | version "1.3.5" 1486 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1487 | 1488 | invert-kv@^1.0.0: 1489 | version "1.0.0" 1490 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1491 | 1492 | ipaddr.js@1.6.0: 1493 | version "1.6.0" 1494 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.6.0.tgz#e3fa357b773da619f26e95f049d055c72796f86b" 1495 | 1496 | is-accessor-descriptor@^0.1.6: 1497 | version "0.1.6" 1498 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1499 | dependencies: 1500 | kind-of "^3.0.2" 1501 | 1502 | is-accessor-descriptor@^1.0.0: 1503 | version "1.0.0" 1504 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1505 | dependencies: 1506 | kind-of "^6.0.0" 1507 | 1508 | is-buffer@^1.1.5: 1509 | version "1.1.6" 1510 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1511 | 1512 | is-data-descriptor@^0.1.4: 1513 | version "0.1.4" 1514 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1515 | dependencies: 1516 | kind-of "^3.0.2" 1517 | 1518 | is-data-descriptor@^1.0.0: 1519 | version "1.0.0" 1520 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1521 | dependencies: 1522 | kind-of "^6.0.0" 1523 | 1524 | is-descriptor@^0.1.0: 1525 | version "0.1.6" 1526 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1527 | dependencies: 1528 | is-accessor-descriptor "^0.1.6" 1529 | is-data-descriptor "^0.1.4" 1530 | kind-of "^5.0.0" 1531 | 1532 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1533 | version "1.0.2" 1534 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1535 | dependencies: 1536 | is-accessor-descriptor "^1.0.0" 1537 | is-data-descriptor "^1.0.0" 1538 | kind-of "^6.0.2" 1539 | 1540 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1541 | version "0.1.1" 1542 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1543 | 1544 | is-extendable@^1.0.1: 1545 | version "1.0.1" 1546 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1547 | dependencies: 1548 | is-plain-object "^2.0.4" 1549 | 1550 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1551 | version "2.1.1" 1552 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 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-glob@^3.1.0: 1561 | version "3.1.0" 1562 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1563 | dependencies: 1564 | is-extglob "^2.1.0" 1565 | 1566 | is-glob@^4.0.0: 1567 | version "4.0.0" 1568 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1569 | dependencies: 1570 | is-extglob "^2.1.1" 1571 | 1572 | is-number@^3.0.0: 1573 | version "3.0.0" 1574 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1575 | dependencies: 1576 | kind-of "^3.0.2" 1577 | 1578 | is-number@^4.0.0: 1579 | version "4.0.0" 1580 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1581 | 1582 | is-obj@^1.0.0: 1583 | version "1.0.1" 1584 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1585 | 1586 | is-odd@^2.0.0: 1587 | version "2.0.0" 1588 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1589 | dependencies: 1590 | is-number "^4.0.0" 1591 | 1592 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1593 | version "2.0.4" 1594 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1595 | dependencies: 1596 | isobject "^3.0.1" 1597 | 1598 | is-stream-ended@^0.1.0: 1599 | version "0.1.3" 1600 | resolved "https://registry.yarnpkg.com/is-stream-ended/-/is-stream-ended-0.1.3.tgz#a0473b267c756635486beedc7e3344e549d152ac" 1601 | 1602 | is-typedarray@~1.0.0: 1603 | version "1.0.0" 1604 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1605 | 1606 | is-windows@^1.0.2: 1607 | version "1.0.2" 1608 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1609 | 1610 | is@^3.0.1, is@^3.2.0, is@^3.2.1: 1611 | version "3.2.1" 1612 | resolved "https://registry.yarnpkg.com/is/-/is-3.2.1.tgz#d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5" 1613 | 1614 | isarray@0.0.1: 1615 | version "0.0.1" 1616 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1617 | 1618 | isarray@1.0.0, isarray@~1.0.0: 1619 | version "1.0.0" 1620 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1621 | 1622 | isobject@^2.0.0: 1623 | version "2.1.0" 1624 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1625 | dependencies: 1626 | isarray "1.0.0" 1627 | 1628 | isobject@^3.0.0, isobject@^3.0.1: 1629 | version "3.0.1" 1630 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1631 | 1632 | isstream@~0.1.2: 1633 | version "0.1.2" 1634 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1635 | 1636 | js-tokens@^3.0.2: 1637 | version "3.0.2" 1638 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1639 | 1640 | js-yaml@^3.7.0: 1641 | version "3.11.0" 1642 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 1643 | dependencies: 1644 | argparse "^1.0.7" 1645 | esprima "^4.0.0" 1646 | 1647 | jsbn@~0.1.0: 1648 | version "0.1.1" 1649 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1650 | 1651 | json-schema-traverse@^0.3.0: 1652 | version "0.3.1" 1653 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1654 | 1655 | json-schema@0.2.3: 1656 | version "0.2.3" 1657 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1658 | 1659 | json-stable-stringify@^1.0.1: 1660 | version "1.0.1" 1661 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1662 | dependencies: 1663 | jsonify "~0.0.0" 1664 | 1665 | json-stringify-safe@~5.0.1: 1666 | version "5.0.1" 1667 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1668 | 1669 | jsonify@~0.0.0: 1670 | version "0.0.0" 1671 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1672 | 1673 | jsonwebtoken@8.1.0: 1674 | version "8.1.0" 1675 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.1.0.tgz#c6397cd2e5fd583d65c007a83dc7bb78e6982b83" 1676 | dependencies: 1677 | jws "^3.1.4" 1678 | lodash.includes "^4.3.0" 1679 | lodash.isboolean "^3.0.3" 1680 | lodash.isinteger "^4.0.4" 1681 | lodash.isnumber "^3.0.3" 1682 | lodash.isplainobject "^4.0.6" 1683 | lodash.isstring "^4.0.1" 1684 | lodash.once "^4.0.0" 1685 | ms "^2.0.0" 1686 | xtend "^4.0.1" 1687 | 1688 | jsprim@^1.2.2: 1689 | version "1.4.1" 1690 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1691 | dependencies: 1692 | assert-plus "1.0.0" 1693 | extsprintf "1.3.0" 1694 | json-schema "0.2.3" 1695 | verror "1.10.0" 1696 | 1697 | jwa@^1.1.4: 1698 | version "1.1.5" 1699 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.5.tgz#a0552ce0220742cd52e153774a32905c30e756e5" 1700 | dependencies: 1701 | base64url "2.0.0" 1702 | buffer-equal-constant-time "1.0.1" 1703 | ecdsa-sig-formatter "1.0.9" 1704 | safe-buffer "^5.0.1" 1705 | 1706 | jws@^3.1.4: 1707 | version "3.1.4" 1708 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.4.tgz#f9e8b9338e8a847277d6444b1464f61880e050a2" 1709 | dependencies: 1710 | base64url "^2.0.0" 1711 | jwa "^1.1.4" 1712 | safe-buffer "^5.0.1" 1713 | 1714 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1715 | version "3.2.2" 1716 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1717 | dependencies: 1718 | is-buffer "^1.1.5" 1719 | 1720 | kind-of@^4.0.0: 1721 | version "4.0.0" 1722 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1723 | dependencies: 1724 | is-buffer "^1.1.5" 1725 | 1726 | kind-of@^5.0.0: 1727 | version "5.1.0" 1728 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1729 | 1730 | kind-of@^6.0.0, kind-of@^6.0.2: 1731 | version "6.0.2" 1732 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1733 | 1734 | lcid@^1.0.0: 1735 | version "1.0.0" 1736 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1737 | dependencies: 1738 | invert-kv "^1.0.0" 1739 | 1740 | lodash.includes@^4.3.0: 1741 | version "4.3.0" 1742 | resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" 1743 | 1744 | lodash.isboolean@^3.0.3: 1745 | version "3.0.3" 1746 | resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" 1747 | 1748 | lodash.isinteger@^4.0.4: 1749 | version "4.0.4" 1750 | resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" 1751 | 1752 | lodash.isnumber@^3.0.3: 1753 | version "3.0.3" 1754 | resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" 1755 | 1756 | lodash.isplainobject@^4.0.6: 1757 | version "4.0.6" 1758 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 1759 | 1760 | lodash.isstring@^4.0.1: 1761 | version "4.0.1" 1762 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 1763 | 1764 | lodash.once@^4.0.0: 1765 | version "4.1.1" 1766 | resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" 1767 | 1768 | lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2: 1769 | version "4.17.5" 1770 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 1771 | 1772 | log-driver@1.2.7: 1773 | version "1.2.7" 1774 | resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8" 1775 | 1776 | long@^4.0.0: 1777 | version "4.0.0" 1778 | resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" 1779 | 1780 | long@~3: 1781 | version "3.2.0" 1782 | resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b" 1783 | 1784 | lru-cache@^4.1.2: 1785 | version "4.1.2" 1786 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 1787 | dependencies: 1788 | pseudomap "^1.0.2" 1789 | yallist "^2.1.2" 1790 | 1791 | make-dir@^1.0.0: 1792 | version "1.2.0" 1793 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" 1794 | dependencies: 1795 | pify "^3.0.0" 1796 | 1797 | make-error@^1.1.1: 1798 | version "1.3.4" 1799 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.4.tgz#19978ed575f9e9545d2ff8c13e33b5d18a67d535" 1800 | 1801 | map-cache@^0.2.2: 1802 | version "0.2.2" 1803 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1804 | 1805 | map-visit@^1.0.0: 1806 | version "1.0.0" 1807 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1808 | dependencies: 1809 | object-visit "^1.0.0" 1810 | 1811 | media-typer@0.3.0: 1812 | version "0.3.0" 1813 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1814 | 1815 | merge-descriptors@1.0.1: 1816 | version "1.0.1" 1817 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1818 | 1819 | merge2@^1.2.1: 1820 | version "1.2.1" 1821 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.1.tgz#271d2516ff52d4af7f7b710b8bf3e16e183fef66" 1822 | 1823 | methmeth@^1.1.0: 1824 | version "1.1.0" 1825 | resolved "https://registry.yarnpkg.com/methmeth/-/methmeth-1.1.0.tgz#e80a26618e52f5c4222861bb748510bd10e29089" 1826 | 1827 | methods@~1.1.2: 1828 | version "1.1.2" 1829 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1830 | 1831 | micromatch@^3.1.8: 1832 | version "3.1.9" 1833 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.9.tgz#15dc93175ae39e52e93087847096effc73efcf89" 1834 | dependencies: 1835 | arr-diff "^4.0.0" 1836 | array-unique "^0.3.2" 1837 | braces "^2.3.1" 1838 | define-property "^2.0.2" 1839 | extend-shallow "^3.0.2" 1840 | extglob "^2.0.4" 1841 | fragment-cache "^0.2.1" 1842 | kind-of "^6.0.2" 1843 | nanomatch "^1.2.9" 1844 | object.pick "^1.3.0" 1845 | regex-not "^1.0.0" 1846 | snapdragon "^0.8.1" 1847 | to-regex "^3.0.1" 1848 | 1849 | "mime-db@>= 1.33.0 < 2", mime-db@~1.33.0: 1850 | version "1.33.0" 1851 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 1852 | 1853 | mime-types@^2.0.8, mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.18, mime-types@~2.1.7: 1854 | version "2.1.18" 1855 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 1856 | dependencies: 1857 | mime-db "~1.33.0" 1858 | 1859 | mime@1.4.1: 1860 | version "1.4.1" 1861 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" 1862 | 1863 | mime@^2.2.0: 1864 | version "2.2.0" 1865 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.2.0.tgz#161e541965551d3b549fa1114391e3a3d55b923b" 1866 | 1867 | minimatch@^3.0.0, minimatch@^3.0.4: 1868 | version "3.0.4" 1869 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1870 | dependencies: 1871 | brace-expansion "^1.1.7" 1872 | 1873 | minimist@0.0.8: 1874 | version "0.0.8" 1875 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1876 | 1877 | minimist@^1.2.0: 1878 | version "1.2.0" 1879 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1880 | 1881 | mixin-deep@^1.2.0: 1882 | version "1.3.1" 1883 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 1884 | dependencies: 1885 | for-in "^1.0.2" 1886 | is-extendable "^1.0.1" 1887 | 1888 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1889 | version "0.5.1" 1890 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1891 | dependencies: 1892 | minimist "0.0.8" 1893 | 1894 | modelo@^4.2.0: 1895 | version "4.2.3" 1896 | resolved "https://registry.yarnpkg.com/modelo/-/modelo-4.2.3.tgz#b278588a4db87fc1e5107ae3a277c0876f38d894" 1897 | 1898 | ms@2.0.0: 1899 | version "2.0.0" 1900 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1901 | 1902 | ms@^2.0.0: 1903 | version "2.1.1" 1904 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1905 | 1906 | nan@^2.0.0: 1907 | version "2.10.0" 1908 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 1909 | 1910 | nanomatch@^1.2.9: 1911 | version "1.2.9" 1912 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 1913 | dependencies: 1914 | arr-diff "^4.0.0" 1915 | array-unique "^0.3.2" 1916 | define-property "^2.0.2" 1917 | extend-shallow "^3.0.2" 1918 | fragment-cache "^0.2.1" 1919 | is-odd "^2.0.0" 1920 | is-windows "^1.0.2" 1921 | kind-of "^6.0.2" 1922 | object.pick "^1.3.0" 1923 | regex-not "^1.0.0" 1924 | snapdragon "^0.8.1" 1925 | to-regex "^3.0.1" 1926 | 1927 | negotiator@0.6.1: 1928 | version "0.6.1" 1929 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1930 | 1931 | node-forge@0.7.1: 1932 | version "0.7.1" 1933 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.1.tgz#9da611ea08982f4b94206b3beb4cc9665f20c300" 1934 | 1935 | node-forge@^0.7.4: 1936 | version "0.7.4" 1937 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.4.tgz#8e6e9f563a1e32213aa7508cded22aa791dbf986" 1938 | 1939 | node-pre-gyp@^0.6.39: 1940 | version "0.6.39" 1941 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1942 | dependencies: 1943 | detect-libc "^1.0.2" 1944 | hawk "3.1.3" 1945 | mkdirp "^0.5.1" 1946 | nopt "^4.0.1" 1947 | npmlog "^4.0.2" 1948 | rc "^1.1.7" 1949 | request "2.81.0" 1950 | rimraf "^2.6.1" 1951 | semver "^5.3.0" 1952 | tar "^2.2.1" 1953 | tar-pack "^3.4.0" 1954 | 1955 | nopt@^4.0.1: 1956 | version "4.0.1" 1957 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1958 | dependencies: 1959 | abbrev "1" 1960 | osenv "^0.1.4" 1961 | 1962 | npmlog@^4.0.2: 1963 | version "4.1.2" 1964 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1965 | dependencies: 1966 | are-we-there-yet "~1.1.2" 1967 | console-control-strings "~1.1.0" 1968 | gauge "~2.7.3" 1969 | set-blocking "~2.0.0" 1970 | 1971 | number-is-nan@^1.0.0: 1972 | version "1.0.1" 1973 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1974 | 1975 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 1976 | version "0.8.2" 1977 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1978 | 1979 | object-assign@^4.1.0: 1980 | version "4.1.1" 1981 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1982 | 1983 | object-copy@^0.1.0: 1984 | version "0.1.0" 1985 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1986 | dependencies: 1987 | copy-descriptor "^0.1.0" 1988 | define-property "^0.2.5" 1989 | kind-of "^3.0.3" 1990 | 1991 | object-keys@^1.0.0, object-keys@^1.0.8: 1992 | version "1.0.11" 1993 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 1994 | 1995 | object-visit@^1.0.0: 1996 | version "1.0.1" 1997 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1998 | dependencies: 1999 | isobject "^3.0.0" 2000 | 2001 | object.pick@^1.3.0: 2002 | version "1.3.0" 2003 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2004 | dependencies: 2005 | isobject "^3.0.1" 2006 | 2007 | on-finished@~2.3.0: 2008 | version "2.3.0" 2009 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2010 | dependencies: 2011 | ee-first "1.1.1" 2012 | 2013 | once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: 2014 | version "1.4.0" 2015 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2016 | dependencies: 2017 | wrappy "1" 2018 | 2019 | optjs@~3.2.2: 2020 | version "3.2.2" 2021 | resolved "https://registry.yarnpkg.com/optjs/-/optjs-3.2.2.tgz#69a6ce89c442a44403141ad2f9b370bd5bb6f4ee" 2022 | 2023 | os-homedir@^1.0.0: 2024 | version "1.0.2" 2025 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2026 | 2027 | os-locale@^1.4.0: 2028 | version "1.4.0" 2029 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2030 | dependencies: 2031 | lcid "^1.0.0" 2032 | 2033 | os-tmpdir@^1.0.0: 2034 | version "1.0.2" 2035 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2036 | 2037 | osenv@^0.1.4: 2038 | version "0.1.5" 2039 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2040 | dependencies: 2041 | os-homedir "^1.0.0" 2042 | os-tmpdir "^1.0.0" 2043 | 2044 | parseurl@~1.3.2: 2045 | version "1.3.2" 2046 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 2047 | 2048 | pascalcase@^0.1.1: 2049 | version "0.1.1" 2050 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2051 | 2052 | path-dirname@^1.0.0: 2053 | version "1.0.2" 2054 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2055 | 2056 | path-is-absolute@^1.0.0: 2057 | version "1.0.1" 2058 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2059 | 2060 | path-parse@^1.0.5: 2061 | version "1.0.5" 2062 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2063 | 2064 | path-to-regexp@0.1.7: 2065 | version "0.1.7" 2066 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2067 | 2068 | path-type@^3.0.0: 2069 | version "3.0.0" 2070 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 2071 | dependencies: 2072 | pify "^3.0.0" 2073 | 2074 | performance-now@^0.2.0: 2075 | version "0.2.0" 2076 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2077 | 2078 | performance-now@^2.1.0: 2079 | version "2.1.0" 2080 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2081 | 2082 | pify@^3.0.0: 2083 | version "3.0.0" 2084 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2085 | 2086 | posix-character-classes@^0.1.0: 2087 | version "0.1.1" 2088 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2089 | 2090 | power-assert-context-formatter@^1.0.7: 2091 | version "1.1.1" 2092 | resolved "https://registry.yarnpkg.com/power-assert-context-formatter/-/power-assert-context-formatter-1.1.1.tgz#edba352d3ed8a603114d667265acce60d689ccdf" 2093 | dependencies: 2094 | core-js "^2.0.0" 2095 | power-assert-context-traversal "^1.1.1" 2096 | 2097 | power-assert-context-reducer-ast@^1.0.7: 2098 | version "1.1.2" 2099 | resolved "https://registry.yarnpkg.com/power-assert-context-reducer-ast/-/power-assert-context-reducer-ast-1.1.2.tgz#484a99e26f4973ff8832e5c5cc756702e6094174" 2100 | dependencies: 2101 | acorn "^4.0.0" 2102 | acorn-es7-plugin "^1.0.12" 2103 | core-js "^2.0.0" 2104 | espurify "^1.6.0" 2105 | estraverse "^4.2.0" 2106 | 2107 | power-assert-context-traversal@^1.1.1: 2108 | version "1.1.1" 2109 | resolved "https://registry.yarnpkg.com/power-assert-context-traversal/-/power-assert-context-traversal-1.1.1.tgz#88cabca0d13b6359f07d3d3e8afa699264577ed9" 2110 | dependencies: 2111 | core-js "^2.0.0" 2112 | estraverse "^4.1.0" 2113 | 2114 | power-assert-formatter@^1.3.1: 2115 | version "1.4.1" 2116 | resolved "https://registry.yarnpkg.com/power-assert-formatter/-/power-assert-formatter-1.4.1.tgz#5dc125ed50a3dfb1dda26c19347f3bf58ec2884a" 2117 | dependencies: 2118 | core-js "^2.0.0" 2119 | power-assert-context-formatter "^1.0.7" 2120 | power-assert-context-reducer-ast "^1.0.7" 2121 | power-assert-renderer-assertion "^1.0.7" 2122 | power-assert-renderer-comparison "^1.0.7" 2123 | power-assert-renderer-diagram "^1.0.7" 2124 | power-assert-renderer-file "^1.0.7" 2125 | 2126 | power-assert-renderer-assertion@^1.0.7: 2127 | version "1.1.1" 2128 | resolved "https://registry.yarnpkg.com/power-assert-renderer-assertion/-/power-assert-renderer-assertion-1.1.1.tgz#cbfc0e77e0086a8f96af3f1d8e67b9ee7e28ce98" 2129 | dependencies: 2130 | power-assert-renderer-base "^1.1.1" 2131 | power-assert-util-string-width "^1.1.1" 2132 | 2133 | power-assert-renderer-base@^1.1.1: 2134 | version "1.1.1" 2135 | resolved "https://registry.yarnpkg.com/power-assert-renderer-base/-/power-assert-renderer-base-1.1.1.tgz#96a650c6fd05ee1bc1f66b54ad61442c8b3f63eb" 2136 | 2137 | power-assert-renderer-comparison@^1.0.7: 2138 | version "1.1.1" 2139 | resolved "https://registry.yarnpkg.com/power-assert-renderer-comparison/-/power-assert-renderer-comparison-1.1.1.tgz#d7439d97d85156be4e30a00f2fb5a72514ce3c08" 2140 | dependencies: 2141 | core-js "^2.0.0" 2142 | diff-match-patch "^1.0.0" 2143 | power-assert-renderer-base "^1.1.1" 2144 | stringifier "^1.3.0" 2145 | type-name "^2.0.1" 2146 | 2147 | power-assert-renderer-diagram@^1.0.7: 2148 | version "1.1.2" 2149 | resolved "https://registry.yarnpkg.com/power-assert-renderer-diagram/-/power-assert-renderer-diagram-1.1.2.tgz#655f8f711935a9b6d541b86327654717c637a986" 2150 | dependencies: 2151 | core-js "^2.0.0" 2152 | power-assert-renderer-base "^1.1.1" 2153 | power-assert-util-string-width "^1.1.1" 2154 | stringifier "^1.3.0" 2155 | 2156 | power-assert-renderer-file@^1.0.7: 2157 | version "1.1.1" 2158 | resolved "https://registry.yarnpkg.com/power-assert-renderer-file/-/power-assert-renderer-file-1.1.1.tgz#a37e2bbd178ccacd04e78dbb79c92fe34933c5e7" 2159 | dependencies: 2160 | power-assert-renderer-base "^1.1.1" 2161 | 2162 | power-assert-util-string-width@^1.1.1: 2163 | version "1.1.1" 2164 | resolved "https://registry.yarnpkg.com/power-assert-util-string-width/-/power-assert-util-string-width-1.1.1.tgz#be659eb7937fdd2e6c9a77268daaf64bd5b7c592" 2165 | dependencies: 2166 | eastasianwidth "^0.1.1" 2167 | 2168 | power-assert@^1.4.4: 2169 | version "1.4.4" 2170 | resolved "https://registry.yarnpkg.com/power-assert/-/power-assert-1.4.4.tgz#9295ea7437196f5a601fde420f042631186d7517" 2171 | dependencies: 2172 | define-properties "^1.1.2" 2173 | empower "^1.2.3" 2174 | power-assert-formatter "^1.3.1" 2175 | universal-deep-strict-equal "^1.2.1" 2176 | xtend "^4.0.0" 2177 | 2178 | process-nextick-args@~2.0.0: 2179 | version "2.0.0" 2180 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2181 | 2182 | protobufjs@^5.0.0: 2183 | version "5.0.2" 2184 | resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-5.0.2.tgz#59748d7dcf03d2db22c13da9feb024e16ab80c91" 2185 | dependencies: 2186 | ascli "~1" 2187 | bytebuffer "~5" 2188 | glob "^7.0.5" 2189 | yargs "^3.10.0" 2190 | 2191 | protobufjs@^6.8.0: 2192 | version "6.8.6" 2193 | resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.8.6.tgz#ce3cf4fff9625b62966c455fc4c15e4331a11ca2" 2194 | dependencies: 2195 | "@protobufjs/aspromise" "^1.1.2" 2196 | "@protobufjs/base64" "^1.1.2" 2197 | "@protobufjs/codegen" "^2.0.4" 2198 | "@protobufjs/eventemitter" "^1.1.0" 2199 | "@protobufjs/fetch" "^1.1.0" 2200 | "@protobufjs/float" "^1.0.2" 2201 | "@protobufjs/inquire" "^1.1.0" 2202 | "@protobufjs/path" "^1.1.2" 2203 | "@protobufjs/pool" "^1.1.0" 2204 | "@protobufjs/utf8" "^1.1.0" 2205 | "@types/long" "^3.0.32" 2206 | "@types/node" "^8.9.4" 2207 | long "^4.0.0" 2208 | 2209 | proxy-addr@~2.0.3: 2210 | version "2.0.3" 2211 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341" 2212 | dependencies: 2213 | forwarded "~0.1.2" 2214 | ipaddr.js "1.6.0" 2215 | 2216 | pseudomap@^1.0.2: 2217 | version "1.0.2" 2218 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2219 | 2220 | pump@^2.0.0: 2221 | version "2.0.1" 2222 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2223 | dependencies: 2224 | end-of-stream "^1.1.0" 2225 | once "^1.3.1" 2226 | 2227 | pumpify@^1.3.3: 2228 | version "1.4.0" 2229 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.4.0.tgz#80b7c5df7e24153d03f0e7ac8a05a5d068bd07fb" 2230 | dependencies: 2231 | duplexify "^3.5.3" 2232 | inherits "^2.0.3" 2233 | pump "^2.0.0" 2234 | 2235 | punycode@^1.4.1: 2236 | version "1.4.1" 2237 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2238 | 2239 | qs@6.5.1, qs@~6.5.1: 2240 | version "6.5.1" 2241 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 2242 | 2243 | qs@~6.4.0: 2244 | version "6.4.0" 2245 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2246 | 2247 | range-parser@~1.2.0: 2248 | version "1.2.0" 2249 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2250 | 2251 | raw-body@2.3.2: 2252 | version "2.3.2" 2253 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" 2254 | dependencies: 2255 | bytes "3.0.0" 2256 | http-errors "1.6.2" 2257 | iconv-lite "0.4.19" 2258 | unpipe "1.0.0" 2259 | 2260 | rc@^1.1.7: 2261 | version "1.2.6" 2262 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" 2263 | dependencies: 2264 | deep-extend "~0.4.0" 2265 | ini "~1.3.0" 2266 | minimist "^1.2.0" 2267 | strip-json-comments "~2.0.1" 2268 | 2269 | 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: 2270 | version "2.3.5" 2271 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" 2272 | dependencies: 2273 | core-util-is "~1.0.0" 2274 | inherits "~2.0.3" 2275 | isarray "~1.0.0" 2276 | process-nextick-args "~2.0.0" 2277 | safe-buffer "~5.1.1" 2278 | string_decoder "~1.0.3" 2279 | util-deprecate "~1.0.1" 2280 | 2281 | readable-stream@~1.0.32: 2282 | version "1.0.34" 2283 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2284 | dependencies: 2285 | core-util-is "~1.0.0" 2286 | inherits "~2.0.1" 2287 | isarray "0.0.1" 2288 | string_decoder "~0.10.x" 2289 | 2290 | regex-not@^1.0.0, regex-not@^1.0.2: 2291 | version "1.0.2" 2292 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2293 | dependencies: 2294 | extend-shallow "^3.0.2" 2295 | safe-regex "^1.1.0" 2296 | 2297 | repeat-element@^1.1.2: 2298 | version "1.1.2" 2299 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2300 | 2301 | repeat-string@^1.6.1: 2302 | version "1.6.1" 2303 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2304 | 2305 | request-promise-core@1.1.1: 2306 | version "1.1.1" 2307 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2308 | dependencies: 2309 | lodash "^4.13.1" 2310 | 2311 | request-promise@^4.2.1: 2312 | version "4.2.2" 2313 | resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.2.2.tgz#d1ea46d654a6ee4f8ee6a4fea1018c22911904b4" 2314 | dependencies: 2315 | bluebird "^3.5.0" 2316 | request-promise-core "1.1.1" 2317 | stealthy-require "^1.1.0" 2318 | tough-cookie ">=2.3.3" 2319 | 2320 | request@2.81.0: 2321 | version "2.81.0" 2322 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2323 | dependencies: 2324 | aws-sign2 "~0.6.0" 2325 | aws4 "^1.2.1" 2326 | caseless "~0.12.0" 2327 | combined-stream "~1.0.5" 2328 | extend "~3.0.0" 2329 | forever-agent "~0.6.1" 2330 | form-data "~2.1.1" 2331 | har-validator "~4.2.1" 2332 | hawk "~3.1.3" 2333 | http-signature "~1.1.0" 2334 | is-typedarray "~1.0.0" 2335 | isstream "~0.1.2" 2336 | json-stringify-safe "~5.0.1" 2337 | mime-types "~2.1.7" 2338 | oauth-sign "~0.8.1" 2339 | performance-now "^0.2.0" 2340 | qs "~6.4.0" 2341 | safe-buffer "^5.0.1" 2342 | stringstream "~0.0.4" 2343 | tough-cookie "~2.3.0" 2344 | tunnel-agent "^0.6.0" 2345 | uuid "^3.0.0" 2346 | 2347 | request@^2.79.0, request@^2.81.0, request@^2.83.0: 2348 | version "2.85.0" 2349 | resolved "https://registry.yarnpkg.com/request/-/request-2.85.0.tgz#5a03615a47c61420b3eb99b7dba204f83603e1fa" 2350 | dependencies: 2351 | aws-sign2 "~0.7.0" 2352 | aws4 "^1.6.0" 2353 | caseless "~0.12.0" 2354 | combined-stream "~1.0.5" 2355 | extend "~3.0.1" 2356 | forever-agent "~0.6.1" 2357 | form-data "~2.3.1" 2358 | har-validator "~5.0.3" 2359 | hawk "~6.0.2" 2360 | http-signature "~1.2.0" 2361 | is-typedarray "~1.0.0" 2362 | isstream "~0.1.2" 2363 | json-stringify-safe "~5.0.1" 2364 | mime-types "~2.1.17" 2365 | oauth-sign "~0.8.2" 2366 | performance-now "^2.1.0" 2367 | qs "~6.5.1" 2368 | safe-buffer "^5.1.1" 2369 | stringstream "~0.0.5" 2370 | tough-cookie "~2.3.3" 2371 | tunnel-agent "^0.6.0" 2372 | uuid "^3.1.0" 2373 | 2374 | resolve-url@^0.2.1: 2375 | version "0.2.1" 2376 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2377 | 2378 | resolve@^1.3.2: 2379 | version "1.6.0" 2380 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.6.0.tgz#0fbd21278b27b4004481c395349e7aba60a9ff5c" 2381 | dependencies: 2382 | path-parse "^1.0.5" 2383 | 2384 | ret@~0.1.10: 2385 | version "0.1.15" 2386 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2387 | 2388 | retry-axios@0.3.2, retry-axios@^0.3.2: 2389 | version "0.3.2" 2390 | resolved "https://registry.yarnpkg.com/retry-axios/-/retry-axios-0.3.2.tgz#5757c80f585b4cc4c4986aa2ffd47a60c6d35e13" 2391 | 2392 | retry-request@^3.0.0, retry-request@^3.3.1: 2393 | version "3.3.1" 2394 | resolved "https://registry.yarnpkg.com/retry-request/-/retry-request-3.3.1.tgz#fb71276235a617e97551e9be737ab5b91591fb9e" 2395 | dependencies: 2396 | request "^2.81.0" 2397 | through2 "^2.0.0" 2398 | 2399 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2400 | version "2.6.2" 2401 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2402 | dependencies: 2403 | glob "^7.0.5" 2404 | 2405 | 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: 2406 | version "5.1.1" 2407 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2408 | 2409 | safe-regex@^1.1.0: 2410 | version "1.1.0" 2411 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2412 | dependencies: 2413 | ret "~0.1.10" 2414 | 2415 | semver@^5.3.0: 2416 | version "5.5.0" 2417 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2418 | 2419 | send@0.16.2: 2420 | version "0.16.2" 2421 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" 2422 | dependencies: 2423 | debug "2.6.9" 2424 | depd "~1.1.2" 2425 | destroy "~1.0.4" 2426 | encodeurl "~1.0.2" 2427 | escape-html "~1.0.3" 2428 | etag "~1.8.1" 2429 | fresh "0.5.2" 2430 | http-errors "~1.6.2" 2431 | mime "1.4.1" 2432 | ms "2.0.0" 2433 | on-finished "~2.3.0" 2434 | range-parser "~1.2.0" 2435 | statuses "~1.4.0" 2436 | 2437 | serve-static@1.13.2: 2438 | version "1.13.2" 2439 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" 2440 | dependencies: 2441 | encodeurl "~1.0.2" 2442 | escape-html "~1.0.3" 2443 | parseurl "~1.3.2" 2444 | send "0.16.2" 2445 | 2446 | set-blocking@~2.0.0: 2447 | version "2.0.0" 2448 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2449 | 2450 | set-value@^0.4.3: 2451 | version "0.4.3" 2452 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2453 | dependencies: 2454 | extend-shallow "^2.0.1" 2455 | is-extendable "^0.1.1" 2456 | is-plain-object "^2.0.1" 2457 | to-object-path "^0.3.0" 2458 | 2459 | set-value@^2.0.0: 2460 | version "2.0.0" 2461 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2462 | dependencies: 2463 | extend-shallow "^2.0.1" 2464 | is-extendable "^0.1.1" 2465 | is-plain-object "^2.0.3" 2466 | split-string "^3.0.1" 2467 | 2468 | setprototypeof@1.0.3: 2469 | version "1.0.3" 2470 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 2471 | 2472 | setprototypeof@1.1.0: 2473 | version "1.1.0" 2474 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 2475 | 2476 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2477 | version "3.0.2" 2478 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2479 | 2480 | slash@^1.0.0: 2481 | version "1.0.0" 2482 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2483 | 2484 | snakeize@^0.1.0: 2485 | version "0.1.0" 2486 | resolved "https://registry.yarnpkg.com/snakeize/-/snakeize-0.1.0.tgz#10c088d8b58eb076b3229bb5a04e232ce126422d" 2487 | 2488 | snapdragon-node@^2.0.1: 2489 | version "2.1.1" 2490 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2491 | dependencies: 2492 | define-property "^1.0.0" 2493 | isobject "^3.0.0" 2494 | snapdragon-util "^3.0.1" 2495 | 2496 | snapdragon-util@^3.0.1: 2497 | version "3.0.1" 2498 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2499 | dependencies: 2500 | kind-of "^3.2.0" 2501 | 2502 | snapdragon@^0.8.1: 2503 | version "0.8.2" 2504 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2505 | dependencies: 2506 | base "^0.11.1" 2507 | debug "^2.2.0" 2508 | define-property "^0.2.5" 2509 | extend-shallow "^2.0.1" 2510 | map-cache "^0.2.2" 2511 | source-map "^0.5.6" 2512 | source-map-resolve "^0.5.0" 2513 | use "^3.1.0" 2514 | 2515 | sntp@1.x.x: 2516 | version "1.0.9" 2517 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2518 | dependencies: 2519 | hoek "2.x.x" 2520 | 2521 | sntp@2.x.x: 2522 | version "2.1.0" 2523 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 2524 | dependencies: 2525 | hoek "4.x.x" 2526 | 2527 | source-map-resolve@^0.5.0: 2528 | version "0.5.1" 2529 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.1.tgz#7ad0f593f2281598e854df80f19aae4b92d7a11a" 2530 | dependencies: 2531 | atob "^2.0.0" 2532 | decode-uri-component "^0.2.0" 2533 | resolve-url "^0.2.1" 2534 | source-map-url "^0.4.0" 2535 | urix "^0.1.0" 2536 | 2537 | source-map-support@^0.5.3: 2538 | version "0.5.4" 2539 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.4.tgz#54456efa89caa9270af7cd624cc2f123e51fbae8" 2540 | dependencies: 2541 | source-map "^0.6.0" 2542 | 2543 | source-map-url@^0.4.0: 2544 | version "0.4.0" 2545 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2546 | 2547 | source-map@^0.5.6: 2548 | version "0.5.7" 2549 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2550 | 2551 | source-map@^0.6.0: 2552 | version "0.6.1" 2553 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2554 | 2555 | split-array-stream@^1.0.0: 2556 | version "1.0.3" 2557 | resolved "https://registry.yarnpkg.com/split-array-stream/-/split-array-stream-1.0.3.tgz#d2b75a8e5e0d824d52fdec8b8225839dc2e35dfa" 2558 | dependencies: 2559 | async "^2.4.0" 2560 | is-stream-ended "^0.1.0" 2561 | 2562 | split-string@^3.0.1, split-string@^3.0.2: 2563 | version "3.1.0" 2564 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2565 | dependencies: 2566 | extend-shallow "^3.0.0" 2567 | 2568 | sprintf-js@~1.0.2: 2569 | version "1.0.3" 2570 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2571 | 2572 | sshpk@^1.7.0: 2573 | version "1.14.1" 2574 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 2575 | dependencies: 2576 | asn1 "~0.2.3" 2577 | assert-plus "^1.0.0" 2578 | dashdash "^1.12.0" 2579 | getpass "^0.1.1" 2580 | optionalDependencies: 2581 | bcrypt-pbkdf "^1.0.0" 2582 | ecc-jsbn "~0.1.1" 2583 | jsbn "~0.1.0" 2584 | tweetnacl "~0.14.0" 2585 | 2586 | static-extend@^0.1.1: 2587 | version "0.1.2" 2588 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2589 | dependencies: 2590 | define-property "^0.2.5" 2591 | object-copy "^0.1.0" 2592 | 2593 | "statuses@>= 1.3.1 < 2", statuses@~1.4.0: 2594 | version "1.4.0" 2595 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 2596 | 2597 | stealthy-require@^1.1.0: 2598 | version "1.1.1" 2599 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 2600 | 2601 | stream-events@^1.0.1: 2602 | version "1.0.2" 2603 | resolved "https://registry.yarnpkg.com/stream-events/-/stream-events-1.0.2.tgz#abf39f66c0890a4eb795bc8d5e859b2615b590b2" 2604 | dependencies: 2605 | stubs "^3.0.0" 2606 | 2607 | stream-shift@^1.0.0: 2608 | version "1.0.0" 2609 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 2610 | 2611 | string-format-obj@^1.0.0, string-format-obj@^1.1.0: 2612 | version "1.1.1" 2613 | resolved "https://registry.yarnpkg.com/string-format-obj/-/string-format-obj-1.1.1.tgz#c7612ca4e2ad923812a81db192dc291850aa1f65" 2614 | 2615 | string-width@^1.0.1, string-width@^1.0.2: 2616 | version "1.0.2" 2617 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2618 | dependencies: 2619 | code-point-at "^1.0.0" 2620 | is-fullwidth-code-point "^1.0.0" 2621 | strip-ansi "^3.0.0" 2622 | 2623 | string_decoder@~0.10.x: 2624 | version "0.10.31" 2625 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2626 | 2627 | string_decoder@~1.0.3: 2628 | version "1.0.3" 2629 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2630 | dependencies: 2631 | safe-buffer "~5.1.0" 2632 | 2633 | stringifier@^1.3.0: 2634 | version "1.3.0" 2635 | resolved "https://registry.yarnpkg.com/stringifier/-/stringifier-1.3.0.tgz#def18342f6933db0f2dbfc9aa02175b448c17959" 2636 | dependencies: 2637 | core-js "^2.0.0" 2638 | traverse "^0.6.6" 2639 | type-name "^2.0.1" 2640 | 2641 | stringstream@~0.0.4, stringstream@~0.0.5: 2642 | version "0.0.5" 2643 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2644 | 2645 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2646 | version "3.0.1" 2647 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2648 | dependencies: 2649 | ansi-regex "^2.0.0" 2650 | 2651 | strip-json-comments@~2.0.1: 2652 | version "2.0.1" 2653 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2654 | 2655 | stubs@^3.0.0: 2656 | version "3.0.0" 2657 | resolved "https://registry.yarnpkg.com/stubs/-/stubs-3.0.0.tgz#e8d2ba1fa9c90570303c030b6900f7d5f89abe5b" 2658 | 2659 | supports-color@^2.0.0: 2660 | version "2.0.0" 2661 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2662 | 2663 | supports-color@^5.3.0: 2664 | version "5.3.0" 2665 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" 2666 | dependencies: 2667 | has-flag "^3.0.0" 2668 | 2669 | tar-pack@^3.4.0: 2670 | version "3.4.1" 2671 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2672 | dependencies: 2673 | debug "^2.2.0" 2674 | fstream "^1.0.10" 2675 | fstream-ignore "^1.0.5" 2676 | once "^1.3.3" 2677 | readable-stream "^2.1.4" 2678 | rimraf "^2.5.1" 2679 | tar "^2.2.1" 2680 | uid-number "^0.0.6" 2681 | 2682 | tar@^2.2.1: 2683 | version "2.2.1" 2684 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2685 | dependencies: 2686 | block-stream "*" 2687 | fstream "^1.0.2" 2688 | inherits "2" 2689 | 2690 | through2@^2.0.0, through2@^2.0.3: 2691 | version "2.0.3" 2692 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2693 | dependencies: 2694 | readable-stream "^2.1.5" 2695 | xtend "~4.0.1" 2696 | 2697 | to-object-path@^0.3.0: 2698 | version "0.3.0" 2699 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2700 | dependencies: 2701 | kind-of "^3.0.2" 2702 | 2703 | to-regex-range@^2.1.0: 2704 | version "2.1.1" 2705 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2706 | dependencies: 2707 | is-number "^3.0.0" 2708 | repeat-string "^1.6.1" 2709 | 2710 | to-regex@^3.0.1: 2711 | version "3.0.2" 2712 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2713 | dependencies: 2714 | define-property "^2.0.2" 2715 | extend-shallow "^3.0.2" 2716 | regex-not "^1.0.2" 2717 | safe-regex "^1.1.0" 2718 | 2719 | tough-cookie@>=2.3.3, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 2720 | version "2.3.4" 2721 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 2722 | dependencies: 2723 | punycode "^1.4.1" 2724 | 2725 | traverse@^0.6.6: 2726 | version "0.6.6" 2727 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 2728 | 2729 | ts-node@^5.0.0: 2730 | version "5.0.1" 2731 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-5.0.1.tgz#78e5d1cb3f704de1b641e43b76be2d4094f06f81" 2732 | dependencies: 2733 | arrify "^1.0.0" 2734 | chalk "^2.3.0" 2735 | diff "^3.1.0" 2736 | make-error "^1.1.1" 2737 | minimist "^1.2.0" 2738 | mkdirp "^0.5.1" 2739 | source-map-support "^0.5.3" 2740 | yn "^2.0.0" 2741 | 2742 | tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0: 2743 | version "1.9.0" 2744 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" 2745 | 2746 | tslint@^5.9.1: 2747 | version "5.9.1" 2748 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.9.1.tgz#1255f87a3ff57eb0b0e1f0e610a8b4748046c9ae" 2749 | dependencies: 2750 | babel-code-frame "^6.22.0" 2751 | builtin-modules "^1.1.1" 2752 | chalk "^2.3.0" 2753 | commander "^2.12.1" 2754 | diff "^3.2.0" 2755 | glob "^7.1.1" 2756 | js-yaml "^3.7.0" 2757 | minimatch "^3.0.4" 2758 | resolve "^1.3.2" 2759 | semver "^5.3.0" 2760 | tslib "^1.8.0" 2761 | tsutils "^2.12.1" 2762 | 2763 | tsutils@^2.12.1: 2764 | version "2.22.2" 2765 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.22.2.tgz#0b9f3d87aa3eb95bd32d26ce2b88aa329a657951" 2766 | dependencies: 2767 | tslib "^1.8.1" 2768 | 2769 | tunnel-agent@^0.6.0: 2770 | version "0.6.0" 2771 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2772 | dependencies: 2773 | safe-buffer "^5.0.1" 2774 | 2775 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2776 | version "0.14.5" 2777 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2778 | 2779 | type-is@~1.6.15, type-is@~1.6.16: 2780 | version "1.6.16" 2781 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194" 2782 | dependencies: 2783 | media-typer "0.3.0" 2784 | mime-types "~2.1.18" 2785 | 2786 | type-name@^2.0.1: 2787 | version "2.0.2" 2788 | resolved "https://registry.yarnpkg.com/type-name/-/type-name-2.0.2.tgz#efe7d4123d8ac52afff7f40c7e4dec5266008fb4" 2789 | 2790 | typedarray@^0.0.6: 2791 | version "0.0.6" 2792 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2793 | 2794 | typescript@^2.7.2: 2795 | version "2.7.2" 2796 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.7.2.tgz#2d615a1ef4aee4f574425cdff7026edf81919836" 2797 | 2798 | uid-number@^0.0.6: 2799 | version "0.0.6" 2800 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2801 | 2802 | union-value@^1.0.0: 2803 | version "1.0.0" 2804 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 2805 | dependencies: 2806 | arr-union "^3.1.0" 2807 | get-value "^2.0.6" 2808 | is-extendable "^0.1.1" 2809 | set-value "^0.4.3" 2810 | 2811 | unique-string@^1.0.0: 2812 | version "1.0.0" 2813 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 2814 | dependencies: 2815 | crypto-random-string "^1.0.0" 2816 | 2817 | universal-deep-strict-equal@^1.2.1: 2818 | version "1.2.2" 2819 | resolved "https://registry.yarnpkg.com/universal-deep-strict-equal/-/universal-deep-strict-equal-1.2.2.tgz#0da4ac2f73cff7924c81fa4de018ca562ca2b0a7" 2820 | dependencies: 2821 | array-filter "^1.0.0" 2822 | indexof "0.0.1" 2823 | object-keys "^1.0.0" 2824 | 2825 | unpipe@1.0.0, unpipe@~1.0.0: 2826 | version "1.0.0" 2827 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2828 | 2829 | unset-value@^1.0.0: 2830 | version "1.0.0" 2831 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 2832 | dependencies: 2833 | has-value "^0.3.1" 2834 | isobject "^3.0.0" 2835 | 2836 | urix@^0.1.0: 2837 | version "0.1.0" 2838 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2839 | 2840 | use@^3.1.0: 2841 | version "3.1.0" 2842 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 2843 | dependencies: 2844 | kind-of "^6.0.2" 2845 | 2846 | util-deprecate@~1.0.1: 2847 | version "1.0.2" 2848 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2849 | 2850 | utils-merge@1.0.1: 2851 | version "1.0.1" 2852 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 2853 | 2854 | uuid@^3.0.0, uuid@^3.1.0: 2855 | version "3.2.1" 2856 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 2857 | 2858 | validator@^8.0.0: 2859 | version "8.2.0" 2860 | resolved "https://registry.yarnpkg.com/validator/-/validator-8.2.0.tgz#3c1237290e37092355344fef78c231249dab77b9" 2861 | 2862 | vary@~1.1.2: 2863 | version "1.1.2" 2864 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 2865 | 2866 | verror@1.10.0: 2867 | version "1.10.0" 2868 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2869 | dependencies: 2870 | assert-plus "^1.0.0" 2871 | core-util-is "1.0.2" 2872 | extsprintf "^1.2.0" 2873 | 2874 | websocket-driver@>=0.5.1: 2875 | version "0.7.0" 2876 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" 2877 | dependencies: 2878 | http-parser-js ">=0.4.0" 2879 | websocket-extensions ">=0.1.1" 2880 | 2881 | websocket-extensions@>=0.1.1: 2882 | version "0.1.3" 2883 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" 2884 | 2885 | wide-align@^1.1.0: 2886 | version "1.1.2" 2887 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2888 | dependencies: 2889 | string-width "^1.0.2" 2890 | 2891 | window-size@^0.1.4: 2892 | version "0.1.4" 2893 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 2894 | 2895 | wrap-ansi@^2.0.0: 2896 | version "2.1.0" 2897 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2898 | dependencies: 2899 | string-width "^1.0.1" 2900 | strip-ansi "^3.0.1" 2901 | 2902 | wrappy@1: 2903 | version "1.0.2" 2904 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2905 | 2906 | write-file-atomic@^2.0.0: 2907 | version "2.3.0" 2908 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2909 | dependencies: 2910 | graceful-fs "^4.1.11" 2911 | imurmurhash "^0.1.4" 2912 | signal-exit "^3.0.2" 2913 | 2914 | xdg-basedir@^3.0.0: 2915 | version "3.0.0" 2916 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 2917 | 2918 | xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 2919 | version "4.0.1" 2920 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2921 | 2922 | y18n@^3.2.0: 2923 | version "3.2.1" 2924 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2925 | 2926 | yallist@^2.1.2: 2927 | version "2.1.2" 2928 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2929 | 2930 | yargs@^3.10.0: 2931 | version "3.32.0" 2932 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" 2933 | dependencies: 2934 | camelcase "^2.0.1" 2935 | cliui "^3.0.3" 2936 | decamelize "^1.1.1" 2937 | os-locale "^1.4.0" 2938 | string-width "^1.0.1" 2939 | window-size "^0.1.4" 2940 | y18n "^3.2.0" 2941 | 2942 | yn@^2.0.0: 2943 | version "2.0.0" 2944 | resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" 2945 | --------------------------------------------------------------------------------