├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── Dockerfile ├── README.md ├── boilerplate ├── app.js ├── builders │ └── service.js ├── database.js ├── middlewares │ └── parse-token.js ├── models │ └── user.js ├── server.js ├── services │ ├── auth.js │ └── users.js └── utils │ ├── error-handler.js │ ├── http-error.js │ ├── next-async.js │ ├── password.js │ ├── response-handler.js │ └── token.js ├── package.json ├── src ├── config.js ├── middlewares │ └── index.js ├── models │ ├── index.js │ └── todo.js └── services │ ├── index.js │ └── todos.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "latest", 4 | "stage-0" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 2 7 | indent_style = space 8 | max_line_length = 80 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = 0 13 | trim_trailing_whitespace = false 14 | 15 | [COMMIT_EDITMSG] 16 | max_line_length = 0 17 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | build/** 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "es6": true, 4 | "node": true, 5 | "mocha": true 6 | }, 7 | "preset": "eslint:recommended", 8 | "parser": "babel-eslint", 9 | "parserOptions": { 10 | "sourceType": "module" 11 | }, 12 | "rules": { 13 | "no-console": 0, 14 | "indent": [ 15 | "error", 16 | 2 17 | ], 18 | "quotes": [ 19 | "error", 20 | "single" 21 | ], 22 | "semi": [ 23 | "error", 24 | "never" 25 | ] 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log 5 | npm-debug.log-* 6 | 7 | # Runtime data 8 | pids 9 | *.pid 10 | *.seed 11 | *.pid.lock 12 | 13 | # Directory for instrumented libs generated by jscoverage/JSCover 14 | lib-cov 15 | 16 | # Coverage directory used by tools like istanbul 17 | coverage 18 | 19 | # nyc test coverage 20 | .nyc_output 21 | 22 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 23 | .grunt 24 | 25 | # node-waf configuration 26 | .lock-wscript 27 | 28 | # Compiled binary addons (http://nodejs.org/api/addons.html) 29 | build/Release 30 | 31 | # Compiled files 32 | build/ 33 | 34 | # Dependency directories 35 | node_modules 36 | jspm_packages 37 | 38 | # Optional npm cache directory 39 | .npm 40 | 41 | # Optional eslint cache 42 | .eslintcache 43 | 44 | # Optional REPL history 45 | .node_repl_history 46 | 47 | # Output of 'npm pack' 48 | *.tgz 49 | 50 | # Yarn Integrity file 51 | .yarn-integrity 52 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM cusspvz/node:onbuild 2 | MAINTAINER José Moreira 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # rethink-express-api-boilerplate 2 | 3 | Another API boilerplate, based on express and rethinkdb backend. 4 | 5 | ![my api would stay up](https://cloud.githubusercontent.com/assets/3604053/23471562/b069515c-fea1-11e6-944d-06da4b318fe0.jpg) 6 | 7 | Includes: 8 | 9 | * Async/Promise methods into express (avoid `next()` callback hell) 10 | * Service generator with support for hooks and custom methods (see [todo](https://github.com/cusspvz/rethinkdb-express-api-boilerplate/blob/master/src/services/todos.js) example) 11 | * Model generator (see [todo](https://github.com/cusspvz/rethinkdb-express-api-boilerplate/blob/master/src/models/todo.js) example) 12 | * JWT-based Auth Service 13 | * Docker build image 14 | * User Service 15 | 16 | 17 | Uses: 18 | 19 | * Express 20 | * RethinkDB 21 | * Babel latest preset (ES6, ES2015, ES2016, ES2017) + stage-0 22 | * [cusspvz/node.docker](https://github.com/cusspvz/node.docker) 23 | 24 | ## Requirements 25 | 26 | * Node.JS 27 | * Yarn / NPM 28 | * RethinkDB service 29 | 30 | ## Instalation 31 | 32 | ```bash 33 | git clone https://github.com/cusspvz/rethinkdb-express-api-boilerplate my-api 34 | cd my-api 35 | yarn install # or: npm install 36 | ``` 37 | 38 | ## Development 39 | 40 | ```bash 41 | yarn run dev # or: npm run dev 42 | ``` 43 | 44 | ## Updating 45 | 46 | **Just place a new copy of the `boilerplate/` folder on your project** 47 | 48 | ![for real?](https://cloud.githubusercontent.com/assets/3604053/23471880/c74a5852-fea2-11e6-8c0e-d81c00fd0844.jpg) 49 | 50 | And, of course, adjust dependencies on your `package.json`. 51 | 52 | ## Building 53 | 54 | ``` 55 | npm run build 56 | ``` 57 | 58 | ## Docker image 59 | 60 | ### Building 61 | ``` 62 | docker run build -t your-username/my-webapp . 63 | ``` 64 | 65 | ### Publishing 66 | ``` 67 | docker push your-username/my-webapp 68 | ``` 69 | -------------------------------------------------------------------------------- /boilerplate/app.js: -------------------------------------------------------------------------------- 1 | import express from 'express' 2 | import bodyParser from 'body-parser' 3 | import helmet from 'helmet' 4 | import morgan from 'morgan' 5 | import responseHandler from './utils/response-handler' 6 | import errorHandler from './utils/error-handler' 7 | import nextAsync from './utils/next-async' 8 | import { API_CORS } from '../src/config' 9 | 10 | const app = express() 11 | export default app 12 | 13 | app.use(bodyParser.json()) 14 | app.use(morgan()) 15 | app.use(helmet()) 16 | 17 | import cors from 'cors' 18 | if ( API_CORS ) { 19 | app.use(cors(typeof API_CORS == 'object' ? API_CORS : {})) 20 | } 21 | 22 | 23 | // load up middlewares 24 | import * as middlewares from '../src/middlewares' 25 | for( let name in middlewares ) { 26 | let middleware = middlewares[name] 27 | if ( typeof middleware == 'function' ) { 28 | app.use( nextAsync( middleware ) ) 29 | } 30 | } 31 | 32 | // load up services 33 | import * as services from '../src/services' 34 | for( let name in services ) { 35 | const service = services[name] 36 | if ( service && service.setup ) { 37 | service.setup( app ) 38 | } 39 | } 40 | 41 | // Handlers 42 | app.use(responseHandler) 43 | app.use(errorHandler) 44 | -------------------------------------------------------------------------------- /boilerplate/builders/service.js: -------------------------------------------------------------------------------- 1 | import HttpError from '../utils/http-error' 2 | import { Router } from 'express' 3 | import nextAsync from '../utils/next-async' 4 | 5 | const DEFAULT_OPTIONS = { 6 | model: undefined, 7 | } 8 | 9 | const METHODS = [ 'all', 'options', 'get', 'put', 'post', 'delete' ] 10 | 11 | export default class Service { 12 | 13 | constructor ( options ) { 14 | options = this.options = { ...DEFAULT_OPTIONS, ...options } 15 | 16 | const { model, endpoint } = options 17 | 18 | if ( ! endpoint ) { 19 | throw new Error('An endpoint is needed') 20 | } 21 | 22 | if ( model ) { 23 | this.model = model 24 | } 25 | 26 | if ( typeof options.custom == 'object' ) { 27 | for ( let name in options.custom ) { 28 | // if ( typeof options.custom[name] == 'function' ) { 29 | this[name] = options.custom[name] 30 | // } 31 | } 32 | } 33 | 34 | this.hooks = typeof options.hooks == 'object' && options.hooks || {} 35 | this.middlewares = typeof options.middlewares == 'object' && options.middlewares || [] 36 | } 37 | 38 | // Begin of default methods 39 | 40 | 'GET /' = async ( /* req */ ) => { 41 | const { model } = this 42 | 43 | // TODO: 44 | // - Handle pagination? 45 | // - Handle sorting? 46 | // - Handle search? 47 | 48 | return await model.getAll() 49 | } 50 | 51 | 'POST /' = async ( req, res ) => { 52 | const { body } = req 53 | const { model, hook } = this 54 | 55 | await hook( 'before create write', req, body ) 56 | const obj = new model(body) 57 | await obj.save() 58 | await hook( 'after create write', req, obj, body ) 59 | 60 | res.status( 201 ) 61 | return obj 62 | } 63 | 64 | 'GET /:id' = async ( req ) => { 65 | const { params: { id } } = req 66 | const { model, hook } = this 67 | let obj 68 | 69 | await hook( 'before get read', req, id ) 70 | try { 71 | obj = await model.get( id ) 72 | } catch (e) { 73 | obj = null 74 | } 75 | await hook( 'after get read', req, id, obj ) 76 | 77 | if ( ! obj ) { 78 | throw new HttpError( 404, 'Not found' ) 79 | } 80 | 81 | return obj 82 | } 83 | 84 | 'PUT /:id' = async ( req ) => { 85 | const { params: { id }, body } = req 86 | const { model, hook } = this 87 | let obj 88 | 89 | if ( typeof body != 'object' || Object.keys(body).length === 0 ) { 90 | throw new HttpError('400', 'Bad Request') 91 | } 92 | 93 | await hook( 'before update read', req, id ) 94 | try { 95 | obj = await model.get( id ) 96 | } catch (e) { 97 | obj = null 98 | } 99 | await hook( 'after update read', req, obj ) 100 | 101 | if ( ! obj ) { 102 | throw new HttpError( 404, 'Not found' ) 103 | } 104 | 105 | obj.merge( body ) 106 | 107 | await hook( 'before update validate', req, id, obj, body ) /* req, id, current, changes */ 108 | await obj.validate() 109 | await hook( 'after update validate', req, obj, body ) /* req, id, current, changed */ 110 | 111 | 112 | await hook( 'before update write', req, id, obj, body ) /* req, id, current, changes */ 113 | await obj.save() 114 | await hook( 'after update write', req, obj, body ) /* req, id, current, changed */ 115 | 116 | return obj 117 | } 118 | 119 | 'DELETE /:id' = async ( req ) => { 120 | const { params: { id } } = req 121 | const { model, hook } = this 122 | let obj 123 | 124 | await hook( 'before delete read', req, id ) 125 | try { 126 | obj = await model.get( id ) 127 | } catch (e) { 128 | obj = null 129 | } 130 | await hook( 'after delete read', req, obj ) 131 | 132 | if ( ! obj ) { 133 | throw new HttpError( 404, 'Not found' ) 134 | } 135 | 136 | await hook( 'before delete write', req ) 137 | await model.remove( id ) 138 | await hook( 'after delete write', req ) 139 | 140 | } 141 | 142 | // End of default methods 143 | 144 | hook = async ( hk, ...args ) => { 145 | const { hooks } = this 146 | 147 | if ( hooks && typeof hooks[hk] == 'function' ) { 148 | await hooks[hk].apply( this, args ) 149 | } 150 | 151 | // Save it for later, to allow multiple hooks 152 | // for ( let hookName in hooks ) { 153 | // if ( hookName !== hk ) continue 154 | // 155 | // await hooks[hookName].apply( this, args ) 156 | // } 157 | } 158 | 159 | setup ( app ) { 160 | const { options: { endpoint }, middlewares } = this 161 | 162 | if ( this.router ) { 163 | throw new Error( 'Service was already configured' ) 164 | } 165 | 166 | const router = this.router = new Router() 167 | 168 | for ( let middleware of middlewares ) { 169 | router.use( nextAsync( middleware ) ) 170 | } 171 | 172 | for ( let methodName in this ) { 173 | if ( typeof this[methodName] != 'function' ) { 174 | continue 175 | } 176 | 177 | const methodAPI = methodName.split(' ') 178 | 179 | if ( methodAPI.length < 2 ) { 180 | continue 181 | } 182 | 183 | const method = methodAPI.splice(0,1)[0].toLowerCase() 184 | 185 | if ( ! METHODS.includes( method ) ) { 186 | continue 187 | } 188 | 189 | const path = methodAPI.splice(0,1)[0] 190 | 191 | console.log( `[${endpoint}] - setting up: ${method} ${path}`) 192 | router[method].call( router, path, 193 | nextAsync( this[methodName].bind( this ) ) 194 | ) 195 | } 196 | 197 | app.use( endpoint, router ) 198 | 199 | console.log( `[${endpoint}] - setup completed` ) 200 | } 201 | } 202 | -------------------------------------------------------------------------------- /boilerplate/database.js: -------------------------------------------------------------------------------- 1 | import Thinky from 'thinky' 2 | import { DB_HOST, DB_PORT, DB_NAME, DB_USER, DB_PASS } from '../src/config' 3 | const { env } = process 4 | 5 | export const thinky = Thinky({ 6 | host: DB_HOST, 7 | port: DB_PORT, 8 | db: DB_NAME + (env.NODE_ENV === 'test' ? '-test' : ''), 9 | 10 | user: DB_USER, 11 | password: DB_PASS, 12 | }) 13 | 14 | export const ready = thinky.dbReady() 15 | export const r = thinky.r 16 | export const type = thinky.type 17 | 18 | export default thinky 19 | -------------------------------------------------------------------------------- /boilerplate/middlewares/parse-token.js: -------------------------------------------------------------------------------- 1 | import HttpError from '../utils/http-error' 2 | import { JWT_AUTHORIZATION_REGEXP, decodeToken } from '../utils/token' 3 | 4 | export default async (req) => { 5 | const { headers: { authorization }, query: { auth_token } } = req 6 | let token, payload 7 | 8 | if ( authorization && authorization.match( JWT_AUTHORIZATION_REGEXP ) ) { 9 | token = authorization.split(' ',2)[1] 10 | } else if ( auth_token ) { 11 | token = auth_token 12 | } 13 | 14 | if ( ! token ) { 15 | throw new HttpError( 401, 'Please add auth_token query variable to your request, or Authorization JWT header' ) 16 | } 17 | 18 | try { 19 | payload = await decodeToken( token ) 20 | } catch ( e ) { 21 | throw new HttpError( 403, 'Invalid token' ) 22 | } 23 | 24 | req.token = token 25 | req.user_id = payload.user 26 | req.client_id = payload.client 27 | } 28 | -------------------------------------------------------------------------------- /boilerplate/models/user.js: -------------------------------------------------------------------------------- 1 | import { thinky, type, r } from '../database' 2 | 3 | export const User = thinky.createModel( 4 | 'User', 5 | { 6 | id: type.string().uuid(4), 7 | name: type.string().max(255), 8 | email: { 9 | address: type.string().email(), 10 | verified: type.boolean().default( false ), 11 | }, 12 | birthdate: type.date(), 13 | auth: { 14 | password: type.string(), 15 | facebook: type.string(), 16 | google: type.string(), 17 | }, 18 | createdAt: type.date().default(r.now()) 19 | } 20 | ) 21 | 22 | export default User 23 | 24 | User.getByEmail = async function ( email ) { 25 | const table = this.getTableName() 26 | 27 | const users = await this.filter(r.row('email')('address').eq(email)).run() 28 | 29 | if(users.length) 30 | return users[0] 31 | return null 32 | } 33 | -------------------------------------------------------------------------------- /boilerplate/server.js: -------------------------------------------------------------------------------- 1 | import app from './app' 2 | import { API_PORT } from '../src/config' 3 | 4 | export default app.listen(API_PORT, () => { 5 | console.log('Listening on port ' + API_PORT) 6 | }) 7 | -------------------------------------------------------------------------------- /boilerplate/services/auth.js: -------------------------------------------------------------------------------- 1 | import EmailValidator from 'email-validator' 2 | import { User } from '../../src/models' 3 | import Service from '../builders/service' 4 | import HttpError from '../utils/http-error' 5 | import { authenticatePassword, hashPassword } from '../utils/password' 6 | import { generateTokens } from '../utils/token' 7 | import uuid from 'uuid/v4' 8 | 9 | export const Auth = new Service({ 10 | endpoint: '/auth', 11 | custom: { 12 | 'POST /register': async function (req) { 13 | let { body: { email, password, name, client_id } } = req 14 | 15 | if (! email || ! EmailValidator.validate(email)) { 16 | throw new HttpError(400, 'Invalid email address') 17 | } 18 | 19 | if (! password || typeof password != 'string' || ! password.trim()) { 20 | throw new HttpError(400, 'Empty password') 21 | } else { 22 | password = password.trim() 23 | } 24 | 25 | if (! name) { 26 | throw new HttpError(400, 'Invalid name') 27 | } 28 | 29 | if (await User.getByEmail(email)) { 30 | throw new HttpError(400, 'Email already in use') 31 | } 32 | 33 | if (! client_id) { 34 | client_id = uuid() 35 | } 36 | 37 | // create user 38 | const user = new User({ 39 | ...req.body, 40 | auth: { password: hashPassword( password ) }, 41 | email: { address: email, verified: false }, 42 | }) 43 | 44 | await user.save() 45 | 46 | // generate tokens 47 | const tokens = await generateTokens(user.id, client_id) 48 | 49 | return { user_id: user.id, client_id, tokens } 50 | }, 51 | 52 | 'POST /recover': async function (req) { 53 | const { body: { id, email, token, new_password } } = req 54 | let user = null 55 | 56 | if ( id ) { 57 | try { 58 | user = await User.get( id ) 59 | } catch ( e ) {} 60 | } 61 | 62 | if ( ! user && email ) { 63 | try { 64 | user = await User.getByEmail(email) 65 | } catch ( e ) {} 66 | } 67 | 68 | if ( ! user ) { 69 | throw new HttpError(400, 'Unable to identify user') 70 | } 71 | 72 | // TODO : add token generator 73 | }, 74 | 75 | 'POST /login': async function (req) { 76 | let { body: { client_id, email, password } } = req 77 | 78 | if (! email || ! EmailValidator.validate(email)) { 79 | throw new HttpError(400, 'Invalid email address') 80 | } 81 | 82 | if (! password || typeof password != 'string' || ! password.trim()) { 83 | throw new HttpError(400, 'Empty password') 84 | } else { 85 | password = password.trim() 86 | } 87 | 88 | if (! client_id) { 89 | client_id = uuid() 90 | } 91 | 92 | try { 93 | const user = await User.getByEmail(email) 94 | 95 | if ( ! user ) { 96 | throw null 97 | } 98 | 99 | if (! await authenticatePassword(password, user.auth.password)) { 100 | throw null 101 | } 102 | 103 | const tokens = await generateTokens(user.id, client_id) 104 | 105 | return { user_id: user.id, client_id, tokens } 106 | } catch(err) { 107 | throw new HttpError(403, 'Invalid email/password combination') 108 | } 109 | }, 110 | 111 | // Disable default methods 112 | 'POST /': false, 113 | 'GET /': false, 114 | 'GET /:id': false, 115 | 'PUT /:id': false, 116 | 'DELETE /:id': false, 117 | } 118 | }) 119 | 120 | export default Auth 121 | -------------------------------------------------------------------------------- /boilerplate/services/users.js: -------------------------------------------------------------------------------- 1 | import { User } from '../../src/models' 2 | import Service from '../builders/service' 3 | import HttpError from '../utils/http-error' 4 | import parseToken from '../middlewares/parse-token' 5 | 6 | 7 | export const Users = new Service({ 8 | model: User, 9 | endpoint: '/users', 10 | hooks: { 11 | 'after get read' (req, id, data) { 12 | delete data.password 13 | } 14 | }, 15 | middlewares: [ parseToken ], 16 | custom: { 17 | // Disallow REST CREATE - POST /users - Users should be created trough 'POST /auth' 18 | async 'POST /' () { 19 | throw new HttpError(401, 'Not allowed, please use /auth/register endpoint for user registration') 20 | } 21 | } 22 | }) 23 | 24 | export default Users 25 | -------------------------------------------------------------------------------- /boilerplate/utils/error-handler.js: -------------------------------------------------------------------------------- 1 | import HttpError from './http-error' 2 | 3 | export default ( err, req, res, next ) => { 4 | let retErr 5 | if (process.env.NODE_ENV === 'development' || process.env.NODE_ENV === 'test') { 6 | console.error(err && err.stack) 7 | } else if (!err.code || err.code === 500) { 8 | // TODO: trigger some sort of reporting mechanism 9 | } 10 | 11 | if ( ! ( err instanceof HttpError ) ) { 12 | retErr = new HttpError( 500, 'Internal Server Error' ) 13 | retErr.parent = err 14 | } else { 15 | retErr = err 16 | } 17 | 18 | res.status(retErr.code).send({ 19 | message: retErr.message 20 | }) 21 | } 22 | -------------------------------------------------------------------------------- /boilerplate/utils/http-error.js: -------------------------------------------------------------------------------- 1 | function HttpError ( code = 500, message = 'Internal Server Error' ) { 2 | if ( typeof code == 'string' ) { 3 | message = code 4 | code = 500 5 | } 6 | 7 | this.code = code 8 | this.message = message 9 | this.stack = (new Error( message )).stack.replace(/^Error/,'HttpError') 10 | 11 | } 12 | 13 | HttpError.prototype = Object.create( Error.prototype ) 14 | 15 | export default HttpError 16 | -------------------------------------------------------------------------------- /boilerplate/utils/next-async.js: -------------------------------------------------------------------------------- 1 | import HttpError from './http-error' 2 | 3 | export default ( method ) => ( 4 | async ( req, res, next ) => { 5 | let next_called = false 6 | let data 7 | 8 | try { 9 | data = await method( req, res, ( data ) => { 10 | next_called = true 11 | 12 | res.last_data = data 13 | next() 14 | }) 15 | } catch ( err ) { 16 | 17 | // In case it is an httpError as we are expecting it to be 18 | if ( err instanceof HttpError ) { 19 | next( err ) 20 | 21 | // In case error isnt httpError 22 | } else { 23 | // Show it on development 24 | if ( process.env.NODE_ENV === 'development' || process.env.NODE_ENV === 'test' ) { 25 | next( err ) 26 | } else { 27 | // but don't on other envs 28 | next( new HttpError() ) 29 | } 30 | } 31 | 32 | return 33 | } 34 | 35 | if ( ! next_called ) { 36 | res.last_data = data 37 | next() 38 | } 39 | } 40 | ) 41 | -------------------------------------------------------------------------------- /boilerplate/utils/password.js: -------------------------------------------------------------------------------- 1 | import bcrypt from 'bcrypt' 2 | 3 | export function hashPassword ( password ) { 4 | const salt = bcrypt.genSaltSync() 5 | return bcrypt.hashSync( password, salt ) 6 | } 7 | 8 | export function authenticatePassword ( password, hashed ) { 9 | return bcrypt.compareSync( password, hashed ) 10 | } 11 | -------------------------------------------------------------------------------- /boilerplate/utils/response-handler.js: -------------------------------------------------------------------------------- 1 | import HttpError from './http-error' 2 | 3 | export default ( req, res /*, next*/ ) => { 4 | 5 | if( res.last_data ) { 6 | return res.send( res.last_data ) 7 | } 8 | 9 | throw new HttpError(404, 'Endpoint not found') 10 | } 11 | -------------------------------------------------------------------------------- /boilerplate/utils/token.js: -------------------------------------------------------------------------------- 1 | import jwt from 'jsonwebtoken' 2 | import Promise from 'bluebird' 3 | import { JWT_SECRET, JWT_ALGORITHM, JWT_ACCESS_VALIDITY, JWT_REFRESH_VALIDITY } from '../../src/config' 4 | import { User } from '../../src/models' 5 | 6 | const options = { 7 | algorithm: JWT_ALGORITHM, 8 | expiresIn: JWT_ACCESS_VALIDITY 9 | } 10 | 11 | export const JWT_AUTHORIZATION_REGEXP = /^JWT [0-9a-zA-Z\-\_]+\.[0-9a-zA-Z\-\_]+\.[0-9a-zA-Z\-\_]+$/ 12 | 13 | export async function decodeToken (token) { 14 | return jwt.verify(token, JWT_SECRET) 15 | } 16 | 17 | export async function generateTokens (user, client) { 18 | const access = await generateAccessToken(user, client) 19 | const refresh = await generateRefreshToken(user, client) 20 | 21 | return {access, refresh} 22 | } 23 | 24 | export async function renewAccessToken (refresh, rcvdClient) { 25 | const { user, client } = jwt.verify(refresh, JWT_SECRET) 26 | 27 | if (client != rcvdClient) { 28 | throw new Error( 'different client id' ) 29 | } 30 | 31 | // TODO: Verify token on user's generated tokens 32 | const access = await generateRefreshToken(user, client) 33 | 34 | return access 35 | } 36 | 37 | // private methods 38 | async function generateAccessToken ( user, client ) { 39 | // TODO: Save refresh on user's account later 40 | return jwt.sign({user, client}, JWT_SECRET, options) 41 | } 42 | 43 | async function generateRefreshToken ( user, client ) { 44 | // TODO: Save refresh on user's account later 45 | return jwt.sign({user, client}, JWT_SECRET, {...options, expiresIn: JWT_REFRESH_VALIDITY}) 46 | } 47 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rethinkdb-express-api-boilerplate", 3 | "version": "1.0.0", 4 | "description": "API boilerplate", 5 | "main": "src/app.js", 6 | "scripts": { 7 | "dev": "NODE_ENV=development nodemon boilerplate/server.js --exec babel-node", 8 | "build": "babel boilerplate/ -d build/boilerplate/ && babel src/ -d build/src/", 9 | "start": "node --require 'babel-polyfill' build/boilerplate/server.js", 10 | "lint": "eslint src/", 11 | "test": "NODE_ENV=test nyc mocha" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/cusspvz/rethinkdb-express-api-boilerplate.git" 16 | }, 17 | "author": "", 18 | "license": "ISC", 19 | "bugs": { 20 | "url": "https://github.com/cusspvz/rethinkdb-express-api-boilerplate/issues" 21 | }, 22 | "homepage": "https://github.com/cusspvz/rethinkdb-express-api-boilerplate#README", 23 | "dependencies": { 24 | "babel-polyfill": "^6.16.0", 25 | "bcrypt": "^0.8.7", 26 | "bluebird": "^3.4.6", 27 | "body-parser": "^1.15.2", 28 | "cors": "^2.8.2", 29 | "email-validator": "^1.0.7", 30 | "express": "^4.14.0", 31 | "helmet": "^3.1.0", 32 | "jsonwebtoken": "^7.1.9", 33 | "morgan": "^1.8.1", 34 | "nodemailer": "^3.1.8", 35 | "thinky": "^2.3.8", 36 | "uuid": "^3.0.1" 37 | }, 38 | "devDependencies": { 39 | "babel-cli": "^6.18.0", 40 | "babel-eslint": "^7.1.1", 41 | "babel-plugin-istanbul": "^3.0.0", 42 | "babel-preset-latest": "^6.22.0", 43 | "babel-preset-stage-0": "^6.22.0", 44 | "babel-register": "^6.18.0", 45 | "chai": "^3.5.0", 46 | "chai-http": "^3.0.0", 47 | "eslint": "^3.10.2", 48 | "eslint-config-esnext": "^1.6.0", 49 | "eslint-config-recommended": "^1.5.0", 50 | "eslint-plugin-babel": "^4.1.1", 51 | "eslint-plugin-import": "^2.2.0", 52 | "mocha": "^3.1.2", 53 | "nodemon": "^1.11.0", 54 | "nyc": "^10.0.0" 55 | }, 56 | "nyc": { 57 | "require": [ 58 | "babel-register", 59 | "babel-polyfill" 60 | ], 61 | "sourceMap": false, 62 | "instrument": false 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- 1 | const { env } = process 2 | 3 | export const DB_HOST = env.DB_HOST || '127.0.0.1' 4 | export const DB_PORT = env.DB_PORT || '28015' 5 | export const DB_NAME = env.DB_NAME || 'boilerplate' 6 | 7 | export const API_PORT = env.API_PORT || 8888 8 | 9 | export const API_CORS = { origin: env.NODE_ENV === 'production' ? 'https://your-website-frontend.com' : 'http://localhost:3000' } 10 | 11 | export const JWT_SECRET = env.JWT_SECRET || 'YouShouldChangeThisOverEnvironmentVariable' 12 | export const JWT_ALGORITHM = env.JWT_ALGORITHM || 'HS256' 13 | export const JWT_ACCESS_VALIDITY = env.JWT_ACCESS_VALIDITY || '7d' 14 | export const JWT_REFRESH_VALIDITY = env.JWT_REFRESH_VALIDITY || '30d' 15 | -------------------------------------------------------------------------------- /src/middlewares/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cusspvz/rethinkdb-express-api-boilerplate/d32f2ebf6a8b7b0af9f268135baad756a8e61e94/src/middlewares/index.js -------------------------------------------------------------------------------- /src/models/index.js: -------------------------------------------------------------------------------- 1 | // # BOILERPLATE MODELS 2 | // NOTE: 3 | // Don't want to include User model? Or you which to have your own? 4 | // Just delete or comment the line above, and place yours on this folder 5 | export User from '../../boilerplate/models/user' 6 | 7 | // # YOUR MODELS 8 | export Todo from './todo' 9 | -------------------------------------------------------------------------------- /src/models/todo.js: -------------------------------------------------------------------------------- 1 | import { thinky, type, r } from '../../boilerplate/database' 2 | 3 | export const Todo = thinky.createModel( 4 | 'Todo', 5 | { 6 | id: type.string().uuid(4), 7 | text: type.string().max(255), 8 | done: type.boolean(), 9 | createdAt: type.date().default(r.now()) 10 | } 11 | ) 12 | 13 | export default Todo 14 | -------------------------------------------------------------------------------- /src/services/index.js: -------------------------------------------------------------------------------- 1 | // # BOILERPLATE SERVICES 2 | 3 | // NOTE: Comment the line above to disable /auth service 4 | export Auth from '../../boilerplate/services/auth' 5 | 6 | // NOTE: 7 | // Don't want to include User service? Or you which to have your own? 8 | // Just delete or comment the line above, and place yours on this folder 9 | export Users from '../../boilerplate/services/users' 10 | 11 | // # YOUR SERVICES 12 | 13 | export Todos from './todos' 14 | -------------------------------------------------------------------------------- /src/services/todos.js: -------------------------------------------------------------------------------- 1 | // NOTICE: THIS IS AN EXAMPLE SERVICE 2 | 3 | import { Todo } from '../models' 4 | import Service from '../../boilerplate/builders/service' 5 | 6 | export const Todos = new Service({ 7 | model: Todo, 8 | endpoint: '/todos', 9 | 10 | // NOTE: hooks allow you to do things over default or custom methods 11 | hooks: { 12 | // arrow function 13 | 'before delete': async () => console.log( 'OH NO!!!!11' ), 14 | 15 | // async method 16 | async 'before update write' ( req ) { 17 | if ( ! req.me ) { 18 | throw new Error() 19 | } 20 | }, 21 | 22 | // using next callback 23 | 'after create' ( req, res, next ) { 24 | console.log( 'created a new TODO!' ) 25 | next() 26 | }, 27 | 28 | // calling custom hook 29 | // check http://localhost:8888/todos/ 30 | async 'after sunbath' () { 31 | console.log( 'see? I appear here because of the first custom above' ) 32 | }, 33 | }, 34 | 35 | // NOTE: custom object allows you to replace default methods or insert new custom ones 36 | custom: { 37 | 38 | // check http://localhost:8888/todos/ 39 | async 'GET /' () { 40 | const { hook } = this 41 | 42 | await hook( 'after sunbath' ) 43 | 44 | return { json: 'response' } 45 | }, 46 | 47 | // check http://localhost:8888/todos/arrow 48 | 'GET /arrow': async () => 'just responded from an arrow method!! YOLO', 49 | 50 | } 51 | }) 52 | 53 | export default Todos 54 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | accepts@~1.3.3: 10 | version "1.3.3" 11 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 12 | dependencies: 13 | mime-types "~2.1.11" 14 | negotiator "0.6.1" 15 | 16 | acorn-jsx@^3.0.0: 17 | version "3.0.1" 18 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 19 | dependencies: 20 | acorn "^3.0.4" 21 | 22 | acorn@4.0.4: 23 | version "4.0.4" 24 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a" 25 | 26 | acorn@^3.0.4: 27 | version "3.3.0" 28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 29 | 30 | ajv-keywords@^1.0.0: 31 | version "1.5.1" 32 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 33 | 34 | ajv@^4.7.0: 35 | version "4.11.3" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.3.tgz#ce30bdb90d1254f762c75af915fb3a63e7183d22" 37 | dependencies: 38 | co "^4.6.0" 39 | json-stable-stringify "^1.0.1" 40 | 41 | align-text@^0.1.1, align-text@^0.1.3: 42 | version "0.1.4" 43 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 44 | dependencies: 45 | kind-of "^3.0.2" 46 | longest "^1.0.1" 47 | repeat-string "^1.5.2" 48 | 49 | amdefine@>=0.0.4: 50 | version "1.0.1" 51 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 52 | 53 | ansi-escapes@^1.1.0: 54 | version "1.4.0" 55 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 56 | 57 | ansi-regex@^2.0.0: 58 | version "2.1.1" 59 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 60 | 61 | ansi-styles@^2.2.1: 62 | version "2.2.1" 63 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 64 | 65 | anymatch@^1.3.0: 66 | version "1.3.0" 67 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 68 | dependencies: 69 | arrify "^1.0.0" 70 | micromatch "^2.1.5" 71 | 72 | append-transform@^0.4.0: 73 | version "0.4.0" 74 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 75 | dependencies: 76 | default-require-extensions "^1.0.0" 77 | 78 | aproba@^1.0.3: 79 | version "1.1.1" 80 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 81 | 82 | archy@^1.0.0: 83 | version "1.0.0" 84 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 85 | 86 | are-we-there-yet@~1.1.2: 87 | version "1.1.2" 88 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 89 | dependencies: 90 | delegates "^1.0.0" 91 | readable-stream "^2.0.0 || ^1.1.13" 92 | 93 | argparse@^1.0.7: 94 | version "1.0.9" 95 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 96 | dependencies: 97 | sprintf-js "~1.0.2" 98 | 99 | arr-diff@^2.0.0: 100 | version "2.0.0" 101 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 102 | dependencies: 103 | arr-flatten "^1.0.1" 104 | 105 | arr-flatten@^1.0.1: 106 | version "1.0.1" 107 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 108 | 109 | array-flatten@1.1.1: 110 | version "1.1.1" 111 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 112 | 113 | array-union@^1.0.1: 114 | version "1.0.2" 115 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 116 | dependencies: 117 | array-uniq "^1.0.1" 118 | 119 | array-uniq@^1.0.1: 120 | version "1.0.3" 121 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 122 | 123 | array-unique@^0.2.1: 124 | version "0.2.1" 125 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 126 | 127 | arrify@^1.0.0, arrify@^1.0.1: 128 | version "1.0.1" 129 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 130 | 131 | asn1@~0.2.3: 132 | version "0.2.3" 133 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 134 | 135 | assert-plus@^0.2.0: 136 | version "0.2.0" 137 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 138 | 139 | assert-plus@^1.0.0: 140 | version "1.0.0" 141 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 142 | 143 | assertion-error@^1.0.1: 144 | version "1.0.2" 145 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 146 | 147 | async-each@^1.0.0: 148 | version "1.0.1" 149 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 150 | 151 | async@^1.4.0, async@^1.4.2, async@^1.5.2: 152 | version "1.5.2" 153 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 154 | 155 | async@~0.2.6: 156 | version "0.2.10" 157 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 158 | 159 | asynckit@^0.4.0: 160 | version "0.4.0" 161 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 162 | 163 | aws-sign2@~0.6.0: 164 | version "0.6.0" 165 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 166 | 167 | aws4@^1.2.1: 168 | version "1.6.0" 169 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 170 | 171 | babel-cli@^6.18.0: 172 | version "6.23.0" 173 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.23.0.tgz#52ff946a2b0f64645c35e7bd5eea267aa0948c0f" 174 | dependencies: 175 | babel-core "^6.23.0" 176 | babel-polyfill "^6.23.0" 177 | babel-register "^6.23.0" 178 | babel-runtime "^6.22.0" 179 | commander "^2.8.1" 180 | convert-source-map "^1.1.0" 181 | fs-readdir-recursive "^1.0.0" 182 | glob "^7.0.0" 183 | lodash "^4.2.0" 184 | output-file-sync "^1.1.0" 185 | path-is-absolute "^1.0.0" 186 | slash "^1.0.0" 187 | source-map "^0.5.0" 188 | v8flags "^2.0.10" 189 | optionalDependencies: 190 | chokidar "^1.6.1" 191 | 192 | babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: 193 | version "6.22.0" 194 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 195 | dependencies: 196 | chalk "^1.1.0" 197 | esutils "^2.0.2" 198 | js-tokens "^3.0.0" 199 | 200 | babel-core@^6.23.0: 201 | version "6.23.1" 202 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.23.1.tgz#c143cb621bb2f621710c220c5d579d15b8a442df" 203 | dependencies: 204 | babel-code-frame "^6.22.0" 205 | babel-generator "^6.23.0" 206 | babel-helpers "^6.23.0" 207 | babel-messages "^6.23.0" 208 | babel-register "^6.23.0" 209 | babel-runtime "^6.22.0" 210 | babel-template "^6.23.0" 211 | babel-traverse "^6.23.1" 212 | babel-types "^6.23.0" 213 | babylon "^6.11.0" 214 | convert-source-map "^1.1.0" 215 | debug "^2.1.1" 216 | json5 "^0.5.0" 217 | lodash "^4.2.0" 218 | minimatch "^3.0.2" 219 | path-is-absolute "^1.0.0" 220 | private "^0.1.6" 221 | slash "^1.0.0" 222 | source-map "^0.5.0" 223 | 224 | babel-eslint@6.1.2, babel-eslint@~6.1.0: 225 | version "6.1.2" 226 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-6.1.2.tgz#5293419fe3672d66598d327da9694567ba6a5f2f" 227 | dependencies: 228 | babel-traverse "^6.0.20" 229 | babel-types "^6.0.19" 230 | babylon "^6.0.18" 231 | lodash.assign "^4.0.0" 232 | lodash.pickby "^4.0.0" 233 | 234 | babel-eslint@^7.1.1: 235 | version "7.1.1" 236 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2" 237 | dependencies: 238 | babel-code-frame "^6.16.0" 239 | babel-traverse "^6.15.0" 240 | babel-types "^6.15.0" 241 | babylon "^6.13.0" 242 | lodash.pickby "^4.6.0" 243 | 244 | babel-generator@^6.18.0, babel-generator@^6.23.0: 245 | version "6.23.0" 246 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.23.0.tgz#6b8edab956ef3116f79d8c84c5a3c05f32a74bc5" 247 | dependencies: 248 | babel-messages "^6.23.0" 249 | babel-runtime "^6.22.0" 250 | babel-types "^6.23.0" 251 | detect-indent "^4.0.0" 252 | jsesc "^1.3.0" 253 | lodash "^4.2.0" 254 | source-map "^0.5.0" 255 | trim-right "^1.0.1" 256 | 257 | babel-helper-bindify-decorators@^6.22.0: 258 | version "6.22.0" 259 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952" 260 | dependencies: 261 | babel-runtime "^6.22.0" 262 | babel-traverse "^6.22.0" 263 | babel-types "^6.22.0" 264 | 265 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 266 | version "6.22.0" 267 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 268 | dependencies: 269 | babel-helper-explode-assignable-expression "^6.22.0" 270 | babel-runtime "^6.22.0" 271 | babel-types "^6.22.0" 272 | 273 | babel-helper-call-delegate@^6.22.0: 274 | version "6.22.0" 275 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 276 | dependencies: 277 | babel-helper-hoist-variables "^6.22.0" 278 | babel-runtime "^6.22.0" 279 | babel-traverse "^6.22.0" 280 | babel-types "^6.22.0" 281 | 282 | babel-helper-define-map@^6.23.0: 283 | version "6.23.0" 284 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 285 | dependencies: 286 | babel-helper-function-name "^6.23.0" 287 | babel-runtime "^6.22.0" 288 | babel-types "^6.23.0" 289 | lodash "^4.2.0" 290 | 291 | babel-helper-explode-assignable-expression@^6.22.0: 292 | version "6.22.0" 293 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 294 | dependencies: 295 | babel-runtime "^6.22.0" 296 | babel-traverse "^6.22.0" 297 | babel-types "^6.22.0" 298 | 299 | babel-helper-explode-class@^6.22.0: 300 | version "6.22.0" 301 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b" 302 | dependencies: 303 | babel-helper-bindify-decorators "^6.22.0" 304 | babel-runtime "^6.22.0" 305 | babel-traverse "^6.22.0" 306 | babel-types "^6.22.0" 307 | 308 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 309 | version "6.23.0" 310 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 311 | dependencies: 312 | babel-helper-get-function-arity "^6.22.0" 313 | babel-runtime "^6.22.0" 314 | babel-template "^6.23.0" 315 | babel-traverse "^6.23.0" 316 | babel-types "^6.23.0" 317 | 318 | babel-helper-get-function-arity@^6.22.0: 319 | version "6.22.0" 320 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 321 | dependencies: 322 | babel-runtime "^6.22.0" 323 | babel-types "^6.22.0" 324 | 325 | babel-helper-hoist-variables@^6.22.0: 326 | version "6.22.0" 327 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 328 | dependencies: 329 | babel-runtime "^6.22.0" 330 | babel-types "^6.22.0" 331 | 332 | babel-helper-optimise-call-expression@^6.23.0: 333 | version "6.23.0" 334 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 335 | dependencies: 336 | babel-runtime "^6.22.0" 337 | babel-types "^6.23.0" 338 | 339 | babel-helper-regex@^6.22.0: 340 | version "6.22.0" 341 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 342 | dependencies: 343 | babel-runtime "^6.22.0" 344 | babel-types "^6.22.0" 345 | lodash "^4.2.0" 346 | 347 | babel-helper-remap-async-to-generator@^6.22.0: 348 | version "6.22.0" 349 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 350 | dependencies: 351 | babel-helper-function-name "^6.22.0" 352 | babel-runtime "^6.22.0" 353 | babel-template "^6.22.0" 354 | babel-traverse "^6.22.0" 355 | babel-types "^6.22.0" 356 | 357 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 358 | version "6.23.0" 359 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 360 | dependencies: 361 | babel-helper-optimise-call-expression "^6.23.0" 362 | babel-messages "^6.23.0" 363 | babel-runtime "^6.22.0" 364 | babel-template "^6.23.0" 365 | babel-traverse "^6.23.0" 366 | babel-types "^6.23.0" 367 | 368 | babel-helpers@^6.23.0: 369 | version "6.23.0" 370 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 371 | dependencies: 372 | babel-runtime "^6.22.0" 373 | babel-template "^6.23.0" 374 | 375 | babel-messages@^6.23.0: 376 | version "6.23.0" 377 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 378 | dependencies: 379 | babel-runtime "^6.22.0" 380 | 381 | babel-plugin-check-es2015-constants@^6.22.0: 382 | version "6.22.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 384 | dependencies: 385 | babel-runtime "^6.22.0" 386 | 387 | babel-plugin-istanbul@^3.0.0: 388 | version "3.1.2" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-3.1.2.tgz#11d5abde18425ec24b5d648c7e0b5d25cd354a22" 390 | dependencies: 391 | find-up "^1.1.2" 392 | istanbul-lib-instrument "^1.4.2" 393 | object-assign "^4.1.0" 394 | test-exclude "^3.3.0" 395 | 396 | babel-plugin-syntax-async-functions@^6.8.0: 397 | version "6.13.0" 398 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 399 | 400 | babel-plugin-syntax-async-generators@^6.5.0: 401 | version "6.13.0" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 403 | 404 | babel-plugin-syntax-class-constructor-call@^6.18.0: 405 | version "6.18.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 407 | 408 | babel-plugin-syntax-class-properties@^6.8.0: 409 | version "6.13.0" 410 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 411 | 412 | babel-plugin-syntax-decorators@^6.13.0: 413 | version "6.13.0" 414 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 415 | 416 | babel-plugin-syntax-do-expressions@^6.8.0: 417 | version "6.13.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 419 | 420 | babel-plugin-syntax-dynamic-import@^6.18.0: 421 | version "6.18.0" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 423 | 424 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 425 | version "6.13.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 427 | 428 | babel-plugin-syntax-export-extensions@^6.8.0: 429 | version "6.13.0" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 431 | 432 | babel-plugin-syntax-function-bind@^6.8.0: 433 | version "6.13.0" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 435 | 436 | babel-plugin-syntax-object-rest-spread@^6.8.0: 437 | version "6.13.0" 438 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 439 | 440 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 441 | version "6.22.0" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 443 | 444 | babel-plugin-transform-async-generator-functions@^6.22.0: 445 | version "6.22.0" 446 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46" 447 | dependencies: 448 | babel-helper-remap-async-to-generator "^6.22.0" 449 | babel-plugin-syntax-async-generators "^6.5.0" 450 | babel-runtime "^6.22.0" 451 | 452 | babel-plugin-transform-async-to-generator@^6.22.0: 453 | version "6.22.0" 454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 455 | dependencies: 456 | babel-helper-remap-async-to-generator "^6.22.0" 457 | babel-plugin-syntax-async-functions "^6.8.0" 458 | babel-runtime "^6.22.0" 459 | 460 | babel-plugin-transform-class-constructor-call@^6.22.0: 461 | version "6.22.0" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.22.0.tgz#11a4d2216abb5b0eef298b493748f4f2f4869120" 463 | dependencies: 464 | babel-plugin-syntax-class-constructor-call "^6.18.0" 465 | babel-runtime "^6.22.0" 466 | babel-template "^6.22.0" 467 | 468 | babel-plugin-transform-class-properties@^6.22.0: 469 | version "6.23.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b" 471 | dependencies: 472 | babel-helper-function-name "^6.23.0" 473 | babel-plugin-syntax-class-properties "^6.8.0" 474 | babel-runtime "^6.22.0" 475 | babel-template "^6.23.0" 476 | 477 | babel-plugin-transform-decorators@^6.22.0: 478 | version "6.22.0" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c" 480 | dependencies: 481 | babel-helper-explode-class "^6.22.0" 482 | babel-plugin-syntax-decorators "^6.13.0" 483 | babel-runtime "^6.22.0" 484 | babel-template "^6.22.0" 485 | babel-types "^6.22.0" 486 | 487 | babel-plugin-transform-do-expressions@^6.22.0: 488 | version "6.22.0" 489 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 490 | dependencies: 491 | babel-plugin-syntax-do-expressions "^6.8.0" 492 | babel-runtime "^6.22.0" 493 | 494 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 495 | version "6.22.0" 496 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 497 | dependencies: 498 | babel-runtime "^6.22.0" 499 | 500 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 501 | version "6.22.0" 502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 503 | dependencies: 504 | babel-runtime "^6.22.0" 505 | 506 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 507 | version "6.23.0" 508 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 509 | dependencies: 510 | babel-runtime "^6.22.0" 511 | babel-template "^6.23.0" 512 | babel-traverse "^6.23.0" 513 | babel-types "^6.23.0" 514 | lodash "^4.2.0" 515 | 516 | babel-plugin-transform-es2015-classes@^6.22.0: 517 | version "6.23.0" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 519 | dependencies: 520 | babel-helper-define-map "^6.23.0" 521 | babel-helper-function-name "^6.23.0" 522 | babel-helper-optimise-call-expression "^6.23.0" 523 | babel-helper-replace-supers "^6.23.0" 524 | babel-messages "^6.23.0" 525 | babel-runtime "^6.22.0" 526 | babel-template "^6.23.0" 527 | babel-traverse "^6.23.0" 528 | babel-types "^6.23.0" 529 | 530 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 531 | version "6.22.0" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 533 | dependencies: 534 | babel-runtime "^6.22.0" 535 | babel-template "^6.22.0" 536 | 537 | babel-plugin-transform-es2015-destructuring@^6.22.0: 538 | version "6.23.0" 539 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 540 | dependencies: 541 | babel-runtime "^6.22.0" 542 | 543 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 544 | version "6.22.0" 545 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 546 | dependencies: 547 | babel-runtime "^6.22.0" 548 | babel-types "^6.22.0" 549 | 550 | babel-plugin-transform-es2015-for-of@^6.22.0: 551 | version "6.23.0" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 553 | dependencies: 554 | babel-runtime "^6.22.0" 555 | 556 | babel-plugin-transform-es2015-function-name@^6.22.0: 557 | version "6.22.0" 558 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 559 | dependencies: 560 | babel-helper-function-name "^6.22.0" 561 | babel-runtime "^6.22.0" 562 | babel-types "^6.22.0" 563 | 564 | babel-plugin-transform-es2015-literals@^6.22.0: 565 | version "6.22.0" 566 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 567 | dependencies: 568 | babel-runtime "^6.22.0" 569 | 570 | babel-plugin-transform-es2015-modules-amd@^6.22.0: 571 | version "6.22.0" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21" 573 | dependencies: 574 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 575 | babel-runtime "^6.22.0" 576 | babel-template "^6.22.0" 577 | 578 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0: 579 | version "6.23.0" 580 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz#cba7aa6379fb7ec99250e6d46de2973aaffa7b92" 581 | dependencies: 582 | babel-plugin-transform-strict-mode "^6.22.0" 583 | babel-runtime "^6.22.0" 584 | babel-template "^6.23.0" 585 | babel-types "^6.23.0" 586 | 587 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 588 | version "6.23.0" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 590 | dependencies: 591 | babel-helper-hoist-variables "^6.22.0" 592 | babel-runtime "^6.22.0" 593 | babel-template "^6.23.0" 594 | 595 | babel-plugin-transform-es2015-modules-umd@^6.22.0: 596 | version "6.23.0" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.23.0.tgz#8d284ae2e19ed8fe21d2b1b26d6e7e0fcd94f0f1" 598 | dependencies: 599 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 600 | babel-runtime "^6.22.0" 601 | babel-template "^6.23.0" 602 | 603 | babel-plugin-transform-es2015-object-super@^6.22.0: 604 | version "6.22.0" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 606 | dependencies: 607 | babel-helper-replace-supers "^6.22.0" 608 | babel-runtime "^6.22.0" 609 | 610 | babel-plugin-transform-es2015-parameters@^6.22.0: 611 | version "6.23.0" 612 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 613 | dependencies: 614 | babel-helper-call-delegate "^6.22.0" 615 | babel-helper-get-function-arity "^6.22.0" 616 | babel-runtime "^6.22.0" 617 | babel-template "^6.23.0" 618 | babel-traverse "^6.23.0" 619 | babel-types "^6.23.0" 620 | 621 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 622 | version "6.22.0" 623 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 624 | dependencies: 625 | babel-runtime "^6.22.0" 626 | babel-types "^6.22.0" 627 | 628 | babel-plugin-transform-es2015-spread@^6.22.0: 629 | version "6.22.0" 630 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 631 | dependencies: 632 | babel-runtime "^6.22.0" 633 | 634 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 635 | version "6.22.0" 636 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 637 | dependencies: 638 | babel-helper-regex "^6.22.0" 639 | babel-runtime "^6.22.0" 640 | babel-types "^6.22.0" 641 | 642 | babel-plugin-transform-es2015-template-literals@^6.22.0: 643 | version "6.22.0" 644 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 645 | dependencies: 646 | babel-runtime "^6.22.0" 647 | 648 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 649 | version "6.23.0" 650 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 651 | dependencies: 652 | babel-runtime "^6.22.0" 653 | 654 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 655 | version "6.22.0" 656 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 657 | dependencies: 658 | babel-helper-regex "^6.22.0" 659 | babel-runtime "^6.22.0" 660 | regexpu-core "^2.0.0" 661 | 662 | babel-plugin-transform-exponentiation-operator@^6.22.0: 663 | version "6.22.0" 664 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 665 | dependencies: 666 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 667 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 668 | babel-runtime "^6.22.0" 669 | 670 | babel-plugin-transform-export-extensions@^6.22.0: 671 | version "6.22.0" 672 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 673 | dependencies: 674 | babel-plugin-syntax-export-extensions "^6.8.0" 675 | babel-runtime "^6.22.0" 676 | 677 | babel-plugin-transform-function-bind@^6.22.0: 678 | version "6.22.0" 679 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 680 | dependencies: 681 | babel-plugin-syntax-function-bind "^6.8.0" 682 | babel-runtime "^6.22.0" 683 | 684 | babel-plugin-transform-object-rest-spread@^6.22.0: 685 | version "6.23.0" 686 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 687 | dependencies: 688 | babel-plugin-syntax-object-rest-spread "^6.8.0" 689 | babel-runtime "^6.22.0" 690 | 691 | babel-plugin-transform-regenerator@^6.22.0: 692 | version "6.22.0" 693 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 694 | dependencies: 695 | regenerator-transform "0.9.8" 696 | 697 | babel-plugin-transform-strict-mode@^6.22.0: 698 | version "6.22.0" 699 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 700 | dependencies: 701 | babel-runtime "^6.22.0" 702 | babel-types "^6.22.0" 703 | 704 | babel-polyfill@^6.16.0, babel-polyfill@^6.23.0: 705 | version "6.23.0" 706 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" 707 | dependencies: 708 | babel-runtime "^6.22.0" 709 | core-js "^2.4.0" 710 | regenerator-runtime "^0.10.0" 711 | 712 | babel-preset-es2015@^6.22.0: 713 | version "6.22.0" 714 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835" 715 | dependencies: 716 | babel-plugin-check-es2015-constants "^6.22.0" 717 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 718 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 719 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 720 | babel-plugin-transform-es2015-classes "^6.22.0" 721 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 722 | babel-plugin-transform-es2015-destructuring "^6.22.0" 723 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 724 | babel-plugin-transform-es2015-for-of "^6.22.0" 725 | babel-plugin-transform-es2015-function-name "^6.22.0" 726 | babel-plugin-transform-es2015-literals "^6.22.0" 727 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 728 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0" 729 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 730 | babel-plugin-transform-es2015-modules-umd "^6.22.0" 731 | babel-plugin-transform-es2015-object-super "^6.22.0" 732 | babel-plugin-transform-es2015-parameters "^6.22.0" 733 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 734 | babel-plugin-transform-es2015-spread "^6.22.0" 735 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 736 | babel-plugin-transform-es2015-template-literals "^6.22.0" 737 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 738 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 739 | babel-plugin-transform-regenerator "^6.22.0" 740 | 741 | babel-preset-es2016@^6.22.0: 742 | version "6.22.0" 743 | resolved "https://registry.yarnpkg.com/babel-preset-es2016/-/babel-preset-es2016-6.22.0.tgz#b061aaa3983d40c9fbacfa3743b5df37f336156c" 744 | dependencies: 745 | babel-plugin-transform-exponentiation-operator "^6.22.0" 746 | 747 | babel-preset-es2017@^6.22.0: 748 | version "6.22.0" 749 | resolved "https://registry.yarnpkg.com/babel-preset-es2017/-/babel-preset-es2017-6.22.0.tgz#de2f9da5a30c50d293fb54a0ba15d6ddc573f0f2" 750 | dependencies: 751 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 752 | babel-plugin-transform-async-to-generator "^6.22.0" 753 | 754 | babel-preset-latest@^6.22.0: 755 | version "6.22.0" 756 | resolved "https://registry.yarnpkg.com/babel-preset-latest/-/babel-preset-latest-6.22.0.tgz#47b800531350a3dc69126e8c375a40655cd1eeff" 757 | dependencies: 758 | babel-preset-es2015 "^6.22.0" 759 | babel-preset-es2016 "^6.22.0" 760 | babel-preset-es2017 "^6.22.0" 761 | 762 | babel-preset-stage-0@^6.22.0: 763 | version "6.22.0" 764 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.22.0.tgz#707eeb5b415da769eff9c42f4547f644f9296ef9" 765 | dependencies: 766 | babel-plugin-transform-do-expressions "^6.22.0" 767 | babel-plugin-transform-function-bind "^6.22.0" 768 | babel-preset-stage-1 "^6.22.0" 769 | 770 | babel-preset-stage-1@^6.22.0: 771 | version "6.22.0" 772 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.22.0.tgz#7da05bffea6ad5a10aef93e320cfc6dd465dbc1a" 773 | dependencies: 774 | babel-plugin-transform-class-constructor-call "^6.22.0" 775 | babel-plugin-transform-export-extensions "^6.22.0" 776 | babel-preset-stage-2 "^6.22.0" 777 | 778 | babel-preset-stage-2@^6.22.0: 779 | version "6.22.0" 780 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07" 781 | dependencies: 782 | babel-plugin-syntax-dynamic-import "^6.18.0" 783 | babel-plugin-transform-class-properties "^6.22.0" 784 | babel-plugin-transform-decorators "^6.22.0" 785 | babel-preset-stage-3 "^6.22.0" 786 | 787 | babel-preset-stage-3@^6.22.0: 788 | version "6.22.0" 789 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e" 790 | dependencies: 791 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 792 | babel-plugin-transform-async-generator-functions "^6.22.0" 793 | babel-plugin-transform-async-to-generator "^6.22.0" 794 | babel-plugin-transform-exponentiation-operator "^6.22.0" 795 | babel-plugin-transform-object-rest-spread "^6.22.0" 796 | 797 | babel-register@^6.18.0, babel-register@^6.23.0: 798 | version "6.23.0" 799 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.23.0.tgz#c9aa3d4cca94b51da34826c4a0f9e08145d74ff3" 800 | dependencies: 801 | babel-core "^6.23.0" 802 | babel-runtime "^6.22.0" 803 | core-js "^2.4.0" 804 | home-or-tmp "^2.0.0" 805 | lodash "^4.2.0" 806 | mkdirp "^0.5.1" 807 | source-map-support "^0.4.2" 808 | 809 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 810 | version "6.23.0" 811 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 812 | dependencies: 813 | core-js "^2.4.0" 814 | regenerator-runtime "^0.10.0" 815 | 816 | babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.23.0: 817 | version "6.23.0" 818 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 819 | dependencies: 820 | babel-runtime "^6.22.0" 821 | babel-traverse "^6.23.0" 822 | babel-types "^6.23.0" 823 | babylon "^6.11.0" 824 | lodash "^4.2.0" 825 | 826 | babel-traverse@^6.0.20, babel-traverse@^6.15.0, babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 827 | version "6.23.1" 828 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 829 | dependencies: 830 | babel-code-frame "^6.22.0" 831 | babel-messages "^6.23.0" 832 | babel-runtime "^6.22.0" 833 | babel-types "^6.23.0" 834 | babylon "^6.15.0" 835 | debug "^2.2.0" 836 | globals "^9.0.0" 837 | invariant "^2.2.0" 838 | lodash "^4.2.0" 839 | 840 | babel-types@^6.0.19, babel-types@^6.15.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0: 841 | version "6.23.0" 842 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 843 | dependencies: 844 | babel-runtime "^6.22.0" 845 | esutils "^2.0.2" 846 | lodash "^4.2.0" 847 | to-fast-properties "^1.0.1" 848 | 849 | babylon@^6.0.18, babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 850 | version "6.16.1" 851 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 852 | 853 | balanced-match@^0.4.1: 854 | version "0.4.2" 855 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 856 | 857 | base64url@2.0.0, base64url@^2.0.0: 858 | version "2.0.0" 859 | resolved "https://registry.yarnpkg.com/base64url/-/base64url-2.0.0.tgz#eac16e03ea1438eff9423d69baa36262ed1f70bb" 860 | 861 | basic-auth@~1.1.0: 862 | version "1.1.0" 863 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-1.1.0.tgz#45221ee429f7ee1e5035be3f51533f1cdfd29884" 864 | 865 | bcrypt-pbkdf@^1.0.0: 866 | version "1.0.1" 867 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 868 | dependencies: 869 | tweetnacl "^0.14.3" 870 | 871 | bcrypt@^0.8.7: 872 | version "0.8.7" 873 | resolved "https://registry.yarnpkg.com/bcrypt/-/bcrypt-0.8.7.tgz#bc3875a9afd0a7b2cd231a6a7f218a5ce156b093" 874 | dependencies: 875 | bindings "1.2.1" 876 | nan "2.3.5" 877 | 878 | binary-extensions@^1.0.0: 879 | version "1.8.0" 880 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 881 | 882 | bindings@1.2.1: 883 | version "1.2.1" 884 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.2.1.tgz#14ad6113812d2d37d72e67b4cacb4bb726505f11" 885 | 886 | block-stream@*: 887 | version "0.0.9" 888 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 889 | dependencies: 890 | inherits "~2.0.0" 891 | 892 | "bluebird@>= 3.0.1", bluebird@^3.4.6: 893 | version "3.4.7" 894 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.7.tgz#f72d760be09b7f76d08ed8fae98b289a8d05fab3" 895 | 896 | bluebird@~2.10.2: 897 | version "2.10.2" 898 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.10.2.tgz#024a5517295308857f14f91f1106fc3b555f446b" 899 | 900 | body-parser@^1.15.2: 901 | version "1.16.1" 902 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.16.1.tgz#51540d045adfa7a0c6995a014bb6b1ed9b802329" 903 | dependencies: 904 | bytes "2.4.0" 905 | content-type "~1.0.2" 906 | debug "2.6.1" 907 | depd "~1.1.0" 908 | http-errors "~1.5.1" 909 | iconv-lite "0.4.15" 910 | on-finished "~2.3.0" 911 | qs "6.2.1" 912 | raw-body "~2.2.0" 913 | type-is "~1.6.14" 914 | 915 | boom@2.x.x: 916 | version "2.10.1" 917 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 918 | dependencies: 919 | hoek "2.x.x" 920 | 921 | brace-expansion@^1.0.0: 922 | version "1.1.6" 923 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 924 | dependencies: 925 | balanced-match "^0.4.1" 926 | concat-map "0.0.1" 927 | 928 | braces@^1.8.2: 929 | version "1.8.5" 930 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 931 | dependencies: 932 | expand-range "^1.8.1" 933 | preserve "^0.2.0" 934 | repeat-element "^1.1.2" 935 | 936 | browser-stdout@1.3.0: 937 | version "1.3.0" 938 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 939 | 940 | buffer-equal-constant-time@1.0.1: 941 | version "1.0.1" 942 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" 943 | 944 | buffer-shims@^1.0.0: 945 | version "1.0.0" 946 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 947 | 948 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 949 | version "1.1.1" 950 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 951 | 952 | bytes@2.4.0: 953 | version "2.4.0" 954 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" 955 | 956 | caching-transform@^1.0.0: 957 | version "1.0.1" 958 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 959 | dependencies: 960 | md5-hex "^1.2.0" 961 | mkdirp "^0.5.1" 962 | write-file-atomic "^1.1.4" 963 | 964 | caller-path@^0.1.0: 965 | version "0.1.0" 966 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 967 | dependencies: 968 | callsites "^0.2.0" 969 | 970 | callsites@^0.2.0: 971 | version "0.2.0" 972 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 973 | 974 | camelcase@^1.0.2: 975 | version "1.2.1" 976 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 977 | 978 | camelcase@^3.0.0: 979 | version "3.0.0" 980 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 981 | 982 | camelize@1.0.0: 983 | version "1.0.0" 984 | resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" 985 | 986 | caseless@~0.11.0: 987 | version "0.11.0" 988 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 989 | 990 | center-align@^0.1.1: 991 | version "0.1.3" 992 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 993 | dependencies: 994 | align-text "^0.1.3" 995 | lazy-cache "^1.0.3" 996 | 997 | chai-http@^3.0.0: 998 | version "3.0.0" 999 | resolved "https://registry.yarnpkg.com/chai-http/-/chai-http-3.0.0.tgz#5460d8036e1f1a12b0b5b5cbd529e6dc1d31eb4b" 1000 | dependencies: 1001 | cookiejar "2.0.x" 1002 | is-ip "1.0.0" 1003 | methods "^1.1.2" 1004 | qs "^6.2.0" 1005 | superagent "^2.0.0" 1006 | 1007 | chai@^3.5.0: 1008 | version "3.5.0" 1009 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 1010 | dependencies: 1011 | assertion-error "^1.0.1" 1012 | deep-eql "^0.1.3" 1013 | type-detect "^1.0.0" 1014 | 1015 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 1016 | version "1.1.3" 1017 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1018 | dependencies: 1019 | ansi-styles "^2.2.1" 1020 | escape-string-regexp "^1.0.2" 1021 | has-ansi "^2.0.0" 1022 | strip-ansi "^3.0.0" 1023 | supports-color "^2.0.0" 1024 | 1025 | chokidar@^1.4.3, chokidar@^1.6.1: 1026 | version "1.6.1" 1027 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1028 | dependencies: 1029 | anymatch "^1.3.0" 1030 | async-each "^1.0.0" 1031 | glob-parent "^2.0.0" 1032 | inherits "^2.0.1" 1033 | is-binary-path "^1.0.0" 1034 | is-glob "^2.0.0" 1035 | path-is-absolute "^1.0.0" 1036 | readdirp "^2.0.0" 1037 | optionalDependencies: 1038 | fsevents "^1.0.0" 1039 | 1040 | circular-json@^0.3.1: 1041 | version "0.3.1" 1042 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 1043 | 1044 | cli-cursor@^1.0.1: 1045 | version "1.0.2" 1046 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 1047 | dependencies: 1048 | restore-cursor "^1.0.1" 1049 | 1050 | cli-width@^2.0.0: 1051 | version "2.1.0" 1052 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 1053 | 1054 | cliui@^2.1.0: 1055 | version "2.1.0" 1056 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1057 | dependencies: 1058 | center-align "^0.1.1" 1059 | right-align "^0.1.1" 1060 | wordwrap "0.0.2" 1061 | 1062 | cliui@^3.2.0: 1063 | version "3.2.0" 1064 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1065 | dependencies: 1066 | string-width "^1.0.1" 1067 | strip-ansi "^3.0.1" 1068 | wrap-ansi "^2.0.0" 1069 | 1070 | co@^4.6.0: 1071 | version "4.6.0" 1072 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1073 | 1074 | code-point-at@^1.0.0: 1075 | version "1.1.0" 1076 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1077 | 1078 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1079 | version "1.0.5" 1080 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1081 | dependencies: 1082 | delayed-stream "~1.0.0" 1083 | 1084 | commander@2.9.0, commander@^2.8.1, commander@^2.9.0: 1085 | version "2.9.0" 1086 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1087 | dependencies: 1088 | graceful-readlink ">= 1.0.0" 1089 | 1090 | commondir@^1.0.1: 1091 | version "1.0.1" 1092 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1093 | 1094 | component-emitter@^1.2.0: 1095 | version "1.2.1" 1096 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 1097 | 1098 | concat-map@0.0.1: 1099 | version "0.0.1" 1100 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1101 | 1102 | concat-stream@^1.4.6: 1103 | version "1.6.0" 1104 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1105 | dependencies: 1106 | inherits "^2.0.3" 1107 | readable-stream "^2.2.2" 1108 | typedarray "^0.0.6" 1109 | 1110 | configstore@^1.0.0: 1111 | version "1.4.0" 1112 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 1113 | dependencies: 1114 | graceful-fs "^4.1.2" 1115 | mkdirp "^0.5.0" 1116 | object-assign "^4.0.1" 1117 | os-tmpdir "^1.0.0" 1118 | osenv "^0.1.0" 1119 | uuid "^2.0.1" 1120 | write-file-atomic "^1.1.2" 1121 | xdg-basedir "^2.0.0" 1122 | 1123 | connect@3.6.0: 1124 | version "3.6.0" 1125 | resolved "https://registry.yarnpkg.com/connect/-/connect-3.6.0.tgz#f09a4f7dcd17324b663b725c815bdb1c4158a46e" 1126 | dependencies: 1127 | debug "2.6.1" 1128 | finalhandler "1.0.0" 1129 | parseurl "~1.3.1" 1130 | utils-merge "1.0.0" 1131 | 1132 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1133 | version "1.1.0" 1134 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1135 | 1136 | contains-path@^0.1.0: 1137 | version "0.1.0" 1138 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1139 | 1140 | content-disposition@0.5.2: 1141 | version "0.5.2" 1142 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 1143 | 1144 | content-security-policy-builder@1.1.0: 1145 | version "1.1.0" 1146 | resolved "https://registry.yarnpkg.com/content-security-policy-builder/-/content-security-policy-builder-1.1.0.tgz#d91f1b076236c119850c7dee9924bf55e05772b3" 1147 | dependencies: 1148 | dashify "^0.2.0" 1149 | 1150 | content-type@~1.0.2: 1151 | version "1.0.2" 1152 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 1153 | 1154 | convert-source-map@^1.1.0, convert-source-map@^1.3.0: 1155 | version "1.4.0" 1156 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.4.0.tgz#e3dad195bf61bfe13a7a3c73e9876ec14a0268f3" 1157 | 1158 | cookie-signature@1.0.6: 1159 | version "1.0.6" 1160 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1161 | 1162 | cookie@0.3.1: 1163 | version "0.3.1" 1164 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1165 | 1166 | cookiejar@2.0.x, cookiejar@^2.0.6: 1167 | version "2.0.6" 1168 | resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.0.6.tgz#0abf356ad00d1c5a219d88d44518046dd026acfe" 1169 | 1170 | core-js@^2.4.0: 1171 | version "2.4.1" 1172 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1173 | 1174 | core-util-is@1.0.2, core-util-is@~1.0.0: 1175 | version "1.0.2" 1176 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1177 | 1178 | cors@^2.8.2: 1179 | version "2.8.3" 1180 | resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.3.tgz#4cf78e1d23329a7496b2fc2225b77ca5bb5eb802" 1181 | dependencies: 1182 | object-assign "^4" 1183 | vary "^1" 1184 | 1185 | cross-spawn@^4: 1186 | version "4.0.2" 1187 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1188 | dependencies: 1189 | lru-cache "^4.0.1" 1190 | which "^1.2.9" 1191 | 1192 | cryptiles@2.x.x: 1193 | version "2.0.5" 1194 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1195 | dependencies: 1196 | boom "2.x.x" 1197 | 1198 | d@^0.1.1, d@~0.1.1: 1199 | version "0.1.1" 1200 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 1201 | dependencies: 1202 | es5-ext "~0.10.2" 1203 | 1204 | dashdash@^1.12.0: 1205 | version "1.14.1" 1206 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1207 | dependencies: 1208 | assert-plus "^1.0.0" 1209 | 1210 | dasherize@2.0.0: 1211 | version "2.0.0" 1212 | resolved "https://registry.yarnpkg.com/dasherize/-/dasherize-2.0.0.tgz#6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308" 1213 | 1214 | dashify@^0.2.0: 1215 | version "0.2.2" 1216 | resolved "https://registry.yarnpkg.com/dashify/-/dashify-0.2.2.tgz#6a07415a01c91faf4a32e38d9dfba71f61cb20fe" 1217 | 1218 | debug-log@^1.0.1: 1219 | version "1.0.1" 1220 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1221 | 1222 | debug@2.2.0, debug@~2.2.0: 1223 | version "2.2.0" 1224 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1225 | dependencies: 1226 | ms "0.7.1" 1227 | 1228 | debug@2.6.1, debug@^2.1.1, debug@^2.2.0: 1229 | version "2.6.1" 1230 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 1231 | dependencies: 1232 | ms "0.7.2" 1233 | 1234 | decamelize@^1.0.0, decamelize@^1.1.1: 1235 | version "1.2.0" 1236 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1237 | 1238 | deep-eql@^0.1.3: 1239 | version "0.1.3" 1240 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1241 | dependencies: 1242 | type-detect "0.1.1" 1243 | 1244 | deep-extend@~0.4.0: 1245 | version "0.4.1" 1246 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1247 | 1248 | deep-is@~0.1.3: 1249 | version "0.1.3" 1250 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1251 | 1252 | default-require-extensions@^1.0.0: 1253 | version "1.0.0" 1254 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1255 | dependencies: 1256 | strip-bom "^2.0.0" 1257 | 1258 | del@^2.0.2: 1259 | version "2.2.2" 1260 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1261 | dependencies: 1262 | globby "^5.0.0" 1263 | is-path-cwd "^1.0.0" 1264 | is-path-in-cwd "^1.0.0" 1265 | object-assign "^4.0.1" 1266 | pify "^2.0.0" 1267 | pinkie-promise "^2.0.0" 1268 | rimraf "^2.2.8" 1269 | 1270 | delayed-stream@~1.0.0: 1271 | version "1.0.0" 1272 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1273 | 1274 | delegates@^1.0.0: 1275 | version "1.0.0" 1276 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1277 | 1278 | depd@~1.1.0: 1279 | version "1.1.0" 1280 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1281 | 1282 | destroy@~1.0.4: 1283 | version "1.0.4" 1284 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1285 | 1286 | detect-indent@^4.0.0: 1287 | version "4.0.0" 1288 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1289 | dependencies: 1290 | repeating "^2.0.0" 1291 | 1292 | diff@1.4.0: 1293 | version "1.4.0" 1294 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1295 | 1296 | dns-prefetch-control@0.1.0: 1297 | version "0.1.0" 1298 | resolved "https://registry.yarnpkg.com/dns-prefetch-control/-/dns-prefetch-control-0.1.0.tgz#60ddb457774e178f1f9415f0cabb0e85b0b300b2" 1299 | 1300 | doctrine@1.2.x: 1301 | version "1.2.3" 1302 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.2.3.tgz#6aec6bbd62cf89dd498cae70c0ed9f49da873a6a" 1303 | dependencies: 1304 | esutils "^2.0.2" 1305 | isarray "^1.0.0" 1306 | 1307 | doctrine@1.5.0, doctrine@^1.2.2: 1308 | version "1.5.0" 1309 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1310 | dependencies: 1311 | esutils "^2.0.2" 1312 | isarray "^1.0.0" 1313 | 1314 | dont-sniff-mimetype@1.0.0: 1315 | version "1.0.0" 1316 | resolved "https://registry.yarnpkg.com/dont-sniff-mimetype/-/dont-sniff-mimetype-1.0.0.tgz#5932890dc9f4e2f19e5eb02a20026e5e5efc8f58" 1317 | 1318 | duplexer@~0.1.1: 1319 | version "0.1.1" 1320 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1321 | 1322 | duplexify@^3.2.0: 1323 | version "3.5.0" 1324 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" 1325 | dependencies: 1326 | end-of-stream "1.0.0" 1327 | inherits "^2.0.1" 1328 | readable-stream "^2.0.0" 1329 | stream-shift "^1.0.0" 1330 | 1331 | ecc-jsbn@~0.1.1: 1332 | version "0.1.1" 1333 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1334 | dependencies: 1335 | jsbn "~0.1.0" 1336 | 1337 | ecdsa-sig-formatter@1.0.9: 1338 | version "1.0.9" 1339 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.9.tgz#4bc926274ec3b5abb5016e7e1d60921ac262b2a1" 1340 | dependencies: 1341 | base64url "^2.0.0" 1342 | safe-buffer "^5.0.1" 1343 | 1344 | ee-first@1.1.1: 1345 | version "1.1.1" 1346 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1347 | 1348 | email-validator@^1.0.7: 1349 | version "1.0.7" 1350 | resolved "https://registry.yarnpkg.com/email-validator/-/email-validator-1.0.7.tgz#4621ca32fc741eb833ac98d5fb55670b7e056c95" 1351 | 1352 | encodeurl@~1.0.1: 1353 | version "1.0.1" 1354 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1355 | 1356 | end-of-stream@1.0.0: 1357 | version "1.0.0" 1358 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 1359 | dependencies: 1360 | once "~1.3.0" 1361 | 1362 | error-ex@^1.2.0: 1363 | version "1.3.0" 1364 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1365 | dependencies: 1366 | is-arrayish "^0.2.1" 1367 | 1368 | es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: 1369 | version "0.10.12" 1370 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 1371 | dependencies: 1372 | es6-iterator "2" 1373 | es6-symbol "~3.1" 1374 | 1375 | es6-iterator@2: 1376 | version "2.0.0" 1377 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 1378 | dependencies: 1379 | d "^0.1.1" 1380 | es5-ext "^0.10.7" 1381 | es6-symbol "3" 1382 | 1383 | es6-map@^0.1.3: 1384 | version "0.1.4" 1385 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1386 | dependencies: 1387 | d "~0.1.1" 1388 | es5-ext "~0.10.11" 1389 | es6-iterator "2" 1390 | es6-set "~0.1.3" 1391 | es6-symbol "~3.1.0" 1392 | event-emitter "~0.3.4" 1393 | 1394 | es6-promise@^3.0.2: 1395 | version "3.3.1" 1396 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 1397 | 1398 | es6-set@^0.1.4, es6-set@~0.1.3: 1399 | version "0.1.4" 1400 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1401 | dependencies: 1402 | d "~0.1.1" 1403 | es5-ext "~0.10.11" 1404 | es6-iterator "2" 1405 | es6-symbol "3" 1406 | event-emitter "~0.3.4" 1407 | 1408 | es6-symbol@3, es6-symbol@~3.1, es6-symbol@~3.1.0: 1409 | version "3.1.0" 1410 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 1411 | dependencies: 1412 | d "~0.1.1" 1413 | es5-ext "~0.10.11" 1414 | 1415 | es6-weak-map@^2.0.1: 1416 | version "2.0.1" 1417 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 1418 | dependencies: 1419 | d "^0.1.1" 1420 | es5-ext "^0.10.8" 1421 | es6-iterator "2" 1422 | es6-symbol "3" 1423 | 1424 | escape-html@~1.0.3: 1425 | version "1.0.3" 1426 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1427 | 1428 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1429 | version "1.0.5" 1430 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1431 | 1432 | escope@^3.6.0: 1433 | version "3.6.0" 1434 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1435 | dependencies: 1436 | es6-map "^0.1.3" 1437 | es6-weak-map "^2.0.1" 1438 | esrecurse "^4.1.0" 1439 | estraverse "^4.1.1" 1440 | 1441 | eslint-config-esnext@^1.6.0, eslint-config-esnext@~1.6.0: 1442 | version "1.6.0" 1443 | resolved "https://registry.yarnpkg.com/eslint-config-esnext/-/eslint-config-esnext-1.6.0.tgz#62d3a5927ee6c3e7dbf9ae5ad2212e840a6bb95d" 1444 | dependencies: 1445 | babel-eslint "~6.1.0" 1446 | eslint "~3.4.0" 1447 | eslint-plugin-babel "~3.3.0" 1448 | eslint-plugin-import "~1.14.0" 1449 | 1450 | eslint-config-recommended@^1.5.0: 1451 | version "1.5.0" 1452 | resolved "https://registry.yarnpkg.com/eslint-config-recommended/-/eslint-config-recommended-1.5.0.tgz#165f4964463fce1e7c610e2d12d5b7c0052603a2" 1453 | dependencies: 1454 | babel-eslint "~6.1.0" 1455 | eslint "~3.4.0" 1456 | eslint-config-esnext "~1.6.0" 1457 | eslint-plugin-babel "~3.3.0" 1458 | eslint-plugin-import "~1.14.0" 1459 | eslint-plugin-react "~6.2.0" 1460 | eslint-plugin-react-native "~2.0.0" 1461 | 1462 | eslint-import-resolver-node@^0.2.0: 1463 | version "0.2.3" 1464 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1465 | dependencies: 1466 | debug "^2.2.0" 1467 | object-assign "^4.0.1" 1468 | resolve "^1.1.6" 1469 | 1470 | eslint-module-utils@^2.0.0: 1471 | version "2.0.0" 1472 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz#a6f8c21d901358759cdc35dbac1982ae1ee58bce" 1473 | dependencies: 1474 | debug "2.2.0" 1475 | pkg-dir "^1.0.0" 1476 | 1477 | eslint-plugin-babel@^4.1.1: 1478 | version "4.1.1" 1479 | resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-4.1.1.tgz#ef285c87039b67beb3bbd227f5b0eed4fb376b87" 1480 | 1481 | eslint-plugin-babel@~3.3.0: 1482 | version "3.3.0" 1483 | resolved "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-3.3.0.tgz#2f494aedcf6f4aa4e75b9155980837bc1fbde193" 1484 | 1485 | eslint-plugin-import@^2.2.0: 1486 | version "2.2.0" 1487 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e" 1488 | dependencies: 1489 | builtin-modules "^1.1.1" 1490 | contains-path "^0.1.0" 1491 | debug "^2.2.0" 1492 | doctrine "1.5.0" 1493 | eslint-import-resolver-node "^0.2.0" 1494 | eslint-module-utils "^2.0.0" 1495 | has "^1.0.1" 1496 | lodash.cond "^4.3.0" 1497 | minimatch "^3.0.3" 1498 | pkg-up "^1.0.0" 1499 | 1500 | eslint-plugin-import@~1.14.0: 1501 | version "1.14.0" 1502 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-1.14.0.tgz#acd2159923f48c50e5cf55c30a0e1708f04af97a" 1503 | dependencies: 1504 | builtin-modules "^1.1.1" 1505 | contains-path "^0.1.0" 1506 | debug "^2.2.0" 1507 | doctrine "1.2.x" 1508 | es6-map "^0.1.3" 1509 | es6-set "^0.1.4" 1510 | eslint-import-resolver-node "^0.2.0" 1511 | lodash.cond "^4.3.0" 1512 | lodash.endswith "^4.0.1" 1513 | lodash.find "^4.3.0" 1514 | lodash.findindex "^4.3.0" 1515 | object-assign "^4.0.1" 1516 | pkg-dir "^1.0.0" 1517 | pkg-up "^1.0.0" 1518 | 1519 | eslint-plugin-react-native@~2.0.0: 1520 | version "2.0.0" 1521 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-2.0.0.tgz#e166e089c095e261991f1095262b0a442b3b4997" 1522 | dependencies: 1523 | babel-eslint "6.1.2" 1524 | eslint "3.2.1" 1525 | 1526 | eslint-plugin-react@~6.2.0: 1527 | version "6.2.2" 1528 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.2.2.tgz#2d11c4eb1af0aa26453efa2021d7c60427b0a88e" 1529 | dependencies: 1530 | doctrine "^1.2.2" 1531 | jsx-ast-utils "^1.3.1" 1532 | 1533 | eslint@3.2.1: 1534 | version "3.2.1" 1535 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.2.1.tgz#cec49fdea09e2f3be2e1b120054f069390d9f2b9" 1536 | dependencies: 1537 | chalk "^1.1.3" 1538 | concat-stream "^1.4.6" 1539 | debug "^2.1.1" 1540 | doctrine "^1.2.2" 1541 | escope "^3.6.0" 1542 | espree "^3.1.6" 1543 | estraverse "^4.2.0" 1544 | esutils "^2.0.2" 1545 | file-entry-cache "1.2.4" 1546 | flat-cache "1.0.10" 1547 | glob "^7.0.3" 1548 | globals "^9.2.0" 1549 | ignore "^3.1.2" 1550 | imurmurhash "^0.1.4" 1551 | inquirer "^0.12.0" 1552 | is-my-json-valid "^2.10.0" 1553 | is-resolvable "^1.0.0" 1554 | js-yaml "^3.5.1" 1555 | json-stable-stringify "^1.0.0" 1556 | levn "^0.3.0" 1557 | lodash "^4.0.0" 1558 | mkdirp "^0.5.0" 1559 | optionator "^0.8.1" 1560 | path-is-inside "^1.0.1" 1561 | pluralize "^1.2.1" 1562 | progress "^1.1.8" 1563 | require-uncached "^1.0.2" 1564 | shelljs "^0.6.0" 1565 | strip-bom "^3.0.0" 1566 | strip-json-comments "~1.0.1" 1567 | table "^3.7.8" 1568 | text-table "~0.2.0" 1569 | user-home "^2.0.0" 1570 | 1571 | eslint@^3.10.2: 1572 | version "3.16.1" 1573 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.16.1.tgz#9bc31fc7341692cf772e80607508f67d711c5609" 1574 | dependencies: 1575 | babel-code-frame "^6.16.0" 1576 | chalk "^1.1.3" 1577 | concat-stream "^1.4.6" 1578 | debug "^2.1.1" 1579 | doctrine "^1.2.2" 1580 | escope "^3.6.0" 1581 | espree "^3.4.0" 1582 | estraverse "^4.2.0" 1583 | esutils "^2.0.2" 1584 | file-entry-cache "^2.0.0" 1585 | glob "^7.0.3" 1586 | globals "^9.14.0" 1587 | ignore "^3.2.0" 1588 | imurmurhash "^0.1.4" 1589 | inquirer "^0.12.0" 1590 | is-my-json-valid "^2.10.0" 1591 | is-resolvable "^1.0.0" 1592 | js-yaml "^3.5.1" 1593 | json-stable-stringify "^1.0.0" 1594 | levn "^0.3.0" 1595 | lodash "^4.0.0" 1596 | mkdirp "^0.5.0" 1597 | natural-compare "^1.4.0" 1598 | optionator "^0.8.2" 1599 | path-is-inside "^1.0.1" 1600 | pluralize "^1.2.1" 1601 | progress "^1.1.8" 1602 | require-uncached "^1.0.2" 1603 | shelljs "^0.7.5" 1604 | strip-bom "^3.0.0" 1605 | strip-json-comments "~2.0.1" 1606 | table "^3.7.8" 1607 | text-table "~0.2.0" 1608 | user-home "^2.0.0" 1609 | 1610 | eslint@~3.4.0: 1611 | version "3.4.0" 1612 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.4.0.tgz#af5984007bd3f1fb1b3b6b01a0a22eda0ec7a9f4" 1613 | dependencies: 1614 | chalk "^1.1.3" 1615 | concat-stream "^1.4.6" 1616 | debug "^2.1.1" 1617 | doctrine "^1.2.2" 1618 | escope "^3.6.0" 1619 | espree "^3.1.6" 1620 | estraverse "^4.2.0" 1621 | esutils "^2.0.2" 1622 | file-entry-cache "^2.0.0" 1623 | glob "^7.0.3" 1624 | globals "^9.2.0" 1625 | ignore "^3.1.5" 1626 | imurmurhash "^0.1.4" 1627 | inquirer "^0.12.0" 1628 | is-my-json-valid "^2.10.0" 1629 | is-resolvable "^1.0.0" 1630 | js-yaml "^3.5.1" 1631 | json-stable-stringify "^1.0.0" 1632 | levn "^0.3.0" 1633 | lodash "^4.0.0" 1634 | mkdirp "^0.5.0" 1635 | natural-compare "^1.4.0" 1636 | optionator "^0.8.1" 1637 | path-is-inside "^1.0.1" 1638 | pluralize "^1.2.1" 1639 | progress "^1.1.8" 1640 | require-uncached "^1.0.2" 1641 | shelljs "^0.6.0" 1642 | strip-bom "^3.0.0" 1643 | strip-json-comments "~1.0.1" 1644 | table "^3.7.8" 1645 | text-table "~0.2.0" 1646 | user-home "^2.0.0" 1647 | 1648 | espree@^3.1.6, espree@^3.4.0: 1649 | version "3.4.0" 1650 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.0.tgz#41656fa5628e042878025ef467e78f125cb86e1d" 1651 | dependencies: 1652 | acorn "4.0.4" 1653 | acorn-jsx "^3.0.0" 1654 | 1655 | esprima@^3.1.1: 1656 | version "3.1.3" 1657 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1658 | 1659 | esrecurse@^4.1.0: 1660 | version "4.1.0" 1661 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1662 | dependencies: 1663 | estraverse "~4.1.0" 1664 | object-assign "^4.0.1" 1665 | 1666 | estraverse@^4.1.1, estraverse@^4.2.0: 1667 | version "4.2.0" 1668 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1669 | 1670 | estraverse@~4.1.0: 1671 | version "4.1.1" 1672 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1673 | 1674 | esutils@^2.0.2: 1675 | version "2.0.2" 1676 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1677 | 1678 | etag@~1.7.0: 1679 | version "1.7.0" 1680 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1681 | 1682 | event-emitter@~0.3.4: 1683 | version "0.3.4" 1684 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1685 | dependencies: 1686 | d "~0.1.1" 1687 | es5-ext "~0.10.7" 1688 | 1689 | event-stream@~3.3.0: 1690 | version "3.3.4" 1691 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 1692 | dependencies: 1693 | duplexer "~0.1.1" 1694 | from "~0" 1695 | map-stream "~0.1.0" 1696 | pause-stream "0.0.11" 1697 | split "0.3" 1698 | stream-combiner "~0.0.4" 1699 | through "~2.3.1" 1700 | 1701 | exit-hook@^1.0.0: 1702 | version "1.1.1" 1703 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1704 | 1705 | expand-brackets@^0.1.4: 1706 | version "0.1.5" 1707 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1708 | dependencies: 1709 | is-posix-bracket "^0.1.0" 1710 | 1711 | expand-range@^1.8.1: 1712 | version "1.8.2" 1713 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1714 | dependencies: 1715 | fill-range "^2.1.0" 1716 | 1717 | express@^4.14.0: 1718 | version "4.14.1" 1719 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.1.tgz#646c237f766f148c2120aff073817b9e4d7e0d33" 1720 | dependencies: 1721 | accepts "~1.3.3" 1722 | array-flatten "1.1.1" 1723 | content-disposition "0.5.2" 1724 | content-type "~1.0.2" 1725 | cookie "0.3.1" 1726 | cookie-signature "1.0.6" 1727 | debug "~2.2.0" 1728 | depd "~1.1.0" 1729 | encodeurl "~1.0.1" 1730 | escape-html "~1.0.3" 1731 | etag "~1.7.0" 1732 | finalhandler "0.5.1" 1733 | fresh "0.3.0" 1734 | merge-descriptors "1.0.1" 1735 | methods "~1.1.2" 1736 | on-finished "~2.3.0" 1737 | parseurl "~1.3.1" 1738 | path-to-regexp "0.1.7" 1739 | proxy-addr "~1.1.3" 1740 | qs "6.2.0" 1741 | range-parser "~1.2.0" 1742 | send "0.14.2" 1743 | serve-static "~1.11.2" 1744 | type-is "~1.6.14" 1745 | utils-merge "1.0.0" 1746 | vary "~1.1.0" 1747 | 1748 | extend@^3.0.0, extend@~3.0.0: 1749 | version "3.0.0" 1750 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1751 | 1752 | extglob@^0.3.1: 1753 | version "0.3.2" 1754 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1755 | dependencies: 1756 | is-extglob "^1.0.0" 1757 | 1758 | extsprintf@1.0.2: 1759 | version "1.0.2" 1760 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1761 | 1762 | fast-levenshtein@~2.0.4: 1763 | version "2.0.6" 1764 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1765 | 1766 | figures@^1.3.5: 1767 | version "1.7.0" 1768 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1769 | dependencies: 1770 | escape-string-regexp "^1.0.5" 1771 | object-assign "^4.1.0" 1772 | 1773 | file-entry-cache@1.2.4: 1774 | version "1.2.4" 1775 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.2.4.tgz#9a586072c69365a7ef7ec72a7c2b9046de091e9c" 1776 | dependencies: 1777 | flat-cache "^1.0.9" 1778 | object-assign "^4.0.1" 1779 | 1780 | file-entry-cache@^2.0.0: 1781 | version "2.0.0" 1782 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1783 | dependencies: 1784 | flat-cache "^1.2.1" 1785 | object-assign "^4.0.1" 1786 | 1787 | filename-regex@^2.0.0: 1788 | version "2.0.0" 1789 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1790 | 1791 | fill-range@^2.1.0: 1792 | version "2.2.3" 1793 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1794 | dependencies: 1795 | is-number "^2.1.0" 1796 | isobject "^2.0.0" 1797 | randomatic "^1.1.3" 1798 | repeat-element "^1.1.2" 1799 | repeat-string "^1.5.2" 1800 | 1801 | finalhandler@0.5.1: 1802 | version "0.5.1" 1803 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.1.tgz#2c400d8d4530935bc232549c5fa385ec07de6fcd" 1804 | dependencies: 1805 | debug "~2.2.0" 1806 | escape-html "~1.0.3" 1807 | on-finished "~2.3.0" 1808 | statuses "~1.3.1" 1809 | unpipe "~1.0.0" 1810 | 1811 | finalhandler@1.0.0: 1812 | version "1.0.0" 1813 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.0.tgz#b5691c2c0912092f18ac23e9416bde5cd7dc6755" 1814 | dependencies: 1815 | debug "2.6.1" 1816 | encodeurl "~1.0.1" 1817 | escape-html "~1.0.3" 1818 | on-finished "~2.3.0" 1819 | parseurl "~1.3.1" 1820 | statuses "~1.3.1" 1821 | unpipe "~1.0.0" 1822 | 1823 | find-cache-dir@^0.1.1: 1824 | version "0.1.1" 1825 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1826 | dependencies: 1827 | commondir "^1.0.1" 1828 | mkdirp "^0.5.1" 1829 | pkg-dir "^1.0.0" 1830 | 1831 | find-up@^1.0.0, find-up@^1.1.2: 1832 | version "1.1.2" 1833 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1834 | dependencies: 1835 | path-exists "^2.0.0" 1836 | pinkie-promise "^2.0.0" 1837 | 1838 | flat-cache@1.0.10: 1839 | version "1.0.10" 1840 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.0.10.tgz#73d6df4a28502160a05e059544a6aeeae8b0047a" 1841 | dependencies: 1842 | del "^2.0.2" 1843 | graceful-fs "^4.1.2" 1844 | read-json-sync "^1.1.0" 1845 | write "^0.2.1" 1846 | 1847 | flat-cache@^1.0.9, flat-cache@^1.2.1: 1848 | version "1.2.2" 1849 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1850 | dependencies: 1851 | circular-json "^0.3.1" 1852 | del "^2.0.2" 1853 | graceful-fs "^4.1.2" 1854 | write "^0.2.1" 1855 | 1856 | for-in@^1.0.1: 1857 | version "1.0.2" 1858 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1859 | 1860 | for-own@^0.1.4: 1861 | version "0.1.5" 1862 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1863 | dependencies: 1864 | for-in "^1.0.1" 1865 | 1866 | foreground-child@^1.3.3, foreground-child@^1.5.3: 1867 | version "1.5.6" 1868 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1869 | dependencies: 1870 | cross-spawn "^4" 1871 | signal-exit "^3.0.0" 1872 | 1873 | forever-agent@~0.6.1: 1874 | version "0.6.1" 1875 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1876 | 1877 | form-data@1.0.0-rc4: 1878 | version "1.0.0-rc4" 1879 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.0-rc4.tgz#05ac6bc22227b43e4461f488161554699d4f8b5e" 1880 | dependencies: 1881 | async "^1.5.2" 1882 | combined-stream "^1.0.5" 1883 | mime-types "^2.1.10" 1884 | 1885 | form-data@~2.1.1: 1886 | version "2.1.2" 1887 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1888 | dependencies: 1889 | asynckit "^0.4.0" 1890 | combined-stream "^1.0.5" 1891 | mime-types "^2.1.12" 1892 | 1893 | formidable@^1.0.17: 1894 | version "1.1.1" 1895 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.1.1.tgz#96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9" 1896 | 1897 | forwarded@~0.1.0: 1898 | version "0.1.0" 1899 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1900 | 1901 | frameguard@3.0.0: 1902 | version "3.0.0" 1903 | resolved "https://registry.yarnpkg.com/frameguard/-/frameguard-3.0.0.tgz#7bcad469ee7b96e91d12ceb3959c78235a9272e9" 1904 | 1905 | fresh@0.3.0: 1906 | version "0.3.0" 1907 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1908 | 1909 | from@~0: 1910 | version "0.1.3" 1911 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.3.tgz#ef63ac2062ac32acf7862e0d40b44b896f22f3bc" 1912 | 1913 | fs-readdir-recursive@^1.0.0: 1914 | version "1.0.0" 1915 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1916 | 1917 | fs.realpath@^1.0.0: 1918 | version "1.0.0" 1919 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1920 | 1921 | fsevents@^1.0.0: 1922 | version "1.1.1" 1923 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1924 | dependencies: 1925 | nan "^2.3.0" 1926 | node-pre-gyp "^0.6.29" 1927 | 1928 | fstream-ignore@~1.0.5: 1929 | version "1.0.5" 1930 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1931 | dependencies: 1932 | fstream "^1.0.0" 1933 | inherits "2" 1934 | minimatch "^3.0.0" 1935 | 1936 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1937 | version "1.0.10" 1938 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1939 | dependencies: 1940 | graceful-fs "^4.1.2" 1941 | inherits "~2.0.0" 1942 | mkdirp ">=0.5 0" 1943 | rimraf "2" 1944 | 1945 | function-bind@^1.0.2: 1946 | version "1.1.0" 1947 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1948 | 1949 | gauge@~2.7.1: 1950 | version "2.7.3" 1951 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1952 | dependencies: 1953 | aproba "^1.0.3" 1954 | console-control-strings "^1.0.0" 1955 | has-unicode "^2.0.0" 1956 | object-assign "^4.1.0" 1957 | signal-exit "^3.0.0" 1958 | string-width "^1.0.1" 1959 | strip-ansi "^3.0.1" 1960 | wide-align "^1.1.0" 1961 | 1962 | generate-function@^2.0.0: 1963 | version "2.0.0" 1964 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1965 | 1966 | generate-object-property@^1.1.0: 1967 | version "1.2.0" 1968 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1969 | dependencies: 1970 | is-property "^1.0.0" 1971 | 1972 | get-caller-file@^1.0.1: 1973 | version "1.0.2" 1974 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1975 | 1976 | getpass@^0.1.1: 1977 | version "0.1.6" 1978 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1979 | dependencies: 1980 | assert-plus "^1.0.0" 1981 | 1982 | glob-base@^0.3.0: 1983 | version "0.3.0" 1984 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1985 | dependencies: 1986 | glob-parent "^2.0.0" 1987 | is-glob "^2.0.0" 1988 | 1989 | glob-parent@^2.0.0: 1990 | version "2.0.0" 1991 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1992 | dependencies: 1993 | is-glob "^2.0.0" 1994 | 1995 | glob@7.0.5: 1996 | version "7.0.5" 1997 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 1998 | dependencies: 1999 | fs.realpath "^1.0.0" 2000 | inflight "^1.0.4" 2001 | inherits "2" 2002 | minimatch "^3.0.2" 2003 | once "^1.3.0" 2004 | path-is-absolute "^1.0.0" 2005 | 2006 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.0.6: 2007 | version "7.1.1" 2008 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 2009 | dependencies: 2010 | fs.realpath "^1.0.0" 2011 | inflight "^1.0.4" 2012 | inherits "2" 2013 | minimatch "^3.0.2" 2014 | once "^1.3.0" 2015 | path-is-absolute "^1.0.0" 2016 | 2017 | globals@^9.0.0, globals@^9.14.0, globals@^9.2.0: 2018 | version "9.16.0" 2019 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.16.0.tgz#63e903658171ec2d9f51b1d31de5e2b8dc01fb80" 2020 | 2021 | globby@^5.0.0: 2022 | version "5.0.0" 2023 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 2024 | dependencies: 2025 | array-union "^1.0.1" 2026 | arrify "^1.0.0" 2027 | glob "^7.0.3" 2028 | object-assign "^4.0.1" 2029 | pify "^2.0.0" 2030 | pinkie-promise "^2.0.0" 2031 | 2032 | got@^3.2.0: 2033 | version "3.3.1" 2034 | resolved "https://registry.yarnpkg.com/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 2035 | dependencies: 2036 | duplexify "^3.2.0" 2037 | infinity-agent "^2.0.0" 2038 | is-redirect "^1.0.0" 2039 | is-stream "^1.0.0" 2040 | lowercase-keys "^1.0.0" 2041 | nested-error-stacks "^1.0.0" 2042 | object-assign "^3.0.0" 2043 | prepend-http "^1.0.0" 2044 | read-all-stream "^3.0.0" 2045 | timed-out "^2.0.0" 2046 | 2047 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 2048 | version "4.1.11" 2049 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 2050 | 2051 | "graceful-readlink@>= 1.0.0": 2052 | version "1.0.1" 2053 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 2054 | 2055 | growl@1.9.2: 2056 | version "1.9.2" 2057 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 2058 | 2059 | handlebars@^4.0.3: 2060 | version "4.0.6" 2061 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.6.tgz#2ce4484850537f9c97a8026d5399b935c4ed4ed7" 2062 | dependencies: 2063 | async "^1.4.0" 2064 | optimist "^0.6.1" 2065 | source-map "^0.4.4" 2066 | optionalDependencies: 2067 | uglify-js "^2.6" 2068 | 2069 | har-validator@~2.0.6: 2070 | version "2.0.6" 2071 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 2072 | dependencies: 2073 | chalk "^1.1.1" 2074 | commander "^2.9.0" 2075 | is-my-json-valid "^2.12.4" 2076 | pinkie-promise "^2.0.0" 2077 | 2078 | has-ansi@^2.0.0: 2079 | version "2.0.0" 2080 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 2081 | dependencies: 2082 | ansi-regex "^2.0.0" 2083 | 2084 | has-flag@^1.0.0: 2085 | version "1.0.0" 2086 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 2087 | 2088 | has-unicode@^2.0.0: 2089 | version "2.0.1" 2090 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 2091 | 2092 | has@^1.0.1: 2093 | version "1.0.1" 2094 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 2095 | dependencies: 2096 | function-bind "^1.0.2" 2097 | 2098 | hawk@~3.1.3: 2099 | version "3.1.3" 2100 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 2101 | dependencies: 2102 | boom "2.x.x" 2103 | cryptiles "2.x.x" 2104 | hoek "2.x.x" 2105 | sntp "1.x.x" 2106 | 2107 | helmet-csp@2.3.0: 2108 | version "2.3.0" 2109 | resolved "https://registry.yarnpkg.com/helmet-csp/-/helmet-csp-2.3.0.tgz#bc341939dfef5266cc817abcf53f079f61fe7e3f" 2110 | dependencies: 2111 | camelize "1.0.0" 2112 | content-security-policy-builder "1.1.0" 2113 | dasherize "2.0.0" 2114 | lodash.reduce "4.6.0" 2115 | platform "1.3.3" 2116 | 2117 | helmet@^3.1.0: 2118 | version "3.4.1" 2119 | resolved "https://registry.yarnpkg.com/helmet/-/helmet-3.4.1.tgz#27d37629227f25a110f2a128bfe1b1028648a397" 2120 | dependencies: 2121 | connect "3.6.0" 2122 | dns-prefetch-control "0.1.0" 2123 | dont-sniff-mimetype "1.0.0" 2124 | frameguard "3.0.0" 2125 | helmet-csp "2.3.0" 2126 | hide-powered-by "1.0.0" 2127 | hpkp "2.0.0" 2128 | hsts "2.0.0" 2129 | ienoopen "1.0.0" 2130 | nocache "2.0.0" 2131 | referrer-policy "1.1.0" 2132 | x-xss-protection "1.0.0" 2133 | 2134 | hide-powered-by@1.0.0: 2135 | version "1.0.0" 2136 | resolved "https://registry.yarnpkg.com/hide-powered-by/-/hide-powered-by-1.0.0.tgz#4a85ad65881f62857fc70af7174a1184dccce32b" 2137 | 2138 | hoek@2.x.x: 2139 | version "2.16.3" 2140 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 2141 | 2142 | home-or-tmp@^2.0.0: 2143 | version "2.0.0" 2144 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 2145 | dependencies: 2146 | os-homedir "^1.0.0" 2147 | os-tmpdir "^1.0.1" 2148 | 2149 | hosted-git-info@^2.1.4: 2150 | version "2.2.0" 2151 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5" 2152 | 2153 | hpkp@2.0.0: 2154 | version "2.0.0" 2155 | resolved "https://registry.yarnpkg.com/hpkp/-/hpkp-2.0.0.tgz#10e142264e76215a5d30c44ec43de64dee6d1672" 2156 | 2157 | hsts@2.0.0: 2158 | version "2.0.0" 2159 | resolved "https://registry.yarnpkg.com/hsts/-/hsts-2.0.0.tgz#a52234c6070decf214b2b6b70bb144d07e4776c7" 2160 | dependencies: 2161 | core-util-is "1.0.2" 2162 | 2163 | http-errors@~1.5.1: 2164 | version "1.5.1" 2165 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 2166 | dependencies: 2167 | inherits "2.0.3" 2168 | setprototypeof "1.0.2" 2169 | statuses ">= 1.3.1 < 2" 2170 | 2171 | http-signature@~1.1.0: 2172 | version "1.1.1" 2173 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 2174 | dependencies: 2175 | assert-plus "^0.2.0" 2176 | jsprim "^1.2.2" 2177 | sshpk "^1.7.0" 2178 | 2179 | iconv-lite@0.4.15: 2180 | version "0.4.15" 2181 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb" 2182 | 2183 | ienoopen@1.0.0: 2184 | version "1.0.0" 2185 | resolved "https://registry.yarnpkg.com/ienoopen/-/ienoopen-1.0.0.tgz#346a428f474aac8f50cf3784ea2d0f16f62bda6b" 2186 | 2187 | ignore-by-default@^1.0.0: 2188 | version "1.0.1" 2189 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 2190 | 2191 | ignore@^3.1.2, ignore@^3.1.5, ignore@^3.2.0: 2192 | version "3.2.4" 2193 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.4.tgz#4055e03596729a8fabe45a43c100ad5ed815c4e8" 2194 | 2195 | imurmurhash@^0.1.4: 2196 | version "0.1.4" 2197 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 2198 | 2199 | infinity-agent@^2.0.0: 2200 | version "2.0.3" 2201 | resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 2202 | 2203 | inflight@^1.0.4: 2204 | version "1.0.6" 2205 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 2206 | dependencies: 2207 | once "^1.3.0" 2208 | wrappy "1" 2209 | 2210 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 2211 | version "2.0.3" 2212 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 2213 | 2214 | ini@~1.3.0: 2215 | version "1.3.4" 2216 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 2217 | 2218 | inquirer@^0.12.0: 2219 | version "0.12.0" 2220 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 2221 | dependencies: 2222 | ansi-escapes "^1.1.0" 2223 | ansi-regex "^2.0.0" 2224 | chalk "^1.0.0" 2225 | cli-cursor "^1.0.1" 2226 | cli-width "^2.0.0" 2227 | figures "^1.3.5" 2228 | lodash "^4.3.0" 2229 | readline2 "^1.0.1" 2230 | run-async "^0.1.0" 2231 | rx-lite "^3.1.2" 2232 | string-width "^1.0.1" 2233 | strip-ansi "^3.0.0" 2234 | through "^2.3.6" 2235 | 2236 | interpret@^1.0.0: 2237 | version "1.0.1" 2238 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 2239 | 2240 | invariant@^2.2.0: 2241 | version "2.2.2" 2242 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 2243 | dependencies: 2244 | loose-envify "^1.0.0" 2245 | 2246 | invert-kv@^1.0.0: 2247 | version "1.0.0" 2248 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2249 | 2250 | ip-regex@^1.0.0: 2251 | version "1.0.3" 2252 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-1.0.3.tgz#dc589076f659f419c222039a33316f1c7387effd" 2253 | 2254 | ipaddr.js@1.2.0: 2255 | version "1.2.0" 2256 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.2.0.tgz#8aba49c9192799585bdd643e0ccb50e8ae777ba4" 2257 | 2258 | is-arrayish@^0.2.1: 2259 | version "0.2.1" 2260 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2261 | 2262 | is-binary-path@^1.0.0: 2263 | version "1.0.1" 2264 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2265 | dependencies: 2266 | binary-extensions "^1.0.0" 2267 | 2268 | is-buffer@^1.0.2: 2269 | version "1.1.4" 2270 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 2271 | 2272 | is-builtin-module@^1.0.0: 2273 | version "1.0.0" 2274 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2275 | dependencies: 2276 | builtin-modules "^1.0.0" 2277 | 2278 | is-dotfile@^1.0.0: 2279 | version "1.0.2" 2280 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2281 | 2282 | is-equal-shallow@^0.1.3: 2283 | version "0.1.3" 2284 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2285 | dependencies: 2286 | is-primitive "^2.0.0" 2287 | 2288 | is-extendable@^0.1.1: 2289 | version "0.1.1" 2290 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2291 | 2292 | is-extglob@^1.0.0: 2293 | version "1.0.0" 2294 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2295 | 2296 | is-finite@^1.0.0: 2297 | version "1.0.2" 2298 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2299 | dependencies: 2300 | number-is-nan "^1.0.0" 2301 | 2302 | is-fullwidth-code-point@^1.0.0: 2303 | version "1.0.0" 2304 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2305 | dependencies: 2306 | number-is-nan "^1.0.0" 2307 | 2308 | is-fullwidth-code-point@^2.0.0: 2309 | version "2.0.0" 2310 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 2311 | 2312 | is-glob@^2.0.0, is-glob@^2.0.1: 2313 | version "2.0.1" 2314 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2315 | dependencies: 2316 | is-extglob "^1.0.0" 2317 | 2318 | is-ip@1.0.0: 2319 | version "1.0.0" 2320 | resolved "https://registry.yarnpkg.com/is-ip/-/is-ip-1.0.0.tgz#2bb6959f797ccd6f9fdc812758bcbc87c4c59074" 2321 | dependencies: 2322 | ip-regex "^1.0.0" 2323 | 2324 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2325 | version "2.16.0" 2326 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 2327 | dependencies: 2328 | generate-function "^2.0.0" 2329 | generate-object-property "^1.1.0" 2330 | jsonpointer "^4.0.0" 2331 | xtend "^4.0.0" 2332 | 2333 | is-npm@^1.0.0: 2334 | version "1.0.0" 2335 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2336 | 2337 | is-number@^2.0.2, is-number@^2.1.0: 2338 | version "2.1.0" 2339 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2340 | dependencies: 2341 | kind-of "^3.0.2" 2342 | 2343 | is-path-cwd@^1.0.0: 2344 | version "1.0.0" 2345 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2346 | 2347 | is-path-in-cwd@^1.0.0: 2348 | version "1.0.0" 2349 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2350 | dependencies: 2351 | is-path-inside "^1.0.0" 2352 | 2353 | is-path-inside@^1.0.0: 2354 | version "1.0.0" 2355 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2356 | dependencies: 2357 | path-is-inside "^1.0.1" 2358 | 2359 | is-posix-bracket@^0.1.0: 2360 | version "0.1.1" 2361 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2362 | 2363 | is-primitive@^2.0.0: 2364 | version "2.0.0" 2365 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2366 | 2367 | is-property@^1.0.0: 2368 | version "1.0.2" 2369 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2370 | 2371 | is-redirect@^1.0.0: 2372 | version "1.0.0" 2373 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2374 | 2375 | is-resolvable@^1.0.0: 2376 | version "1.0.0" 2377 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2378 | dependencies: 2379 | tryit "^1.0.1" 2380 | 2381 | is-stream@^1.0.0: 2382 | version "1.1.0" 2383 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2384 | 2385 | is-typedarray@~1.0.0: 2386 | version "1.0.0" 2387 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2388 | 2389 | is-utf8@^0.2.0: 2390 | version "0.2.1" 2391 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2392 | 2393 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2394 | version "1.0.0" 2395 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2396 | 2397 | isemail@1.x.x: 2398 | version "1.2.0" 2399 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-1.2.0.tgz#be03df8cc3e29de4d2c5df6501263f1fa4595e9a" 2400 | 2401 | isexe@^1.1.1: 2402 | version "1.1.2" 2403 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2404 | 2405 | isobject@^2.0.0: 2406 | version "2.1.0" 2407 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2408 | dependencies: 2409 | isarray "1.0.0" 2410 | 2411 | isstream@~0.1.2: 2412 | version "0.1.2" 2413 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2414 | 2415 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0, istanbul-lib-coverage@^1.0.1: 2416 | version "1.0.1" 2417 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.1.tgz#f263efb519c051c5f1f3343034fc40e7b43ff212" 2418 | 2419 | istanbul-lib-hook@^1.0.0: 2420 | version "1.0.0" 2421 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0.tgz#fc5367ee27f59268e8f060b0c7aaf051d9c425c5" 2422 | dependencies: 2423 | append-transform "^0.4.0" 2424 | 2425 | istanbul-lib-instrument@^1.4.2: 2426 | version "1.4.2" 2427 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.4.2.tgz#0e2fdfac93c1dabf2e31578637dc78a19089f43e" 2428 | dependencies: 2429 | babel-generator "^6.18.0" 2430 | babel-template "^6.16.0" 2431 | babel-traverse "^6.18.0" 2432 | babel-types "^6.18.0" 2433 | babylon "^6.13.0" 2434 | istanbul-lib-coverage "^1.0.0" 2435 | semver "^5.3.0" 2436 | 2437 | istanbul-lib-report@^1.0.0-alpha.3: 2438 | version "1.0.0-alpha.3" 2439 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 2440 | dependencies: 2441 | async "^1.4.2" 2442 | istanbul-lib-coverage "^1.0.0-alpha" 2443 | mkdirp "^0.5.1" 2444 | path-parse "^1.0.5" 2445 | rimraf "^2.4.3" 2446 | supports-color "^3.1.2" 2447 | 2448 | istanbul-lib-source-maps@^1.1.0: 2449 | version "1.1.0" 2450 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.1.0.tgz#9d429218f35b823560ea300a96ff0c3bbdab785f" 2451 | dependencies: 2452 | istanbul-lib-coverage "^1.0.0-alpha.0" 2453 | mkdirp "^0.5.1" 2454 | rimraf "^2.4.4" 2455 | source-map "^0.5.3" 2456 | 2457 | istanbul-reports@^1.0.0: 2458 | version "1.0.1" 2459 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.1.tgz#9a17176bc4a6cbebdae52b2f15961d52fa623fbc" 2460 | dependencies: 2461 | handlebars "^4.0.3" 2462 | 2463 | jodid25519@^1.0.0: 2464 | version "1.0.2" 2465 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2466 | dependencies: 2467 | jsbn "~0.1.0" 2468 | 2469 | joi@^6.10.1: 2470 | version "6.10.1" 2471 | resolved "https://registry.yarnpkg.com/joi/-/joi-6.10.1.tgz#4d50c318079122000fe5f16af1ff8e1917b77e06" 2472 | dependencies: 2473 | hoek "2.x.x" 2474 | isemail "1.x.x" 2475 | moment "2.x.x" 2476 | topo "1.x.x" 2477 | 2478 | js-tokens@^3.0.0: 2479 | version "3.0.1" 2480 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2481 | 2482 | js-yaml@^3.5.1: 2483 | version "3.8.1" 2484 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.1.tgz#782ba50200be7b9e5a8537001b7804db3ad02628" 2485 | dependencies: 2486 | argparse "^1.0.7" 2487 | esprima "^3.1.1" 2488 | 2489 | jsbn@~0.1.0: 2490 | version "0.1.1" 2491 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2492 | 2493 | jsesc@^1.3.0: 2494 | version "1.3.0" 2495 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2496 | 2497 | jsesc@~0.5.0: 2498 | version "0.5.0" 2499 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2500 | 2501 | json-schema@0.2.3: 2502 | version "0.2.3" 2503 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2504 | 2505 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2506 | version "1.0.1" 2507 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2508 | dependencies: 2509 | jsonify "~0.0.0" 2510 | 2511 | json-stringify-safe@~5.0.1: 2512 | version "5.0.1" 2513 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2514 | 2515 | json3@3.3.2: 2516 | version "3.3.2" 2517 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2518 | 2519 | json5@^0.5.0: 2520 | version "0.5.1" 2521 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2522 | 2523 | jsonify@~0.0.0: 2524 | version "0.0.0" 2525 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2526 | 2527 | jsonpointer@^4.0.0: 2528 | version "4.0.1" 2529 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2530 | 2531 | jsonwebtoken@^7.1.9: 2532 | version "7.3.0" 2533 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-7.3.0.tgz#85118d6a70e3fccdf14389f4e7a1c3f9c8a9fbba" 2534 | dependencies: 2535 | joi "^6.10.1" 2536 | jws "^3.1.4" 2537 | lodash.once "^4.0.0" 2538 | ms "^0.7.1" 2539 | xtend "^4.0.1" 2540 | 2541 | jsprim@^1.2.2: 2542 | version "1.3.1" 2543 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2544 | dependencies: 2545 | extsprintf "1.0.2" 2546 | json-schema "0.2.3" 2547 | verror "1.3.6" 2548 | 2549 | jsx-ast-utils@^1.3.1: 2550 | version "1.4.0" 2551 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.4.0.tgz#5afe38868f56bc8cc7aeaef0100ba8c75bd12591" 2552 | dependencies: 2553 | object-assign "^4.1.0" 2554 | 2555 | jwa@^1.1.4: 2556 | version "1.1.5" 2557 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.5.tgz#a0552ce0220742cd52e153774a32905c30e756e5" 2558 | dependencies: 2559 | base64url "2.0.0" 2560 | buffer-equal-constant-time "1.0.1" 2561 | ecdsa-sig-formatter "1.0.9" 2562 | safe-buffer "^5.0.1" 2563 | 2564 | jws@^3.1.4: 2565 | version "3.1.4" 2566 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.4.tgz#f9e8b9338e8a847277d6444b1464f61880e050a2" 2567 | dependencies: 2568 | base64url "^2.0.0" 2569 | jwa "^1.1.4" 2570 | safe-buffer "^5.0.1" 2571 | 2572 | kind-of@^3.0.2: 2573 | version "3.1.0" 2574 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2575 | dependencies: 2576 | is-buffer "^1.0.2" 2577 | 2578 | latest-version@^1.0.0: 2579 | version "1.0.1" 2580 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 2581 | dependencies: 2582 | package-json "^1.0.0" 2583 | 2584 | lazy-cache@^1.0.3: 2585 | version "1.0.4" 2586 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2587 | 2588 | lcid@^1.0.0: 2589 | version "1.0.0" 2590 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2591 | dependencies: 2592 | invert-kv "^1.0.0" 2593 | 2594 | levn@^0.3.0, levn@~0.3.0: 2595 | version "0.3.0" 2596 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2597 | dependencies: 2598 | prelude-ls "~1.1.2" 2599 | type-check "~0.3.2" 2600 | 2601 | load-json-file@^1.0.0: 2602 | version "1.1.0" 2603 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2604 | dependencies: 2605 | graceful-fs "^4.1.2" 2606 | parse-json "^2.2.0" 2607 | pify "^2.0.0" 2608 | pinkie-promise "^2.0.0" 2609 | strip-bom "^2.0.0" 2610 | 2611 | lodash._baseassign@^3.0.0: 2612 | version "3.2.0" 2613 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2614 | dependencies: 2615 | lodash._basecopy "^3.0.0" 2616 | lodash.keys "^3.0.0" 2617 | 2618 | lodash._basecopy@^3.0.0: 2619 | version "3.0.1" 2620 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2621 | 2622 | lodash._basecreate@^3.0.0: 2623 | version "3.0.3" 2624 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 2625 | 2626 | lodash._bindcallback@^3.0.0: 2627 | version "3.0.1" 2628 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2629 | 2630 | lodash._createassigner@^3.0.0: 2631 | version "3.1.1" 2632 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2633 | dependencies: 2634 | lodash._bindcallback "^3.0.0" 2635 | lodash._isiterateecall "^3.0.0" 2636 | lodash.restparam "^3.0.0" 2637 | 2638 | lodash._getnative@^3.0.0: 2639 | version "3.9.1" 2640 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2641 | 2642 | lodash._isiterateecall@^3.0.0: 2643 | version "3.0.9" 2644 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2645 | 2646 | lodash.assign@^3.0.0: 2647 | version "3.2.0" 2648 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2649 | dependencies: 2650 | lodash._baseassign "^3.0.0" 2651 | lodash._createassigner "^3.0.0" 2652 | lodash.keys "^3.0.0" 2653 | 2654 | lodash.assign@^4.0.0: 2655 | version "4.2.0" 2656 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2657 | 2658 | lodash.cond@^4.3.0: 2659 | version "4.5.2" 2660 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2661 | 2662 | lodash.create@3.1.1: 2663 | version "3.1.1" 2664 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 2665 | dependencies: 2666 | lodash._baseassign "^3.0.0" 2667 | lodash._basecreate "^3.0.0" 2668 | lodash._isiterateecall "^3.0.0" 2669 | 2670 | lodash.defaults@^3.1.2: 2671 | version "3.1.2" 2672 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 2673 | dependencies: 2674 | lodash.assign "^3.0.0" 2675 | lodash.restparam "^3.0.0" 2676 | 2677 | lodash.endswith@^4.0.1: 2678 | version "4.2.1" 2679 | resolved "https://registry.yarnpkg.com/lodash.endswith/-/lodash.endswith-4.2.1.tgz#fed59ac1738ed3e236edd7064ec456448b37bc09" 2680 | 2681 | lodash.find@^4.3.0: 2682 | version "4.6.0" 2683 | resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1" 2684 | 2685 | lodash.findindex@^4.3.0: 2686 | version "4.6.0" 2687 | resolved "https://registry.yarnpkg.com/lodash.findindex/-/lodash.findindex-4.6.0.tgz#a3245dee61fb9b6e0624b535125624bb69c11106" 2688 | 2689 | lodash.isarguments@^3.0.0: 2690 | version "3.1.0" 2691 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2692 | 2693 | lodash.isarray@^3.0.0: 2694 | version "3.0.4" 2695 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2696 | 2697 | lodash.keys@^3.0.0: 2698 | version "3.1.2" 2699 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2700 | dependencies: 2701 | lodash._getnative "^3.0.0" 2702 | lodash.isarguments "^3.0.0" 2703 | lodash.isarray "^3.0.0" 2704 | 2705 | lodash.once@^4.0.0: 2706 | version "4.1.1" 2707 | resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" 2708 | 2709 | lodash.pickby@^4.0.0, lodash.pickby@^4.6.0: 2710 | version "4.6.0" 2711 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2712 | 2713 | lodash.reduce@4.6.0: 2714 | version "4.6.0" 2715 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 2716 | 2717 | lodash.restparam@^3.0.0: 2718 | version "3.6.1" 2719 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2720 | 2721 | lodash@^4.0.0, lodash@^4.2.0, lodash@^4.3.0: 2722 | version "4.17.4" 2723 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2724 | 2725 | longest@^1.0.1: 2726 | version "1.0.1" 2727 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2728 | 2729 | loose-envify@^1.0.0: 2730 | version "1.3.1" 2731 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2732 | dependencies: 2733 | js-tokens "^3.0.0" 2734 | 2735 | lowercase-keys@^1.0.0: 2736 | version "1.0.0" 2737 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2738 | 2739 | lru-cache@^4.0.1: 2740 | version "4.0.2" 2741 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2742 | dependencies: 2743 | pseudomap "^1.0.1" 2744 | yallist "^2.0.0" 2745 | 2746 | map-stream@~0.1.0: 2747 | version "0.1.0" 2748 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 2749 | 2750 | md5-hex@^1.2.0: 2751 | version "1.3.0" 2752 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2753 | dependencies: 2754 | md5-o-matic "^0.1.1" 2755 | 2756 | md5-o-matic@^0.1.1: 2757 | version "0.1.1" 2758 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2759 | 2760 | media-typer@0.3.0: 2761 | version "0.3.0" 2762 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2763 | 2764 | merge-descriptors@1.0.1: 2765 | version "1.0.1" 2766 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2767 | 2768 | merge-source-map@^1.0.2: 2769 | version "1.0.3" 2770 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.0.3.tgz#da1415f2722a5119db07b14c4f973410863a2abf" 2771 | dependencies: 2772 | source-map "^0.5.3" 2773 | 2774 | methods@^1.1.1, methods@^1.1.2, methods@~1.1.2: 2775 | version "1.1.2" 2776 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2777 | 2778 | micromatch@^2.1.5, micromatch@^2.3.11: 2779 | version "2.3.11" 2780 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2781 | dependencies: 2782 | arr-diff "^2.0.0" 2783 | array-unique "^0.2.1" 2784 | braces "^1.8.2" 2785 | expand-brackets "^0.1.4" 2786 | extglob "^0.3.1" 2787 | filename-regex "^2.0.0" 2788 | is-extglob "^1.0.0" 2789 | is-glob "^2.0.1" 2790 | kind-of "^3.0.2" 2791 | normalize-path "^2.0.1" 2792 | object.omit "^2.0.0" 2793 | parse-glob "^3.0.4" 2794 | regex-cache "^0.4.2" 2795 | 2796 | mime-db@~1.26.0: 2797 | version "1.26.0" 2798 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" 2799 | 2800 | mime-types@^2.1.10, mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7: 2801 | version "2.1.14" 2802 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" 2803 | dependencies: 2804 | mime-db "~1.26.0" 2805 | 2806 | mime@1.3.4, mime@^1.3.4: 2807 | version "1.3.4" 2808 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2809 | 2810 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: 2811 | version "3.0.3" 2812 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2813 | dependencies: 2814 | brace-expansion "^1.0.0" 2815 | 2816 | minimist@0.0.8, minimist@~0.0.1: 2817 | version "0.0.8" 2818 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2819 | 2820 | minimist@^1.2.0: 2821 | version "1.2.0" 2822 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2823 | 2824 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: 2825 | version "0.5.1" 2826 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2827 | dependencies: 2828 | minimist "0.0.8" 2829 | 2830 | mocha@^3.1.2: 2831 | version "3.2.0" 2832 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.2.0.tgz#7dc4f45e5088075171a68896814e6ae9eb7a85e3" 2833 | dependencies: 2834 | browser-stdout "1.3.0" 2835 | commander "2.9.0" 2836 | debug "2.2.0" 2837 | diff "1.4.0" 2838 | escape-string-regexp "1.0.5" 2839 | glob "7.0.5" 2840 | growl "1.9.2" 2841 | json3 "3.3.2" 2842 | lodash.create "3.1.1" 2843 | mkdirp "0.5.1" 2844 | supports-color "3.1.2" 2845 | 2846 | moment@2.x.x: 2847 | version "2.17.1" 2848 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.17.1.tgz#fed9506063f36b10f066c8b59a144d7faebe1d82" 2849 | 2850 | morgan@^1.8.1: 2851 | version "1.8.1" 2852 | resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.8.1.tgz#f93023d3887bd27b78dfd6023cea7892ee27a4b1" 2853 | dependencies: 2854 | basic-auth "~1.1.0" 2855 | debug "2.6.1" 2856 | depd "~1.1.0" 2857 | on-finished "~2.3.0" 2858 | on-headers "~1.0.1" 2859 | 2860 | ms@0.7.1: 2861 | version "0.7.1" 2862 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2863 | 2864 | ms@0.7.2, ms@^0.7.1: 2865 | version "0.7.2" 2866 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2867 | 2868 | mute-stream@0.0.5: 2869 | version "0.0.5" 2870 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2871 | 2872 | nan@2.3.5, nan@^2.3.0: 2873 | version "2.3.5" 2874 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.3.5.tgz#822a0dc266290ce4cd3a12282ca3e7e364668a08" 2875 | 2876 | natural-compare@^1.4.0: 2877 | version "1.4.0" 2878 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2879 | 2880 | negotiator@0.6.1: 2881 | version "0.6.1" 2882 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2883 | 2884 | nested-error-stacks@^1.0.0: 2885 | version "1.0.2" 2886 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 2887 | dependencies: 2888 | inherits "~2.0.1" 2889 | 2890 | nocache@2.0.0: 2891 | version "2.0.0" 2892 | resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.0.0.tgz#202b48021a0c4cbde2df80de15a17443c8b43980" 2893 | 2894 | node-pre-gyp@^0.6.29: 2895 | version "0.6.33" 2896 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz#640ac55198f6a925972e0c16c4ac26a034d5ecc9" 2897 | dependencies: 2898 | mkdirp "~0.5.1" 2899 | nopt "~3.0.6" 2900 | npmlog "^4.0.1" 2901 | rc "~1.1.6" 2902 | request "^2.79.0" 2903 | rimraf "~2.5.4" 2904 | semver "~5.3.0" 2905 | tar "~2.2.1" 2906 | tar-pack "~3.3.0" 2907 | 2908 | nodemailer@^3.1.8: 2909 | version "3.1.8" 2910 | resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-3.1.8.tgz#febfaccb4bd273678473a309c6cb4b4a2f3c48e3" 2911 | 2912 | nodemon@^1.11.0: 2913 | version "1.11.0" 2914 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.11.0.tgz#226c562bd2a7b13d3d7518b49ad4828a3623d06c" 2915 | dependencies: 2916 | chokidar "^1.4.3" 2917 | debug "^2.2.0" 2918 | es6-promise "^3.0.2" 2919 | ignore-by-default "^1.0.0" 2920 | lodash.defaults "^3.1.2" 2921 | minimatch "^3.0.0" 2922 | ps-tree "^1.0.1" 2923 | touch "1.0.0" 2924 | undefsafe "0.0.3" 2925 | update-notifier "0.5.0" 2926 | 2927 | nopt@~1.0.10: 2928 | version "1.0.10" 2929 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2930 | dependencies: 2931 | abbrev "1" 2932 | 2933 | nopt@~3.0.6: 2934 | version "3.0.6" 2935 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2936 | dependencies: 2937 | abbrev "1" 2938 | 2939 | normalize-package-data@^2.3.2: 2940 | version "2.3.5" 2941 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 2942 | dependencies: 2943 | hosted-git-info "^2.1.4" 2944 | is-builtin-module "^1.0.0" 2945 | semver "2 || 3 || 4 || 5" 2946 | validate-npm-package-license "^3.0.1" 2947 | 2948 | normalize-path@^2.0.1: 2949 | version "2.0.1" 2950 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2951 | 2952 | npmlog@^4.0.1: 2953 | version "4.0.2" 2954 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2955 | dependencies: 2956 | are-we-there-yet "~1.1.2" 2957 | console-control-strings "~1.1.0" 2958 | gauge "~2.7.1" 2959 | set-blocking "~2.0.0" 2960 | 2961 | number-is-nan@^1.0.0: 2962 | version "1.0.1" 2963 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2964 | 2965 | nyc@^10.0.0: 2966 | version "10.1.2" 2967 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.1.2.tgz#ea7acaa20a235210101604f4e7d56d28453b0274" 2968 | dependencies: 2969 | archy "^1.0.0" 2970 | arrify "^1.0.1" 2971 | caching-transform "^1.0.0" 2972 | convert-source-map "^1.3.0" 2973 | debug-log "^1.0.1" 2974 | default-require-extensions "^1.0.0" 2975 | find-cache-dir "^0.1.1" 2976 | find-up "^1.1.2" 2977 | foreground-child "^1.5.3" 2978 | glob "^7.0.6" 2979 | istanbul-lib-coverage "^1.0.1" 2980 | istanbul-lib-hook "^1.0.0" 2981 | istanbul-lib-instrument "^1.4.2" 2982 | istanbul-lib-report "^1.0.0-alpha.3" 2983 | istanbul-lib-source-maps "^1.1.0" 2984 | istanbul-reports "^1.0.0" 2985 | md5-hex "^1.2.0" 2986 | merge-source-map "^1.0.2" 2987 | micromatch "^2.3.11" 2988 | mkdirp "^0.5.0" 2989 | resolve-from "^2.0.0" 2990 | rimraf "^2.5.4" 2991 | signal-exit "^3.0.1" 2992 | spawn-wrap "1.2.4" 2993 | test-exclude "^3.3.0" 2994 | yargs "^6.6.0" 2995 | yargs-parser "^4.0.2" 2996 | 2997 | oauth-sign@~0.8.1: 2998 | version "0.8.2" 2999 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3000 | 3001 | object-assign@^3.0.0: 3002 | version "3.0.0" 3003 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 3004 | 3005 | object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0: 3006 | version "4.1.1" 3007 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3008 | 3009 | object.omit@^2.0.0: 3010 | version "2.0.1" 3011 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3012 | dependencies: 3013 | for-own "^0.1.4" 3014 | is-extendable "^0.1.1" 3015 | 3016 | on-finished@~2.3.0: 3017 | version "2.3.0" 3018 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 3019 | dependencies: 3020 | ee-first "1.1.1" 3021 | 3022 | on-headers@~1.0.1: 3023 | version "1.0.1" 3024 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 3025 | 3026 | once@^1.3.0: 3027 | version "1.4.0" 3028 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3029 | dependencies: 3030 | wrappy "1" 3031 | 3032 | once@~1.3.0, once@~1.3.3: 3033 | version "1.3.3" 3034 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 3035 | dependencies: 3036 | wrappy "1" 3037 | 3038 | onetime@^1.0.0: 3039 | version "1.1.0" 3040 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3041 | 3042 | optimist@^0.6.1: 3043 | version "0.6.1" 3044 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3045 | dependencies: 3046 | minimist "~0.0.1" 3047 | wordwrap "~0.0.2" 3048 | 3049 | optionator@^0.8.1, optionator@^0.8.2: 3050 | version "0.8.2" 3051 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3052 | dependencies: 3053 | deep-is "~0.1.3" 3054 | fast-levenshtein "~2.0.4" 3055 | levn "~0.3.0" 3056 | prelude-ls "~1.1.2" 3057 | type-check "~0.3.2" 3058 | wordwrap "~1.0.0" 3059 | 3060 | os-homedir@^1.0.0, os-homedir@^1.0.1: 3061 | version "1.0.2" 3062 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3063 | 3064 | os-locale@^1.4.0: 3065 | version "1.4.0" 3066 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3067 | dependencies: 3068 | lcid "^1.0.0" 3069 | 3070 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 3071 | version "1.0.2" 3072 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3073 | 3074 | osenv@^0.1.0: 3075 | version "0.1.4" 3076 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3077 | dependencies: 3078 | os-homedir "^1.0.0" 3079 | os-tmpdir "^1.0.0" 3080 | 3081 | output-file-sync@^1.1.0: 3082 | version "1.1.2" 3083 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3084 | dependencies: 3085 | graceful-fs "^4.1.4" 3086 | mkdirp "^0.5.1" 3087 | object-assign "^4.1.0" 3088 | 3089 | package-json@^1.0.0: 3090 | version "1.2.0" 3091 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 3092 | dependencies: 3093 | got "^3.2.0" 3094 | registry-url "^3.0.0" 3095 | 3096 | parse-glob@^3.0.4: 3097 | version "3.0.4" 3098 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3099 | dependencies: 3100 | glob-base "^0.3.0" 3101 | is-dotfile "^1.0.0" 3102 | is-extglob "^1.0.0" 3103 | is-glob "^2.0.0" 3104 | 3105 | parse-json@^2.2.0: 3106 | version "2.2.0" 3107 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3108 | dependencies: 3109 | error-ex "^1.2.0" 3110 | 3111 | parseurl@~1.3.1: 3112 | version "1.3.1" 3113 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 3114 | 3115 | path-exists@^2.0.0: 3116 | version "2.1.0" 3117 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3118 | dependencies: 3119 | pinkie-promise "^2.0.0" 3120 | 3121 | path-is-absolute@^1.0.0: 3122 | version "1.0.1" 3123 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3124 | 3125 | path-is-inside@^1.0.1: 3126 | version "1.0.2" 3127 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3128 | 3129 | path-parse@^1.0.5: 3130 | version "1.0.5" 3131 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3132 | 3133 | path-to-regexp@0.1.7: 3134 | version "0.1.7" 3135 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 3136 | 3137 | path-type@^1.0.0: 3138 | version "1.1.0" 3139 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3140 | dependencies: 3141 | graceful-fs "^4.1.2" 3142 | pify "^2.0.0" 3143 | pinkie-promise "^2.0.0" 3144 | 3145 | pause-stream@0.0.11: 3146 | version "0.0.11" 3147 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 3148 | dependencies: 3149 | through "~2.3" 3150 | 3151 | pify@^2.0.0: 3152 | version "2.3.0" 3153 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3154 | 3155 | pinkie-promise@^2.0.0: 3156 | version "2.0.1" 3157 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3158 | dependencies: 3159 | pinkie "^2.0.0" 3160 | 3161 | pinkie@^2.0.0: 3162 | version "2.0.4" 3163 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3164 | 3165 | pkg-dir@^1.0.0: 3166 | version "1.0.0" 3167 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3168 | dependencies: 3169 | find-up "^1.0.0" 3170 | 3171 | pkg-up@^1.0.0: 3172 | version "1.0.0" 3173 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 3174 | dependencies: 3175 | find-up "^1.0.0" 3176 | 3177 | platform@1.3.3: 3178 | version "1.3.3" 3179 | resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.3.tgz#646c77011899870b6a0903e75e997e8e51da7461" 3180 | 3181 | pluralize@^1.2.1: 3182 | version "1.2.1" 3183 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3184 | 3185 | prelude-ls@~1.1.2: 3186 | version "1.1.2" 3187 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3188 | 3189 | prepend-http@^1.0.0: 3190 | version "1.0.4" 3191 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3192 | 3193 | preserve@^0.2.0: 3194 | version "0.2.0" 3195 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3196 | 3197 | private@^0.1.6: 3198 | version "0.1.7" 3199 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3200 | 3201 | process-nextick-args@~1.0.6: 3202 | version "1.0.7" 3203 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3204 | 3205 | progress@^1.1.8: 3206 | version "1.1.8" 3207 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3208 | 3209 | proxy-addr@~1.1.3: 3210 | version "1.1.3" 3211 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.3.tgz#dc97502f5722e888467b3fa2297a7b1ff47df074" 3212 | dependencies: 3213 | forwarded "~0.1.0" 3214 | ipaddr.js "1.2.0" 3215 | 3216 | ps-tree@^1.0.1: 3217 | version "1.1.0" 3218 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 3219 | dependencies: 3220 | event-stream "~3.3.0" 3221 | 3222 | pseudomap@^1.0.1: 3223 | version "1.0.2" 3224 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3225 | 3226 | punycode@^1.4.1: 3227 | version "1.4.1" 3228 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3229 | 3230 | qs@6.2.0: 3231 | version "6.2.0" 3232 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" 3233 | 3234 | qs@6.2.1, qs@^6.1.0, qs@^6.2.0: 3235 | version "6.2.1" 3236 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 3237 | 3238 | qs@~6.3.0: 3239 | version "6.3.1" 3240 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.1.tgz#918c0b3bcd36679772baf135b1acb4c1651ed79d" 3241 | 3242 | randomatic@^1.1.3: 3243 | version "1.1.6" 3244 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3245 | dependencies: 3246 | is-number "^2.0.2" 3247 | kind-of "^3.0.2" 3248 | 3249 | range-parser@~1.2.0: 3250 | version "1.2.0" 3251 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 3252 | 3253 | raw-body@~2.2.0: 3254 | version "2.2.0" 3255 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96" 3256 | dependencies: 3257 | bytes "2.4.0" 3258 | iconv-lite "0.4.15" 3259 | unpipe "1.0.0" 3260 | 3261 | rc@^1.0.1, rc@~1.1.6: 3262 | version "1.1.7" 3263 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.7.tgz#c5ea564bb07aff9fd3a5b32e906c1d3a65940fea" 3264 | dependencies: 3265 | deep-extend "~0.4.0" 3266 | ini "~1.3.0" 3267 | minimist "^1.2.0" 3268 | strip-json-comments "~2.0.1" 3269 | 3270 | read-all-stream@^3.0.0: 3271 | version "3.1.0" 3272 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 3273 | dependencies: 3274 | pinkie-promise "^2.0.0" 3275 | readable-stream "^2.0.0" 3276 | 3277 | read-json-sync@^1.1.0: 3278 | version "1.1.1" 3279 | resolved "https://registry.yarnpkg.com/read-json-sync/-/read-json-sync-1.1.1.tgz#43c669ae864aae308dfbbb2721a67e295ec8fff6" 3280 | dependencies: 3281 | graceful-fs "^4.1.2" 3282 | 3283 | read-pkg-up@^1.0.1: 3284 | version "1.0.1" 3285 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3286 | dependencies: 3287 | find-up "^1.0.0" 3288 | read-pkg "^1.0.0" 3289 | 3290 | read-pkg@^1.0.0: 3291 | version "1.1.0" 3292 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3293 | dependencies: 3294 | load-json-file "^1.0.0" 3295 | normalize-package-data "^2.3.2" 3296 | path-type "^1.0.0" 3297 | 3298 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.2.2: 3299 | version "2.2.3" 3300 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.3.tgz#9cf49463985df016c8ae8813097a9293a9b33729" 3301 | dependencies: 3302 | buffer-shims "^1.0.0" 3303 | core-util-is "~1.0.0" 3304 | inherits "~2.0.1" 3305 | isarray "~1.0.0" 3306 | process-nextick-args "~1.0.6" 3307 | string_decoder "~0.10.x" 3308 | util-deprecate "~1.0.1" 3309 | 3310 | readable-stream@~2.1.4: 3311 | version "2.1.5" 3312 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 3313 | dependencies: 3314 | buffer-shims "^1.0.0" 3315 | core-util-is "~1.0.0" 3316 | inherits "~2.0.1" 3317 | isarray "~1.0.0" 3318 | process-nextick-args "~1.0.6" 3319 | string_decoder "~0.10.x" 3320 | util-deprecate "~1.0.1" 3321 | 3322 | readdirp@^2.0.0: 3323 | version "2.1.0" 3324 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3325 | dependencies: 3326 | graceful-fs "^4.1.2" 3327 | minimatch "^3.0.2" 3328 | readable-stream "^2.0.2" 3329 | set-immediate-shim "^1.0.1" 3330 | 3331 | readline2@^1.0.1: 3332 | version "1.0.1" 3333 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3334 | dependencies: 3335 | code-point-at "^1.0.0" 3336 | is-fullwidth-code-point "^1.0.0" 3337 | mute-stream "0.0.5" 3338 | 3339 | rechoir@^0.6.2: 3340 | version "0.6.2" 3341 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3342 | dependencies: 3343 | resolve "^1.1.6" 3344 | 3345 | referrer-policy@1.1.0: 3346 | version "1.1.0" 3347 | resolved "https://registry.yarnpkg.com/referrer-policy/-/referrer-policy-1.1.0.tgz#35774eb735bf50fb6c078e83334b472350207d79" 3348 | 3349 | regenerate@^1.2.1: 3350 | version "1.3.2" 3351 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3352 | 3353 | regenerator-runtime@^0.10.0: 3354 | version "0.10.3" 3355 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 3356 | 3357 | regenerator-transform@0.9.8: 3358 | version "0.9.8" 3359 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 3360 | dependencies: 3361 | babel-runtime "^6.18.0" 3362 | babel-types "^6.19.0" 3363 | private "^0.1.6" 3364 | 3365 | regex-cache@^0.4.2: 3366 | version "0.4.3" 3367 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3368 | dependencies: 3369 | is-equal-shallow "^0.1.3" 3370 | is-primitive "^2.0.0" 3371 | 3372 | regexpu-core@^2.0.0: 3373 | version "2.0.0" 3374 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3375 | dependencies: 3376 | regenerate "^1.2.1" 3377 | regjsgen "^0.2.0" 3378 | regjsparser "^0.1.4" 3379 | 3380 | registry-url@^3.0.0: 3381 | version "3.1.0" 3382 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3383 | dependencies: 3384 | rc "^1.0.1" 3385 | 3386 | regjsgen@^0.2.0: 3387 | version "0.2.0" 3388 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3389 | 3390 | regjsparser@^0.1.4: 3391 | version "0.1.5" 3392 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3393 | dependencies: 3394 | jsesc "~0.5.0" 3395 | 3396 | repeat-element@^1.1.2: 3397 | version "1.1.2" 3398 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3399 | 3400 | repeat-string@^1.5.2: 3401 | version "1.6.1" 3402 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3403 | 3404 | repeating@^1.1.2: 3405 | version "1.1.3" 3406 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 3407 | dependencies: 3408 | is-finite "^1.0.0" 3409 | 3410 | repeating@^2.0.0: 3411 | version "2.0.1" 3412 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3413 | dependencies: 3414 | is-finite "^1.0.0" 3415 | 3416 | request@^2.79.0: 3417 | version "2.79.0" 3418 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" 3419 | dependencies: 3420 | aws-sign2 "~0.6.0" 3421 | aws4 "^1.2.1" 3422 | caseless "~0.11.0" 3423 | combined-stream "~1.0.5" 3424 | extend "~3.0.0" 3425 | forever-agent "~0.6.1" 3426 | form-data "~2.1.1" 3427 | har-validator "~2.0.6" 3428 | hawk "~3.1.3" 3429 | http-signature "~1.1.0" 3430 | is-typedarray "~1.0.0" 3431 | isstream "~0.1.2" 3432 | json-stringify-safe "~5.0.1" 3433 | mime-types "~2.1.7" 3434 | oauth-sign "~0.8.1" 3435 | qs "~6.3.0" 3436 | stringstream "~0.0.4" 3437 | tough-cookie "~2.3.0" 3438 | tunnel-agent "~0.4.1" 3439 | uuid "^3.0.0" 3440 | 3441 | require-directory@^2.1.1: 3442 | version "2.1.1" 3443 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3444 | 3445 | require-main-filename@^1.0.1: 3446 | version "1.0.1" 3447 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3448 | 3449 | require-uncached@^1.0.2: 3450 | version "1.0.3" 3451 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3452 | dependencies: 3453 | caller-path "^0.1.0" 3454 | resolve-from "^1.0.0" 3455 | 3456 | resolve-from@^1.0.0: 3457 | version "1.0.1" 3458 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3459 | 3460 | resolve-from@^2.0.0: 3461 | version "2.0.0" 3462 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3463 | 3464 | resolve@^1.1.6: 3465 | version "1.3.2" 3466 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 3467 | dependencies: 3468 | path-parse "^1.0.5" 3469 | 3470 | restore-cursor@^1.0.1: 3471 | version "1.0.1" 3472 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3473 | dependencies: 3474 | exit-hook "^1.0.0" 3475 | onetime "^1.0.0" 3476 | 3477 | rethinkdbdash@~2.3.0: 3478 | version "2.3.28" 3479 | resolved "https://registry.yarnpkg.com/rethinkdbdash/-/rethinkdbdash-2.3.28.tgz#f15fed3a2f0c178155fcadb6fc212b3df80f73df" 3480 | dependencies: 3481 | bluebird ">= 3.0.1" 3482 | 3483 | right-align@^0.1.1: 3484 | version "0.1.3" 3485 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3486 | dependencies: 3487 | align-text "^0.1.1" 3488 | 3489 | rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.4: 3490 | version "2.6.1" 3491 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3492 | dependencies: 3493 | glob "^7.0.5" 3494 | 3495 | rimraf@~2.5.1, rimraf@~2.5.4: 3496 | version "2.5.4" 3497 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3498 | dependencies: 3499 | glob "^7.0.5" 3500 | 3501 | run-async@^0.1.0: 3502 | version "0.1.0" 3503 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3504 | dependencies: 3505 | once "^1.3.0" 3506 | 3507 | rx-lite@^3.1.2: 3508 | version "3.1.2" 3509 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3510 | 3511 | safe-buffer@^5.0.1: 3512 | version "5.0.1" 3513 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3514 | 3515 | semver-diff@^2.0.0: 3516 | version "2.1.0" 3517 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3518 | dependencies: 3519 | semver "^5.0.3" 3520 | 3521 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.3.0, semver@~5.3.0: 3522 | version "5.3.0" 3523 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3524 | 3525 | send@0.14.2: 3526 | version "0.14.2" 3527 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.2.tgz#39b0438b3f510be5dc6f667a11f71689368cdeef" 3528 | dependencies: 3529 | debug "~2.2.0" 3530 | depd "~1.1.0" 3531 | destroy "~1.0.4" 3532 | encodeurl "~1.0.1" 3533 | escape-html "~1.0.3" 3534 | etag "~1.7.0" 3535 | fresh "0.3.0" 3536 | http-errors "~1.5.1" 3537 | mime "1.3.4" 3538 | ms "0.7.2" 3539 | on-finished "~2.3.0" 3540 | range-parser "~1.2.0" 3541 | statuses "~1.3.1" 3542 | 3543 | serve-static@~1.11.2: 3544 | version "1.11.2" 3545 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.2.tgz#2cf9889bd4435a320cc36895c9aa57bd662e6ac7" 3546 | dependencies: 3547 | encodeurl "~1.0.1" 3548 | escape-html "~1.0.3" 3549 | parseurl "~1.3.1" 3550 | send "0.14.2" 3551 | 3552 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3553 | version "2.0.0" 3554 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3555 | 3556 | set-immediate-shim@^1.0.1: 3557 | version "1.0.1" 3558 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3559 | 3560 | setprototypeof@1.0.2: 3561 | version "1.0.2" 3562 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 3563 | 3564 | shelljs@^0.6.0: 3565 | version "0.6.1" 3566 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8" 3567 | 3568 | shelljs@^0.7.5: 3569 | version "0.7.6" 3570 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad" 3571 | dependencies: 3572 | glob "^7.0.0" 3573 | interpret "^1.0.0" 3574 | rechoir "^0.6.2" 3575 | 3576 | signal-exit@^2.0.0: 3577 | version "2.1.2" 3578 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-2.1.2.tgz#375879b1f92ebc3b334480d038dc546a6d558564" 3579 | 3580 | signal-exit@^3.0.0, signal-exit@^3.0.1: 3581 | version "3.0.2" 3582 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3583 | 3584 | slash@^1.0.0: 3585 | version "1.0.0" 3586 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3587 | 3588 | slice-ansi@0.0.4: 3589 | version "0.0.4" 3590 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3591 | 3592 | slide@^1.1.5: 3593 | version "1.1.6" 3594 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3595 | 3596 | sntp@1.x.x: 3597 | version "1.0.9" 3598 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3599 | dependencies: 3600 | hoek "2.x.x" 3601 | 3602 | source-map-support@^0.4.2: 3603 | version "0.4.11" 3604 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" 3605 | dependencies: 3606 | source-map "^0.5.3" 3607 | 3608 | source-map@^0.4.4: 3609 | version "0.4.4" 3610 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3611 | dependencies: 3612 | amdefine ">=0.0.4" 3613 | 3614 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 3615 | version "0.5.6" 3616 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3617 | 3618 | spawn-wrap@1.2.4: 3619 | version "1.2.4" 3620 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.2.4.tgz#920eb211a769c093eebfbd5b0e7a5d2e68ab2e40" 3621 | dependencies: 3622 | foreground-child "^1.3.3" 3623 | mkdirp "^0.5.0" 3624 | os-homedir "^1.0.1" 3625 | rimraf "^2.3.3" 3626 | signal-exit "^2.0.0" 3627 | which "^1.2.4" 3628 | 3629 | spdx-correct@~1.0.0: 3630 | version "1.0.2" 3631 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3632 | dependencies: 3633 | spdx-license-ids "^1.0.2" 3634 | 3635 | spdx-expression-parse@~1.0.0: 3636 | version "1.0.4" 3637 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3638 | 3639 | spdx-license-ids@^1.0.2: 3640 | version "1.2.2" 3641 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3642 | 3643 | split@0.3: 3644 | version "0.3.3" 3645 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 3646 | dependencies: 3647 | through "2" 3648 | 3649 | sprintf-js@~1.0.2: 3650 | version "1.0.3" 3651 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3652 | 3653 | sshpk@^1.7.0: 3654 | version "1.10.2" 3655 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa" 3656 | dependencies: 3657 | asn1 "~0.2.3" 3658 | assert-plus "^1.0.0" 3659 | dashdash "^1.12.0" 3660 | getpass "^0.1.1" 3661 | optionalDependencies: 3662 | bcrypt-pbkdf "^1.0.0" 3663 | ecc-jsbn "~0.1.1" 3664 | jodid25519 "^1.0.0" 3665 | jsbn "~0.1.0" 3666 | tweetnacl "~0.14.0" 3667 | 3668 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 3669 | version "1.3.1" 3670 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3671 | 3672 | stream-combiner@~0.0.4: 3673 | version "0.0.4" 3674 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 3675 | dependencies: 3676 | duplexer "~0.1.1" 3677 | 3678 | stream-shift@^1.0.0: 3679 | version "1.0.0" 3680 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 3681 | 3682 | string-length@^1.0.0: 3683 | version "1.0.1" 3684 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3685 | dependencies: 3686 | strip-ansi "^3.0.0" 3687 | 3688 | string-width@^1.0.1, string-width@^1.0.2: 3689 | version "1.0.2" 3690 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3691 | dependencies: 3692 | code-point-at "^1.0.0" 3693 | is-fullwidth-code-point "^1.0.0" 3694 | strip-ansi "^3.0.0" 3695 | 3696 | string-width@^2.0.0: 3697 | version "2.0.0" 3698 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3699 | dependencies: 3700 | is-fullwidth-code-point "^2.0.0" 3701 | strip-ansi "^3.0.0" 3702 | 3703 | string_decoder@~0.10.x: 3704 | version "0.10.31" 3705 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3706 | 3707 | stringstream@~0.0.4: 3708 | version "0.0.5" 3709 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3710 | 3711 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3712 | version "3.0.1" 3713 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3714 | dependencies: 3715 | ansi-regex "^2.0.0" 3716 | 3717 | strip-bom@^2.0.0: 3718 | version "2.0.0" 3719 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3720 | dependencies: 3721 | is-utf8 "^0.2.0" 3722 | 3723 | strip-bom@^3.0.0: 3724 | version "3.0.0" 3725 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3726 | 3727 | strip-json-comments@~1.0.1: 3728 | version "1.0.4" 3729 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3730 | 3731 | strip-json-comments@~2.0.1: 3732 | version "2.0.1" 3733 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3734 | 3735 | superagent@^2.0.0: 3736 | version "2.3.0" 3737 | resolved "https://registry.yarnpkg.com/superagent/-/superagent-2.3.0.tgz#703529a0714e57e123959ddefbce193b2e50d115" 3738 | dependencies: 3739 | component-emitter "^1.2.0" 3740 | cookiejar "^2.0.6" 3741 | debug "^2.2.0" 3742 | extend "^3.0.0" 3743 | form-data "1.0.0-rc4" 3744 | formidable "^1.0.17" 3745 | methods "^1.1.1" 3746 | mime "^1.3.4" 3747 | qs "^6.1.0" 3748 | readable-stream "^2.0.5" 3749 | 3750 | supports-color@3.1.2, supports-color@^3.1.2: 3751 | version "3.1.2" 3752 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3753 | dependencies: 3754 | has-flag "^1.0.0" 3755 | 3756 | supports-color@^2.0.0: 3757 | version "2.0.0" 3758 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3759 | 3760 | table@^3.7.8: 3761 | version "3.8.3" 3762 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3763 | dependencies: 3764 | ajv "^4.7.0" 3765 | ajv-keywords "^1.0.0" 3766 | chalk "^1.1.1" 3767 | lodash "^4.0.0" 3768 | slice-ansi "0.0.4" 3769 | string-width "^2.0.0" 3770 | 3771 | tar-pack@~3.3.0: 3772 | version "3.3.0" 3773 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" 3774 | dependencies: 3775 | debug "~2.2.0" 3776 | fstream "~1.0.10" 3777 | fstream-ignore "~1.0.5" 3778 | once "~1.3.3" 3779 | readable-stream "~2.1.4" 3780 | rimraf "~2.5.1" 3781 | tar "~2.2.1" 3782 | uid-number "~0.0.6" 3783 | 3784 | tar@~2.2.1: 3785 | version "2.2.1" 3786 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3787 | dependencies: 3788 | block-stream "*" 3789 | fstream "^1.0.2" 3790 | inherits "2" 3791 | 3792 | test-exclude@^3.3.0: 3793 | version "3.3.0" 3794 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977" 3795 | dependencies: 3796 | arrify "^1.0.1" 3797 | micromatch "^2.3.11" 3798 | object-assign "^4.1.0" 3799 | read-pkg-up "^1.0.1" 3800 | require-main-filename "^1.0.1" 3801 | 3802 | text-table@~0.2.0: 3803 | version "0.2.0" 3804 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3805 | 3806 | thinky@^2.3.8: 3807 | version "2.3.8" 3808 | resolved "https://registry.yarnpkg.com/thinky/-/thinky-2.3.8.tgz#4d3d01fe0aaaa8cd97276965f40dbb4f017300f3" 3809 | dependencies: 3810 | bluebird "~2.10.2" 3811 | rethinkdbdash "~2.3.0" 3812 | validator "~3.22.1" 3813 | 3814 | through@2, through@^2.3.6, through@~2.3, through@~2.3.1: 3815 | version "2.3.8" 3816 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3817 | 3818 | timed-out@^2.0.0: 3819 | version "2.0.0" 3820 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 3821 | 3822 | to-fast-properties@^1.0.1: 3823 | version "1.0.2" 3824 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3825 | 3826 | topo@1.x.x: 3827 | version "1.1.0" 3828 | resolved "https://registry.yarnpkg.com/topo/-/topo-1.1.0.tgz#e9d751615d1bb87dc865db182fa1ca0a5ef536d5" 3829 | dependencies: 3830 | hoek "2.x.x" 3831 | 3832 | touch@1.0.0: 3833 | version "1.0.0" 3834 | resolved "https://registry.yarnpkg.com/touch/-/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 3835 | dependencies: 3836 | nopt "~1.0.10" 3837 | 3838 | tough-cookie@~2.3.0: 3839 | version "2.3.2" 3840 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3841 | dependencies: 3842 | punycode "^1.4.1" 3843 | 3844 | trim-right@^1.0.1: 3845 | version "1.0.1" 3846 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3847 | 3848 | tryit@^1.0.1: 3849 | version "1.0.3" 3850 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3851 | 3852 | tunnel-agent@~0.4.1: 3853 | version "0.4.3" 3854 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3855 | 3856 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3857 | version "0.14.5" 3858 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3859 | 3860 | type-check@~0.3.2: 3861 | version "0.3.2" 3862 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3863 | dependencies: 3864 | prelude-ls "~1.1.2" 3865 | 3866 | type-detect@0.1.1: 3867 | version "0.1.1" 3868 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3869 | 3870 | type-detect@^1.0.0: 3871 | version "1.0.0" 3872 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3873 | 3874 | type-is@~1.6.14: 3875 | version "1.6.14" 3876 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" 3877 | dependencies: 3878 | media-typer "0.3.0" 3879 | mime-types "~2.1.13" 3880 | 3881 | typedarray@^0.0.6: 3882 | version "0.0.6" 3883 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3884 | 3885 | uglify-js@^2.6: 3886 | version "2.8.3" 3887 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.3.tgz#1ed5037bc224904c43d36e7310177c02c4c76808" 3888 | dependencies: 3889 | async "~0.2.6" 3890 | source-map "~0.5.1" 3891 | uglify-to-browserify "~1.0.0" 3892 | yargs "~3.10.0" 3893 | 3894 | uglify-to-browserify@~1.0.0: 3895 | version "1.0.2" 3896 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3897 | 3898 | uid-number@~0.0.6: 3899 | version "0.0.6" 3900 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3901 | 3902 | undefsafe@0.0.3: 3903 | version "0.0.3" 3904 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 3905 | 3906 | unpipe@1.0.0, unpipe@~1.0.0: 3907 | version "1.0.0" 3908 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3909 | 3910 | update-notifier@0.5.0: 3911 | version "0.5.0" 3912 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 3913 | dependencies: 3914 | chalk "^1.0.0" 3915 | configstore "^1.0.0" 3916 | is-npm "^1.0.0" 3917 | latest-version "^1.0.0" 3918 | repeating "^1.1.2" 3919 | semver-diff "^2.0.0" 3920 | string-length "^1.0.0" 3921 | 3922 | user-home@^1.1.1: 3923 | version "1.1.1" 3924 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3925 | 3926 | user-home@^2.0.0: 3927 | version "2.0.0" 3928 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3929 | dependencies: 3930 | os-homedir "^1.0.0" 3931 | 3932 | util-deprecate@~1.0.1: 3933 | version "1.0.2" 3934 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3935 | 3936 | utils-merge@1.0.0: 3937 | version "1.0.0" 3938 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3939 | 3940 | uuid@^2.0.1: 3941 | version "2.0.3" 3942 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3943 | 3944 | uuid@^3.0.0, uuid@^3.0.1: 3945 | version "3.0.1" 3946 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3947 | 3948 | v8flags@^2.0.10: 3949 | version "2.0.11" 3950 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3951 | dependencies: 3952 | user-home "^1.1.1" 3953 | 3954 | validate-npm-package-license@^3.0.1: 3955 | version "3.0.1" 3956 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3957 | dependencies: 3958 | spdx-correct "~1.0.0" 3959 | spdx-expression-parse "~1.0.0" 3960 | 3961 | validator@~3.22.1: 3962 | version "3.22.2" 3963 | resolved "https://registry.yarnpkg.com/validator/-/validator-3.22.2.tgz#6f297ae67f7f82acc76d0afdb49f18d9a09c18c0" 3964 | 3965 | vary@^1, vary@~1.1.0: 3966 | version "1.1.0" 3967 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" 3968 | 3969 | verror@1.3.6: 3970 | version "1.3.6" 3971 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3972 | dependencies: 3973 | extsprintf "1.0.2" 3974 | 3975 | which-module@^1.0.0: 3976 | version "1.0.0" 3977 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3978 | 3979 | which@^1.2.4, which@^1.2.9: 3980 | version "1.2.12" 3981 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.12.tgz#de67b5e450269f194909ef23ece4ebe416fa1192" 3982 | dependencies: 3983 | isexe "^1.1.1" 3984 | 3985 | wide-align@^1.1.0: 3986 | version "1.1.0" 3987 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3988 | dependencies: 3989 | string-width "^1.0.1" 3990 | 3991 | window-size@0.1.0: 3992 | version "0.1.0" 3993 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3994 | 3995 | wordwrap@0.0.2: 3996 | version "0.0.2" 3997 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3998 | 3999 | wordwrap@~0.0.2: 4000 | version "0.0.3" 4001 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4002 | 4003 | wordwrap@~1.0.0: 4004 | version "1.0.0" 4005 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4006 | 4007 | wrap-ansi@^2.0.0: 4008 | version "2.1.0" 4009 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4010 | dependencies: 4011 | string-width "^1.0.1" 4012 | strip-ansi "^3.0.1" 4013 | 4014 | wrappy@1: 4015 | version "1.0.2" 4016 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4017 | 4018 | write-file-atomic@^1.1.2, write-file-atomic@^1.1.4: 4019 | version "1.3.1" 4020 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" 4021 | dependencies: 4022 | graceful-fs "^4.1.11" 4023 | imurmurhash "^0.1.4" 4024 | slide "^1.1.5" 4025 | 4026 | write@^0.2.1: 4027 | version "0.2.1" 4028 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4029 | dependencies: 4030 | mkdirp "^0.5.1" 4031 | 4032 | x-xss-protection@1.0.0: 4033 | version "1.0.0" 4034 | resolved "https://registry.yarnpkg.com/x-xss-protection/-/x-xss-protection-1.0.0.tgz#898afb93869b24661cf9c52f9ee8db8ed0764dd9" 4035 | 4036 | xdg-basedir@^2.0.0: 4037 | version "2.0.0" 4038 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 4039 | dependencies: 4040 | os-homedir "^1.0.0" 4041 | 4042 | xtend@^4.0.0, xtend@^4.0.1: 4043 | version "4.0.1" 4044 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4045 | 4046 | y18n@^3.2.1: 4047 | version "3.2.1" 4048 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4049 | 4050 | yallist@^2.0.0: 4051 | version "2.0.0" 4052 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" 4053 | 4054 | yargs-parser@^4.0.2, yargs-parser@^4.2.0: 4055 | version "4.2.1" 4056 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 4057 | dependencies: 4058 | camelcase "^3.0.0" 4059 | 4060 | yargs@^6.6.0: 4061 | version "6.6.0" 4062 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 4063 | dependencies: 4064 | camelcase "^3.0.0" 4065 | cliui "^3.2.0" 4066 | decamelize "^1.1.1" 4067 | get-caller-file "^1.0.1" 4068 | os-locale "^1.4.0" 4069 | read-pkg-up "^1.0.1" 4070 | require-directory "^2.1.1" 4071 | require-main-filename "^1.0.1" 4072 | set-blocking "^2.0.0" 4073 | string-width "^1.0.2" 4074 | which-module "^1.0.0" 4075 | y18n "^3.2.1" 4076 | yargs-parser "^4.2.0" 4077 | 4078 | yargs@~3.10.0: 4079 | version "3.10.0" 4080 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4081 | dependencies: 4082 | camelcase "^1.0.2" 4083 | cliui "^2.1.0" 4084 | decamelize "^1.0.0" 4085 | window-size "0.1.0" 4086 | --------------------------------------------------------------------------------