├── .eslintignore ├── app ├── db │ ├── models │ │ ├── index.js │ │ └── user.js │ └── index.js ├── api │ ├── graphql │ │ ├── schema.graphql │ │ ├── userLoaders.js │ │ ├── resolvers.js │ │ └── index.js │ ├── status │ │ ├── index.js │ │ └── __test__ │ │ │ └── status.test.js │ ├── authorization.js │ └── index.js └── manifest.js ├── internals ├── scripts │ └── run.js ├── createServer.js ├── modules │ ├── index.js │ └── reporter.js ├── server.js └── types.js ├── nodemon.json ├── .gitignore ├── jsconfig.json ├── .flowconfig ├── circle.yml ├── LICENSE ├── README.md ├── package.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.graphql 2 | -------------------------------------------------------------------------------- /app/db/models/index.js: -------------------------------------------------------------------------------- 1 | export { default as User } from './user'; 2 | -------------------------------------------------------------------------------- /internals/scripts/run.js: -------------------------------------------------------------------------------- 1 | require('babel-register'); 2 | require('../server'); 3 | -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "events": { 3 | "restart": "npm test" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | 5 | .vscode 6 | typings 7 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES6", 4 | "module": "commonjs" 5 | } 6 | } -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | .*/__test__/.* 3 | .*bower\.json 4 | 5 | [include] 6 | ./node_modules/ 7 | 8 | [libs] 9 | 10 | [options] 11 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | node: 3 | version: 6.2.0 4 | 5 | dependencies: 6 | override: 7 | - npm install -g yarn 8 | - yarn 9 | cache_directories: 10 | - node_modules 11 | -------------------------------------------------------------------------------- /app/db/models/user.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | import mongoose, { Schema } from 'mongoose'; 5 | 6 | const userSchema: Schema = new Schema({ 7 | email: { 8 | type: String, 9 | unique: true, 10 | required: true, 11 | }, 12 | }); 13 | 14 | export default mongoose.model('User', userSchema); 15 | -------------------------------------------------------------------------------- /app/api/graphql/schema.graphql: -------------------------------------------------------------------------------- 1 | type User { 2 | id: ID! 3 | email: String! 4 | } 5 | 6 | type Query { 7 | getUserById(id: ID!): User 8 | getUserByEmail(email: String!): User 9 | } 10 | 11 | type Mutation { 12 | createUser(email: String!): User 13 | } 14 | 15 | schema { 16 | query: Query 17 | mutation: Mutation 18 | } 19 | -------------------------------------------------------------------------------- /app/api/status/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | import type { Route } from '../../../internals/types'; 5 | 6 | const routes: Array = [ 7 | { 8 | method: 'GET', 9 | path: '/status', 10 | handler: function getStatus(request, reply) { 11 | reply({ 12 | status: 'ok', 13 | }); 14 | }, 15 | }, 16 | ]; 17 | 18 | export default routes; 19 | -------------------------------------------------------------------------------- /app/api/authorization.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | import type { Server } from '../../internals/types'; 5 | 6 | export const setupAuthorization = (server: Server, options: Object) => { 7 | const isSuperAdmin = (username, password) => 8 | username === options.superAdminUsername && password === options.superAdminPassword; 9 | 10 | server.auth.strategy('admin', 'basic', { 11 | validateFunc: (request, username, password, callback) => { 12 | if (isSuperAdmin(username, password)) { 13 | return callback(null, true, {}); 14 | } 15 | return callback(null, false); 16 | }, 17 | }); 18 | }; 19 | -------------------------------------------------------------------------------- /app/api/graphql/userLoaders.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | 5 | import Dataloader from 'dataloader'; 6 | 7 | const getDataLoader = 8 | (fieldName: string, schema: Object): Function => 9 | new Dataloader(async (ids: Array): any => { 10 | const results = await schema.find({ [fieldName]: { $in: ids } }); 11 | const resultMap = results.reduce((acc, r) => ({ ...acc, [r[fieldName]]: r }), {}); 12 | 13 | return ids.map((id) => resultMap[id]); 14 | }); 15 | 16 | export default (db: Object) => ({ 17 | userById: getDataLoader('_id', db.User), 18 | userByEmail: getDataLoader('email', db.User), 19 | }); 20 | -------------------------------------------------------------------------------- /internals/createServer.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Create manifest helper used to control this boilerplate internals 3 | * 4 | * @flow 5 | */ 6 | 7 | import internalModules from './modules'; 8 | 9 | import type { Manifest } from './types'; 10 | 11 | /* Available options */ 12 | type ManifestOpts = { 13 | /* Should internal modules be enabled */ 14 | useInternalModules?: boolean, 15 | }; 16 | 17 | export default function createManifest(manifest: Manifest, opts?: ManifestOpts = {}): Manifest { 18 | if (opts.useInternalModules !== false) { 19 | // eslint-disable-next-line no-param-reassign 20 | manifest.registrations = (manifest.registrations || []).concat(internalModules); 21 | } 22 | 23 | return manifest; 24 | } 25 | -------------------------------------------------------------------------------- /internals/modules/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * An array of all internal modules used by this Hapi.js instance. 3 | * 4 | * This is default configuration of the boilerplate. If you intend to use 5 | * a different set of plugins, import and add to your manifest each of these 6 | * separately. 7 | * 8 | * @flow 9 | */ 10 | import reporter from './reporter'; 11 | 12 | import type { Plugin } from '../types'; 13 | 14 | const internalModules: Array = [ 15 | reporter, 16 | ]; 17 | 18 | const devModules: Array = [ 19 | { 20 | plugin: { 21 | register: 'blipp', 22 | options: {}, 23 | }, 24 | }, 25 | ]; 26 | 27 | export default process.env.PRODUCTION 28 | ? internalModules 29 | : [...internalModules, ...devModules]; 30 | -------------------------------------------------------------------------------- /internals/server.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | import Glue from 'glue'; 5 | import path from 'path'; 6 | import manifest from '../app/manifest'; 7 | 8 | import type { Server } from './types'; 9 | 10 | /* eslint-disable no-console */ 11 | Glue.compose(manifest, { relativeTo: path.join(__dirname, '../') }, (err: Object, server: Server) => { 12 | if (err) { 13 | console.error('☹️ Registration error:', err); 14 | } 15 | server.start(() => { 16 | const { info } = server; 17 | 18 | if (Array.isArray(info)) { 19 | info.forEach(({ uri }, i) => console.log(`Server #${i} running on ${uri.toLowerCase()} 🙂 🚀`)); 20 | } else { 21 | console.log(`Server running on on ${info.uri.toLowerCase()} 🙂 🚀`); 22 | } 23 | }); 24 | }); 25 | /* eslint-enable */ 26 | -------------------------------------------------------------------------------- /app/api/graphql/resolvers.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | 5 | import type { User, GraphQLContext } from '../../../internals/types'; 6 | 7 | const resolvers = { 8 | Query: { 9 | getUserById(root: Object, { id }: { id: string }, context: GraphQLContext): User { 10 | return context.loaders.userById.load(id); 11 | }, 12 | 13 | getUserByEmail(root: Object, { email }: { email: string }, context: GraphQLContext): User { 14 | return context.loaders.userByEmail.load(email); 15 | }, 16 | }, 17 | Mutation: { 18 | async createUser(root: Object, args: User, context: GraphQLContext): Promise { 19 | const user = new context.db.User(args); 20 | await user.save(); 21 | 22 | return user; 23 | }, 24 | }, 25 | }; 26 | 27 | export default resolvers; 28 | -------------------------------------------------------------------------------- /app/db/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | import mongoose from 'mongoose'; 5 | 6 | import type { Server } from '../../internals/types'; 7 | 8 | if (global.Promise) { 9 | mongoose.Promise = global.Promise; 10 | } 11 | 12 | export function register(server: Server, options: Object, next: Function) { 13 | const config: Object = { 14 | host: '127.0.0.1', 15 | port: 27017, 16 | database: 'demo', 17 | ...options, 18 | }; 19 | 20 | mongoose.connect(config.uri); 21 | 22 | server.expose('Types', mongoose.Types); 23 | 24 | const models: Object = require('./models'); // eslint-disable-line global-require 25 | 26 | Object.keys(models).forEach((model) => { 27 | server.expose(model, models[model]); 28 | }); 29 | 30 | mongoose.connection 31 | .on('error', next) 32 | .on('open', next); 33 | } 34 | 35 | register.attributes = { 36 | name: 'db', 37 | }; 38 | -------------------------------------------------------------------------------- /internals/modules/reporter.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | 5 | /** 6 | * Reporter is essentialy an array of transforms. Each item in the array of streams will 7 | * be piped together in the array order. 8 | * 9 | * The console reporter will: 10 | * 1) Pick `error` events 11 | * 2) Return server event into string with `good-console` 12 | * 3) Pipe it directly to `stdout` 13 | */ 14 | const consoleReporter = [ 15 | { 16 | module: 'good-squeeze', 17 | name: 'Squeeze', 18 | args: [ 19 | { 20 | error: '*', 21 | }, 22 | ], 23 | }, 24 | { 25 | module: 'good-console', 26 | }, 27 | 'stdout', 28 | ]; 29 | 30 | export default { 31 | plugin: { 32 | register: 'good', 33 | options: { 34 | ops: { 35 | interval: 60000, 36 | }, 37 | reporters: { 38 | console: consoleReporter, 39 | }, 40 | }, 41 | }, 42 | }; 43 | -------------------------------------------------------------------------------- /app/api/index.js: -------------------------------------------------------------------------------- 1 | import { setupGraphQL } from './graphql'; 2 | import { setupAuthorization } from './authorization'; 3 | import status from './status'; 4 | 5 | import type { Server } from '../../internals/types'; 6 | 7 | const setupClient = (server: Server, options: Object, next: Function): void => { 8 | server.bind({ 9 | ...server.plugins, 10 | options, 11 | }); 12 | 13 | setupAuthorization(server, options); 14 | 15 | setupGraphQL(server, options); 16 | server.route(status); 17 | 18 | next(); 19 | }; 20 | 21 | export function register(server: Server, options: Object, next: Function): void { 22 | server.handler('async', (route, handler) => (request, reply) => { 23 | handler.bind(this)(request, reply).catch(reply); 24 | }); 25 | 26 | server.dependency(['hapi-auth-basic'], (serverIn, nextIn) => { 27 | setupClient(serverIn, options, nextIn); 28 | }); 29 | 30 | next(); 31 | } 32 | 33 | register.attributes = { 34 | name: 'api', 35 | }; 36 | -------------------------------------------------------------------------------- /app/api/status/__test__/status.test.js: -------------------------------------------------------------------------------- 1 | import Glue from 'glue'; 2 | import manifest from '../../../manifest'; 3 | 4 | let server; 5 | /* eslint-disable no-undef */ 6 | beforeAll((done) => { 7 | Glue.compose(manifest, { relativeTo: process.cwd() }, (err, serv) => { 8 | if (err) { 9 | console.error('☹️ Registration error:', err); // eslint-disable-line no-console 10 | } 11 | serv.initialize((error) => { 12 | if (error) { 13 | throw error; 14 | } 15 | server = serv; 16 | done(); 17 | }); 18 | }); 19 | }); 20 | 21 | describe('status test', () => { 22 | it('it should respond with status code 200 and status ok', (done) => { 23 | const options = { 24 | method: 'GET', 25 | url: '/v1/api/status', 26 | }; 27 | server.inject(options, (response) => { 28 | const { statusCode, result: { status } } = response; 29 | expect(statusCode).toBe(200); 30 | expect(status).toBe('ok'); 31 | done(); 32 | }); 33 | }); 34 | }); 35 | /* eslint-enable */ 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Michał Chudziak 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /internals/types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | 5 | export type Route = { 6 | method: string, 7 | path: string, 8 | handler: (request: Object, reply: Function) => void, 9 | } 10 | 11 | export type Plugin = { 12 | plugin: string | { 13 | register: string, 14 | options: Object, 15 | }, 16 | } 17 | 18 | export type Manifest = { 19 | server: Object, 20 | connections: Array, 21 | registrations?: Array, 22 | }; 23 | 24 | type ServerInfo = { 25 | id: string, 26 | created: number, 27 | started: number, 28 | port: number, 29 | host: string, 30 | address: string, 31 | protocol: string, 32 | uri: string, 33 | }; 34 | 35 | export type Server = { 36 | app: Object, 37 | auth: Object, 38 | connections: Array, 39 | expose: Function, 40 | info: ServerInfo | Array, 41 | load: Object, 42 | listener: Object | Array, 43 | methods: Object, 44 | mime: Object, 45 | plugins: Object, 46 | start: Function, 47 | register: Function, 48 | realm: Object, 49 | registrations: Object | Array, 50 | root: Object, 51 | settings: Object, 52 | version: string, 53 | } 54 | 55 | export type User = { 56 | id: string, 57 | email: string, 58 | } 59 | 60 | export type GraphQLContext = { 61 | loaders: Object, 62 | db: Object, 63 | } 64 | -------------------------------------------------------------------------------- /app/manifest.js: -------------------------------------------------------------------------------- 1 | import createServer from '../internals/createServer'; 2 | 3 | import type { Manifest } from '../internals/types'; 4 | 5 | const manifest: Manifest = { 6 | server: { 7 | connections: { 8 | router: { 9 | stripTrailingSlash: true, 10 | }, 11 | }, 12 | }, 13 | connections: [{ 14 | address: '0.0.0.0', 15 | labels: ['client'], 16 | port: +process.env.PORT || 1337, 17 | routes: { 18 | cors: true, 19 | validate: { 20 | options: { 21 | stripUnknown: true, 22 | }, 23 | }, 24 | payload: { 25 | allow: ['application/json'], 26 | }, 27 | }, 28 | }], 29 | registrations: [ 30 | { 31 | plugin: { 32 | register: './app/api', 33 | options: { 34 | superAdminUsername: process.env.super_admin_username || 'admin', 35 | superAdminPassword: process.env.super_admin_password || 'admin', 36 | }, 37 | }, 38 | options: { 39 | routes: { 40 | prefix: '/v1/api', 41 | }, 42 | }, 43 | }, 44 | { 45 | plugin: { 46 | register: './app/db', 47 | options: { 48 | uri: process.env.plugins_db_uri || 'mongodb://localhost:27017/testdatabase', 49 | }, 50 | }, 51 | }, 52 | { 53 | plugin: 'hapi-auth-basic', 54 | }, 55 | ], 56 | }; 57 | 58 | export default createServer(manifest); 59 | -------------------------------------------------------------------------------- /app/api/graphql/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | import { apolloHapi, graphiqlHapi } from 'apollo-server'; 5 | import { makeExecutableSchema } from 'graphql-tools'; 6 | 7 | /* $FlowFixMe */ 8 | import GraphQLSchema from './schema.graphql'; 9 | import resolvers from './resolvers'; 10 | import getUserLoaders from './userLoaders'; 11 | 12 | import type { Server } from '../../../internals/types'; 13 | 14 | export const setupGraphQL = 15 | ( 16 | server: Server, 17 | options: Object, 18 | graphqlPath: string = '/graphql', 19 | graphiqlPath: string = '/graphiql', 20 | ) => { 21 | const { db } = server.plugins; 22 | 23 | const executableSchema = makeExecutableSchema({ 24 | typeDefs: [GraphQLSchema], 25 | resolvers, 26 | }); 27 | 28 | server.register({ 29 | register: apolloHapi, 30 | options: { 31 | path: graphqlPath, 32 | apolloOptions: () => ({ 33 | pretty: true, 34 | schema: executableSchema, 35 | context: { 36 | db, 37 | loaders: getUserLoaders(db), 38 | }, 39 | }), 40 | }, 41 | }); 42 | 43 | server.register({ 44 | register: graphiqlHapi, 45 | options: { 46 | route: { 47 | auth: 'admin', 48 | }, 49 | path: graphiqlPath, 50 | graphiqlOptions: { 51 | endpointURL: `/v1/api${graphqlPath}`, 52 | }, 53 | }, 54 | }); 55 | }; 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | hapi-graphql-boilerplate 2 | ======================== 3 | 4 | ## Requirements 5 | 6 | You need to have [MongoDB](https://docs.mongodb.com/manual/installation/?jmp=footer) installed and running on your machine in order to run this boilerplate. 7 | 8 | ```bash 9 | mongod 10 | ``` 11 | 12 | Or you can use external MongoDB DaaS (check out [Heroku](https://elements.heroku.com/addons/mongolab)) 13 | and specify `process.env.plugins_db_uri` variable, or edit `app/manifest.js` file and provide your mongo URL. 14 | 15 | ## Installation 16 | 17 | Simply clone this repository with: 18 | 19 | ```bash 20 | git clone git@github.com:callstack-io/hapi-graphql-boilerplate.git 21 | ``` 22 | 23 | Install with [Yarn](https://github.com/yarnpkg/yarn). 24 | 25 | ```bash 26 | yarn install 27 | ``` 28 | 29 | or with npm 30 | 31 | ```bash 32 | npm install 33 | ``` 34 | 35 | ## Scripts 36 | 37 | Start the app: 38 | ```bash 39 | npm start 40 | ``` 41 | 42 | Start in dev mode: 43 | ```bash 44 | npm run start-dev 45 | ``` 46 | 47 | Start in dev mode without checks: 48 | ```bash 49 | npm run watch 50 | ``` 51 | 52 | Check for flow and lint errors: 53 | ```bash 54 | npm run check 55 | ``` 56 | 57 | Run tests: 58 | ```bash 59 | npm test 60 | ``` 61 | 62 | ## Routes 63 | 64 | `GET /v1/api/graphiql` - GraphiQL documentation, basic credentials: login: `admin`, password: `admin`. 65 | 66 | `POST /v1/api/graphql` - GraphQL endpoint. 67 | 68 | `GET /v1/api/status` - Check if server is up. 69 | 70 | ## Directories 71 | 72 | #### app 73 | 74 | App directory is the place where all application-related stuff is located. That includes API endpoints and 75 | database handlers. 76 | 77 | #### internals 78 | 79 | Internals is a folder used by this boilerplate to run itself (e.g. with babel or without it), scaffold new modules (Yeoman generator) 80 | and others. It's also a place where all un-published modules this boilerplate uses like db one are located. 81 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hapi-graphql-boilerplate", 3 | "version": "0.0.1", 4 | "license": "MIT", 5 | "description": "Hapi.js based Apollo GraphQL boilerplate", 6 | "bugs": { 7 | "url": "https://github.com/mike866/hapi-graphql-boilerplate/issues" 8 | }, 9 | "main": "index.js", 10 | "scripts": { 11 | "start": "npm run check && node internals/scripts/run.js", 12 | "start-dev": "npm run check && npm run watch", 13 | "watch": "nodemon internals/scripts/run.js", 14 | "check": "npm run lint && npm run flow", 15 | "test": "npm run check && jest", 16 | "flow": "node_modules/.bin/flow check", 17 | "lint": "eslint . --ext .js" 18 | }, 19 | "author": "Mike Chudziak (mike866)", 20 | "homepage": "https://github.com/mike866/hapi-graphql-boilerplate#readme", 21 | "private": false, 22 | "repository": { 23 | "type": "git", 24 | "url": "https://github.com/mike866/hapi-graphql-boilerplate.git" 25 | }, 26 | "keywords": [ 27 | "hapi", 28 | "graphql", 29 | "apollo", 30 | "server", 31 | "boilerplate" 32 | ], 33 | "dependencies": { 34 | "apollo-server": "^0.3.3", 35 | "babel-plugin-inline-import": "^2.0.4", 36 | "babel-plugin-transform-flow-strip-types": "^6.18.0", 37 | "babel-preset-stage-3": "^6.17.0", 38 | "bcryptjs": "^2.3.0", 39 | "casual": "^1.5.6", 40 | "dataloader": "^1.2.0", 41 | "eslint-plugin-flowtype": "^2.25.0", 42 | "glue": "^4.0.0", 43 | "good": "^7.0.2", 44 | "good-console": "^6.3.1", 45 | "good-squeeze": "^5.0.0", 46 | "graphql": "^0.8.2", 47 | "graphql-tools": "^0.8.0", 48 | "hapi": "^16.1.0", 49 | "hapi-auth-basic": "^4.2.0", 50 | "joi": "^10.1.0", 51 | "mongoose": "^4.6.5" 52 | }, 53 | "devDependencies": { 54 | "babel-eslint": "^7.1.0", 55 | "babel-preset-node6": "^11.0.0", 56 | "babel-preset-stage-3": "^6.17.0", 57 | "babel-register": "^6.18.0", 58 | "blipp": "^2.3.0", 59 | "eslint": "^3.9.1", 60 | "eslint-config-airbnb": "^12.0.0", 61 | "eslint-plugin-import": "^2.0.1", 62 | "eslint-plugin-jsx-a11y": "^2.2.3", 63 | "eslint-plugin-react": "^6.5.0", 64 | "flow-bin": "^0.37.4", 65 | "jest-cli": "^18.1.0", 66 | "nodemon": "^1.11.0" 67 | }, 68 | "babel": { 69 | "presets": [ 70 | "stage-3", 71 | "node6" 72 | ], 73 | "plugins": [ 74 | "transform-flow-strip-types", 75 | "babel-plugin-inline-import" 76 | ] 77 | }, 78 | "eslintConfig": { 79 | "extends": "airbnb", 80 | "parser": "babel-eslint", 81 | "parserOptions": { 82 | "ecmaVersion": 6, 83 | "sourceType": "module" 84 | }, 85 | "env": { 86 | "es6": true, 87 | "node": true 88 | }, 89 | "rules": { 90 | "import/no-extraneous-dependencies": [ 91 | "error", 92 | { 93 | "devDependencies": true 94 | } 95 | ], 96 | "import/prefer-default-export": 0, 97 | "newline-per-chained-call": 0, 98 | "arrow-parens": 0 99 | } 100 | } 101 | } 102 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | "@types/body-parser@0.0.33": 4 | version "0.0.33" 5 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-0.0.33.tgz#33ca1498fc37e51c5df0c81cae34569e7041e025" 6 | dependencies: 7 | "@types/express" "*" 8 | 9 | "@types/boom@0.0.32": 10 | version "0.0.32" 11 | resolved "https://registry.yarnpkg.com/@types/boom/-/boom-0.0.32.tgz#5dfd349b4e7ebe2c73ca8d39ab05687dd403f9a1" 12 | dependencies: 13 | "@types/node" "*" 14 | 15 | "@types/chai@^3.4.34": 16 | version "3.4.34" 17 | resolved "https://registry.yarnpkg.com/@types/chai/-/chai-3.4.34.tgz#d5335792823bb09cddd5e38c3d211b709183854d" 18 | 19 | "@types/connect@^3.4.30": 20 | version "3.4.30" 21 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.30.tgz#0a8ede309ce0ebdba2f0534e574692511dd71eb6" 22 | dependencies: 23 | "@types/node" "*" 24 | 25 | "@types/cookies@*", "@types/cookies@^0.5.30": 26 | version "0.5.30" 27 | resolved "https://registry.yarnpkg.com/@types/cookies/-/cookies-0.5.30.tgz#de798b61d6c6da77d6559ab1db4c6f3c8b4935bd" 28 | dependencies: 29 | "@types/node" "*" 30 | 31 | "@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.0.36": 32 | version "4.0.38" 33 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.0.38.tgz#129e99aaebd97190ff5a14fe690a49a917e6506a" 34 | dependencies: 35 | "@types/node" "*" 36 | 37 | "@types/express@*", "@types/express@^4.0.33": 38 | version "4.0.33" 39 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.0.33.tgz#9212b6c67e02e09ee9f80740ded04306050739ab" 40 | dependencies: 41 | "@types/express-serve-static-core" "*" 42 | "@types/serve-static" "*" 43 | 44 | "@types/fibers@0.0.29": 45 | version "0.0.29" 46 | resolved "https://registry.yarnpkg.com/@types/fibers/-/fibers-0.0.29.tgz#4c815209a717ede505c3040b4e3a31a7f5239d49" 47 | 48 | "@types/hapi@^13.0.35": 49 | version "13.0.37" 50 | resolved "https://registry.yarnpkg.com/@types/hapi/-/hapi-13.0.37.tgz#596c4ec52015daa16d36fd75ddbcfac3a5effc30" 51 | dependencies: 52 | "@types/node" "*" 53 | 54 | "@types/http-errors@^1.3.29": 55 | version "1.5.30" 56 | resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-1.5.30.tgz#69067a5255bf1217eeeab715b942d1ab51e4c619" 57 | 58 | "@types/koa-bodyparser@^3.0.19": 59 | version "3.0.20" 60 | resolved "https://registry.yarnpkg.com/@types/koa-bodyparser/-/koa-bodyparser-3.0.20.tgz#5b6b8127b7bb30428020470abe5d370beb680465" 61 | dependencies: 62 | "@types/koa" "*" 63 | 64 | "@types/koa-router@^7.0.21": 65 | version "7.0.21" 66 | resolved "https://registry.yarnpkg.com/@types/koa-router/-/koa-router-7.0.21.tgz#8d462a631181022472e6a9a690934bbaa9a3e7a5" 67 | dependencies: 68 | "@types/koa" "*" 69 | 70 | "@types/koa@*", "@types/koa@^2.0.33": 71 | version "2.0.33" 72 | resolved "https://registry.yarnpkg.com/@types/koa/-/koa-2.0.33.tgz#e383d3dd311b6389eaa6212e1b2efc144f3af35e" 73 | dependencies: 74 | "@types/cookies" "*" 75 | "@types/node" "*" 76 | 77 | "@types/mime@*", "@types/mime@0.0.29": 78 | version "0.0.29" 79 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-0.0.29.tgz#fbcfd330573b912ef59eeee14602bface630754b" 80 | 81 | "@types/multer@0.0.32": 82 | version "0.0.32" 83 | resolved "https://registry.yarnpkg.com/@types/multer/-/multer-0.0.32.tgz#f89c751227dc20b7c933c309a3e7467c499fcdec" 84 | dependencies: 85 | "@types/express" "*" 86 | 87 | "@types/node@*", "@types/node@^6.0.41": 88 | version "6.0.46" 89 | resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.46.tgz#8d9e48572831f05b11cc4c793754d43437219d62" 90 | 91 | "@types/serve-static@*", "@types/serve-static@^1.7.31": 92 | version "1.7.31" 93 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.7.31.tgz#15456de8d98d6b4cff31be6c6af7492ae63f521a" 94 | dependencies: 95 | "@types/express-serve-static-core" "*" 96 | "@types/mime" "*" 97 | 98 | abab@^1.0.0: 99 | version "1.0.3" 100 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 101 | 102 | abbrev@1, abbrev@1.0.x: 103 | version "1.0.9" 104 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 105 | 106 | accept@2.x.x: 107 | version "2.1.3" 108 | resolved "https://registry.yarnpkg.com/accept/-/accept-2.1.3.tgz#ab0f5bda4c449bbe926aea607b3522562f5acf86" 109 | dependencies: 110 | boom "4.x.x" 111 | hoek "4.x.x" 112 | 113 | acorn-globals@^1.0.4: 114 | version "1.0.9" 115 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" 116 | dependencies: 117 | acorn "^2.1.0" 118 | 119 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: 120 | version "3.0.1" 121 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 122 | dependencies: 123 | acorn "^3.0.4" 124 | 125 | acorn@^2.1.0, acorn@^2.4.0: 126 | version "2.7.0" 127 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 128 | 129 | acorn@^3.0.4: 130 | version "3.3.0" 131 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 132 | 133 | acorn@^4.0.1: 134 | version "4.0.3" 135 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.3.tgz#1a3e850b428e73ba6b09d1cc527f5aaad4d03ef1" 136 | 137 | ajv-keywords@^1.0.0: 138 | version "1.1.1" 139 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50" 140 | 141 | ajv@^4.7.0: 142 | version "4.8.0" 143 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.8.0.tgz#011df5c4a08edb29574a477269afb15a6f97abe5" 144 | dependencies: 145 | co "^4.6.0" 146 | json-stable-stringify "^1.0.1" 147 | 148 | align-text@^0.1.1, align-text@^0.1.3: 149 | version "0.1.4" 150 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 151 | dependencies: 152 | kind-of "^3.0.2" 153 | longest "^1.0.1" 154 | repeat-string "^1.5.2" 155 | 156 | amdefine@>=0.0.4: 157 | version "1.0.0" 158 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.0.tgz#fd17474700cb5cc9c2b709f0be9d23ce3c198c33" 159 | 160 | ammo@2.x.x: 161 | version "2.0.2" 162 | resolved "https://registry.yarnpkg.com/ammo/-/ammo-2.0.2.tgz#366c55f7bc4f2f24218ed3a4dd4b8df135c2e6ca" 163 | dependencies: 164 | boom "3.x.x" 165 | hoek "4.x.x" 166 | 167 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 168 | version "1.4.0" 169 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 170 | 171 | ansi-regex@^0.2.0, ansi-regex@^0.2.1: 172 | version "0.2.1" 173 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-0.2.1.tgz#0d8e946967a3d8143f93e24e298525fc1b2235f9" 174 | 175 | ansi-regex@^2.0.0: 176 | version "2.0.0" 177 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 178 | 179 | ansi-styles@^1.1.0: 180 | version "1.1.0" 181 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.1.0.tgz#eaecbf66cd706882760b2f4691582b8f55d7a7de" 182 | 183 | ansi-styles@^2.2.1: 184 | version "2.2.1" 185 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 186 | 187 | ansicolors@~0.2.1: 188 | version "0.2.1" 189 | resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" 190 | 191 | anymatch@^1.3.0: 192 | version "1.3.0" 193 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 194 | dependencies: 195 | arrify "^1.0.0" 196 | micromatch "^2.1.5" 197 | 198 | apollo-server@^0.3.3: 199 | version "0.3.3" 200 | resolved "https://registry.yarnpkg.com/apollo-server/-/apollo-server-0.3.3.tgz#3b6876c1d8bf56f51736375fa48f60dccada75a8" 201 | dependencies: 202 | "@types/body-parser" "0.0.33" 203 | "@types/boom" "0.0.32" 204 | "@types/chai" "^3.4.34" 205 | "@types/connect" "^3.4.30" 206 | "@types/cookies" "^0.5.30" 207 | "@types/express" "^4.0.33" 208 | "@types/express-serve-static-core" "^4.0.36" 209 | "@types/fibers" "0.0.29" 210 | "@types/hapi" "^13.0.35" 211 | "@types/http-errors" "^1.3.29" 212 | "@types/koa" "^2.0.33" 213 | "@types/koa-bodyparser" "^3.0.19" 214 | "@types/koa-router" "^7.0.21" 215 | "@types/mime" "0.0.29" 216 | "@types/multer" "0.0.32" 217 | "@types/node" "^6.0.41" 218 | "@types/serve-static" "^1.7.31" 219 | boom "^4.0.0" 220 | http-errors "^1.5.0" 221 | source-map-support "^0.4.2" 222 | typed-graphql "^1.0.2" 223 | 224 | append-transform@^0.3.0: 225 | version "0.3.0" 226 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.3.0.tgz#d6933ce4a85f09445d9ccc4cc119051b7381a813" 227 | 228 | aproba@^1.0.3: 229 | version "1.0.4" 230 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 231 | 232 | are-we-there-yet@~1.1.2: 233 | version "1.1.2" 234 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 235 | dependencies: 236 | delegates "^1.0.0" 237 | readable-stream "^2.0.0 || ^1.1.13" 238 | 239 | argparse@^1.0.7: 240 | version "1.0.9" 241 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 242 | dependencies: 243 | sprintf-js "~1.0.2" 244 | 245 | arr-diff@^2.0.0: 246 | version "2.0.0" 247 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 248 | dependencies: 249 | arr-flatten "^1.0.1" 250 | 251 | arr-flatten@^1.0.1: 252 | version "1.0.1" 253 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 254 | 255 | array-differ@^1.0.0: 256 | version "1.0.0" 257 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 258 | 259 | array-equal@^1.0.0: 260 | version "1.0.0" 261 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 262 | 263 | array-union@^1.0.1: 264 | version "1.0.2" 265 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 266 | dependencies: 267 | array-uniq "^1.0.1" 268 | 269 | array-uniq@^1.0.1: 270 | version "1.0.3" 271 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 272 | 273 | array-unique@^0.2.1: 274 | version "0.2.1" 275 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 276 | 277 | arrify@^1.0.0, arrify@^1.0.1: 278 | version "1.0.1" 279 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 280 | 281 | asn1@~0.2.3: 282 | version "0.2.3" 283 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 284 | 285 | assert-plus@^0.2.0: 286 | version "0.2.0" 287 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 288 | 289 | assert-plus@^1.0.0: 290 | version "1.0.0" 291 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 292 | 293 | async-each@^1.0.0: 294 | version "1.0.1" 295 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 296 | 297 | async@^1.4.0, async@^1.4.2, async@1.x: 298 | version "1.5.2" 299 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 300 | 301 | async@~0.2.6: 302 | version "0.2.10" 303 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 304 | 305 | async@2.0.1: 306 | version "2.0.1" 307 | resolved "https://registry.yarnpkg.com/async/-/async-2.0.1.tgz#b709cc0280a9c36f09f4536be823c838a9049e25" 308 | dependencies: 309 | lodash "^4.8.0" 310 | 311 | asynckit@^0.4.0: 312 | version "0.4.0" 313 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 314 | 315 | aws-sign2@~0.6.0: 316 | version "0.6.0" 317 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 318 | 319 | aws4@^1.2.1: 320 | version "1.5.0" 321 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 322 | 323 | b64@3.x.x: 324 | version "3.0.2" 325 | resolved "https://registry.yarnpkg.com/b64/-/b64-3.0.2.tgz#7a9d60466adf7b8de114cbdf651a5fdfcc90894d" 326 | 327 | babel-code-frame@^6.16.0: 328 | version "6.16.0" 329 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" 330 | dependencies: 331 | chalk "^1.1.0" 332 | esutils "^2.0.2" 333 | js-tokens "^2.0.0" 334 | 335 | babel-core@^6.0.0, babel-core@^6.11.4, babel-core@^6.16.0: 336 | version "6.17.0" 337 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.17.0.tgz#6c4576447df479e241e58c807e4bc7da4db7f425" 338 | dependencies: 339 | babel-code-frame "^6.16.0" 340 | babel-generator "^6.17.0" 341 | babel-helpers "^6.16.0" 342 | babel-messages "^6.8.0" 343 | babel-register "^6.16.0" 344 | babel-runtime "^6.9.1" 345 | babel-template "^6.16.0" 346 | babel-traverse "^6.16.0" 347 | babel-types "^6.16.0" 348 | babylon "^6.11.0" 349 | convert-source-map "^1.1.0" 350 | debug "^2.1.1" 351 | json5 "^0.4.0" 352 | lodash "^4.2.0" 353 | minimatch "^3.0.2" 354 | path-exists "^1.0.0" 355 | path-is-absolute "^1.0.0" 356 | private "^0.1.6" 357 | shebang-regex "^1.0.0" 358 | slash "^1.0.0" 359 | source-map "^0.5.0" 360 | 361 | babel-core@^6.18.0: 362 | version "6.18.2" 363 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.18.2.tgz#d8bb14dd6986fa4f3566a26ceda3964fa0e04e5b" 364 | dependencies: 365 | babel-code-frame "^6.16.0" 366 | babel-generator "^6.18.0" 367 | babel-helpers "^6.16.0" 368 | babel-messages "^6.8.0" 369 | babel-register "^6.18.0" 370 | babel-runtime "^6.9.1" 371 | babel-template "^6.16.0" 372 | babel-traverse "^6.18.0" 373 | babel-types "^6.18.0" 374 | babylon "^6.11.0" 375 | convert-source-map "^1.1.0" 376 | debug "^2.1.1" 377 | json5 "^0.5.0" 378 | lodash "^4.2.0" 379 | minimatch "^3.0.2" 380 | path-is-absolute "^1.0.0" 381 | private "^0.1.6" 382 | slash "^1.0.0" 383 | source-map "^0.5.0" 384 | 385 | babel-eslint@^7.1.0: 386 | version "7.1.0" 387 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.0.tgz#d506a5174ba224e25a2d17e128e2ba8987139ddc" 388 | dependencies: 389 | babel-traverse "^6.15.0" 390 | babel-types "^6.15.0" 391 | babylon "^6.11.2" 392 | lodash.pickby "^4.6.0" 393 | 394 | babel-generator@^6.11.3, babel-generator@^6.17.0: 395 | version "6.17.0" 396 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.17.0.tgz#b894e3808beef7800f2550635bfe024b6226cf33" 397 | dependencies: 398 | babel-messages "^6.8.0" 399 | babel-runtime "^6.9.0" 400 | babel-types "^6.16.0" 401 | detect-indent "^3.0.1" 402 | jsesc "^1.3.0" 403 | lodash "^4.2.0" 404 | source-map "^0.5.0" 405 | 406 | babel-generator@^6.18.0: 407 | version "6.18.0" 408 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.18.0.tgz#e4f104cb3063996d9850556a45aae4a022060a07" 409 | dependencies: 410 | babel-messages "^6.8.0" 411 | babel-runtime "^6.9.0" 412 | babel-types "^6.18.0" 413 | detect-indent "^4.0.0" 414 | jsesc "^1.3.0" 415 | lodash "^4.2.0" 416 | source-map "^0.5.0" 417 | 418 | babel-helper-builder-binary-assignment-operator-visitor@^6.8.0: 419 | version "6.15.0" 420 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.15.0.tgz#39e9ee143f797b642262e4646c681c32089ef1ab" 421 | dependencies: 422 | babel-helper-explode-assignable-expression "^6.8.0" 423 | babel-runtime "^6.0.0" 424 | babel-types "^6.15.0" 425 | 426 | babel-helper-explode-assignable-expression@^6.8.0: 427 | version "6.8.0" 428 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.8.0.tgz#9b3525e05b761c3b88919d730a28bad1967e6556" 429 | dependencies: 430 | babel-runtime "^6.0.0" 431 | babel-traverse "^6.8.0" 432 | babel-types "^6.8.0" 433 | 434 | babel-helper-function-name@^6.8.0: 435 | version "6.8.0" 436 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.8.0.tgz#a0336ba14526a075cdf502fc52d3fe84b12f7a34" 437 | dependencies: 438 | babel-helper-get-function-arity "^6.8.0" 439 | babel-runtime "^6.0.0" 440 | babel-template "^6.8.0" 441 | babel-traverse "^6.8.0" 442 | babel-types "^6.8.0" 443 | 444 | babel-helper-get-function-arity@^6.8.0: 445 | version "6.8.0" 446 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.8.0.tgz#88276c24bd251cdf6f61b6f89f745f486ced92af" 447 | dependencies: 448 | babel-runtime "^6.0.0" 449 | babel-types "^6.8.0" 450 | 451 | babel-helper-remap-async-to-generator@^6.16.0, babel-helper-remap-async-to-generator@^6.16.2: 452 | version "6.16.2" 453 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.16.2.tgz#24315bde8326c60022dc053cce84cfe38d724b82" 454 | dependencies: 455 | babel-helper-function-name "^6.8.0" 456 | babel-runtime "^6.0.0" 457 | babel-template "^6.16.0" 458 | babel-traverse "^6.16.0" 459 | babel-types "^6.16.0" 460 | 461 | babel-helpers@^6.16.0: 462 | version "6.16.0" 463 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 464 | dependencies: 465 | babel-runtime "^6.0.0" 466 | babel-template "^6.16.0" 467 | 468 | babel-jest@^16.0.0: 469 | version "16.0.0" 470 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-16.0.0.tgz#348729aea6d624a4774b8a934d07a40dd2cfd640" 471 | dependencies: 472 | babel-core "^6.0.0" 473 | babel-plugin-istanbul "^2.0.0" 474 | babel-preset-jest "^16.0.0" 475 | 476 | babel-messages@^6.8.0: 477 | version "6.8.0" 478 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 479 | dependencies: 480 | babel-runtime "^6.0.0" 481 | 482 | babel-plugin-inline-import@^2.0.4: 483 | version "2.0.4" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-inline-import/-/babel-plugin-inline-import-2.0.4.tgz#2afbc99ee8ced195709d36e633143962ca582e8f" 485 | dependencies: 486 | require-resolve "0.0.2" 487 | 488 | babel-plugin-istanbul@^2.0.0: 489 | version "2.0.3" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-2.0.3.tgz#266b304b9109607d60748474394676982f660df4" 491 | dependencies: 492 | find-up "^1.1.2" 493 | istanbul-lib-instrument "^1.1.4" 494 | object-assign "^4.1.0" 495 | test-exclude "^2.1.1" 496 | 497 | babel-plugin-jest-hoist@^16.0.0: 498 | version "16.0.0" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-16.0.0.tgz#b58ca3f770982a7e7c25b5614b2e57e9dafc6e76" 500 | 501 | babel-plugin-syntax-async-functions@^6.8.0: 502 | version "6.13.0" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 504 | 505 | babel-plugin-syntax-async-generators@^6.5.0: 506 | version "6.13.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 508 | 509 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 510 | version "6.13.0" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 512 | 513 | babel-plugin-syntax-flow@^6.8.0: 514 | version "6.13.0" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.13.0.tgz#9af0cd396087bf7677053e1afa52f206c0416f17" 516 | 517 | babel-plugin-syntax-object-rest-spread@^6.8.0: 518 | version "6.13.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 520 | 521 | babel-plugin-syntax-trailing-function-commas@^6.3.13, babel-plugin-syntax-trailing-function-commas@^6.5.0: 522 | version "6.13.0" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.13.0.tgz#2b84b7d53dd744f94ff1fad7669406274b23f541" 524 | 525 | babel-plugin-transform-async-generator-functions@^6.17.0: 526 | version "6.17.0" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.17.0.tgz#d0b5a2b2f0940f2b245fa20a00519ed7bc6cae54" 528 | dependencies: 529 | babel-helper-remap-async-to-generator "^6.16.2" 530 | babel-plugin-syntax-async-generators "^6.5.0" 531 | babel-runtime "^6.0.0" 532 | 533 | babel-plugin-transform-async-to-generator@^6.16.0: 534 | version "6.16.0" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 536 | dependencies: 537 | babel-helper-remap-async-to-generator "^6.16.0" 538 | babel-plugin-syntax-async-functions "^6.8.0" 539 | babel-runtime "^6.0.0" 540 | 541 | babel-plugin-transform-es2015-modules-commonjs@^6.7.4: 542 | version "6.16.0" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.16.0.tgz#0a34b447bc88ad1a70988b6d199cca6d0b96c892" 544 | dependencies: 545 | babel-plugin-transform-strict-mode "^6.8.0" 546 | babel-runtime "^6.0.0" 547 | babel-template "^6.16.0" 548 | babel-types "^6.16.0" 549 | 550 | babel-plugin-transform-exponentiation-operator@^6.3.13: 551 | version "6.8.0" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.8.0.tgz#db25742e9339eade676ca9acec46f955599a68a4" 553 | dependencies: 554 | babel-helper-builder-binary-assignment-operator-visitor "^6.8.0" 555 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 556 | babel-runtime "^6.0.0" 557 | 558 | babel-plugin-transform-flow-strip-types: 559 | version "6.14.0" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.14.0.tgz#35ceb03f8770934044bab1a76f7e4ee0aa9220f9" 561 | dependencies: 562 | babel-plugin-syntax-flow "^6.8.0" 563 | babel-runtime "^6.0.0" 564 | 565 | babel-plugin-transform-object-rest-spread@^6.16.0: 566 | version "6.16.0" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.16.0.tgz#db441d56fffc1999052fdebe2e2f25ebd28e36a9" 568 | dependencies: 569 | babel-plugin-syntax-object-rest-spread "^6.8.0" 570 | babel-runtime "^6.0.0" 571 | 572 | babel-plugin-transform-strict-mode@^6.8.0: 573 | version "6.11.3" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.11.3.tgz#183741325126bc7ec9cf4c0fc257d3e7ca5afd40" 575 | dependencies: 576 | babel-runtime "^6.0.0" 577 | babel-types "^6.8.0" 578 | 579 | babel-preset-jest@^16.0.0: 580 | version "16.0.0" 581 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-16.0.0.tgz#417aabc2d7d93170f43c20ef1ea0145e8f7f2db5" 582 | dependencies: 583 | babel-plugin-jest-hoist "^16.0.0" 584 | 585 | babel-preset-node6@^11.0.0: 586 | version "11.0.0" 587 | resolved "https://registry.yarnpkg.com/babel-preset-node6/-/babel-preset-node6-11.0.0.tgz#0835994517248985a29d18f6d465dab16bb8a7d8" 588 | dependencies: 589 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 590 | babel-plugin-transform-es2015-modules-commonjs "^6.7.4" 591 | 592 | babel-preset-stage-3@^6.17.0: 593 | version "6.17.0" 594 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.17.0.tgz#b6638e46db6e91e3f889013d8ce143917c685e39" 595 | dependencies: 596 | babel-plugin-syntax-trailing-function-commas "^6.3.13" 597 | babel-plugin-transform-async-generator-functions "^6.17.0" 598 | babel-plugin-transform-async-to-generator "^6.16.0" 599 | babel-plugin-transform-exponentiation-operator "^6.3.13" 600 | babel-plugin-transform-object-rest-spread "^6.16.0" 601 | 602 | babel-register@^6.16.0: 603 | version "6.16.3" 604 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.16.3.tgz#7b0c0ca7bfdeb9188ba4c27e5fcb7599a497c624" 605 | dependencies: 606 | babel-core "^6.16.0" 607 | babel-runtime "^6.11.6" 608 | core-js "^2.4.0" 609 | home-or-tmp "^1.0.0" 610 | lodash "^4.2.0" 611 | mkdirp "^0.5.1" 612 | path-exists "^1.0.0" 613 | source-map-support "^0.4.2" 614 | 615 | babel-register@^6.18.0: 616 | version "6.18.0" 617 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 618 | dependencies: 619 | babel-core "^6.18.0" 620 | babel-runtime "^6.11.6" 621 | core-js "^2.4.0" 622 | home-or-tmp "^2.0.0" 623 | lodash "^4.2.0" 624 | mkdirp "^0.5.1" 625 | source-map-support "^0.4.2" 626 | 627 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 628 | version "6.11.6" 629 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.11.6.tgz#6db707fef2d49c49bfa3cb64efdb436b518b8222" 630 | dependencies: 631 | core-js "^2.4.0" 632 | regenerator-runtime "^0.9.5" 633 | 634 | babel-template@^6.16.0, babel-template@^6.8.0, babel-template@^6.9.0: 635 | version "6.16.0" 636 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 637 | dependencies: 638 | babel-runtime "^6.9.0" 639 | babel-traverse "^6.16.0" 640 | babel-types "^6.16.0" 641 | babylon "^6.11.0" 642 | lodash "^4.2.0" 643 | 644 | babel-traverse@^6.15.0, babel-traverse@^6.18.0: 645 | version "6.18.0" 646 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.18.0.tgz#5aeaa980baed2a07c8c47329cd90c3b90c80f05e" 647 | dependencies: 648 | babel-code-frame "^6.16.0" 649 | babel-messages "^6.8.0" 650 | babel-runtime "^6.9.0" 651 | babel-types "^6.18.0" 652 | babylon "^6.11.0" 653 | debug "^2.2.0" 654 | globals "^9.0.0" 655 | invariant "^2.2.0" 656 | lodash "^4.2.0" 657 | 658 | babel-traverse@^6.16.0, babel-traverse@^6.8.0, babel-traverse@^6.9.0: 659 | version "6.16.0" 660 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.16.0.tgz#fba85ae1fd4d107de9ce003149cc57f53bef0c4f" 661 | dependencies: 662 | babel-code-frame "^6.16.0" 663 | babel-messages "^6.8.0" 664 | babel-runtime "^6.9.0" 665 | babel-types "^6.16.0" 666 | babylon "^6.11.0" 667 | debug "^2.2.0" 668 | globals "^8.3.0" 669 | invariant "^2.2.0" 670 | lodash "^4.2.0" 671 | 672 | babel-types@^6.10.2, babel-types@^6.15.0, babel-types@^6.16.0, babel-types@^6.8.0: 673 | version "6.16.0" 674 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.16.0.tgz#71cca1dbe5337766225c5c193071e8ebcbcffcfe" 675 | dependencies: 676 | babel-runtime "^6.9.1" 677 | esutils "^2.0.2" 678 | lodash "^4.2.0" 679 | to-fast-properties "^1.0.1" 680 | 681 | babel-types@^6.18.0: 682 | version "6.18.0" 683 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.18.0.tgz#1f7d5a73474c59eb9151b2417bbff4e4fce7c3f8" 684 | dependencies: 685 | babel-runtime "^6.9.1" 686 | esutils "^2.0.2" 687 | lodash "^4.2.0" 688 | to-fast-properties "^1.0.1" 689 | 690 | babylon@^6.11.0, babylon@^6.8.1: 691 | version "6.12.0" 692 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.12.0.tgz#953e6202e58062f7f5041fc8037e4bd4e17140a9" 693 | 694 | babylon@^6.11.2: 695 | version "6.13.1" 696 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.13.1.tgz#adca350e088f0467647157652bafead6ddb8dfdb" 697 | 698 | balanced-match@^0.4.1: 699 | version "0.4.2" 700 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 701 | 702 | bcrypt-pbkdf@^1.0.0: 703 | version "1.0.0" 704 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" 705 | dependencies: 706 | tweetnacl "^0.14.3" 707 | 708 | bcryptjs@^2.3.0: 709 | version "2.3.0" 710 | resolved "https://registry.yarnpkg.com/bcryptjs/-/bcryptjs-2.3.0.tgz#5826900cfef7abaf3425c72e4d464de509b8c2ec" 711 | 712 | binary-extensions@^1.0.0: 713 | version "1.7.0" 714 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 715 | 716 | bl@~1.1.2: 717 | version "1.1.2" 718 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 719 | dependencies: 720 | readable-stream "~2.0.5" 721 | 722 | blipp@^2.3.0: 723 | version "2.3.0" 724 | resolved "https://registry.yarnpkg.com/blipp/-/blipp-2.3.0.tgz#8477954c015f6ebcbacf994ba89467c6797abddc" 725 | dependencies: 726 | chalk "0.5.x" 727 | hoek "2.x.x" 728 | joi "6.x.x" 729 | 730 | block-stream@*: 731 | version "0.0.9" 732 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 733 | dependencies: 734 | inherits "~2.0.0" 735 | 736 | bluebird@2.10.2: 737 | version "2.10.2" 738 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.10.2.tgz#024a5517295308857f14f91f1106fc3b555f446b" 739 | 740 | boom@^4.0.0, boom@4.x.x: 741 | version "4.2.0" 742 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.2.0.tgz#c1a74174b11fbba223f6162d4fd8851a1b82a536" 743 | dependencies: 744 | hoek "4.x.x" 745 | 746 | boom@2.x.x: 747 | version "2.10.1" 748 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 749 | dependencies: 750 | hoek "2.x.x" 751 | 752 | boom@3.x.x: 753 | version "3.2.2" 754 | resolved "https://registry.yarnpkg.com/boom/-/boom-3.2.2.tgz#0f0cc5d04adc5003b8c7d71f42cca7271fef0e78" 755 | dependencies: 756 | hoek "4.x.x" 757 | 758 | brace-expansion@^1.0.0: 759 | version "1.1.6" 760 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 761 | dependencies: 762 | balanced-match "^0.4.1" 763 | concat-map "0.0.1" 764 | 765 | braces@^1.8.2: 766 | version "1.8.5" 767 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 768 | dependencies: 769 | expand-range "^1.8.1" 770 | preserve "^0.2.0" 771 | repeat-element "^1.1.2" 772 | 773 | browser-resolve@^1.11.2: 774 | version "1.11.2" 775 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 776 | dependencies: 777 | resolve "1.1.7" 778 | 779 | bser@^1.0.2: 780 | version "1.0.2" 781 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 782 | dependencies: 783 | node-int64 "^0.4.0" 784 | 785 | bson@~0.5.4, bson@~0.5.6: 786 | version "0.5.6" 787 | resolved "https://registry.yarnpkg.com/bson/-/bson-0.5.6.tgz#e03de80a692c28fca4396f0d14c97069bd2b73a6" 788 | 789 | buffer-shims@^1.0.0: 790 | version "1.0.0" 791 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 792 | 793 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 794 | version "1.1.1" 795 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 796 | 797 | call@3.x.x: 798 | version "3.0.3" 799 | resolved "https://registry.yarnpkg.com/call/-/call-3.0.3.tgz#e4748ddbbb7f41ae40cee055f8b270b733bf7c8d" 800 | dependencies: 801 | boom "3.x.x" 802 | hoek "4.x.x" 803 | 804 | caller-path@^0.1.0: 805 | version "0.1.0" 806 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 807 | dependencies: 808 | callsites "^0.2.0" 809 | 810 | callsites@^0.2.0: 811 | version "0.2.0" 812 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 813 | 814 | callsites@^2.0.0: 815 | version "2.0.0" 816 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 817 | 818 | camelcase@^1.0.2: 819 | version "1.2.1" 820 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 821 | 822 | camelcase@^3.0.0: 823 | version "3.0.0" 824 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 825 | 826 | cardinal@^1.0.0: 827 | version "1.0.0" 828 | resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-1.0.0.tgz#50e21c1b0aa37729f9377def196b5a9cec932ee9" 829 | dependencies: 830 | ansicolors "~0.2.1" 831 | redeyed "~1.0.0" 832 | 833 | caseless@~0.11.0: 834 | version "0.11.0" 835 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 836 | 837 | casual@^1.5.6: 838 | version "1.5.6" 839 | resolved "https://registry.yarnpkg.com/casual/-/casual-1.5.6.tgz#d6c1f8fc47f3befe77f69df88c07904b2ff1ac0c" 840 | dependencies: 841 | mersenne-twister "~1.0.1" 842 | moment "~2.11.1" 843 | 844 | catbox-memory@2.x.x: 845 | version "2.0.3" 846 | resolved "https://registry.yarnpkg.com/catbox-memory/-/catbox-memory-2.0.3.tgz#dfaa9c163fad343d9add6d7c1fdc7b429b369c38" 847 | dependencies: 848 | hoek "4.x.x" 849 | 850 | catbox@7.x.x: 851 | version "7.1.2" 852 | resolved "https://registry.yarnpkg.com/catbox/-/catbox-7.1.2.tgz#46721b1c99967513fd7b7e9451706a05edfed5ad" 853 | dependencies: 854 | boom "3.x.x" 855 | hoek "4.x.x" 856 | joi "9.x.x" 857 | 858 | center-align@^0.1.1: 859 | version "0.1.3" 860 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 861 | dependencies: 862 | align-text "^0.1.3" 863 | lazy-cache "^1.0.3" 864 | 865 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 866 | version "1.1.3" 867 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 868 | dependencies: 869 | ansi-styles "^2.2.1" 870 | escape-string-regexp "^1.0.2" 871 | has-ansi "^2.0.0" 872 | strip-ansi "^3.0.0" 873 | supports-color "^2.0.0" 874 | 875 | chalk@0.5.x: 876 | version "0.5.1" 877 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.5.1.tgz#663b3a648b68b55d04690d49167aa837858f2174" 878 | dependencies: 879 | ansi-styles "^1.1.0" 880 | escape-string-regexp "^1.0.0" 881 | has-ansi "^0.1.0" 882 | strip-ansi "^0.3.0" 883 | supports-color "^0.2.0" 884 | 885 | chokidar@^1.4.3: 886 | version "1.6.1" 887 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 888 | dependencies: 889 | anymatch "^1.3.0" 890 | async-each "^1.0.0" 891 | glob-parent "^2.0.0" 892 | inherits "^2.0.1" 893 | is-binary-path "^1.0.0" 894 | is-glob "^2.0.0" 895 | path-is-absolute "^1.0.0" 896 | readdirp "^2.0.0" 897 | optionalDependencies: 898 | fsevents "^1.0.0" 899 | 900 | ci-info@^1.0.0: 901 | version "1.0.0" 902 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 903 | 904 | circular-json@^0.3.0: 905 | version "0.3.1" 906 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 907 | 908 | cli-cursor@^1.0.1: 909 | version "1.0.2" 910 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 911 | dependencies: 912 | restore-cursor "^1.0.1" 913 | 914 | cli-table@^0.3.1: 915 | version "0.3.1" 916 | resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.1.tgz#f53b05266a8b1a0b934b3d0821e6e2dc5914ae23" 917 | dependencies: 918 | colors "1.0.3" 919 | 920 | cli-usage@^0.1.1: 921 | version "0.1.4" 922 | resolved "https://registry.yarnpkg.com/cli-usage/-/cli-usage-0.1.4.tgz#7c01e0dc706c234b39c933838c8e20b2175776e2" 923 | dependencies: 924 | marked "^0.3.6" 925 | marked-terminal "^1.6.2" 926 | 927 | cli-width@^2.0.0: 928 | version "2.1.0" 929 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 930 | 931 | cliui@^2.1.0: 932 | version "2.1.0" 933 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 934 | dependencies: 935 | center-align "^0.1.1" 936 | right-align "^0.1.1" 937 | wordwrap "0.0.2" 938 | 939 | cliui@^3.2.0: 940 | version "3.2.0" 941 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 942 | dependencies: 943 | string-width "^1.0.1" 944 | strip-ansi "^3.0.1" 945 | wrap-ansi "^2.0.0" 946 | 947 | clone@^1.0.2: 948 | version "1.0.2" 949 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 950 | 951 | co@^4.6.0: 952 | version "4.6.0" 953 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 954 | 955 | code-point-at@^1.0.0: 956 | version "1.0.1" 957 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.0.1.tgz#1104cd34f9b5b45d3eba88f1babc1924e1ce35fb" 958 | dependencies: 959 | number-is-nan "^1.0.0" 960 | 961 | colors@1.0.3: 962 | version "1.0.3" 963 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 964 | 965 | combined-stream@^1.0.5, combined-stream@~1.0.5: 966 | version "1.0.5" 967 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 968 | dependencies: 969 | delayed-stream "~1.0.0" 970 | 971 | commander@^2.9.0: 972 | version "2.9.0" 973 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 974 | dependencies: 975 | graceful-readlink ">= 1.0.0" 976 | 977 | concat-map@0.0.1: 978 | version "0.0.1" 979 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 980 | 981 | concat-stream@^1.4.6: 982 | version "1.5.2" 983 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" 984 | dependencies: 985 | inherits "~2.0.1" 986 | readable-stream "~2.0.0" 987 | typedarray "~0.0.5" 988 | 989 | configstore@^1.0.0: 990 | version "1.4.0" 991 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" 992 | dependencies: 993 | graceful-fs "^4.1.2" 994 | mkdirp "^0.5.0" 995 | object-assign "^4.0.1" 996 | os-tmpdir "^1.0.0" 997 | osenv "^0.1.0" 998 | uuid "^2.0.1" 999 | write-file-atomic "^1.1.2" 1000 | xdg-basedir "^2.0.0" 1001 | 1002 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1003 | version "1.1.0" 1004 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1005 | 1006 | contains-path@^0.1.0: 1007 | version "0.1.0" 1008 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1009 | 1010 | content-type-parser@^1.0.1: 1011 | version "1.0.1" 1012 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1013 | 1014 | content@3.x.x: 1015 | version "3.0.2" 1016 | resolved "https://registry.yarnpkg.com/content/-/content-3.0.2.tgz#f1d8b4c3abb21ea4c0e2173f43ac0229a4ed6d1c" 1017 | dependencies: 1018 | boom "3.x.x" 1019 | 1020 | convert-source-map@^1.1.0: 1021 | version "1.3.0" 1022 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 1023 | 1024 | core-js@^2.4.0: 1025 | version "2.4.1" 1026 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1027 | 1028 | core-util-is@~1.0.0: 1029 | version "1.0.2" 1030 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1031 | 1032 | cryptiles@2.x.x: 1033 | version "2.0.5" 1034 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1035 | dependencies: 1036 | boom "2.x.x" 1037 | 1038 | cryptiles@3.x.x: 1039 | version "3.1.1" 1040 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.1.tgz#86a9203f7367a0e9324bc7555ff0fcf5f81979ee" 1041 | dependencies: 1042 | boom "4.x.x" 1043 | 1044 | "cssom@>= 0.3.0 < 0.4.0", cssom@0.3.x: 1045 | version "0.3.1" 1046 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.1.tgz#c9e37ef2490e64f6d1baa10fda852257082c25d3" 1047 | 1048 | "cssstyle@>= 0.2.36 < 0.3.0": 1049 | version "0.2.37" 1050 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1051 | dependencies: 1052 | cssom "0.3.x" 1053 | 1054 | d@^0.1.1, d@~0.1.1: 1055 | version "0.1.1" 1056 | resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" 1057 | dependencies: 1058 | es5-ext "~0.10.2" 1059 | 1060 | damerau-levenshtein@^1.0.0: 1061 | version "1.0.3" 1062 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.3.tgz#ae4f4ce0b62acae10ff63a01bb08f652f5213af2" 1063 | 1064 | dashdash@^1.12.0: 1065 | version "1.14.0" 1066 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141" 1067 | dependencies: 1068 | assert-plus "^1.0.0" 1069 | 1070 | dataloader: 1071 | version "1.2.0" 1072 | resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-1.2.0.tgz#3f73ea657c492c860c1633348adc55ca9bf2107e" 1073 | 1074 | debug@^2.1.1, debug@^2.2.0, debug@~2.2.0, debug@2.2.0: 1075 | version "2.2.0" 1076 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1077 | dependencies: 1078 | ms "0.7.1" 1079 | 1080 | decamelize@^1.0.0, decamelize@^1.1.1: 1081 | version "1.2.0" 1082 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1083 | 1084 | deep-extend@~0.4.0: 1085 | version "0.4.1" 1086 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1087 | 1088 | deep-is@~0.1.3: 1089 | version "0.1.3" 1090 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1091 | 1092 | del@^2.0.2: 1093 | version "2.2.2" 1094 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1095 | dependencies: 1096 | globby "^5.0.0" 1097 | is-path-cwd "^1.0.0" 1098 | is-path-in-cwd "^1.0.0" 1099 | object-assign "^4.0.1" 1100 | pify "^2.0.0" 1101 | pinkie-promise "^2.0.0" 1102 | rimraf "^2.2.8" 1103 | 1104 | delayed-stream@~1.0.0: 1105 | version "1.0.0" 1106 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1107 | 1108 | delegates@^1.0.0: 1109 | version "1.0.0" 1110 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1111 | 1112 | deprecated-decorator@^0.1.6: 1113 | version "0.1.6" 1114 | resolved "https://registry.yarnpkg.com/deprecated-decorator/-/deprecated-decorator-0.1.6.tgz#00966317b7a12fe92f3cc831f7583af329b86c37" 1115 | 1116 | detect-indent@^3.0.1: 1117 | version "3.0.1" 1118 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" 1119 | dependencies: 1120 | get-stdin "^4.0.1" 1121 | minimist "^1.1.0" 1122 | repeating "^1.1.0" 1123 | 1124 | detect-indent@^4.0.0: 1125 | version "4.0.0" 1126 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1127 | dependencies: 1128 | repeating "^2.0.0" 1129 | 1130 | diff@^3.0.0: 1131 | version "3.0.1" 1132 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.0.1.tgz#a52d90cc08956994be00877bff97110062582c35" 1133 | 1134 | doctrine@^1.2.2: 1135 | version "1.5.0" 1136 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1137 | dependencies: 1138 | esutils "^2.0.2" 1139 | isarray "^1.0.0" 1140 | 1141 | doctrine@1.3.x: 1142 | version "1.3.0" 1143 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.3.0.tgz#13e75682b55518424276f7c173783456ef913d26" 1144 | dependencies: 1145 | esutils "^2.0.2" 1146 | isarray "^1.0.0" 1147 | 1148 | duplexer@~0.1.1: 1149 | version "0.1.1" 1150 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1151 | 1152 | duplexify@^3.1.2, duplexify@^3.2.0: 1153 | version "3.4.5" 1154 | resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.4.5.tgz#0e7e287a775af753bf57e6e7b7f21f183f6c3a53" 1155 | dependencies: 1156 | end-of-stream "1.0.0" 1157 | inherits "^2.0.1" 1158 | readable-stream "^2.0.0" 1159 | stream-shift "^1.0.0" 1160 | 1161 | ecc-jsbn@~0.1.1: 1162 | version "0.1.1" 1163 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1164 | dependencies: 1165 | jsbn "~0.1.0" 1166 | 1167 | end-of-stream@^1.1.0: 1168 | version "1.1.0" 1169 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.1.0.tgz#e9353258baa9108965efc41cb0ef8ade2f3cfb07" 1170 | dependencies: 1171 | once "~1.3.0" 1172 | 1173 | end-of-stream@1.0.0: 1174 | version "1.0.0" 1175 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.0.0.tgz#d4596e702734a93e40e9af864319eabd99ff2f0e" 1176 | dependencies: 1177 | once "~1.3.0" 1178 | 1179 | "errno@>=0.1.1 <0.2.0-0": 1180 | version "0.1.4" 1181 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1182 | dependencies: 1183 | prr "~0.0.0" 1184 | 1185 | error-ex@^1.2.0: 1186 | version "1.3.0" 1187 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" 1188 | dependencies: 1189 | is-arrayish "^0.2.1" 1190 | 1191 | 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: 1192 | version "0.10.12" 1193 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" 1194 | dependencies: 1195 | es6-iterator "2" 1196 | es6-symbol "~3.1" 1197 | 1198 | es6-iterator@2: 1199 | version "2.0.0" 1200 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" 1201 | dependencies: 1202 | d "^0.1.1" 1203 | es5-ext "^0.10.7" 1204 | es6-symbol "3" 1205 | 1206 | es6-map@^0.1.3: 1207 | version "0.1.4" 1208 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" 1209 | dependencies: 1210 | d "~0.1.1" 1211 | es5-ext "~0.10.11" 1212 | es6-iterator "2" 1213 | es6-set "~0.1.3" 1214 | es6-symbol "~3.1.0" 1215 | event-emitter "~0.3.4" 1216 | 1217 | es6-promise@^3.0.2: 1218 | version "3.3.1" 1219 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 1220 | 1221 | es6-promise@3.2.1: 1222 | version "3.2.1" 1223 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.2.1.tgz#ec56233868032909207170c39448e24449dd1fc4" 1224 | 1225 | es6-set@~0.1.3: 1226 | version "0.1.4" 1227 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" 1228 | dependencies: 1229 | d "~0.1.1" 1230 | es5-ext "~0.10.11" 1231 | es6-iterator "2" 1232 | es6-symbol "3" 1233 | event-emitter "~0.3.4" 1234 | 1235 | es6-symbol@~3.1, es6-symbol@~3.1.0, es6-symbol@3: 1236 | version "3.1.0" 1237 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" 1238 | dependencies: 1239 | d "~0.1.1" 1240 | es5-ext "~0.10.11" 1241 | 1242 | es6-weak-map@^2.0.1: 1243 | version "2.0.1" 1244 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" 1245 | dependencies: 1246 | d "^0.1.1" 1247 | es5-ext "^0.10.8" 1248 | es6-iterator "2" 1249 | es6-symbol "3" 1250 | 1251 | escape-string-regexp@^1.0.0, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1252 | version "1.0.5" 1253 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1254 | 1255 | escodegen@^1.6.1, escodegen@1.8.x: 1256 | version "1.8.1" 1257 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1258 | dependencies: 1259 | esprima "^2.7.1" 1260 | estraverse "^1.9.1" 1261 | esutils "^2.0.2" 1262 | optionator "^0.8.1" 1263 | optionalDependencies: 1264 | source-map "~0.2.0" 1265 | 1266 | escope@^3.6.0: 1267 | version "3.6.0" 1268 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1269 | dependencies: 1270 | es6-map "^0.1.3" 1271 | es6-weak-map "^2.0.1" 1272 | esrecurse "^4.1.0" 1273 | estraverse "^4.1.1" 1274 | 1275 | eslint-config-airbnb-base@^8.0.0: 1276 | version "8.0.0" 1277 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-8.0.0.tgz#c5e958a469ab8af76aff068b43d784e5afe74ca7" 1278 | 1279 | eslint-config-airbnb@^12.0.0: 1280 | version "12.0.0" 1281 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-12.0.0.tgz#ab282b756a25f03d04ac264c24d673a08a803270" 1282 | dependencies: 1283 | eslint-config-airbnb-base "^8.0.0" 1284 | 1285 | eslint-import-resolver-node@^0.2.0: 1286 | version "0.2.3" 1287 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz#5add8106e8c928db2cba232bcd9efa846e3da16c" 1288 | dependencies: 1289 | debug "^2.2.0" 1290 | object-assign "^4.0.1" 1291 | resolve "^1.1.6" 1292 | 1293 | eslint-module-utils@^1.0.0: 1294 | version "1.0.0" 1295 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-1.0.0.tgz#c4a57fd3a53efd8426cc2d5550aadab9bbd05fd0" 1296 | dependencies: 1297 | debug "2.2.0" 1298 | pkg-dir "^1.0.0" 1299 | 1300 | eslint-plugin-flowtype@^2.25.0: 1301 | version "2.25.0" 1302 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.25.0.tgz#c462521ab20ce3d8db819f10ad3c9f1bc7f3f819" 1303 | dependencies: 1304 | lodash "^4.15.0" 1305 | 1306 | eslint-plugin-import@^2.0.1: 1307 | version "2.0.1" 1308 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.0.1.tgz#dcfe96357d476b3f822570d42c29bec66f5d9c5c" 1309 | dependencies: 1310 | builtin-modules "^1.1.1" 1311 | contains-path "^0.1.0" 1312 | debug "^2.2.0" 1313 | doctrine "1.3.x" 1314 | eslint-import-resolver-node "^0.2.0" 1315 | eslint-module-utils "^1.0.0" 1316 | has "^1.0.1" 1317 | lodash.cond "^4.3.0" 1318 | minimatch "^3.0.3" 1319 | pkg-up "^1.0.0" 1320 | 1321 | eslint-plugin-jsx-a11y@^2.2.3: 1322 | version "2.2.3" 1323 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-2.2.3.tgz#4e35cb71b8a7db702ac415c806eb8e8d9ea6c65d" 1324 | dependencies: 1325 | damerau-levenshtein "^1.0.0" 1326 | jsx-ast-utils "^1.0.0" 1327 | object-assign "^4.0.1" 1328 | 1329 | eslint-plugin-react@^6.5.0: 1330 | version "6.5.0" 1331 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.5.0.tgz#93f894b6469974304609e59c8983a6a3dc81738c" 1332 | dependencies: 1333 | doctrine "^1.2.2" 1334 | jsx-ast-utils "^1.3.3" 1335 | 1336 | eslint@^3.9.1: 1337 | version "3.9.1" 1338 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.9.1.tgz#5a8597706fc6048bc6061ac754d4a211d28f4f5b" 1339 | dependencies: 1340 | babel-code-frame "^6.16.0" 1341 | chalk "^1.1.3" 1342 | concat-stream "^1.4.6" 1343 | debug "^2.1.1" 1344 | doctrine "^1.2.2" 1345 | escope "^3.6.0" 1346 | espree "^3.3.1" 1347 | estraverse "^4.2.0" 1348 | esutils "^2.0.2" 1349 | file-entry-cache "^2.0.0" 1350 | glob "^7.0.3" 1351 | globals "^9.2.0" 1352 | ignore "^3.1.5" 1353 | imurmurhash "^0.1.4" 1354 | inquirer "^0.12.0" 1355 | is-my-json-valid "^2.10.0" 1356 | is-resolvable "^1.0.0" 1357 | js-yaml "^3.5.1" 1358 | json-stable-stringify "^1.0.0" 1359 | levn "^0.3.0" 1360 | lodash "^4.0.0" 1361 | mkdirp "^0.5.0" 1362 | natural-compare "^1.4.0" 1363 | optionator "^0.8.2" 1364 | path-is-inside "^1.0.1" 1365 | pluralize "^1.2.1" 1366 | progress "^1.1.8" 1367 | require-uncached "^1.0.2" 1368 | shelljs "^0.7.5" 1369 | strip-bom "^3.0.0" 1370 | strip-json-comments "~1.0.1" 1371 | table "^3.7.8" 1372 | text-table "~0.2.0" 1373 | user-home "^2.0.0" 1374 | 1375 | espree@^3.3.1: 1376 | version "3.3.2" 1377 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.3.2.tgz#dbf3fadeb4ecb4d4778303e50103b3d36c88b89c" 1378 | dependencies: 1379 | acorn "^4.0.1" 1380 | acorn-jsx "^3.0.0" 1381 | 1382 | esprima@^2.6.0, esprima@^2.7.1, esprima@~2.7.0, esprima@2.7.x: 1383 | version "2.7.3" 1384 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1385 | 1386 | esrecurse@^4.1.0: 1387 | version "4.1.0" 1388 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1389 | dependencies: 1390 | estraverse "~4.1.0" 1391 | object-assign "^4.0.1" 1392 | 1393 | estraverse@^1.9.1: 1394 | version "1.9.3" 1395 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1396 | 1397 | estraverse@^4.1.1, estraverse@^4.2.0: 1398 | version "4.2.0" 1399 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1400 | 1401 | estraverse@~4.1.0: 1402 | version "4.1.1" 1403 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1404 | 1405 | esutils@^2.0.2: 1406 | version "2.0.2" 1407 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1408 | 1409 | event-emitter@~0.3.4: 1410 | version "0.3.4" 1411 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" 1412 | dependencies: 1413 | d "~0.1.1" 1414 | es5-ext "~0.10.7" 1415 | 1416 | event-stream@~3.3.0: 1417 | version "3.3.4" 1418 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 1419 | dependencies: 1420 | duplexer "~0.1.1" 1421 | from "~0" 1422 | map-stream "~0.1.0" 1423 | pause-stream "0.0.11" 1424 | split "0.3" 1425 | stream-combiner "~0.0.4" 1426 | through "~2.3.1" 1427 | 1428 | exec-sh@^0.2.0: 1429 | version "0.2.0" 1430 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1431 | dependencies: 1432 | merge "^1.1.3" 1433 | 1434 | exit-hook@^1.0.0: 1435 | version "1.1.1" 1436 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1437 | 1438 | expand-brackets@^0.1.4: 1439 | version "0.1.5" 1440 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1441 | dependencies: 1442 | is-posix-bracket "^0.1.0" 1443 | 1444 | expand-range@^1.8.1: 1445 | version "1.8.2" 1446 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1447 | dependencies: 1448 | fill-range "^2.1.0" 1449 | 1450 | extend@~3.0.0: 1451 | version "3.0.0" 1452 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1453 | 1454 | extglob@^0.3.1: 1455 | version "0.3.2" 1456 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1457 | dependencies: 1458 | is-extglob "^1.0.0" 1459 | 1460 | extsprintf@1.0.2: 1461 | version "1.0.2" 1462 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1463 | 1464 | fast-levenshtein@~2.0.4: 1465 | version "2.0.5" 1466 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 1467 | 1468 | fast-safe-stringify@1.1.0: 1469 | version "1.1.0" 1470 | resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-1.1.0.tgz#4ca98c502e00c387ca1b0e7184e955718bf512e8" 1471 | 1472 | fb-watchman@^1.8.0, fb-watchman@^1.9.0: 1473 | version "1.9.0" 1474 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.0.tgz#6f268f1f347a6b3c875d1e89da7e1ed79adfc0ec" 1475 | dependencies: 1476 | bser "^1.0.2" 1477 | 1478 | figures@^1.3.5: 1479 | version "1.7.0" 1480 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1481 | dependencies: 1482 | escape-string-regexp "^1.0.5" 1483 | object-assign "^4.1.0" 1484 | 1485 | file-entry-cache@^2.0.0: 1486 | version "2.0.0" 1487 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1488 | dependencies: 1489 | flat-cache "^1.2.1" 1490 | object-assign "^4.0.1" 1491 | 1492 | filename-regex@^2.0.0: 1493 | version "2.0.0" 1494 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1495 | 1496 | fileset@0.2.x: 1497 | version "0.2.1" 1498 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-0.2.1.tgz#588ef8973c6623b2a76df465105696b96aac8067" 1499 | dependencies: 1500 | glob "5.x" 1501 | minimatch "2.x" 1502 | 1503 | fill-range@^2.1.0: 1504 | version "2.2.3" 1505 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1506 | dependencies: 1507 | is-number "^2.1.0" 1508 | isobject "^2.0.0" 1509 | randomatic "^1.1.3" 1510 | repeat-element "^1.1.2" 1511 | repeat-string "^1.5.2" 1512 | 1513 | find-up@^1.0.0, find-up@^1.1.2: 1514 | version "1.1.2" 1515 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1516 | dependencies: 1517 | path-exists "^2.0.0" 1518 | pinkie-promise "^2.0.0" 1519 | 1520 | flat-cache@^1.2.1: 1521 | version "1.2.1" 1522 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" 1523 | dependencies: 1524 | circular-json "^0.3.0" 1525 | del "^2.0.2" 1526 | graceful-fs "^4.1.2" 1527 | write "^0.2.1" 1528 | 1529 | flow-bin@^0.34.0: 1530 | version "0.34.0" 1531 | resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.34.0.tgz#093ed36981e8fafc39d16f0b0878d0968aa80fad" 1532 | 1533 | for-in@^0.1.5: 1534 | version "0.1.6" 1535 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1536 | 1537 | for-own@^0.1.3: 1538 | version "0.1.4" 1539 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1540 | dependencies: 1541 | for-in "^0.1.5" 1542 | 1543 | forever-agent@~0.6.1: 1544 | version "0.6.1" 1545 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1546 | 1547 | form-data@~2.0.0: 1548 | version "2.0.0" 1549 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25" 1550 | dependencies: 1551 | asynckit "^0.4.0" 1552 | combined-stream "^1.0.5" 1553 | mime-types "^2.1.11" 1554 | 1555 | from@~0: 1556 | version "0.1.3" 1557 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.3.tgz#ef63ac2062ac32acf7862e0d40b44b896f22f3bc" 1558 | 1559 | fs.realpath@^1.0.0: 1560 | version "1.0.0" 1561 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1562 | 1563 | fsevents@^1.0.0: 1564 | version "1.0.14" 1565 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.14.tgz#558e8cc38643d8ef40fe45158486d0d25758eee4" 1566 | dependencies: 1567 | nan "^2.3.0" 1568 | node-pre-gyp "^0.6.29" 1569 | 1570 | fstream-ignore@~1.0.5: 1571 | version "1.0.5" 1572 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1573 | dependencies: 1574 | fstream "^1.0.0" 1575 | inherits "2" 1576 | minimatch "^3.0.0" 1577 | 1578 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: 1579 | version "1.0.10" 1580 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" 1581 | dependencies: 1582 | graceful-fs "^4.1.2" 1583 | inherits "~2.0.0" 1584 | mkdirp ">=0.5 0" 1585 | rimraf "2" 1586 | 1587 | function-bind@^1.0.2: 1588 | version "1.1.0" 1589 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1590 | 1591 | gauge@~2.6.0: 1592 | version "2.6.0" 1593 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" 1594 | dependencies: 1595 | aproba "^1.0.3" 1596 | console-control-strings "^1.0.0" 1597 | has-color "^0.1.7" 1598 | has-unicode "^2.0.0" 1599 | object-assign "^4.1.0" 1600 | signal-exit "^3.0.0" 1601 | string-width "^1.0.1" 1602 | strip-ansi "^3.0.1" 1603 | wide-align "^1.1.0" 1604 | 1605 | generate-function@^2.0.0: 1606 | version "2.0.0" 1607 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1608 | 1609 | generate-object-property@^1.1.0: 1610 | version "1.2.0" 1611 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1612 | dependencies: 1613 | is-property "^1.0.0" 1614 | 1615 | get-caller-file@^1.0.1: 1616 | version "1.0.2" 1617 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1618 | 1619 | get-stdin@^4.0.1: 1620 | version "4.0.1" 1621 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1622 | 1623 | getpass@^0.1.1: 1624 | version "0.1.6" 1625 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1626 | dependencies: 1627 | assert-plus "^1.0.0" 1628 | 1629 | glob-base@^0.3.0: 1630 | version "0.3.0" 1631 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1632 | dependencies: 1633 | glob-parent "^2.0.0" 1634 | is-glob "^2.0.0" 1635 | 1636 | glob-parent@^2.0.0: 1637 | version "2.0.0" 1638 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1639 | dependencies: 1640 | is-glob "^2.0.0" 1641 | 1642 | glob@^5.0.15, glob@5.x: 1643 | version "5.0.15" 1644 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1645 | dependencies: 1646 | inflight "^1.0.4" 1647 | inherits "2" 1648 | minimatch "2 || 3" 1649 | once "^1.3.0" 1650 | path-is-absolute "^1.0.0" 1651 | 1652 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1653 | version "7.1.1" 1654 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1655 | dependencies: 1656 | fs.realpath "^1.0.0" 1657 | inflight "^1.0.4" 1658 | inherits "2" 1659 | minimatch "^3.0.2" 1660 | once "^1.3.0" 1661 | path-is-absolute "^1.0.0" 1662 | 1663 | globals@^8.3.0: 1664 | version "8.18.0" 1665 | resolved "https://registry.yarnpkg.com/globals/-/globals-8.18.0.tgz#93d4a62bdcac38cfafafc47d6b034768cb0ffcb4" 1666 | 1667 | globals@^9.0.0, globals@^9.2.0: 1668 | version "9.12.0" 1669 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.12.0.tgz#992ce90828c3a55fa8f16fada177adb64664cf9d" 1670 | 1671 | globby@^5.0.0: 1672 | version "5.0.0" 1673 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1674 | dependencies: 1675 | array-union "^1.0.1" 1676 | arrify "^1.0.0" 1677 | glob "^7.0.3" 1678 | object-assign "^4.0.1" 1679 | pify "^2.0.0" 1680 | pinkie-promise "^2.0.0" 1681 | 1682 | glue@^4.0.0: 1683 | version "4.0.0" 1684 | resolved "https://registry.yarnpkg.com/glue/-/glue-4.0.0.tgz#dd449ae8d728e6d97dab26d3e942795064706458" 1685 | dependencies: 1686 | hapi "11.x.x || 12.x.x || 13.x.x || 14.x.x || 15.x.x" 1687 | hoek "4.x.x" 1688 | items "2.x.x" 1689 | joi "9.x.x" 1690 | 1691 | good-console@^6.3.1: 1692 | version "6.3.1" 1693 | resolved "https://registry.yarnpkg.com/good-console/-/good-console-6.3.1.tgz#a2e7327985cc50c28ef47b2077db7c2a9e72fecc" 1694 | dependencies: 1695 | hoek "4.x.x" 1696 | joi "8.1.x" 1697 | json-stringify-safe "5.0.x" 1698 | moment "2.15.x" 1699 | 1700 | good-squeeze@^5.0.0: 1701 | version "5.0.0" 1702 | resolved "https://registry.yarnpkg.com/good-squeeze/-/good-squeeze-5.0.0.tgz#57003c22cbe20abd5dfd564b9a0f4d168d266196" 1703 | dependencies: 1704 | fast-safe-stringify "1.1.0" 1705 | hoek "4.x.x" 1706 | 1707 | good@^7.0.2: 1708 | version "7.0.2" 1709 | resolved "https://registry.yarnpkg.com/good/-/good-7.0.2.tgz#8a9f5e6b2654cb828c0145a04eade302f8c65985" 1710 | dependencies: 1711 | hoek "3.x.x" 1712 | joi "7.x.x" 1713 | oppsy "1.x.x" 1714 | pumpify "1.3.x" 1715 | 1716 | got@^3.2.0: 1717 | version "3.3.1" 1718 | resolved "https://registry.yarnpkg.com/got/-/got-3.3.1.tgz#e5d0ed4af55fc3eef4d56007769d98192bcb2eca" 1719 | dependencies: 1720 | duplexify "^3.2.0" 1721 | infinity-agent "^2.0.0" 1722 | is-redirect "^1.0.0" 1723 | is-stream "^1.0.0" 1724 | lowercase-keys "^1.0.0" 1725 | nested-error-stacks "^1.0.0" 1726 | object-assign "^3.0.0" 1727 | prepend-http "^1.0.0" 1728 | read-all-stream "^3.0.0" 1729 | timed-out "^2.0.0" 1730 | 1731 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1732 | version "4.1.9" 1733 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.9.tgz#baacba37d19d11f9d146d3578bc99958c3787e29" 1734 | 1735 | "graceful-readlink@>= 1.0.0": 1736 | version "1.0.1" 1737 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1738 | 1739 | graphql-tools@^0.8.0: 1740 | version "0.8.0" 1741 | resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-0.8.0.tgz#5708257a398f9a3ff6f9d6e362aac184cd4323a0" 1742 | dependencies: 1743 | deprecated-decorator "^0.1.6" 1744 | lodash "^4.3.0" 1745 | node-uuid "^1.4.7" 1746 | optionalDependencies: 1747 | typed-graphql "^1.0.2" 1748 | 1749 | graphql@^0.7.2: 1750 | version "0.7.2" 1751 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.7.2.tgz#cc894a32823399b8a0cb012b9e9ecad35cd00f72" 1752 | dependencies: 1753 | iterall "1.0.2" 1754 | 1755 | growly@^1.2.0: 1756 | version "1.3.0" 1757 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1758 | 1759 | handlebars@^4.0.1, handlebars@^4.0.3: 1760 | version "4.0.5" 1761 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.5.tgz#92c6ed6bb164110c50d4d8d0fbddc70806c6f8e7" 1762 | dependencies: 1763 | async "^1.4.0" 1764 | optimist "^0.6.1" 1765 | source-map "^0.4.4" 1766 | optionalDependencies: 1767 | uglify-js "^2.6" 1768 | 1769 | hapi-auth-basic@^4.2.0: 1770 | version "4.2.0" 1771 | resolved "https://registry.yarnpkg.com/hapi-auth-basic/-/hapi-auth-basic-4.2.0.tgz#a2f16b3e14317d44e3ad7934fe833f995ee82fc0" 1772 | dependencies: 1773 | boom "3.x.x" 1774 | hoek "4.x.x" 1775 | 1776 | hapi@^15.2.0: 1777 | version "15.2.0" 1778 | resolved "https://registry.yarnpkg.com/hapi/-/hapi-15.2.0.tgz#5704ca2c04b6386c03caf9ee901f1de080316d23" 1779 | dependencies: 1780 | accept "2.x.x" 1781 | ammo "2.x.x" 1782 | boom "4.x.x" 1783 | call "3.x.x" 1784 | catbox "7.x.x" 1785 | catbox-memory "2.x.x" 1786 | cryptiles "3.x.x" 1787 | heavy "4.x.x" 1788 | hoek "4.x.x" 1789 | iron "4.x.x" 1790 | items "2.x.x" 1791 | joi "9.x.x" 1792 | mimos "3.x.x" 1793 | podium "^1.2.x" 1794 | shot "3.x.x" 1795 | statehood "5.x.x" 1796 | subtext "^4.3.x" 1797 | topo "2.x.x" 1798 | 1799 | "hapi@11.x.x || 12.x.x || 13.x.x || 14.x.x || 15.x.x": 1800 | version "15.1.1" 1801 | resolved "https://registry.yarnpkg.com/hapi/-/hapi-15.1.1.tgz#617aeb2354b4b4b1f8f05cd7b7ab4a5208adc09e" 1802 | dependencies: 1803 | accept "2.x.x" 1804 | ammo "2.x.x" 1805 | boom "4.x.x" 1806 | call "3.x.x" 1807 | catbox "7.x.x" 1808 | catbox-memory "2.x.x" 1809 | cryptiles "3.x.x" 1810 | heavy "4.x.x" 1811 | hoek "4.x.x" 1812 | iron "4.x.x" 1813 | items "2.x.x" 1814 | joi "9.x.x" 1815 | mimos "3.x.x" 1816 | podium "^1.2.x" 1817 | shot "3.x.x" 1818 | statehood "5.x.x" 1819 | subtext "^4.2.x" 1820 | topo "2.x.x" 1821 | 1822 | har-validator@~2.0.6: 1823 | version "2.0.6" 1824 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1825 | dependencies: 1826 | chalk "^1.1.1" 1827 | commander "^2.9.0" 1828 | is-my-json-valid "^2.12.4" 1829 | pinkie-promise "^2.0.0" 1830 | 1831 | has-ansi@^0.1.0: 1832 | version "0.1.0" 1833 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-0.1.0.tgz#84f265aae8c0e6a88a12d7022894b7568894c62e" 1834 | dependencies: 1835 | ansi-regex "^0.2.0" 1836 | 1837 | has-ansi@^2.0.0: 1838 | version "2.0.0" 1839 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1840 | dependencies: 1841 | ansi-regex "^2.0.0" 1842 | 1843 | has-color@^0.1.7: 1844 | version "0.1.7" 1845 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1846 | 1847 | has-flag@^1.0.0: 1848 | version "1.0.0" 1849 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1850 | 1851 | has-unicode@^2.0.0: 1852 | version "2.0.1" 1853 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1854 | 1855 | has@^1.0.1: 1856 | version "1.0.1" 1857 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1858 | dependencies: 1859 | function-bind "^1.0.2" 1860 | 1861 | hawk@~3.1.3: 1862 | version "3.1.3" 1863 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1864 | dependencies: 1865 | boom "2.x.x" 1866 | cryptiles "2.x.x" 1867 | hoek "2.x.x" 1868 | sntp "1.x.x" 1869 | 1870 | heavy@4.x.x: 1871 | version "4.0.2" 1872 | resolved "https://registry.yarnpkg.com/heavy/-/heavy-4.0.2.tgz#dbb66cda5f017a594fc6c8301df6999ea8d533f0" 1873 | dependencies: 1874 | boom "3.x.x" 1875 | hoek "4.x.x" 1876 | joi "9.x.x" 1877 | 1878 | hoek@2.x.x: 1879 | version "2.16.3" 1880 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1881 | 1882 | hoek@3.x.x: 1883 | version "3.0.4" 1884 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-3.0.4.tgz#268adff66bb6695c69b4789a88b1e0847c3f3123" 1885 | 1886 | hoek@4.x.x: 1887 | version "4.1.0" 1888 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.1.0.tgz#4a4557460f69842ed463aa00628cc26d2683afa7" 1889 | 1890 | home-or-tmp@^1.0.0: 1891 | version "1.0.0" 1892 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-1.0.0.tgz#4b9f1e40800c3e50c6c27f781676afcce71f3985" 1893 | dependencies: 1894 | os-tmpdir "^1.0.1" 1895 | user-home "^1.1.1" 1896 | 1897 | home-or-tmp@^2.0.0: 1898 | version "2.0.0" 1899 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1900 | dependencies: 1901 | os-homedir "^1.0.0" 1902 | os-tmpdir "^1.0.1" 1903 | 1904 | hooks-fixed@1.2.0: 1905 | version "1.2.0" 1906 | resolved "https://registry.yarnpkg.com/hooks-fixed/-/hooks-fixed-1.2.0.tgz#0d2772d4d7d685ff9244724a9f0b5b2559aac96b" 1907 | 1908 | hosted-git-info@^2.1.4: 1909 | version "2.1.5" 1910 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" 1911 | 1912 | html-encoding-sniffer@^1.0.1: 1913 | version "1.0.1" 1914 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1915 | dependencies: 1916 | whatwg-encoding "^1.0.1" 1917 | 1918 | http-errors@^1.5.0: 1919 | version "1.5.0" 1920 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.0.tgz#b1cb3d8260fd8e2386cad3189045943372d48211" 1921 | dependencies: 1922 | inherits "2.0.1" 1923 | setprototypeof "1.0.1" 1924 | statuses ">= 1.3.0 < 2" 1925 | 1926 | http-signature@~1.1.0: 1927 | version "1.1.1" 1928 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1929 | dependencies: 1930 | assert-plus "^0.2.0" 1931 | jsprim "^1.2.2" 1932 | sshpk "^1.7.0" 1933 | 1934 | iconv-lite@^0.4.13, iconv-lite@0.4.13: 1935 | version "0.4.13" 1936 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1937 | 1938 | ignore-by-default@^1.0.0: 1939 | version "1.0.1" 1940 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1941 | 1942 | ignore@^3.1.5: 1943 | version "3.2.0" 1944 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.0.tgz#8d88f03c3002a0ac52114db25d2c673b0bf1e435" 1945 | 1946 | imurmurhash@^0.1.4: 1947 | version "0.1.4" 1948 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1949 | 1950 | infinity-agent@^2.0.0: 1951 | version "2.0.3" 1952 | resolved "https://registry.yarnpkg.com/infinity-agent/-/infinity-agent-2.0.3.tgz#45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216" 1953 | 1954 | inflight@^1.0.4: 1955 | version "1.0.6" 1956 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1957 | dependencies: 1958 | once "^1.3.0" 1959 | wrappy "1" 1960 | 1961 | inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@2: 1962 | version "2.0.3" 1963 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1964 | 1965 | inherits@2.0.1: 1966 | version "2.0.1" 1967 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1968 | 1969 | ini@~1.3.0: 1970 | version "1.3.4" 1971 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1972 | 1973 | inquirer@^0.12.0: 1974 | version "0.12.0" 1975 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1976 | dependencies: 1977 | ansi-escapes "^1.1.0" 1978 | ansi-regex "^2.0.0" 1979 | chalk "^1.0.0" 1980 | cli-cursor "^1.0.1" 1981 | cli-width "^2.0.0" 1982 | figures "^1.3.5" 1983 | lodash "^4.3.0" 1984 | readline2 "^1.0.1" 1985 | run-async "^0.1.0" 1986 | rx-lite "^3.1.2" 1987 | string-width "^1.0.1" 1988 | strip-ansi "^3.0.0" 1989 | through "^2.3.6" 1990 | 1991 | interpret@^1.0.0: 1992 | version "1.0.1" 1993 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" 1994 | 1995 | invariant@^2.2.0: 1996 | version "2.2.1" 1997 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.1.tgz#b097010547668c7e337028ebe816ebe36c8a8d54" 1998 | dependencies: 1999 | loose-envify "^1.0.0" 2000 | 2001 | invert-kv@^1.0.0: 2002 | version "1.0.0" 2003 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 2004 | 2005 | iron@4.x.x: 2006 | version "4.0.4" 2007 | resolved "https://registry.yarnpkg.com/iron/-/iron-4.0.4.tgz#c1f8cc4c91454194ab8920d9247ba882e528061a" 2008 | dependencies: 2009 | boom "4.x.x" 2010 | cryptiles "3.x.x" 2011 | hoek "4.x.x" 2012 | 2013 | is-arrayish@^0.2.1: 2014 | version "0.2.1" 2015 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 2016 | 2017 | is-binary-path@^1.0.0: 2018 | version "1.0.1" 2019 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 2020 | dependencies: 2021 | binary-extensions "^1.0.0" 2022 | 2023 | is-buffer@^1.0.2: 2024 | version "1.1.4" 2025 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 2026 | 2027 | is-builtin-module@^1.0.0: 2028 | version "1.0.0" 2029 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 2030 | dependencies: 2031 | builtin-modules "^1.0.0" 2032 | 2033 | is-ci@^1.0.9: 2034 | version "1.0.10" 2035 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 2036 | dependencies: 2037 | ci-info "^1.0.0" 2038 | 2039 | is-dotfile@^1.0.0: 2040 | version "1.0.2" 2041 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 2042 | 2043 | is-equal-shallow@^0.1.3: 2044 | version "0.1.3" 2045 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 2046 | dependencies: 2047 | is-primitive "^2.0.0" 2048 | 2049 | is-extendable@^0.1.1: 2050 | version "0.1.1" 2051 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 2052 | 2053 | is-extglob@^1.0.0: 2054 | version "1.0.0" 2055 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 2056 | 2057 | is-finite@^1.0.0: 2058 | version "1.0.2" 2059 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 2060 | dependencies: 2061 | number-is-nan "^1.0.0" 2062 | 2063 | is-fullwidth-code-point@^1.0.0: 2064 | version "1.0.0" 2065 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 2066 | dependencies: 2067 | number-is-nan "^1.0.0" 2068 | 2069 | is-glob@^2.0.0, is-glob@^2.0.1: 2070 | version "2.0.1" 2071 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 2072 | dependencies: 2073 | is-extglob "^1.0.0" 2074 | 2075 | is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: 2076 | version "2.15.0" 2077 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" 2078 | dependencies: 2079 | generate-function "^2.0.0" 2080 | generate-object-property "^1.1.0" 2081 | jsonpointer "^4.0.0" 2082 | xtend "^4.0.0" 2083 | 2084 | is-npm@^1.0.0: 2085 | version "1.0.0" 2086 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 2087 | 2088 | is-number@^2.0.2, is-number@^2.1.0: 2089 | version "2.1.0" 2090 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 2091 | dependencies: 2092 | kind-of "^3.0.2" 2093 | 2094 | is-path-cwd@^1.0.0: 2095 | version "1.0.0" 2096 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2097 | 2098 | is-path-in-cwd@^1.0.0: 2099 | version "1.0.0" 2100 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2101 | dependencies: 2102 | is-path-inside "^1.0.0" 2103 | 2104 | is-path-inside@^1.0.0: 2105 | version "1.0.0" 2106 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2107 | dependencies: 2108 | path-is-inside "^1.0.1" 2109 | 2110 | is-posix-bracket@^0.1.0: 2111 | version "0.1.1" 2112 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2113 | 2114 | is-primitive@^2.0.0: 2115 | version "2.0.0" 2116 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2117 | 2118 | is-property@^1.0.0: 2119 | version "1.0.2" 2120 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 2121 | 2122 | is-redirect@^1.0.0: 2123 | version "1.0.0" 2124 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 2125 | 2126 | is-resolvable@^1.0.0: 2127 | version "1.0.0" 2128 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2129 | dependencies: 2130 | tryit "^1.0.1" 2131 | 2132 | is-stream@^1.0.0: 2133 | version "1.1.0" 2134 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2135 | 2136 | is-typedarray@~1.0.0: 2137 | version "1.0.0" 2138 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2139 | 2140 | is-utf8@^0.2.0: 2141 | version "0.2.1" 2142 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2143 | 2144 | isarray@^1.0.0, isarray@~1.0.0, isarray@1.0.0: 2145 | version "1.0.0" 2146 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2147 | 2148 | isemail@1.x.x: 2149 | version "1.2.0" 2150 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-1.2.0.tgz#be03df8cc3e29de4d2c5df6501263f1fa4595e9a" 2151 | 2152 | isemail@2.x.x: 2153 | version "2.2.1" 2154 | resolved "https://registry.yarnpkg.com/isemail/-/isemail-2.2.1.tgz#0353d3d9a62951080c262c2aa0a42b8ea8e9e2a6" 2155 | 2156 | isexe@^1.1.1: 2157 | version "1.1.2" 2158 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" 2159 | 2160 | isobject@^2.0.0: 2161 | version "2.1.0" 2162 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2163 | dependencies: 2164 | isarray "1.0.0" 2165 | 2166 | isstream@~0.1.2: 2167 | version "0.1.2" 2168 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2169 | 2170 | istanbul-api@^1.0.0-aplha.10: 2171 | version "1.0.0-aplha.10" 2172 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.0.0-aplha.10.tgz#902edf5cf5404e0eba7e00ef46408488a0d3e337" 2173 | dependencies: 2174 | async "1.x" 2175 | clone "^1.0.2" 2176 | fileset "0.2.x" 2177 | istanbul-lib-coverage "^1.0.0-alpha" 2178 | istanbul-lib-hook "^1.0.0-alpha" 2179 | istanbul-lib-instrument "^1.0.0-alpha" 2180 | istanbul-lib-report "^1.0.0-alpha" 2181 | istanbul-lib-source-maps "^1.0.0-alpha" 2182 | istanbul-reports "^1.0.0-alpha" 2183 | js-yaml "3.x" 2184 | mkdirp "0.5.x" 2185 | once "1.x" 2186 | 2187 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.0.0-alpha, istanbul-lib-coverage@^1.0.0-alpha.0: 2188 | version "1.0.0" 2189 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0.tgz#c3f9b6d226da12424064cce87fce0fb57fdfa7a2" 2190 | 2191 | istanbul-lib-hook@^1.0.0-alpha: 2192 | version "1.0.0-alpha.4" 2193 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0-alpha.4.tgz#8c5bb9f6fbd8526e0ae6cf639af28266906b938f" 2194 | dependencies: 2195 | append-transform "^0.3.0" 2196 | 2197 | istanbul-lib-instrument@^1.0.0-alpha, istanbul-lib-instrument@^1.1.1, istanbul-lib-instrument@^1.1.4: 2198 | version "1.1.4" 2199 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.1.4.tgz#95be56e5c321456ffdfddc925ad4dcfc28edab9c" 2200 | dependencies: 2201 | babel-generator "^6.11.3" 2202 | babel-template "^6.9.0" 2203 | babel-traverse "^6.9.0" 2204 | babel-types "^6.10.2" 2205 | babylon "^6.8.1" 2206 | istanbul-lib-coverage "^1.0.0" 2207 | 2208 | istanbul-lib-report@^1.0.0-alpha: 2209 | version "1.0.0-alpha.3" 2210 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz#32d5f6ec7f33ca3a602209e278b2e6ff143498af" 2211 | dependencies: 2212 | async "^1.4.2" 2213 | istanbul-lib-coverage "^1.0.0-alpha" 2214 | mkdirp "^0.5.1" 2215 | path-parse "^1.0.5" 2216 | rimraf "^2.4.3" 2217 | supports-color "^3.1.2" 2218 | 2219 | istanbul-lib-source-maps@^1.0.0-alpha: 2220 | version "1.0.2" 2221 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.0.2.tgz#9e91b0e5ae6ed203f67c69a34e6e98b10bb69a49" 2222 | dependencies: 2223 | istanbul-lib-coverage "^1.0.0-alpha.0" 2224 | mkdirp "^0.5.1" 2225 | rimraf "^2.4.4" 2226 | source-map "^0.5.3" 2227 | 2228 | istanbul-reports@^1.0.0-alpha: 2229 | version "1.0.0" 2230 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.0.0.tgz#24b4eb2b1d29d50f103b369bd422f6e640aa0777" 2231 | dependencies: 2232 | handlebars "^4.0.3" 2233 | 2234 | istanbul@^0.4.5: 2235 | version "0.4.5" 2236 | resolved "https://registry.yarnpkg.com/istanbul/-/istanbul-0.4.5.tgz#65c7d73d4c4da84d4f3ac310b918fb0b8033733b" 2237 | dependencies: 2238 | abbrev "1.0.x" 2239 | async "1.x" 2240 | escodegen "1.8.x" 2241 | esprima "2.7.x" 2242 | glob "^5.0.15" 2243 | handlebars "^4.0.1" 2244 | js-yaml "3.x" 2245 | mkdirp "0.5.x" 2246 | nopt "3.x" 2247 | once "1.x" 2248 | resolve "1.1.x" 2249 | supports-color "^3.1.0" 2250 | which "^1.1.1" 2251 | wordwrap "^1.0.0" 2252 | 2253 | items@2.x.x: 2254 | version "2.1.1" 2255 | resolved "https://registry.yarnpkg.com/items/-/items-2.1.1.tgz#8bd16d9c83b19529de5aea321acaada78364a198" 2256 | 2257 | iterall@1.0.2: 2258 | version "1.0.2" 2259 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.0.2.tgz#41a2e96ce9eda5e61c767ee5dc312373bb046e91" 2260 | 2261 | jasmine-check@^0.1.4: 2262 | version "0.1.5" 2263 | resolved "https://registry.yarnpkg.com/jasmine-check/-/jasmine-check-0.1.5.tgz#dbad7eec56261c4b3d175ada55fe59b09ac9e415" 2264 | dependencies: 2265 | testcheck "^0.1.0" 2266 | 2267 | jest-changed-files@^16.0.0: 2268 | version "16.0.0" 2269 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-16.0.0.tgz#7931deff4424182b8173d80e06800d7363b19c45" 2270 | 2271 | jest-cli: 2272 | version "16.0.2" 2273 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-16.0.2.tgz#d439b28affa7189aa3d046d2af931f7ebb9af69d" 2274 | dependencies: 2275 | ansi-escapes "^1.4.0" 2276 | callsites "^2.0.0" 2277 | chalk "^1.1.1" 2278 | graceful-fs "^4.1.6" 2279 | is-ci "^1.0.9" 2280 | istanbul-api "^1.0.0-aplha.10" 2281 | istanbul-lib-coverage "^1.0.0" 2282 | istanbul-lib-instrument "^1.1.1" 2283 | jest-changed-files "^16.0.0" 2284 | jest-config "^16.0.2" 2285 | jest-environment-jsdom "^16.0.2" 2286 | jest-file-exists "^15.0.0" 2287 | jest-haste-map "^16.0.2" 2288 | jest-jasmine2 "^16.0.2" 2289 | jest-mock "^16.0.2" 2290 | jest-resolve "^16.0.2" 2291 | jest-resolve-dependencies "^16.0.2" 2292 | jest-runtime "^16.0.2" 2293 | jest-snapshot "^16.0.2" 2294 | jest-util "^16.0.2" 2295 | json-stable-stringify "^1.0.0" 2296 | node-notifier "^4.6.1" 2297 | sane "~1.4.1" 2298 | strip-ansi "^3.0.1" 2299 | throat "^3.0.0" 2300 | which "^1.1.1" 2301 | worker-farm "^1.3.1" 2302 | yargs "^5.0.0" 2303 | 2304 | jest-config@^16.0.2: 2305 | version "16.0.2" 2306 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-16.0.2.tgz#8e82a9c08846f23dc7fd42b5c0a1f596c385772a" 2307 | dependencies: 2308 | chalk "^1.1.1" 2309 | istanbul "^0.4.5" 2310 | jest-environment-jsdom "^16.0.2" 2311 | jest-environment-node "^16.0.2" 2312 | jest-jasmine2 "^16.0.2" 2313 | jest-mock "^16.0.2" 2314 | jest-resolve "^16.0.2" 2315 | jest-util "^16.0.2" 2316 | json-stable-stringify "^1.0.0" 2317 | 2318 | jest-diff@^16.0.0: 2319 | version "16.0.0" 2320 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-16.0.0.tgz#4a5d13b1e36c5b8020d5d9e69639e486a675ce14" 2321 | dependencies: 2322 | chalk "^1.1.3" 2323 | diff "^3.0.0" 2324 | jest-matcher-utils "^16.0.0" 2325 | pretty-format "~4.2.1" 2326 | 2327 | jest-environment-jsdom@^16.0.2: 2328 | version "16.0.2" 2329 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-16.0.2.tgz#548d883b68f8ed0bd6466d8703986296724c1ef7" 2330 | dependencies: 2331 | jest-mock "^16.0.2" 2332 | jest-util "^16.0.2" 2333 | jsdom "^9.8.0" 2334 | 2335 | jest-environment-node@^16.0.2: 2336 | version "16.0.2" 2337 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-16.0.2.tgz#eb7b3a4a9c63b728ce023828d4b5661aad8c7a08" 2338 | dependencies: 2339 | jest-mock "^16.0.2" 2340 | jest-util "^16.0.2" 2341 | 2342 | jest-file-exists@^15.0.0: 2343 | version "15.0.0" 2344 | resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-15.0.0.tgz#b7fefdd3f4b227cb686bb156ecc7661ee6935a88" 2345 | 2346 | jest-haste-map@^16.0.2: 2347 | version "16.0.2" 2348 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-16.0.2.tgz#4562915b25171ae2d0d75118c992f0e97536a2ed" 2349 | dependencies: 2350 | fb-watchman "^1.9.0" 2351 | graceful-fs "^4.1.6" 2352 | multimatch "^2.1.0" 2353 | worker-farm "^1.3.1" 2354 | 2355 | jest-jasmine2@^16.0.2: 2356 | version "16.0.2" 2357 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-16.0.2.tgz#c91ae170d127aae22180dbfe181d77655a5da8c3" 2358 | dependencies: 2359 | graceful-fs "^4.1.6" 2360 | jasmine-check "^0.1.4" 2361 | jest-matchers "^16.0.2" 2362 | jest-snapshot "^16.0.2" 2363 | jest-util "^16.0.2" 2364 | 2365 | jest-matcher-utils@^16.0.0: 2366 | version "16.0.0" 2367 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-16.0.0.tgz#705af3ff85944bec1c25bc813f427aff8642b0cd" 2368 | dependencies: 2369 | chalk "^1.1.3" 2370 | pretty-format "~4.2.1" 2371 | 2372 | jest-matchers@^16.0.2: 2373 | version "16.0.2" 2374 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-16.0.2.tgz#c078c28cfe05b9b1f295f9ab27b5991f1095bbbf" 2375 | dependencies: 2376 | jest-diff "^16.0.0" 2377 | jest-matcher-utils "^16.0.0" 2378 | jest-util "^16.0.2" 2379 | 2380 | jest-mock@^16.0.2: 2381 | version "16.0.2" 2382 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-16.0.2.tgz#97b533343295d0082e9474a73ac4eb474d1636fe" 2383 | 2384 | jest-resolve-dependencies@^16.0.2: 2385 | version "16.0.2" 2386 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-16.0.2.tgz#b204166d50141469d10667dc216239c0be865729" 2387 | dependencies: 2388 | jest-file-exists "^15.0.0" 2389 | jest-resolve "^16.0.2" 2390 | 2391 | jest-resolve@^16.0.2: 2392 | version "16.0.2" 2393 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-16.0.2.tgz#46b92b9c2a44aa7ddd9a6b73dc234e9503e8c609" 2394 | dependencies: 2395 | browser-resolve "^1.11.2" 2396 | jest-file-exists "^15.0.0" 2397 | jest-haste-map "^16.0.2" 2398 | resolve "^1.1.6" 2399 | 2400 | jest-runtime@^16.0.2: 2401 | version "16.0.2" 2402 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-16.0.2.tgz#a741e8d55a7b5f011bbe17a22c673a83d278a45d" 2403 | dependencies: 2404 | babel-core "^6.11.4" 2405 | babel-jest "^16.0.0" 2406 | babel-plugin-istanbul "^2.0.0" 2407 | chalk "^1.1.3" 2408 | graceful-fs "^4.1.6" 2409 | jest-config "^16.0.2" 2410 | jest-file-exists "^15.0.0" 2411 | jest-haste-map "^16.0.2" 2412 | jest-mock "^16.0.2" 2413 | jest-resolve "^16.0.2" 2414 | jest-snapshot "^16.0.2" 2415 | jest-util "^16.0.2" 2416 | json-stable-stringify "^1.0.0" 2417 | multimatch "^2.1.0" 2418 | yargs "^5.0.0" 2419 | 2420 | jest-snapshot@^16.0.2: 2421 | version "16.0.2" 2422 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-16.0.2.tgz#f137a4176d661bd4058910850191d1816bebdaae" 2423 | dependencies: 2424 | jest-diff "^16.0.0" 2425 | jest-file-exists "^15.0.0" 2426 | jest-matcher-utils "^16.0.0" 2427 | jest-util "^16.0.2" 2428 | natural-compare "^1.4.0" 2429 | pretty-format "~4.2.1" 2430 | 2431 | jest-util@^16.0.2: 2432 | version "16.0.2" 2433 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-16.0.2.tgz#db5123358278e7a34a6d9f837409d649a0db5d54" 2434 | dependencies: 2435 | chalk "^1.1.1" 2436 | diff "^3.0.0" 2437 | graceful-fs "^4.1.6" 2438 | jest-file-exists "^15.0.0" 2439 | jest-mock "^16.0.2" 2440 | mkdirp "^0.5.1" 2441 | 2442 | jodid25519@^1.0.0: 2443 | version "1.0.2" 2444 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2445 | dependencies: 2446 | jsbn "~0.1.0" 2447 | 2448 | joi@^9.2.0: 2449 | version "9.2.0" 2450 | resolved "https://registry.yarnpkg.com/joi/-/joi-9.2.0.tgz#3385ac790192130cbe230e802ec02c9215bbfeda" 2451 | dependencies: 2452 | hoek "4.x.x" 2453 | isemail "2.x.x" 2454 | items "2.x.x" 2455 | moment "2.x.x" 2456 | topo "2.x.x" 2457 | 2458 | joi@6.x.x: 2459 | version "6.10.1" 2460 | resolved "https://registry.yarnpkg.com/joi/-/joi-6.10.1.tgz#4d50c318079122000fe5f16af1ff8e1917b77e06" 2461 | dependencies: 2462 | hoek "2.x.x" 2463 | isemail "1.x.x" 2464 | moment "2.x.x" 2465 | topo "1.x.x" 2466 | 2467 | joi@7.x.x: 2468 | version "7.3.0" 2469 | resolved "https://registry.yarnpkg.com/joi/-/joi-7.3.0.tgz#4d9c9f181830444083665b5b6cd5b8ca6779a5e9" 2470 | dependencies: 2471 | hoek "3.x.x" 2472 | isemail "2.x.x" 2473 | moment "2.x.x" 2474 | topo "2.x.x" 2475 | 2476 | joi@8.1.x: 2477 | version "8.1.1" 2478 | resolved "https://registry.yarnpkg.com/joi/-/joi-8.1.1.tgz#2d8b52a5d909d217ed47248577eefe8b1798f48f" 2479 | dependencies: 2480 | hoek "4.x.x" 2481 | isemail "2.x.x" 2482 | moment "2.x.x" 2483 | topo "2.x.x" 2484 | 2485 | joi@9.x.x: 2486 | version "9.1.1" 2487 | resolved "https://registry.yarnpkg.com/joi/-/joi-9.1.1.tgz#357a04c3ad424abcb9790829be8c01a131d93500" 2488 | dependencies: 2489 | hoek "4.x.x" 2490 | isemail "2.x.x" 2491 | items "2.x.x" 2492 | moment "2.x.x" 2493 | topo "2.x.x" 2494 | 2495 | js-tokens@^1.0.1: 2496 | version "1.0.3" 2497 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-1.0.3.tgz#14e56eb68c8f1a92c43d59f5014ec29dc20f2ae1" 2498 | 2499 | js-tokens@^2.0.0: 2500 | version "2.0.0" 2501 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 2502 | 2503 | js-yaml@^3.5.1, js-yaml@3.x: 2504 | version "3.6.1" 2505 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" 2506 | dependencies: 2507 | argparse "^1.0.7" 2508 | esprima "^2.6.0" 2509 | 2510 | jsbn@~0.1.0: 2511 | version "0.1.0" 2512 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" 2513 | 2514 | jsdom@^9.8.0: 2515 | version "9.8.0" 2516 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.8.0.tgz#8766594cf994549d8a809cf6dca0246aceef9305" 2517 | dependencies: 2518 | abab "^1.0.0" 2519 | acorn "^2.4.0" 2520 | acorn-globals "^1.0.4" 2521 | array-equal "^1.0.0" 2522 | content-type-parser "^1.0.1" 2523 | cssom ">= 0.3.0 < 0.4.0" 2524 | cssstyle ">= 0.2.36 < 0.3.0" 2525 | escodegen "^1.6.1" 2526 | html-encoding-sniffer "^1.0.1" 2527 | iconv-lite "^0.4.13" 2528 | nwmatcher ">= 1.3.7 < 2.0.0" 2529 | parse5 "^1.5.1" 2530 | request "^2.55.0" 2531 | sax "^1.1.4" 2532 | symbol-tree ">= 3.1.0 < 4.0.0" 2533 | tough-cookie "^2.3.1" 2534 | webidl-conversions "^3.0.1" 2535 | whatwg-encoding "^1.0.1" 2536 | whatwg-url "^3.0.0" 2537 | xml-name-validator ">= 2.0.1 < 3.0.0" 2538 | 2539 | jsesc@^1.3.0: 2540 | version "1.3.0" 2541 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2542 | 2543 | json-schema@0.2.3: 2544 | version "0.2.3" 2545 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2546 | 2547 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2548 | version "1.0.1" 2549 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2550 | dependencies: 2551 | jsonify "~0.0.0" 2552 | 2553 | json-stringify-safe@~5.0.1, json-stringify-safe@5.0.x: 2554 | version "5.0.1" 2555 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2556 | 2557 | json5@^0.4.0: 2558 | version "0.4.0" 2559 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 2560 | 2561 | json5@^0.5.0: 2562 | version "0.5.0" 2563 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.0.tgz#9b20715b026cbe3778fd769edccd822d8332a5b2" 2564 | 2565 | jsonify@~0.0.0: 2566 | version "0.0.0" 2567 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2568 | 2569 | jsonpointer@^4.0.0: 2570 | version "4.0.0" 2571 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" 2572 | 2573 | jsprim@^1.2.2: 2574 | version "1.3.1" 2575 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2576 | dependencies: 2577 | extsprintf "1.0.2" 2578 | json-schema "0.2.3" 2579 | verror "1.3.6" 2580 | 2581 | jsx-ast-utils@^1.0.0: 2582 | version "1.3.2" 2583 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.3.2.tgz#dff658782705352111f9865d40471bc4a955961e" 2584 | dependencies: 2585 | acorn-jsx "^3.0.1" 2586 | object-assign "^4.1.0" 2587 | 2588 | jsx-ast-utils@^1.3.3: 2589 | version "1.3.3" 2590 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-1.3.3.tgz#ccfdbe0320ba03f7a1fc4e67ceaf7e2cc0169721" 2591 | dependencies: 2592 | acorn-jsx "^3.0.1" 2593 | object-assign "^4.1.0" 2594 | 2595 | kareem@1.1.3: 2596 | version "1.1.3" 2597 | resolved "https://registry.yarnpkg.com/kareem/-/kareem-1.1.3.tgz#0877610d8879c38da62d1dbafde4e17f2692f041" 2598 | 2599 | kind-of@^3.0.2: 2600 | version "3.0.4" 2601 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 2602 | dependencies: 2603 | is-buffer "^1.0.2" 2604 | 2605 | latest-version@^1.0.0: 2606 | version "1.0.1" 2607 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-1.0.1.tgz#72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb" 2608 | dependencies: 2609 | package-json "^1.0.0" 2610 | 2611 | lazy-cache@^1.0.3: 2612 | version "1.0.4" 2613 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2614 | 2615 | lcid@^1.0.0: 2616 | version "1.0.0" 2617 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2618 | dependencies: 2619 | invert-kv "^1.0.0" 2620 | 2621 | levn@^0.3.0, levn@~0.3.0: 2622 | version "0.3.0" 2623 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2624 | dependencies: 2625 | prelude-ls "~1.1.2" 2626 | type-check "~0.3.2" 2627 | 2628 | load-json-file@^1.0.0: 2629 | version "1.1.0" 2630 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2631 | dependencies: 2632 | graceful-fs "^4.1.2" 2633 | parse-json "^2.2.0" 2634 | pify "^2.0.0" 2635 | pinkie-promise "^2.0.0" 2636 | strip-bom "^2.0.0" 2637 | 2638 | lodash._arraycopy@^3.0.0: 2639 | version "3.0.0" 2640 | resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" 2641 | 2642 | lodash._arrayeach@^3.0.0: 2643 | version "3.0.0" 2644 | resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" 2645 | 2646 | lodash._baseassign@^3.0.0: 2647 | version "3.2.0" 2648 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2649 | dependencies: 2650 | lodash._basecopy "^3.0.0" 2651 | lodash.keys "^3.0.0" 2652 | 2653 | lodash._baseclone@^3.0.0: 2654 | version "3.3.0" 2655 | resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz#303519bf6393fe7e42f34d8b630ef7794e3542b7" 2656 | dependencies: 2657 | lodash._arraycopy "^3.0.0" 2658 | lodash._arrayeach "^3.0.0" 2659 | lodash._baseassign "^3.0.0" 2660 | lodash._basefor "^3.0.0" 2661 | lodash.isarray "^3.0.0" 2662 | lodash.keys "^3.0.0" 2663 | 2664 | lodash._basecopy@^3.0.0: 2665 | version "3.0.1" 2666 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2667 | 2668 | lodash._basefor@^3.0.0: 2669 | version "3.0.3" 2670 | resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" 2671 | 2672 | lodash._bindcallback@^3.0.0: 2673 | version "3.0.1" 2674 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2675 | 2676 | lodash._createassigner@^3.0.0: 2677 | version "3.1.1" 2678 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2679 | dependencies: 2680 | lodash._bindcallback "^3.0.0" 2681 | lodash._isiterateecall "^3.0.0" 2682 | lodash.restparam "^3.0.0" 2683 | 2684 | lodash._getnative@^3.0.0: 2685 | version "3.9.1" 2686 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2687 | 2688 | lodash._isiterateecall@^3.0.0: 2689 | version "3.0.9" 2690 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2691 | 2692 | lodash.assign@^3.0.0: 2693 | version "3.2.0" 2694 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2695 | dependencies: 2696 | lodash._baseassign "^3.0.0" 2697 | lodash._createassigner "^3.0.0" 2698 | lodash.keys "^3.0.0" 2699 | 2700 | lodash.assign@^4.1.0, lodash.assign@^4.2.0: 2701 | version "4.2.0" 2702 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" 2703 | 2704 | lodash.clonedeep@^3.0.0: 2705 | version "3.0.2" 2706 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz#a0a1e40d82a5ea89ff5b147b8444ed63d92827db" 2707 | dependencies: 2708 | lodash._baseclone "^3.0.0" 2709 | lodash._bindcallback "^3.0.0" 2710 | 2711 | lodash.cond@^4.3.0: 2712 | version "4.5.2" 2713 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2714 | 2715 | lodash.defaults@^3.1.2: 2716 | version "3.1.2" 2717 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 2718 | dependencies: 2719 | lodash.assign "^3.0.0" 2720 | lodash.restparam "^3.0.0" 2721 | 2722 | lodash.isarguments@^3.0.0: 2723 | version "3.1.0" 2724 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2725 | 2726 | lodash.isarray@^3.0.0: 2727 | version "3.0.4" 2728 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2729 | 2730 | lodash.keys@^3.0.0: 2731 | version "3.1.2" 2732 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2733 | dependencies: 2734 | lodash._getnative "^3.0.0" 2735 | lodash.isarguments "^3.0.0" 2736 | lodash.isarray "^3.0.0" 2737 | 2738 | lodash.pickby@^4.6.0: 2739 | version "4.6.0" 2740 | resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" 2741 | 2742 | lodash.restparam@^3.0.0: 2743 | version "3.6.1" 2744 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2745 | 2746 | lodash@^4.0.0, lodash@^4.15.0, lodash@^4.2.0, lodash@^4.3.0: 2747 | version "4.16.4" 2748 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.4.tgz#01ce306b9bad1319f2a5528674f88297aeb70127" 2749 | 2750 | lodash@^4.8.0: 2751 | version "4.16.5" 2752 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.5.tgz#77d88feac548009b1a5c4ca7b49ac431ce346ae8" 2753 | 2754 | longest@^1.0.1: 2755 | version "1.0.1" 2756 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2757 | 2758 | loose-envify@^1.0.0: 2759 | version "1.2.0" 2760 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.2.0.tgz#69a65aad3de542cf4ee0f4fe74e8e33c709ccb0f" 2761 | dependencies: 2762 | js-tokens "^1.0.1" 2763 | 2764 | lowercase-keys@^1.0.0: 2765 | version "1.0.0" 2766 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2767 | 2768 | makeerror@1.0.x: 2769 | version "1.0.11" 2770 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2771 | dependencies: 2772 | tmpl "1.0.x" 2773 | 2774 | map-stream@~0.1.0: 2775 | version "0.1.0" 2776 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 2777 | 2778 | marked-terminal@^1.6.2: 2779 | version "1.6.2" 2780 | resolved "https://registry.yarnpkg.com/marked-terminal/-/marked-terminal-1.6.2.tgz#44c128d69b5d9776c848314cdf69d4ec96322973" 2781 | dependencies: 2782 | cardinal "^1.0.0" 2783 | chalk "^1.0.0" 2784 | cli-table "^0.3.1" 2785 | lodash.assign "^4.2.0" 2786 | node-emoji "^1.3.1" 2787 | 2788 | marked@^0.3.6: 2789 | version "0.3.6" 2790 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 2791 | 2792 | merge@^1.1.3: 2793 | version "1.2.0" 2794 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2795 | 2796 | mersenne-twister@~1.0.1: 2797 | version "1.0.1" 2798 | resolved "https://registry.yarnpkg.com/mersenne-twister/-/mersenne-twister-1.0.1.tgz#33465d04f501af49e44a1910955b000afddd2a3f" 2799 | 2800 | micromatch@^2.1.5, micromatch@^2.3.11: 2801 | version "2.3.11" 2802 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2803 | dependencies: 2804 | arr-diff "^2.0.0" 2805 | array-unique "^0.2.1" 2806 | braces "^1.8.2" 2807 | expand-brackets "^0.1.4" 2808 | extglob "^0.3.1" 2809 | filename-regex "^2.0.0" 2810 | is-extglob "^1.0.0" 2811 | is-glob "^2.0.1" 2812 | kind-of "^3.0.2" 2813 | normalize-path "^2.0.1" 2814 | object.omit "^2.0.0" 2815 | parse-glob "^3.0.4" 2816 | regex-cache "^0.4.2" 2817 | 2818 | mime-db@~1.24.0, mime-db@1.x.x: 2819 | version "1.24.0" 2820 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c" 2821 | 2822 | mime-types@^2.1.11, mime-types@~2.1.7: 2823 | version "2.1.12" 2824 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729" 2825 | dependencies: 2826 | mime-db "~1.24.0" 2827 | 2828 | mimos@3.x.x: 2829 | version "3.0.3" 2830 | resolved "https://registry.yarnpkg.com/mimos/-/mimos-3.0.3.tgz#b9109072ad378c2b72f6a0101c43ddfb2b36641f" 2831 | dependencies: 2832 | hoek "4.x.x" 2833 | mime-db "1.x.x" 2834 | 2835 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, "minimatch@2 || 3": 2836 | version "3.0.3" 2837 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2838 | dependencies: 2839 | brace-expansion "^1.0.0" 2840 | 2841 | minimatch@2.x: 2842 | version "2.0.10" 2843 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" 2844 | dependencies: 2845 | brace-expansion "^1.0.0" 2846 | 2847 | minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: 2848 | version "1.2.0" 2849 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2850 | 2851 | minimist@~0.0.1: 2852 | version "0.0.10" 2853 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2854 | 2855 | minimist@0.0.8: 2856 | version "0.0.8" 2857 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2858 | 2859 | mkdirp@^0.5.0, mkdirp@^0.5.1, "mkdirp@>=0.5 0", mkdirp@~0.5.0, mkdirp@0.5.x: 2860 | version "0.5.1" 2861 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2862 | dependencies: 2863 | minimist "0.0.8" 2864 | 2865 | moment@~2.11.1: 2866 | version "2.11.2" 2867 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.11.2.tgz#87968e5f95ac038c2e42ac959c75819cd3f52901" 2868 | 2869 | moment@2.15.x: 2870 | version "2.15.2" 2871 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.15.2.tgz#1bfdedf6a6e345f322fe956d5df5bd08a8ce84dc" 2872 | 2873 | moment@2.x.x: 2874 | version "2.15.1" 2875 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.15.1.tgz#e979c2a29e22888e60f396f2220a6118f85cd94c" 2876 | 2877 | mongodb-core@2.0.13: 2878 | version "2.0.13" 2879 | resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.0.13.tgz#f9394b588dce0e579482e53d74dbc7d7a9d4519c" 2880 | dependencies: 2881 | bson "~0.5.6" 2882 | require_optional "~1.0.0" 2883 | 2884 | mongodb@2.2.11: 2885 | version "2.2.11" 2886 | resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.11.tgz#a828b036fe6a437a35e723af5f81781c4976306c" 2887 | dependencies: 2888 | es6-promise "3.2.1" 2889 | mongodb-core "2.0.13" 2890 | readable-stream "2.1.5" 2891 | 2892 | mongoose@^4.6.5: 2893 | version "4.6.5" 2894 | resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-4.6.5.tgz#74eed37312e557c391d428c0cf3c8b8eb8959515" 2895 | dependencies: 2896 | async "2.0.1" 2897 | bson "~0.5.4" 2898 | hooks-fixed "1.2.0" 2899 | kareem "1.1.3" 2900 | mongodb "2.2.11" 2901 | mpath "0.2.1" 2902 | mpromise "0.5.5" 2903 | mquery "2.0.0" 2904 | ms "0.7.1" 2905 | muri "1.1.1" 2906 | regexp-clone "0.0.1" 2907 | sliced "1.0.1" 2908 | 2909 | mpath@0.2.1: 2910 | version "0.2.1" 2911 | resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.2.1.tgz#3a4e829359801de96309c27a6b2e102e89f9e96e" 2912 | 2913 | mpromise@0.5.5: 2914 | version "0.5.5" 2915 | resolved "https://registry.yarnpkg.com/mpromise/-/mpromise-0.5.5.tgz#f5b24259d763acc2257b0a0c8c6d866fd51732e6" 2916 | 2917 | mquery@2.0.0: 2918 | version "2.0.0" 2919 | resolved "https://registry.yarnpkg.com/mquery/-/mquery-2.0.0.tgz#b5abc850b90dffc3e10ae49b4b6e7a479752df22" 2920 | dependencies: 2921 | bluebird "2.10.2" 2922 | debug "2.2.0" 2923 | regexp-clone "0.0.1" 2924 | sliced "0.0.5" 2925 | 2926 | ms@0.7.1: 2927 | version "0.7.1" 2928 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2929 | 2930 | multimatch@^2.1.0: 2931 | version "2.1.0" 2932 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 2933 | dependencies: 2934 | array-differ "^1.0.0" 2935 | array-union "^1.0.1" 2936 | arrify "^1.0.0" 2937 | minimatch "^3.0.0" 2938 | 2939 | muri@1.1.1: 2940 | version "1.1.1" 2941 | resolved "https://registry.yarnpkg.com/muri/-/muri-1.1.1.tgz#64bd904eaf8ff89600c994441fad3c5195905ac2" 2942 | 2943 | mute-stream@0.0.5: 2944 | version "0.0.5" 2945 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2946 | 2947 | nan@^2.3.0: 2948 | version "2.4.0" 2949 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2950 | 2951 | natural-compare@^1.4.0: 2952 | version "1.4.0" 2953 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2954 | 2955 | nested-error-stacks@^1.0.0: 2956 | version "1.0.2" 2957 | resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz#19f619591519f096769a5ba9a86e6eeec823c3cf" 2958 | dependencies: 2959 | inherits "~2.0.1" 2960 | 2961 | nigel@2.x.x: 2962 | version "2.0.2" 2963 | resolved "https://registry.yarnpkg.com/nigel/-/nigel-2.0.2.tgz#93a1866fb0c52d87390aa75e2b161f4b5c75e5b1" 2964 | dependencies: 2965 | hoek "4.x.x" 2966 | vise "2.x.x" 2967 | 2968 | node-emoji@^1.3.1: 2969 | version "1.4.1" 2970 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.4.1.tgz#c9fa0cf91094335bcb967a6f42b2305c15af2ebc" 2971 | dependencies: 2972 | string.prototype.codepointat "^0.2.0" 2973 | 2974 | node-int64@^0.4.0: 2975 | version "0.4.0" 2976 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2977 | 2978 | node-notifier@^4.6.1: 2979 | version "4.6.1" 2980 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-4.6.1.tgz#056d14244f3dcc1ceadfe68af9cff0c5473a33f3" 2981 | dependencies: 2982 | cli-usage "^0.1.1" 2983 | growly "^1.2.0" 2984 | lodash.clonedeep "^3.0.0" 2985 | minimist "^1.1.1" 2986 | semver "^5.1.0" 2987 | shellwords "^0.1.0" 2988 | which "^1.0.5" 2989 | 2990 | node-pre-gyp@^0.6.29: 2991 | version "0.6.30" 2992 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.30.tgz#64d3073a6f573003717ccfe30c89023297babba1" 2993 | dependencies: 2994 | mkdirp "~0.5.0" 2995 | nopt "~3.0.1" 2996 | npmlog "4.x" 2997 | rc "~1.1.0" 2998 | request "2.x" 2999 | rimraf "~2.5.0" 3000 | semver "~5.3.0" 3001 | tar "~2.2.0" 3002 | tar-pack "~3.1.0" 3003 | 3004 | node-uuid@^1.4.7, node-uuid@~1.4.7: 3005 | version "1.4.7" 3006 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 3007 | 3008 | nodemon@^1.11.0: 3009 | version "1.11.0" 3010 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.11.0.tgz#226c562bd2a7b13d3d7518b49ad4828a3623d06c" 3011 | dependencies: 3012 | chokidar "^1.4.3" 3013 | debug "^2.2.0" 3014 | es6-promise "^3.0.2" 3015 | ignore-by-default "^1.0.0" 3016 | lodash.defaults "^3.1.2" 3017 | minimatch "^3.0.0" 3018 | ps-tree "^1.0.1" 3019 | touch "1.0.0" 3020 | undefsafe "0.0.3" 3021 | update-notifier "0.5.0" 3022 | 3023 | nopt@~1.0.10: 3024 | version "1.0.10" 3025 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 3026 | dependencies: 3027 | abbrev "1" 3028 | 3029 | nopt@~3.0.1, nopt@3.x: 3030 | version "3.0.6" 3031 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 3032 | dependencies: 3033 | abbrev "1" 3034 | 3035 | normalize-package-data@^2.3.2: 3036 | version "2.3.5" 3037 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" 3038 | dependencies: 3039 | hosted-git-info "^2.1.4" 3040 | is-builtin-module "^1.0.0" 3041 | semver "2 || 3 || 4 || 5" 3042 | validate-npm-package-license "^3.0.1" 3043 | 3044 | normalize-path@^2.0.1: 3045 | version "2.0.1" 3046 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 3047 | 3048 | npmlog@4.x: 3049 | version "4.0.0" 3050 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f" 3051 | dependencies: 3052 | are-we-there-yet "~1.1.2" 3053 | console-control-strings "~1.1.0" 3054 | gauge "~2.6.0" 3055 | set-blocking "~2.0.0" 3056 | 3057 | number-is-nan@^1.0.0: 3058 | version "1.0.1" 3059 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3060 | 3061 | "nwmatcher@>= 1.3.7 < 2.0.0": 3062 | version "1.3.8" 3063 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.8.tgz#34edb93de1aa6cb4448b573c9f2a059300241157" 3064 | 3065 | oauth-sign@~0.8.1: 3066 | version "0.8.2" 3067 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3068 | 3069 | object-assign@^3.0.0: 3070 | version "3.0.0" 3071 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" 3072 | 3073 | object-assign@^4.0.1, object-assign@^4.1.0: 3074 | version "4.1.0" 3075 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 3076 | 3077 | object.omit@^2.0.0: 3078 | version "2.0.0" 3079 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.0.tgz#868597333d54e60662940bb458605dd6ae12fe94" 3080 | dependencies: 3081 | for-own "^0.1.3" 3082 | is-extendable "^0.1.1" 3083 | 3084 | once@^1.3.0, once@^1.3.1, once@1.x: 3085 | version "1.4.0" 3086 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3087 | dependencies: 3088 | wrappy "1" 3089 | 3090 | once@~1.3.0, once@~1.3.3: 3091 | version "1.3.3" 3092 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 3093 | dependencies: 3094 | wrappy "1" 3095 | 3096 | onetime@^1.0.0: 3097 | version "1.1.0" 3098 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 3099 | 3100 | oppsy@1.x.x: 3101 | version "1.0.2" 3102 | resolved "https://registry.yarnpkg.com/oppsy/-/oppsy-1.0.2.tgz#98014cd6967653a83cfffa554226dc90050baad4" 3103 | dependencies: 3104 | hoek "4.x.x" 3105 | items "2.x.x" 3106 | 3107 | optimist@^0.6.1: 3108 | version "0.6.1" 3109 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3110 | dependencies: 3111 | minimist "~0.0.1" 3112 | wordwrap "~0.0.2" 3113 | 3114 | optionator@^0.8.1, optionator@^0.8.2: 3115 | version "0.8.2" 3116 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3117 | dependencies: 3118 | deep-is "~0.1.3" 3119 | fast-levenshtein "~2.0.4" 3120 | levn "~0.3.0" 3121 | prelude-ls "~1.1.2" 3122 | type-check "~0.3.2" 3123 | wordwrap "~1.0.0" 3124 | 3125 | os-homedir@^1.0.0: 3126 | version "1.0.2" 3127 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3128 | 3129 | os-locale@^1.4.0: 3130 | version "1.4.0" 3131 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 3132 | dependencies: 3133 | lcid "^1.0.0" 3134 | 3135 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 3136 | version "1.0.2" 3137 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3138 | 3139 | osenv@^0.1.0: 3140 | version "0.1.3" 3141 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.3.tgz#83cf05c6d6458fc4d5ac6362ea325d92f2754217" 3142 | dependencies: 3143 | os-homedir "^1.0.0" 3144 | os-tmpdir "^1.0.0" 3145 | 3146 | package-json@^1.0.0: 3147 | version "1.2.0" 3148 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-1.2.0.tgz#c8ecac094227cdf76a316874ed05e27cc939a0e0" 3149 | dependencies: 3150 | got "^3.2.0" 3151 | registry-url "^3.0.0" 3152 | 3153 | parse-glob@^3.0.4: 3154 | version "3.0.4" 3155 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3156 | dependencies: 3157 | glob-base "^0.3.0" 3158 | is-dotfile "^1.0.0" 3159 | is-extglob "^1.0.0" 3160 | is-glob "^2.0.0" 3161 | 3162 | parse-json@^2.2.0: 3163 | version "2.2.0" 3164 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3165 | dependencies: 3166 | error-ex "^1.2.0" 3167 | 3168 | parse5@^1.5.1: 3169 | version "1.5.1" 3170 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 3171 | 3172 | path-exists@^1.0.0: 3173 | version "1.0.0" 3174 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" 3175 | 3176 | path-exists@^2.0.0: 3177 | version "2.1.0" 3178 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3179 | dependencies: 3180 | pinkie-promise "^2.0.0" 3181 | 3182 | path-extra@^1.0.2: 3183 | version "1.0.3" 3184 | resolved "https://registry.yarnpkg.com/path-extra/-/path-extra-1.0.3.tgz#7c112189a6e50d595790e7ad2037e44e410c1166" 3185 | 3186 | path-is-absolute@^1.0.0: 3187 | version "1.0.1" 3188 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3189 | 3190 | path-is-inside@^1.0.1: 3191 | version "1.0.2" 3192 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3193 | 3194 | path-parse@^1.0.5: 3195 | version "1.0.5" 3196 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3197 | 3198 | path-type@^1.0.0: 3199 | version "1.1.0" 3200 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3201 | dependencies: 3202 | graceful-fs "^4.1.2" 3203 | pify "^2.0.0" 3204 | pinkie-promise "^2.0.0" 3205 | 3206 | pause-stream@0.0.11: 3207 | version "0.0.11" 3208 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 3209 | dependencies: 3210 | through "~2.3" 3211 | 3212 | pez@2.x.x: 3213 | version "2.1.3" 3214 | resolved "https://registry.yarnpkg.com/pez/-/pez-2.1.3.tgz#e53ebcbf48961b4aa1bb2b68cfd1eb20c9898039" 3215 | dependencies: 3216 | b64 "3.x.x" 3217 | boom "4.x.x" 3218 | content "3.x.x" 3219 | hoek "4.x.x" 3220 | nigel "2.x.x" 3221 | 3222 | pify@^2.0.0: 3223 | version "2.3.0" 3224 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3225 | 3226 | pinkie-promise@^2.0.0: 3227 | version "2.0.1" 3228 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3229 | dependencies: 3230 | pinkie "^2.0.0" 3231 | 3232 | pinkie@^2.0.0: 3233 | version "2.0.4" 3234 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3235 | 3236 | pkg-dir@^1.0.0: 3237 | version "1.0.0" 3238 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3239 | dependencies: 3240 | find-up "^1.0.0" 3241 | 3242 | pkg-up@^1.0.0: 3243 | version "1.0.0" 3244 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 3245 | dependencies: 3246 | find-up "^1.0.0" 3247 | 3248 | pluralize@^1.2.1: 3249 | version "1.2.1" 3250 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3251 | 3252 | podium@^1.2.x: 3253 | version "1.2.3" 3254 | resolved "https://registry.yarnpkg.com/podium/-/podium-1.2.3.tgz#5c95b7cc2f5c87dd324e0ad4a9363ac62d66b371" 3255 | dependencies: 3256 | hoek "4.x.x" 3257 | items "2.x.x" 3258 | joi "9.x.x" 3259 | 3260 | prelude-ls@~1.1.2: 3261 | version "1.1.2" 3262 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3263 | 3264 | prepend-http@^1.0.0: 3265 | version "1.0.4" 3266 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3267 | 3268 | preserve@^0.2.0: 3269 | version "0.2.0" 3270 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3271 | 3272 | pretty-format@~4.2.1: 3273 | version "4.2.1" 3274 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-4.2.1.tgz#b1dad18c3be0c8209e64c7791fa67e252d2d3e07" 3275 | 3276 | private@^0.1.6: 3277 | version "0.1.6" 3278 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 3279 | 3280 | process-nextick-args@~1.0.6: 3281 | version "1.0.7" 3282 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3283 | 3284 | progress@^1.1.8: 3285 | version "1.1.8" 3286 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3287 | 3288 | prr@~0.0.0: 3289 | version "0.0.0" 3290 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3291 | 3292 | ps-tree@^1.0.1: 3293 | version "1.1.0" 3294 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 3295 | dependencies: 3296 | event-stream "~3.3.0" 3297 | 3298 | pump@^1.0.0: 3299 | version "1.0.1" 3300 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.1.tgz#f1f1409fb9bd1085bbdb576b43b84ec4b5eadc1a" 3301 | dependencies: 3302 | end-of-stream "^1.1.0" 3303 | once "^1.3.1" 3304 | 3305 | pumpify@1.3.x: 3306 | version "1.3.5" 3307 | resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.3.5.tgz#1b671c619940abcaeac0ad0e3a3c164be760993b" 3308 | dependencies: 3309 | duplexify "^3.1.2" 3310 | inherits "^2.0.1" 3311 | pump "^1.0.0" 3312 | 3313 | qs@~6.2.0: 3314 | version "6.2.1" 3315 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" 3316 | 3317 | randomatic@^1.1.3: 3318 | version "1.1.5" 3319 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b" 3320 | dependencies: 3321 | is-number "^2.0.2" 3322 | kind-of "^3.0.2" 3323 | 3324 | rc@^1.0.1, rc@~1.1.0: 3325 | version "1.1.6" 3326 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 3327 | dependencies: 3328 | deep-extend "~0.4.0" 3329 | ini "~1.3.0" 3330 | minimist "^1.2.0" 3331 | strip-json-comments "~1.0.4" 3332 | 3333 | read-all-stream@^3.0.0: 3334 | version "3.1.0" 3335 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 3336 | dependencies: 3337 | pinkie-promise "^2.0.0" 3338 | readable-stream "^2.0.0" 3339 | 3340 | read-pkg-up@^1.0.1: 3341 | version "1.0.1" 3342 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3343 | dependencies: 3344 | find-up "^1.0.0" 3345 | read-pkg "^1.0.0" 3346 | 3347 | read-pkg@^1.0.0: 3348 | version "1.1.0" 3349 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3350 | dependencies: 3351 | load-json-file "^1.0.0" 3352 | normalize-package-data "^2.3.2" 3353 | path-type "^1.0.0" 3354 | 3355 | readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@~2.1.4, readable-stream@2.1.5: 3356 | version "2.1.5" 3357 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 3358 | dependencies: 3359 | buffer-shims "^1.0.0" 3360 | core-util-is "~1.0.0" 3361 | inherits "~2.0.1" 3362 | isarray "~1.0.0" 3363 | process-nextick-args "~1.0.6" 3364 | string_decoder "~0.10.x" 3365 | util-deprecate "~1.0.1" 3366 | 3367 | readable-stream@~2.0.0, readable-stream@~2.0.5: 3368 | version "2.0.6" 3369 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 3370 | dependencies: 3371 | core-util-is "~1.0.0" 3372 | inherits "~2.0.1" 3373 | isarray "~1.0.0" 3374 | process-nextick-args "~1.0.6" 3375 | string_decoder "~0.10.x" 3376 | util-deprecate "~1.0.1" 3377 | 3378 | readdirp@^2.0.0: 3379 | version "2.1.0" 3380 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3381 | dependencies: 3382 | graceful-fs "^4.1.2" 3383 | minimatch "^3.0.2" 3384 | readable-stream "^2.0.2" 3385 | set-immediate-shim "^1.0.1" 3386 | 3387 | readline2@^1.0.1: 3388 | version "1.0.1" 3389 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3390 | dependencies: 3391 | code-point-at "^1.0.0" 3392 | is-fullwidth-code-point "^1.0.0" 3393 | mute-stream "0.0.5" 3394 | 3395 | rechoir@^0.6.2: 3396 | version "0.6.2" 3397 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3398 | dependencies: 3399 | resolve "^1.1.6" 3400 | 3401 | redeyed@~1.0.0: 3402 | version "1.0.0" 3403 | resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-1.0.0.tgz#6ce25045c9e1f9b28c0ae73ce2960c8cb48184b1" 3404 | dependencies: 3405 | esprima "~2.7.0" 3406 | 3407 | regenerator-runtime@^0.9.5: 3408 | version "0.9.5" 3409 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.5.tgz#403d6d40a4bdff9c330dd9392dcbb2d9a8bba1fc" 3410 | 3411 | regex-cache@^0.4.2: 3412 | version "0.4.3" 3413 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3414 | dependencies: 3415 | is-equal-shallow "^0.1.3" 3416 | is-primitive "^2.0.0" 3417 | 3418 | regexp-clone@0.0.1: 3419 | version "0.0.1" 3420 | resolved "https://registry.yarnpkg.com/regexp-clone/-/regexp-clone-0.0.1.tgz#a7c2e09891fdbf38fbb10d376fb73003e68ac589" 3421 | 3422 | registry-url@^3.0.0: 3423 | version "3.1.0" 3424 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3425 | dependencies: 3426 | rc "^1.0.1" 3427 | 3428 | repeat-element@^1.1.2: 3429 | version "1.1.2" 3430 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3431 | 3432 | repeat-string@^1.5.2: 3433 | version "1.5.4" 3434 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.5.4.tgz#64ec0c91e0f4b475f90d5b643651e3e6e5b6c2d5" 3435 | 3436 | repeating@^1.1.0, repeating@^1.1.2: 3437 | version "1.1.3" 3438 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 3439 | dependencies: 3440 | is-finite "^1.0.0" 3441 | 3442 | repeating@^2.0.0: 3443 | version "2.0.1" 3444 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3445 | dependencies: 3446 | is-finite "^1.0.0" 3447 | 3448 | request@^2.55.0, request@2.x: 3449 | version "2.75.0" 3450 | resolved "https://registry.yarnpkg.com/request/-/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93" 3451 | dependencies: 3452 | aws-sign2 "~0.6.0" 3453 | aws4 "^1.2.1" 3454 | bl "~1.1.2" 3455 | caseless "~0.11.0" 3456 | combined-stream "~1.0.5" 3457 | extend "~3.0.0" 3458 | forever-agent "~0.6.1" 3459 | form-data "~2.0.0" 3460 | har-validator "~2.0.6" 3461 | hawk "~3.1.3" 3462 | http-signature "~1.1.0" 3463 | is-typedarray "~1.0.0" 3464 | isstream "~0.1.2" 3465 | json-stringify-safe "~5.0.1" 3466 | mime-types "~2.1.7" 3467 | node-uuid "~1.4.7" 3468 | oauth-sign "~0.8.1" 3469 | qs "~6.2.0" 3470 | stringstream "~0.0.4" 3471 | tough-cookie "~2.3.0" 3472 | tunnel-agent "~0.4.1" 3473 | 3474 | require_optional@~1.0.0: 3475 | version "1.0.0" 3476 | resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.0.tgz#52a86137a849728eb60a55533617f8f914f59abf" 3477 | dependencies: 3478 | resolve-from "^2.0.0" 3479 | semver "^5.1.0" 3480 | 3481 | require-directory@^2.1.1: 3482 | version "2.1.1" 3483 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3484 | 3485 | require-main-filename@^1.0.1: 3486 | version "1.0.1" 3487 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3488 | 3489 | require-resolve@0.0.2: 3490 | version "0.0.2" 3491 | resolved "https://registry.yarnpkg.com/require-resolve/-/require-resolve-0.0.2.tgz#bab410ab1aee2f3f55b79317451dd3428764e6f3" 3492 | dependencies: 3493 | x-path "^0.0.2" 3494 | 3495 | require-uncached@^1.0.2: 3496 | version "1.0.2" 3497 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.2.tgz#67dad3b733089e77030124678a459589faf6a7ec" 3498 | dependencies: 3499 | caller-path "^0.1.0" 3500 | resolve-from "^1.0.0" 3501 | 3502 | resolve-from@^1.0.0: 3503 | version "1.0.1" 3504 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3505 | 3506 | resolve-from@^2.0.0: 3507 | version "2.0.0" 3508 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3509 | 3510 | resolve@^1.1.6, resolve@1.1.7, resolve@1.1.x: 3511 | version "1.1.7" 3512 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3513 | 3514 | restore-cursor@^1.0.1: 3515 | version "1.0.1" 3516 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3517 | dependencies: 3518 | exit-hook "^1.0.0" 3519 | onetime "^1.0.0" 3520 | 3521 | right-align@^0.1.1: 3522 | version "0.1.3" 3523 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3524 | dependencies: 3525 | align-text "^0.1.1" 3526 | 3527 | rimraf@^2.2.8, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@~2.5.0, rimraf@~2.5.1, rimraf@2: 3528 | version "2.5.4" 3529 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 3530 | dependencies: 3531 | glob "^7.0.5" 3532 | 3533 | run-async@^0.1.0: 3534 | version "0.1.0" 3535 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3536 | dependencies: 3537 | once "^1.3.0" 3538 | 3539 | rx-lite@^3.1.2: 3540 | version "3.1.2" 3541 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3542 | 3543 | sane@~1.4.1: 3544 | version "1.4.1" 3545 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.4.1.tgz#88f763d74040f5f0c256b6163db399bf110ac715" 3546 | dependencies: 3547 | exec-sh "^0.2.0" 3548 | fb-watchman "^1.8.0" 3549 | minimatch "^3.0.2" 3550 | minimist "^1.1.1" 3551 | walker "~1.0.5" 3552 | watch "~0.10.0" 3553 | 3554 | sax@^1.1.4: 3555 | version "1.2.1" 3556 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 3557 | 3558 | semver-diff@^2.0.0: 3559 | version "2.1.0" 3560 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3561 | dependencies: 3562 | semver "^5.0.3" 3563 | 3564 | semver@^5.0.3, semver@^5.1.0, semver@~5.3.0, "semver@2 || 3 || 4 || 5": 3565 | version "5.3.0" 3566 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3567 | 3568 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3569 | version "2.0.0" 3570 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3571 | 3572 | set-immediate-shim@^1.0.1: 3573 | version "1.0.1" 3574 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3575 | 3576 | setprototypeof@1.0.1: 3577 | version "1.0.1" 3578 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.1.tgz#52009b27888c4dc48f591949c0a8275834c1ca7e" 3579 | 3580 | shebang-regex@^1.0.0: 3581 | version "1.0.0" 3582 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3583 | 3584 | shelljs@^0.7.5: 3585 | version "0.7.5" 3586 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.5.tgz#2eef7a50a21e1ccf37da00df767ec69e30ad0675" 3587 | dependencies: 3588 | glob "^7.0.0" 3589 | interpret "^1.0.0" 3590 | rechoir "^0.6.2" 3591 | 3592 | shellwords@^0.1.0: 3593 | version "0.1.0" 3594 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.0.tgz#66afd47b6a12932d9071cbfd98a52e785cd0ba14" 3595 | 3596 | shot@3.x.x: 3597 | version "3.3.2" 3598 | resolved "https://registry.yarnpkg.com/shot/-/shot-3.3.2.tgz#691c2611759decc20487b20d25cc299f39e5f9b7" 3599 | dependencies: 3600 | hoek "4.x.x" 3601 | joi "9.x.x" 3602 | 3603 | signal-exit@^3.0.0: 3604 | version "3.0.1" 3605 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 3606 | 3607 | slash@^1.0.0: 3608 | version "1.0.0" 3609 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3610 | 3611 | slice-ansi@0.0.4: 3612 | version "0.0.4" 3613 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3614 | 3615 | sliced@0.0.5: 3616 | version "0.0.5" 3617 | resolved "https://registry.yarnpkg.com/sliced/-/sliced-0.0.5.tgz#5edc044ca4eb6f7816d50ba2fc63e25d8fe4707f" 3618 | 3619 | sliced@1.0.1: 3620 | version "1.0.1" 3621 | resolved "https://registry.yarnpkg.com/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41" 3622 | 3623 | slide@^1.1.5: 3624 | version "1.1.6" 3625 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 3626 | 3627 | sntp@1.x.x: 3628 | version "1.0.9" 3629 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3630 | dependencies: 3631 | hoek "2.x.x" 3632 | 3633 | source-map-support@^0.4.2: 3634 | version "0.4.4" 3635 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.4.tgz#0df5765a05a560c91bc8f8641cf79f2affc0322e" 3636 | dependencies: 3637 | source-map "^0.5.3" 3638 | 3639 | source-map@^0.4.4: 3640 | version "0.4.4" 3641 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3642 | dependencies: 3643 | amdefine ">=0.0.4" 3644 | 3645 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 3646 | version "0.5.6" 3647 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3648 | 3649 | source-map@~0.2.0: 3650 | version "0.2.0" 3651 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3652 | dependencies: 3653 | amdefine ">=0.0.4" 3654 | 3655 | spdx-correct@~1.0.0: 3656 | version "1.0.2" 3657 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3658 | dependencies: 3659 | spdx-license-ids "^1.0.2" 3660 | 3661 | spdx-expression-parse@~1.0.0: 3662 | version "1.0.4" 3663 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3664 | 3665 | spdx-license-ids@^1.0.2: 3666 | version "1.2.2" 3667 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3668 | 3669 | split@0.3: 3670 | version "0.3.3" 3671 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 3672 | dependencies: 3673 | through "2" 3674 | 3675 | sprintf-js@~1.0.2: 3676 | version "1.0.3" 3677 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3678 | 3679 | sshpk@^1.7.0: 3680 | version "1.10.1" 3681 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" 3682 | dependencies: 3683 | asn1 "~0.2.3" 3684 | assert-plus "^1.0.0" 3685 | dashdash "^1.12.0" 3686 | getpass "^0.1.1" 3687 | optionalDependencies: 3688 | bcrypt-pbkdf "^1.0.0" 3689 | ecc-jsbn "~0.1.1" 3690 | jodid25519 "^1.0.0" 3691 | jsbn "~0.1.0" 3692 | tweetnacl "~0.14.0" 3693 | 3694 | statehood@5.x.x: 3695 | version "5.0.0" 3696 | resolved "https://registry.yarnpkg.com/statehood/-/statehood-5.0.0.tgz#ce2285aabeae398ae87cbba746184b7599b8fa31" 3697 | dependencies: 3698 | boom "3.x.x" 3699 | cryptiles "3.x.x" 3700 | hoek "4.x.x" 3701 | iron "4.x.x" 3702 | items "2.x.x" 3703 | joi "9.x.x" 3704 | 3705 | "statuses@>= 1.3.0 < 2": 3706 | version "1.3.0" 3707 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.0.tgz#8e55758cb20e7682c1f4fce8dcab30bf01d1e07a" 3708 | 3709 | stream-combiner@~0.0.4: 3710 | version "0.0.4" 3711 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 3712 | dependencies: 3713 | duplexer "~0.1.1" 3714 | 3715 | stream-shift@^1.0.0: 3716 | version "1.0.0" 3717 | resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" 3718 | 3719 | string_decoder@~0.10.x: 3720 | version "0.10.31" 3721 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3722 | 3723 | string-length@^1.0.0: 3724 | version "1.0.1" 3725 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3726 | dependencies: 3727 | strip-ansi "^3.0.0" 3728 | 3729 | string-width@^1.0.1, string-width@^1.0.2: 3730 | version "1.0.2" 3731 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3732 | dependencies: 3733 | code-point-at "^1.0.0" 3734 | is-fullwidth-code-point "^1.0.0" 3735 | strip-ansi "^3.0.0" 3736 | 3737 | string.prototype.codepointat@^0.2.0: 3738 | version "0.2.0" 3739 | resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" 3740 | 3741 | stringstream@~0.0.4: 3742 | version "0.0.5" 3743 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3744 | 3745 | strip-ansi@^0.3.0: 3746 | version "0.3.0" 3747 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.3.0.tgz#25f48ea22ca79187f3174a4db8759347bb126220" 3748 | dependencies: 3749 | ansi-regex "^0.2.1" 3750 | 3751 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3752 | version "3.0.1" 3753 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3754 | dependencies: 3755 | ansi-regex "^2.0.0" 3756 | 3757 | strip-bom@^2.0.0: 3758 | version "2.0.0" 3759 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3760 | dependencies: 3761 | is-utf8 "^0.2.0" 3762 | 3763 | strip-bom@^3.0.0: 3764 | version "3.0.0" 3765 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3766 | 3767 | strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: 3768 | version "1.0.4" 3769 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3770 | 3771 | subtext@^4.2.x: 3772 | version "4.2.2" 3773 | resolved "https://registry.yarnpkg.com/subtext/-/subtext-4.2.2.tgz#6251d5c7b3da72d070293c4d798932d881c600eb" 3774 | dependencies: 3775 | boom "4.x.x" 3776 | content "3.x.x" 3777 | hoek "4.x.x" 3778 | pez "2.x.x" 3779 | wreck "10.x.x" 3780 | 3781 | subtext@^4.3.x: 3782 | version "4.3.0" 3783 | resolved "https://registry.yarnpkg.com/subtext/-/subtext-4.3.0.tgz#dfac90492ec35669fd6e00c6e5d938b06d7ccfbb" 3784 | dependencies: 3785 | boom "4.x.x" 3786 | content "3.x.x" 3787 | hoek "4.x.x" 3788 | pez "2.x.x" 3789 | wreck "10.x.x" 3790 | 3791 | supports-color@^0.2.0: 3792 | version "0.2.0" 3793 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" 3794 | 3795 | supports-color@^2.0.0: 3796 | version "2.0.0" 3797 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3798 | 3799 | supports-color@^3.1.0, supports-color@^3.1.2: 3800 | version "3.1.2" 3801 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3802 | dependencies: 3803 | has-flag "^1.0.0" 3804 | 3805 | "symbol-tree@>= 3.1.0 < 4.0.0": 3806 | version "3.1.4" 3807 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.1.4.tgz#02b279348d337debc39694c5c95f882d448a312a" 3808 | 3809 | table@^3.7.8: 3810 | version "3.8.0" 3811 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.0.tgz#252166c7f3286684a9d561b0f3a8929caf3a997b" 3812 | dependencies: 3813 | ajv "^4.7.0" 3814 | ajv-keywords "^1.0.0" 3815 | chalk "^1.1.1" 3816 | lodash "^4.0.0" 3817 | slice-ansi "0.0.4" 3818 | string-width "^1.0.1" 3819 | 3820 | tar-pack@~3.1.0: 3821 | version "3.1.4" 3822 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.1.4.tgz#bc8cf9a22f5832739f12f3910dac1eb97b49708c" 3823 | dependencies: 3824 | debug "~2.2.0" 3825 | fstream "~1.0.10" 3826 | fstream-ignore "~1.0.5" 3827 | once "~1.3.3" 3828 | readable-stream "~2.1.4" 3829 | rimraf "~2.5.1" 3830 | tar "~2.2.1" 3831 | uid-number "~0.0.6" 3832 | 3833 | tar@~2.2.0, tar@~2.2.1: 3834 | version "2.2.1" 3835 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3836 | dependencies: 3837 | block-stream "*" 3838 | fstream "^1.0.2" 3839 | inherits "2" 3840 | 3841 | test-exclude@^2.1.1: 3842 | version "2.1.3" 3843 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-2.1.3.tgz#a8d8968e1da83266f9864f2852c55e220f06434a" 3844 | dependencies: 3845 | arrify "^1.0.1" 3846 | micromatch "^2.3.11" 3847 | object-assign "^4.1.0" 3848 | read-pkg-up "^1.0.1" 3849 | require-main-filename "^1.0.1" 3850 | 3851 | testcheck@^0.1.0: 3852 | version "0.1.4" 3853 | resolved "https://registry.yarnpkg.com/testcheck/-/testcheck-0.1.4.tgz#90056edd48d11997702616ce6716f197d8190164" 3854 | 3855 | text-table@~0.2.0: 3856 | version "0.2.0" 3857 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3858 | 3859 | throat@^3.0.0: 3860 | version "3.0.0" 3861 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.0.0.tgz#e7c64c867cbb3845f10877642f7b60055b8ec0d6" 3862 | 3863 | through@^2.3.6, through@~2.3, through@~2.3.1, through@2: 3864 | version "2.3.8" 3865 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3866 | 3867 | timed-out@^2.0.0: 3868 | version "2.0.0" 3869 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" 3870 | 3871 | tmpl@1.0.x: 3872 | version "1.0.4" 3873 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3874 | 3875 | to-fast-properties@^1.0.1: 3876 | version "1.0.2" 3877 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3878 | 3879 | topo@1.x.x: 3880 | version "1.1.0" 3881 | resolved "https://registry.yarnpkg.com/topo/-/topo-1.1.0.tgz#e9d751615d1bb87dc865db182fa1ca0a5ef536d5" 3882 | dependencies: 3883 | hoek "2.x.x" 3884 | 3885 | topo@2.x.x: 3886 | version "2.0.2" 3887 | resolved "https://registry.yarnpkg.com/topo/-/topo-2.0.2.tgz#cd5615752539057c0dc0491a621c3bc6fbe1d182" 3888 | dependencies: 3889 | hoek "4.x.x" 3890 | 3891 | touch@1.0.0: 3892 | version "1.0.0" 3893 | resolved "https://registry.yarnpkg.com/touch/-/touch-1.0.0.tgz#449cbe2dbae5a8c8038e30d71fa0ff464947c4de" 3894 | dependencies: 3895 | nopt "~1.0.10" 3896 | 3897 | tough-cookie@^2.3.1, tough-cookie@~2.3.0: 3898 | version "2.3.1" 3899 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.1.tgz#99c77dfbb7d804249e8a299d4cb0fd81fef083fd" 3900 | 3901 | tr46@~0.0.3: 3902 | version "0.0.3" 3903 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3904 | 3905 | tryit@^1.0.1: 3906 | version "1.0.2" 3907 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.2.tgz#c196b0073e6b1c595d93c9c830855b7acc32a453" 3908 | 3909 | tunnel-agent@~0.4.1: 3910 | version "0.4.3" 3911 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3912 | 3913 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3914 | version "0.14.3" 3915 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" 3916 | 3917 | type-check@~0.3.2: 3918 | version "0.3.2" 3919 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3920 | dependencies: 3921 | prelude-ls "~1.1.2" 3922 | 3923 | typed-graphql@^1.0.2: 3924 | version "1.0.2" 3925 | resolved "https://registry.yarnpkg.com/typed-graphql/-/typed-graphql-1.0.2.tgz#4c0f788775d552df4d4ec3d73f25469252f40fb8" 3926 | 3927 | typedarray@~0.0.5: 3928 | version "0.0.6" 3929 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3930 | 3931 | uglify-js@^2.6: 3932 | version "2.7.3" 3933 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.3.tgz#39b3a7329b89f5ec507e344c6e22568698ef4868" 3934 | dependencies: 3935 | async "~0.2.6" 3936 | source-map "~0.5.1" 3937 | uglify-to-browserify "~1.0.0" 3938 | yargs "~3.10.0" 3939 | 3940 | uglify-to-browserify@~1.0.0: 3941 | version "1.0.2" 3942 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3943 | 3944 | uid-number@~0.0.6: 3945 | version "0.0.6" 3946 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3947 | 3948 | undefsafe@0.0.3: 3949 | version "0.0.3" 3950 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 3951 | 3952 | update-notifier@0.5.0: 3953 | version "0.5.0" 3954 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-0.5.0.tgz#07b5dc2066b3627ab3b4f530130f7eddda07a4cc" 3955 | dependencies: 3956 | chalk "^1.0.0" 3957 | configstore "^1.0.0" 3958 | is-npm "^1.0.0" 3959 | latest-version "^1.0.0" 3960 | repeating "^1.1.2" 3961 | semver-diff "^2.0.0" 3962 | string-length "^1.0.0" 3963 | 3964 | user-home@^1.1.1: 3965 | version "1.1.1" 3966 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3967 | 3968 | user-home@^2.0.0: 3969 | version "2.0.0" 3970 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 3971 | dependencies: 3972 | os-homedir "^1.0.0" 3973 | 3974 | util-deprecate@~1.0.1: 3975 | version "1.0.2" 3976 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3977 | 3978 | uuid@^2.0.1: 3979 | version "2.0.3" 3980 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3981 | 3982 | validate-npm-package-license@^3.0.1: 3983 | version "3.0.1" 3984 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3985 | dependencies: 3986 | spdx-correct "~1.0.0" 3987 | spdx-expression-parse "~1.0.0" 3988 | 3989 | verror@1.3.6: 3990 | version "1.3.6" 3991 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3992 | dependencies: 3993 | extsprintf "1.0.2" 3994 | 3995 | vise@2.x.x: 3996 | version "2.0.2" 3997 | resolved "https://registry.yarnpkg.com/vise/-/vise-2.0.2.tgz#6b08e8fb4cb76e3a50cd6dd0ec37338e811a0d39" 3998 | dependencies: 3999 | hoek "4.x.x" 4000 | 4001 | walker@~1.0.5: 4002 | version "1.0.7" 4003 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4004 | dependencies: 4005 | makeerror "1.0.x" 4006 | 4007 | watch@~0.10.0: 4008 | version "0.10.0" 4009 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 4010 | 4011 | webidl-conversions@^3.0.0, webidl-conversions@^3.0.1: 4012 | version "3.0.1" 4013 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 4014 | 4015 | whatwg-encoding@^1.0.1: 4016 | version "1.0.1" 4017 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 4018 | dependencies: 4019 | iconv-lite "0.4.13" 4020 | 4021 | whatwg-url@^3.0.0: 4022 | version "3.0.0" 4023 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-3.0.0.tgz#b9033c50c7ce763e91d78777ce825a6d7f56dac5" 4024 | dependencies: 4025 | tr46 "~0.0.3" 4026 | webidl-conversions "^3.0.0" 4027 | 4028 | which-module@^1.0.0: 4029 | version "1.0.0" 4030 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4031 | 4032 | which@^1.0.5, which@^1.1.1: 4033 | version "1.2.11" 4034 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.11.tgz#c8b2eeea6b8c1659fa7c1dd4fdaabe9533dc5e8b" 4035 | dependencies: 4036 | isexe "^1.1.1" 4037 | 4038 | wide-align@^1.1.0: 4039 | version "1.1.0" 4040 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4041 | dependencies: 4042 | string-width "^1.0.1" 4043 | 4044 | window-size@^0.2.0: 4045 | version "0.2.0" 4046 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" 4047 | 4048 | window-size@0.1.0: 4049 | version "0.1.0" 4050 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4051 | 4052 | wordwrap@^1.0.0, wordwrap@~1.0.0: 4053 | version "1.0.0" 4054 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4055 | 4056 | wordwrap@~0.0.2: 4057 | version "0.0.3" 4058 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4059 | 4060 | wordwrap@0.0.2: 4061 | version "0.0.2" 4062 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4063 | 4064 | worker-farm@^1.3.1: 4065 | version "1.3.1" 4066 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.3.1.tgz#4333112bb49b17aa050b87895ca6b2cacf40e5ff" 4067 | dependencies: 4068 | errno ">=0.1.1 <0.2.0-0" 4069 | xtend ">=4.0.0 <4.1.0-0" 4070 | 4071 | wrap-ansi@^2.0.0: 4072 | version "2.0.0" 4073 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.0.0.tgz#7d30f8f873f9a5bbc3a64dabc8d177e071ae426f" 4074 | dependencies: 4075 | string-width "^1.0.1" 4076 | 4077 | wrappy@1: 4078 | version "1.0.2" 4079 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4080 | 4081 | wreck@10.x.x: 4082 | version "10.0.0" 4083 | resolved "https://registry.yarnpkg.com/wreck/-/wreck-10.0.0.tgz#98ab882f85e16a526332507f101f5a7841162278" 4084 | dependencies: 4085 | boom "4.x.x" 4086 | hoek "4.x.x" 4087 | 4088 | write-file-atomic@^1.1.2: 4089 | version "1.2.0" 4090 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.2.0.tgz#14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab" 4091 | dependencies: 4092 | graceful-fs "^4.1.2" 4093 | imurmurhash "^0.1.4" 4094 | slide "^1.1.5" 4095 | 4096 | write@^0.2.1: 4097 | version "0.2.1" 4098 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4099 | dependencies: 4100 | mkdirp "^0.5.1" 4101 | 4102 | x-path@^0.0.2: 4103 | version "0.0.2" 4104 | resolved "https://registry.yarnpkg.com/x-path/-/x-path-0.0.2.tgz#294d076bb97a7706cc070bbb2a6fd8c54df67b12" 4105 | dependencies: 4106 | path-extra "^1.0.2" 4107 | 4108 | xdg-basedir@^2.0.0: 4109 | version "2.0.0" 4110 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 4111 | dependencies: 4112 | os-homedir "^1.0.0" 4113 | 4114 | "xml-name-validator@>= 2.0.1 < 3.0.0": 4115 | version "2.0.1" 4116 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 4117 | 4118 | xtend@^4.0.0, "xtend@>=4.0.0 <4.1.0-0": 4119 | version "4.0.1" 4120 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4121 | 4122 | y18n@^3.2.1: 4123 | version "3.2.1" 4124 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4125 | 4126 | yargs-parser@^3.2.0: 4127 | version "3.2.0" 4128 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-3.2.0.tgz#5081355d19d9d0c8c5d81ada908cb4e6d186664f" 4129 | dependencies: 4130 | camelcase "^3.0.0" 4131 | lodash.assign "^4.1.0" 4132 | 4133 | yargs@^5.0.0: 4134 | version "5.0.0" 4135 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-5.0.0.tgz#3355144977d05757dbb86d6e38ec056123b3a66e" 4136 | dependencies: 4137 | cliui "^3.2.0" 4138 | decamelize "^1.1.1" 4139 | get-caller-file "^1.0.1" 4140 | lodash.assign "^4.2.0" 4141 | os-locale "^1.4.0" 4142 | read-pkg-up "^1.0.1" 4143 | require-directory "^2.1.1" 4144 | require-main-filename "^1.0.1" 4145 | set-blocking "^2.0.0" 4146 | string-width "^1.0.2" 4147 | which-module "^1.0.0" 4148 | window-size "^0.2.0" 4149 | y18n "^3.2.1" 4150 | yargs-parser "^3.2.0" 4151 | 4152 | yargs@~3.10.0: 4153 | version "3.10.0" 4154 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4155 | dependencies: 4156 | camelcase "^1.0.2" 4157 | cliui "^2.1.0" 4158 | decamelize "^1.0.0" 4159 | window-size "0.1.0" 4160 | 4161 | --------------------------------------------------------------------------------