├── .eslintrc.yml ├── .gitignore ├── README.md ├── blezer-ui.jpg ├── cli.js ├── cli └── create.js ├── index.js ├── lib ├── index.js ├── job.js ├── load.js ├── queue.js ├── redis.js ├── start.js ├── stats.js ├── task.js └── util.js ├── package.json ├── test └── test.js ├── ui ├── api.js ├── assets │ └── stylesheets │ │ └── main.css ├── components │ └── root │ │ └── index.marko ├── pages │ ├── index.marko │ ├── jobs │ │ ├── index.marko │ │ └── show.marko │ ├── layout.marko │ ├── nav.html │ ├── queues │ │ ├── index.marko │ │ └── show.marko │ ├── styles.css │ └── tasks │ │ └── index.marko ├── routes │ ├── home.js │ ├── index.js │ ├── jobs.js │ ├── queues.js │ └── tasks.js ├── server.js └── util.js └── yarn.lock /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | node: true 3 | es6: true 4 | mocha: true 5 | extends: 'eslint:recommended' 6 | rules: 7 | no-console: off 8 | no-unused-vars: 9 | - error 10 | - args: none 11 | varsIgnorePattern: Promise 12 | indent: 13 | - error 14 | - 2 15 | linebreak-style: 16 | - error 17 | - unix 18 | quotes: 19 | - error 20 | - single 21 | semi: 22 | - error 23 | - always 24 | parserOptions: 25 | ecmaVersion: 8 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | ui/static/* 3 | 4 | *.marko.js 5 | 6 | # Logs 7 | logs 8 | *.log 9 | npm-debug.log* 10 | 11 | # Runtime data 12 | pids 13 | *.pid 14 | *.seed 15 | *.pid.lock 16 | 17 | # Directory for instrumented libs generated by jscoverage/JSCover 18 | lib-cov 19 | 20 | # Coverage directory used by tools like istanbul 21 | coverage 22 | 23 | # nyc test coverage 24 | .nyc_output 25 | 26 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 27 | .grunt 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules 37 | jspm_packages 38 | 39 | # Optional npm cache directory 40 | .npm 41 | 42 | # Optional eslint cache 43 | .eslintcache 44 | 45 | # Optional REPL history 46 | .node_repl_history 47 | 48 | # Output of 'npm pack' 49 | *.tgz 50 | 51 | # Yarn Integrity file 52 | .yarn-integrity 53 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # blezer 2 | 3 | [![npm](https://img.shields.io/npm/v/blezer.svg)](https://www.npmjs.com/package/blezer) 4 | [![npm](https://img.shields.io/npm/dm/blezer.svg)](https://www.npmjs.com/package/blezer) 5 | 6 | Blezer is a simple background job/task processing queue for Node.js (>= 7.6) using `cluster` & separate Node processes, powered by Redis. 7 | 8 | ## Features 9 | 10 | - [x] each worker runs its tasks in a separate Node.js process 11 | - [x] RESTful JSON API 12 | - [x] integrated UI 13 | - [x] logging per job/task 14 | - [ ] delay job/task execution 15 | - [ ] job/task expiry value for being in active state 16 | 17 | ## Install 18 | 19 | npm install -g blezer 20 | 21 | ## Usage 22 | 23 | ### Step 1: Create a task 24 | 25 | Each job triggers an execution of a *Task* i.e. a recipe what to do for that job. It is defined as a `class` with `perform` method. `Task` corresponds to `Worker` from similar projects such as [resque][1] or [sidekiq][2]. It is named this way to avoid the clash with `cluster` workers. 26 | 27 | ```js 28 | const { Task } = require('blezer'); 29 | 30 | class LoopTask extends Task { 31 | perform(args) { 32 | this.log(`Running inside: ${process.pid}`); 33 | this.log(`Args: ${args}`); 34 | 35 | let progress = 0; 36 | for (var i = 0; i < 1e10; i++) { 37 | if (i % 1e8 == 0) { 38 | this.log(i) 39 | this.progress(progress, 100); 40 | progress++; 41 | } 42 | } 43 | } 44 | } 45 | 46 | module.exports = LoopTask 47 | ``` 48 | 49 | ### Step 2: Run the server 50 | 51 | Put your tasks in `tasks/` directory and run 52 | 53 | blezer start 54 | 55 | By default, it checks available number of cores and it instantiates the number of Node processes accordingly. You can specify number of process by hand using `-c` option. Type `blezer start --help` to see all available options. 56 | 57 | ### Step 3: Enqueue a job 58 | 59 | You can enqueue a job to perform given task from a JavaScript application 60 | 61 | ```js 62 | const { enqueue } = require('blezer'); 63 | 64 | enqueue('LoopTask', '[1, 2, 3]'); 65 | ``` 66 | 67 | By default, the `enqueue` function puts the new job on `default` queue; this can be changed with the `name` parameter from `options`. 68 | 69 | ```js 70 | enqueue('LoopTask', '[1, 2, 3]', { name: 'high' }); 71 | ``` 72 | 73 | A job can be scheduled to run at a specific time using `scheduledAt` parameter. 74 | 75 | ```js 76 | enqueue('LoopTask', '[1, 2, 3]', { name: 'high', scheduledAt: Date.now() + Sugar.Number.days(4) }); 77 | ``` 78 | 79 | It is also possible to enqueue a job through Blezer REST API 80 | 81 | http POST :3000/api/enqueue task=LoopTask args='[1,2,3]' 82 | 83 | ### (optional) Step 4: Check the progress via UI 84 | 85 | Go to `localhost:3000` to check the job proegress through Blezer UI. 86 | 87 | [1]: https://github.com/resque/resque 88 | [2]: https://github.com/mperham/sidekiq 89 | 90 | ## Blezer UI 91 | 92 | Blezer comes with a built-in web UI that allows to quickly see the status of all jobs. Here's a preview of what it looks like: 93 | 94 | ![Blezer UI](https://github.com/zaiste/blezer/raw/master/blezer-ui.jpg) 95 | 96 | ### Environments 97 | 98 | You can distinguish visually the UI between `staging` and `production` environments by specifying `BLEZER_ENV` variable accordingly. You can set this variable when launching Blezer with `blezer start` e.g. 99 | 100 | ``` 101 | BLEZER_ENV=production blezer start 102 | ``` 103 | 104 | It will add a small color bar at the top to help you identify at a glance which UI instance you are currently using. 105 | 106 | --- 107 | 108 | ## Concepts 109 | 110 | ### Queues 111 | 112 | *Queue* is a list of *Job* items, stored so as to be retrievable and handled in the order of insertion. You can create a *Queue* by giving it a name. This is a lower level API which usually shouldn't be used directly - it's advised to use `enqueue` helper. 113 | 114 | ```js 115 | const { Queue } = require('blezer'); 116 | const highQueue = new Queue('high'); 117 | ``` 118 | 119 | ### Logging 120 | 121 | You can log on per job/task basis by using `this.log(message)` method, where `message` is an object or a string. 122 | 123 | ``` 124 | this.log("This is my log message"); 125 | this.log({ a: 1, b: 2}); 126 | ``` 127 | 128 | ### Create tasks from CLI 129 | 130 | You can create a task in `tasks` using CLI 131 | 132 | ``` 133 | blezer create foo 134 | ``` 135 | 136 | This command will create `FooTask.js` task in `tasks/` directory. 137 | 138 | ## Roadmap 139 | 140 | Blezer keeps track of the upcoming fixes and features on GitHub Projects: [Blezer Roadmap](https://github.com/zaiste/blezer/projects/1) 141 | 142 | ## Bug reports 143 | 144 | We use *Github Issues* for managing bug reports and feature requests. If you run 145 | into problems, please search the *issues* or submit a new one here: 146 | https://github.com/zaiste/blezer/issues 147 | 148 | Detailed bug reports are always great; it's event better if you are able to 149 | include test cases. 150 | 151 | ## Roadmap 152 | 153 | - [ ] visualisation with Clui https://github.com/nathanpeck/clui 154 | 155 | ## Contributing 156 | 157 | - run the code through `prettier` 158 | -------------------------------------------------------------------------------- /blezer-ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaiste/blezer/c3ebe4578dd9878cfa81d89eb29567200cbb5ae2/blezer-ui.jpg -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env node 2 | 3 | const argv = require('yargs') 4 | .env('BLEZER') 5 | .version() 6 | .usage('Usage: blezer [options]') 7 | .command(['start', 's'], 'Start', require('./lib/start')) 8 | .command(['create ', 'c'], 'Create', require('./cli/create')) 9 | .help('h') 10 | .alias('h', 'help') 11 | .epilogue('for more information, find the documentation at https://blezer.io') 12 | .argv; 13 | -------------------------------------------------------------------------------- /cli/create.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const fs = require('fs-extra'); 15 | const { join } = require('path'); 16 | 17 | function capitalize(string) { 18 | return string.charAt(0).toUpperCase() + string.slice(1); 19 | } 20 | 21 | function generate(name) { 22 | return `const { Task } = require('blezer'); 23 | 24 | class ${name}Task extends Task { 25 | async perform(args) { 26 | 27 | } 28 | } 29 | 30 | module.exports = ${name}Task 31 | `; 32 | } 33 | 34 | async function create({ name }) { 35 | let _ = capitalize(name); 36 | await fs.outputFile(join('tasks', `${_}Task.js`), generate(_)); 37 | } 38 | 39 | module.exports = { 40 | handler: create, 41 | builder: _ => _ 42 | .option('name') 43 | }; 44 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const Task = require('./lib/task'); 15 | const Queue = require('./lib/queue'); 16 | const Job = require('./lib/job'); 17 | 18 | async function enqueue(task, args, { name = 'default', title } = {}) { 19 | const queue = new Queue(name); 20 | const job = await queue.enqueue(task, args, title, {}); 21 | 22 | return job; 23 | } 24 | 25 | module.exports = { Task, Queue, Job, enqueue }; 26 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const debug = require('debug')('blezer'); 15 | const Promise = require('bluebird'); 16 | 17 | const redis = require('./redis').getClientIgnoreCache(); 18 | const { println } = require('./util'); 19 | const TaskFactory = require('./load'); 20 | 21 | async function listen(pid, queues, dir) { 22 | TaskFactory.loadDir(dir); 23 | 24 | while (true) { 25 | let [_, jid] = await redis.brpopAsync(...queues, 0); 26 | 27 | try { 28 | let job = await redis.hgetallAsync(`blezer:jobs:${jid}`); 29 | debug(`${pid}: ${job.task} as ${jid} with ${job.args}`); 30 | 31 | await redis.hmsetAsync(`blezer:jobs:${jid}`, { 32 | pid, 33 | startedAt: Date.now() 34 | }); 35 | await redis.lpushAsync('blezer:active', jid); 36 | 37 | let task = TaskFactory.getInstance(job.task, jid); 38 | await task.perform(JSON.parse(job.args)); 39 | 40 | await redis 41 | .multi() 42 | .lpush('blezer:processed', jid) 43 | .lrem('blezer:active', 0, jid) 44 | .hmset(`blezer:jobs:${jid}`, { finishedAt: Date.now() }) 45 | .execAsync(); 46 | } catch (error) { 47 | await redis 48 | .multi() 49 | .hmset(`blezer:jobs:${jid}`, { failedAt: Date.now() }) 50 | .lpush('blezer:failed', jid) 51 | .lrem('blezer:active', 0, jid) 52 | .execAsync(); 53 | 54 | await redis.rpushAsync(`blezer:logs:${jid}`, `[${new Date().toISOString()}] ${error.message} ${JSON.stringify(error.stack)}`); 55 | 56 | println(error.message); 57 | } 58 | } 59 | } 60 | 61 | module.exports = { listen }; 62 | -------------------------------------------------------------------------------- /lib/job.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const cluster = require('cluster'); 15 | const Promise = require('bluebird'); 16 | const EventEmitter = require('events').EventEmitter; 17 | const uuid = require('uuid'); 18 | 19 | const { revertCWD } = require('./util'); 20 | 21 | const redis = require('./redis').getClient(); 22 | 23 | class Job extends EventEmitter { 24 | constructor(queue, task, args, title = '', { scheduledAt } = {}) { 25 | super(); 26 | 27 | this.queue = queue; 28 | this.task = task; 29 | this.title = title; 30 | this.args = args || {}; 31 | 32 | this.createdAt = Date.now(); 33 | 34 | this.jid = uuid.v4(); 35 | 36 | redis.hmsetAsync(`blezer:jobs:${this.jid}`, { 37 | task, 38 | title, 39 | queue, 40 | args: JSON.stringify(args), 41 | createdAt: this.createdAt, 42 | }); 43 | 44 | this.on('enqueued', () => { 45 | this.enqueuedAt = Date.now(); 46 | redis.hmsetAsync(`blezer:jobs:${this.jid}`, { enqueuedAt: this.enqueuedAt }); 47 | }); 48 | } 49 | 50 | static async remove(jid) { 51 | const active = await redis.lremAsync('blezer:active', 0, jid); 52 | if (active) { 53 | const job = await this.find(jid); 54 | process.kill(job.pid); 55 | revertCWD(cluster.fork); 56 | } 57 | 58 | await redis 59 | .multi() 60 | .del(`blezer:jobs:${jid}`) 61 | .del(`blezer:logs:${jid}`) 62 | .lrem(`blezer:active`, 0, jid) 63 | .lrem(`blezer:processed`, 0, jid) 64 | .lrem(`blezer:failed`, 0, jid) 65 | .execAsync(); 66 | } 67 | 68 | static async retry(queue, jid) { 69 | this.enqueuedAt = Date.now(); 70 | 71 | await redis 72 | .multi() 73 | .lrem(`blezer:failed`, 0, jid) 74 | .lpush(`blezer:queues:${queue}`, jid) 75 | .hmset(`blezer:jobs:${jid}`, { enqueuedAt: this.enqueuedAt }) 76 | .execAsync(); 77 | } 78 | 79 | static async find(jid) { 80 | let job = await redis.hgetallAsync(`blezer:jobs:${jid}`); 81 | 82 | if (job && job.args && job.createdAt) { 83 | job.jid = jid; 84 | job.args = JSON.parse(job.args); 85 | return job; 86 | } else { 87 | return null; 88 | } 89 | } 90 | 91 | static async active() { 92 | const jids = await redis.lrangeAsync('blezer:active', 0, -1); 93 | const jobs = (await Promise.all(jids.map(this.find))).filter(job => job); 94 | return jobs; 95 | } 96 | 97 | static async empty(queue) { 98 | await redis.delAsync(`blezer:${queue}`); 99 | 100 | return true; 101 | } 102 | 103 | static async failed() { 104 | const jids = await redis.lrangeAsync('blezer:failed', 0, -1); 105 | 106 | const jobs = (await Promise.all(jids.map(this.find))).filter(job => job); 107 | return jobs; 108 | } 109 | 110 | static async processed() { 111 | const jids = await redis.lrangeAsync('blezer:processed', 0, -1); 112 | 113 | const jobs = (await Promise.all(jids.map(this.find))).filter(job => job); 114 | return jobs; 115 | } 116 | 117 | static logs(jid) { 118 | return redis.lrangeAsync(`blezer:logs:${jid}`, 0, -1); 119 | } 120 | 121 | static async forQueue(queue) { 122 | const jids = await redis.lrangeAsync(`blezer:queues:${queue}`, 0, -1); 123 | 124 | const jobs = (await Promise.all(jids.map(this.find))).filter(job => job); 125 | return jobs; 126 | } 127 | } 128 | 129 | module.exports = Job; 130 | -------------------------------------------------------------------------------- /lib/load.js: -------------------------------------------------------------------------------- 1 | let tasks = null; 2 | 3 | class TaskFactory { 4 | static loadDir(dir) { 5 | tasks = require('require-all')({ 6 | dirname: dir, 7 | filter: /(.+Task)\.js$/, 8 | excludeDirs: /^\.(git|svn)$/, 9 | // resolve: Task => new Task() 10 | }); 11 | } 12 | 13 | static getInstance(task, jid) { 14 | if (tasks.hasOwnProperty(task)) { 15 | return new tasks[task](jid); 16 | } else { 17 | throw new Error(`Could not instantiate ${task}`); 18 | } 19 | } 20 | } 21 | module.exports = TaskFactory 22 | -------------------------------------------------------------------------------- /lib/queue.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const Promise = require('bluebird'); 15 | const EventEmitter = require('events').EventEmitter; 16 | 17 | const redis = require('./redis').getClient(); 18 | const Job = require('./job'); 19 | 20 | class Queue extends EventEmitter { 21 | constructor(name = 'default') { 22 | super(); 23 | 24 | Object.assign(this, { name }); 25 | 26 | redis.saddAsync('blezer:queues', this.name); 27 | // .then emit `ready` 28 | } 29 | 30 | async enqueue(task, args = {}, title, options = {}) { 31 | let job = new Job(this.name, task, args, title, options); 32 | await redis.lpushAsync(this.path, job.jid); 33 | job.emit('enqueued'); 34 | 35 | return job; 36 | } 37 | 38 | static async remove(id) { 39 | return redis 40 | .multi() 41 | .srem('blezer:queues', id) 42 | .del(`blezer:queues:${id}`) 43 | .execAsync(); 44 | } 45 | 46 | get path() { 47 | return `blezer:queues:${this.name}`; 48 | } 49 | 50 | get jobs() { 51 | return redis.lrangeAsync(this.path, 0, -1); 52 | } 53 | 54 | get size() { 55 | return redis.llenAsync(this.path); 56 | } 57 | 58 | static get all() { 59 | return redis.smembersAsync('blezer:queues'); 60 | } 61 | } 62 | 63 | module.exports = Queue; 64 | -------------------------------------------------------------------------------- /lib/redis.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const Promise = require('bluebird'); 15 | const redis = require('redis'); 16 | 17 | Promise.promisifyAll(redis.RedisClient.prototype); 18 | Promise.promisifyAll(redis.Multi.prototype); 19 | 20 | let client = null; 21 | let options = {}; 22 | 23 | /** Return a new connection that won't be reused by another call 24 | * this should only be used so that blocking requests don't block the other connections 25 | * @returns RedisClient 26 | */ 27 | function getClientIgnoreCache() { 28 | return redis.createClient(options); 29 | } 30 | 31 | function getClient() { 32 | if (!client) { 33 | client = getClientIgnoreCache(); 34 | } 35 | return client; 36 | } 37 | 38 | module.exports = { 39 | getClient, 40 | getClientIgnoreCache, 41 | setRedisOptions: (opts) => { options = opts; client = null; }, 42 | }; 43 | -------------------------------------------------------------------------------- /lib/start.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const Promise = require('bluebird'); 15 | const assert = require('assert'); 16 | const os = require('os'); 17 | const cluster = require('cluster'); 18 | const figlet = require('figlet'); 19 | const chalk = require('chalk'); 20 | const chokidar = require('chokidar'); 21 | const { join, resolve } = require('path'); 22 | 23 | const { println } = require('./util'); 24 | 25 | function start({ queues, concurrency, port, watch, redisPort, redisHost, tasksDir }) { 26 | 27 | queues = queues.split(',').map(_ => `blezer:queues:${_.trim()}`); 28 | tasksDir = resolve(process.cwd(), tasksDir || 'tasks'); 29 | 30 | require('./redis').setRedisOptions({ host: redisHost, port: redisPort }); 31 | 32 | if (cluster.isMaster) { 33 | if (concurrency == 0) concurrency = os.cpus().length; 34 | 35 | println(chalk.magenta(figlet.textSync('BLEZER', { font: 'Slant' }))); 36 | println(`concurrency: ${concurrency}`); 37 | 38 | for(let i = 0; i < concurrency; i++) 39 | cluster.fork(); 40 | 41 | if (watch) { 42 | println('tasks watching: enabled'); 43 | chokidar.watch(tasksDir, { ignored: /[/\\]\./ }) 44 | .on('change', restartCluster); 45 | } 46 | 47 | process.chdir(resolve(__dirname, '../ui')); 48 | const server = require('../ui/server'); 49 | server(port); 50 | 51 | process.on('SIGINT', cleanup); 52 | process.on('SIGTERM', cleanup); 53 | } else { 54 | const { listen } = require('./'); 55 | println(`${process.pid}: ${chalk.green('started')}`); 56 | listen(process.pid, queues, tasksDir); 57 | } 58 | } 59 | 60 | async function cleanup() { 61 | const redis = require('./redis').getClient(); 62 | println('Closing...'); 63 | 64 | let jids = await redis.lrangeAsync('blezer:active', 0, -1); 65 | if (jids.length) { 66 | await redis.multi() 67 | .lpush('blezer:queues:default', jids) 68 | .del('blezer:active') 69 | .execAsync(); 70 | } 71 | 72 | process.exit(1); 73 | } 74 | 75 | function restartCluster() { 76 | println('Restarting workers stand-by ...'); 77 | for (let wid in cluster.workers) { 78 | cluster.workers[wid].send({ text: 'shutdown', from: 'master' }); 79 | } 80 | } 81 | 82 | module.exports = { 83 | handler: start, 84 | builder: _ => 85 | _.default('dir', '.') 86 | .option('concurrency', { 87 | alias: 'c', 88 | describe: 'Number of threads to use', 89 | default: 0, 90 | }) 91 | .option('daemon', { alias: 'd', describe: 'Daemonize process' }) 92 | .option('port', { alias: 'p', describe: 'Port for the Web UI', default: 3000 }) 93 | .option('redis-port', { alias: 'P', describe: 'Port for the redis server', default: 6379 }) 94 | .option('redis-host', { alias: 'H', describe: 'Host for the redis server', default: 'localhost' }) 95 | .option('tasks-dir', { alias: 't', describe: 'Directory of the tasks', default: '' }) 96 | .option('watch', { alias: 'w', describe: 'Watch for changes in tasks', default: false }) 97 | .option('queues', { 98 | alias: 'q', 99 | default: 'default', 100 | describe: 'Comma separated list of queues to process', 101 | }) 102 | .option('config', { alias: 'C', describe: 'path to YAML config file' }) 103 | .option('logfile', { alias: 'L', describe: 'path to logfile' }), 104 | }; 105 | -------------------------------------------------------------------------------- /lib/stats.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const Promise = require('bluebird'); 15 | 16 | const redis = require('./redis').getClient(); 17 | 18 | class Stats { 19 | static get active() { 20 | return redis.llenAsync('blezer:active'); 21 | } 22 | 23 | static get enqueued() { 24 | const size = _ => redis.llenAsync(_); 25 | const sum = (acc, _) => acc + _; 26 | 27 | return redis.keysAsync('blezer:queues:*').map(size).reduce(sum, 0); 28 | } 29 | 30 | static get failed() { 31 | return redis.llenAsync('blezer:failed'); 32 | } 33 | 34 | static get processed() { 35 | return redis.llenAsync('blezer:processed'); 36 | } 37 | 38 | static async queues() { 39 | const names = await redis.smembersAsync('blezer:queues'); 40 | 41 | async function lengths(h, name) { 42 | const length = await redis.llenAsync(`blezer:queues:${name}`); 43 | h[name] = length; 44 | return h; 45 | } 46 | const queues = await Promise.reduce(names, lengths, {}); 47 | 48 | return queues; 49 | } 50 | } 51 | 52 | module.exports = Stats; 53 | -------------------------------------------------------------------------------- /lib/task.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const util = require('util'); 15 | const Promise = require('bluebird'); 16 | 17 | const redis = require('./redis').getClient(); 18 | 19 | class Task { 20 | constructor(jid) { 21 | this.jid = jid; 22 | } 23 | 24 | async log(message) { 25 | await redis.rpushAsync( 26 | `blezer:logs:${this.jid}`, 27 | `[${new Date().toISOString()}] ${util.inspect(message, false, null)}` 28 | ); 29 | } 30 | 31 | async progress(complete, total) { 32 | const progress = Math.min(100, complete * 100 / total | 0); 33 | await redis.hmsetAsync(`blezer:jobs:${this.jid}`, { progress }); 34 | } 35 | } 36 | 37 | module.exports = Task; 38 | -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- 1 | 2 | function print(text) { 3 | process.stdout.write(text); 4 | } 5 | 6 | function println(text) { 7 | process.stdout.write(text + '\n'); 8 | } 9 | 10 | function revertCWD(cb) { 11 | let cwd = process.cwd(); 12 | process.chdir(process.env.PWD); 13 | let res = cb(); 14 | process.chdir(cwd); 15 | return res; 16 | } 17 | 18 | module.exports = { print, println, revertCWD }; 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "blezer", 3 | "version": "0.12.7", 4 | "main": "index.js", 5 | "preferGlobal": true, 6 | "engines": { 7 | "node": ">= 7.6.0" 8 | }, 9 | "keywords": [ 10 | "blezer", 11 | "nodejs", 12 | "sidekiq", 13 | "queue", 14 | "resque", 15 | "job", 16 | "worker", 17 | "task", 18 | "async", 19 | "async-await", 20 | "asyncawait", 21 | "es6", 22 | "es7", 23 | "es2015" 24 | ], 25 | "author": { 26 | "name": "Zaiste", 27 | "url": "https://github.com/zaiste" 28 | }, 29 | "license": "Apache-2.0", 30 | "repository": { 31 | "type": "git", 32 | "url": "https://github.com/zaiste/blezer" 33 | }, 34 | "dependencies": { 35 | "axios": "^0.17.1", 36 | "bluebird": "^3.5.1", 37 | "chalk": "^2.3.0", 38 | "chokidar": "^1.7.0", 39 | "figlet": "^1.2.0", 40 | "fs-extra": "^5.0.0", 41 | "huncwot": "^0.17.0", 42 | "nunjucks": "^3.0.1", 43 | "pkginfo": "^0.4.1", 44 | "redis": "^2.8.0", 45 | "require-all": "^2.2.0", 46 | "sugar-date": "^2.0.4", 47 | "uuid": "^3.1.0", 48 | "yargs": "^10.0.3" 49 | }, 50 | "bin": { 51 | "blezer": "cli.js" 52 | }, 53 | "devDependencies": { 54 | "chai": "^4.1.2", 55 | "chai-http": "^3.0.0", 56 | "eslint": "^4.13.1", 57 | "mocha": "^4.0.1", 58 | "nodemon": "^1.12.7", 59 | "redis-mock": "^0.20.0" 60 | }, 61 | "scripts": { 62 | "check": "eslint .", 63 | "test": "mocha", 64 | "web": "nodemon -e html,js -w . -w lib/web/views lib/web/app.js" 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | const chai = require('chai'); 2 | const chaiHttp = require('chai-http'); 3 | 4 | chai.use(chaiHttp); 5 | const expect = chai.expect; 6 | 7 | const Job = require('../lib/job'); 8 | const Queue = require('../lib/queue'); 9 | const { enqueue } = require('../'); 10 | 11 | let server; 12 | 13 | before(() => { 14 | server = require('../ui/server')(3000); 15 | }); 16 | 17 | 18 | beforeEach(() => {}); 19 | 20 | async function timeout(ms) { 21 | return new Promise(resolve => setTimeout(resolve, ms)); 22 | } 23 | 24 | describe('Job', () => { 25 | it('create a job with a specific task', async () => { 26 | const job = await new Job('default', 'BooWorker', [1, 'arg1', true], 'BooWorker Title'); 27 | 28 | expect(job.queue).to.be.equal('default'); 29 | expect(job.task).to.be.equal('BooWorker'); 30 | expect(job.title).to.be.equal('BooWorker Title'); 31 | expect(job.args).to.be.an('array'); 32 | }); 33 | 34 | it('create a job with a specific task, without title', async () => { 35 | const job = await new Job('default', 'BooWorker', [1, 'arg1', true]); 36 | 37 | expect(job.queue).to.be.equal('default'); 38 | expect(job.task).to.be.equal('BooWorker'); 39 | expect(job.title).to.be.empty; 40 | expect(job.args).to.be.an('array'); 41 | }); 42 | 43 | it('enque a job via Queue', async () => { 44 | const queue = new Queue(); 45 | const job = await queue.enqueue('BooWorker', [1, 'arg1', true], 'BooWorker Title'); 46 | 47 | expect(job.queue).to.be.equal('default'); 48 | expect(job.task).to.be.equal('BooWorker'); 49 | expect(job.title).to.be.equal('BooWorker Title'); 50 | expect(job.args).to.be.an('array'); 51 | }); 52 | 53 | it('enque a job using a helper with specific queue', async () => { 54 | const job = await enqueue('BooWorker', [1, 'arg1', true], { name: 'high' }); 55 | 56 | expect(job.queue).to.be.equal('high'); 57 | expect(job.task).to.be.equal('BooWorker'); 58 | expect(job.args).to.be.an('array'); 59 | }); 60 | 61 | it('enque a job using a helper with default queue', async () => { 62 | const job = await enqueue('BooWorker', [1, 'arg1', true]); 63 | 64 | expect(job.queue).to.be.equal('default'); 65 | expect(job.task).to.be.equal('BooWorker'); 66 | expect(job.args).to.be.an('array'); 67 | }); 68 | 69 | it('enqueue a new job ', async () => { 70 | const job = await new Job('default', 'BooWorker', [1, 'arg1', true]); 71 | await timeout(10); 72 | job.emit('enqueued'); 73 | 74 | expect(job.createdAt).to.exist; 75 | expect(job.enqueuedAt).to.exist; 76 | expect(job.enqueuedAt).not.to.be.equal(job.createdAt); 77 | }); 78 | 79 | it('enqueue a new job via API', async () => { 80 | const response = await chai.request(server) 81 | .post('/api/enqueue') 82 | .send({ task: 'LoopTask', args: '{ "a": { "b": { "c": 2 } } }'}); 83 | 84 | expect(response).to.have.status(201); 85 | expect(response).to.have.header('location'); 86 | expect(response).to.be.json; 87 | expect(response.body.task).to.exist; 88 | }); 89 | 90 | }); 91 | -------------------------------------------------------------------------------- /ui/api.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const Promise = require('bluebird'); 15 | const { ok, created } = require('huncwot/response'); 16 | const cluster = require('cluster'); 17 | 18 | const Queue = require('../lib/queue'); 19 | const Job = require('../lib/job'); 20 | const Stats = require('../lib/stats'); 21 | 22 | async function all(request) { 23 | const queues = await Queue.all; 24 | return ok(queues); 25 | } 26 | 27 | async function job(request) { 28 | const { jid } = request.params; 29 | 30 | let logs = await Job.logs(jid); 31 | let job = await Job.find(jid); 32 | let progress = job.progress || 100; 33 | let args = JSON.stringify(job.args, null, 4); 34 | 35 | return ok({ jid, job, args, logs, progress }); 36 | } 37 | 38 | async function remove(request) { 39 | const { jid } = request.params; 40 | 41 | try { 42 | await Job.remove(jid); 43 | } catch (error) { 44 | console.error(error); 45 | } 46 | 47 | return ok(jid); 48 | } 49 | 50 | async function removeJobs(request) { 51 | const { status } = request.params; 52 | 53 | if (!/(^active$)|(^processed$)|(^failed$)/.test(status)) { 54 | return ok(false); 55 | } 56 | 57 | const job = await Job.empty(status); 58 | 59 | return ok(); 60 | } 61 | 62 | 63 | async function retry(request) { 64 | const { jid } = request.params; 65 | 66 | const job = await Job.find(jid); 67 | 68 | try { 69 | await Job.retry(job.queue, jid); 70 | } catch (error) { 71 | console.log(error); 72 | } 73 | 74 | return ok(job); 75 | } 76 | 77 | async function jobs(request) { 78 | const { status } = request.params; 79 | let jobs = []; 80 | 81 | switch (status) { 82 | case 'active': 83 | jobs = await Job.active(); 84 | break; 85 | case 'failed': 86 | jobs = await Job.failed(); 87 | break; 88 | case 'processed': 89 | jobs = await Job.processed(); 90 | break; 91 | default: 92 | } 93 | 94 | return ok(jobs); 95 | } 96 | 97 | async function size(request) { 98 | const { name } = request.params; 99 | const queue = new Queue(name); 100 | const size = await queue.size; 101 | 102 | return ok(size); 103 | } 104 | 105 | async function enqueue(request) { 106 | let { name, task, args, title } = request.params; 107 | args = JSON.parse(args); 108 | 109 | const queue = new Queue(name); 110 | const job = await queue.enqueue(task, args, title); 111 | 112 | return created(job, { 'location': `/jobs/${job.jid}` }); 113 | } 114 | 115 | async function stats(request) { 116 | const stats = await Promise.all([ 117 | Stats.active, 118 | Stats.processed, 119 | Stats.failed, 120 | Stats.enqueued, 121 | ]).spread((active, processed, failed, enqueued) => ({ 122 | processed, 123 | failed, 124 | active, 125 | enqueued, 126 | })); 127 | 128 | return ok(stats); 129 | } 130 | 131 | async function search(request) { 132 | return ''; 133 | } 134 | 135 | module.exports = { all, size, enqueue, stats, search, jobs, job, remove, retry, removeJobs}; 136 | -------------------------------------------------------------------------------- /ui/assets/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | } 4 | 5 | h1 { 6 | margin-bottom: 20px; 7 | padding-bottom: 9px; 8 | border-bottom: 1px solid #eee; 9 | } 10 | 11 | .sidebar { 12 | position: fixed; 13 | top: 51px; 14 | bottom: 0; 15 | left: 0; 16 | z-index: 1000; 17 | padding: 20px; 18 | overflow-x: hidden; 19 | overflow-y: auto; 20 | /* Scrollable contents if viewport is shorter than content. */ 21 | border-right: 1px solid #eee; 22 | } 23 | 24 | .sidebar { 25 | padding-left: 0; 26 | padding-right: 0; 27 | } 28 | 29 | .sidebar .nav { 30 | margin-bottom: 20px; 31 | } 32 | 33 | .sidebar .nav-item { 34 | width: 100%; 35 | } 36 | 37 | .sidebar .nav-item.active { 38 | background-color: #DDD; 39 | } 40 | 41 | .sidebar .nav-item+.nav-item { 42 | margin-left: 0; 43 | } 44 | 45 | .sidebar .nav-link { 46 | border-radius: 0; 47 | } 48 | 49 | .placeholders { 50 | padding-bottom: 3rem; 51 | } 52 | 53 | .placeholder img { 54 | padding-top: 1.5rem; 55 | padding-bottom: 1.5rem; 56 | } 57 | 58 | .terminal { 59 | float: left; 60 | margin: 0; 61 | padding: 0; 62 | font-family: Menlo, Courier New; 63 | font-size: 16px; 64 | text-rendering: optimizeLegibility; 65 | color: #EFEFEF; 66 | padding: 10px; 67 | cursor: text; 68 | counter-reset: input; 69 | list-style: none; 70 | background-color: #454545; 71 | width: 100%; 72 | } 73 | 74 | .search { 75 | width: 100%; 76 | padding: .5rem; 77 | margin: 1rem 0; 78 | } 79 | 80 | .bar { 81 | display: block; 82 | padding: 15px 20px; 83 | font-weight: 700; 84 | color: #fff; 85 | text-align: right; 86 | text-transform: uppercase; 87 | } 88 | 89 | .bar.staging { 90 | background-color: #1abc9c; 91 | } 92 | 93 | .bar.production { 94 | background-color: #9b59b6; 95 | } 96 | 97 | pre { 98 | border-radius: 2px; 99 | padding: 0; 100 | font-family: Menlo, Courier New; 101 | font-size: 16px; 102 | text-rendering: optimizeLegibility; 103 | color: #454545; 104 | padding: 10px; 105 | cursor: text; 106 | counter-reset: input; 107 | list-style: none; 108 | background-color: #EFEFEF; 109 | width: 100%; 110 | } 111 | -------------------------------------------------------------------------------- /ui/components/root/index.marko: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | class { 4 | onCreate() { 5 | this.state = { 6 | processed: 0, 7 | failed: 0, 8 | active: 0, 9 | enqueued: 0, 10 | } 11 | } 12 | onMount() { 13 | axios.get('/api/stats') 14 | .then(response => this.state = response.data); 15 | } 16 | } 17 | style {} 18 | 19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | Processed 27 |
28 |
29 |

${state.processed}

30 |

jobs

31 | See 32 |
33 | 36 |
37 |
38 |
39 |
40 |
41 | Failed 42 |
43 |
44 |

${state.failed}

45 |

jobs

46 | See 47 |
48 | 51 |
52 |
53 |
54 |
55 |
56 | Active 57 |
58 |
59 |

${state.active}

60 |

jobs

61 | See 62 |
63 | 66 |
67 |
68 |
69 |
70 |
71 | Enqueued 72 |
73 |
74 |

${state.enqueued}

75 |

jobs

76 | See 77 |
78 | 81 |
82 |
83 |
84 |
85 |
86 |
87 | -------------------------------------------------------------------------------- /ui/pages/index.marko: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /ui/pages/jobs/index.marko: -------------------------------------------------------------------------------- 1 | import Sugar from 'sugar-date'; 2 | 3 | static { 4 | Sugar.Date.extend(); 5 | Sugar.Number.extend(); 6 | 7 | function truncate(value, length) { 8 | return value.substring(0, length); 9 | } 10 | 11 | function relative(date) { 12 | return Date.create(parseInt(date)).relative() 13 | } 14 | } 15 | 16 | 17 | <@body> 18 | 19 |
20 |
21 |
22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 45 | 46 | 47 | 48 | 49 | 50 | 70 | 71 | 72 |
JIDQueueTaskTitleStarted%
43 | ${truncate(job.jid, 8)} 44 | ${job.queue}${job.task}${job.title}${relative(job.startedAt)}${job.progress} 51 |
52 | Show 53 |
59 | 60 |
61 |
66 | 67 |
68 |
69 |
73 |
74 |
75 |
76 |
77 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /ui/pages/jobs/show.marko: -------------------------------------------------------------------------------- 1 | import Sugar from 'sugar-date'; 2 | 3 | static { 4 | Sugar.Date.extend(); 5 | Sugar.Number.extend(); 6 | 7 | function duration(fromDate, toDate) { 8 | const finished = Date.create(parseInt(fromDate)); 9 | const started = Date.create(parseInt(toDate)); 10 | return (finished - started).duration() 11 | } 12 | } 13 | 14 | 15 | <@body> 16 | 17 |
18 |
19 |
20 |

Job: ${input.jid}

21 |
22 |
23 |
24 |
25 | 26 |
31 | 32 |
33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 |
Task
${input.job.task}
Queue
${input.job.queue}
Title
${input.job.title}
Duration
${duration(input.job.finishedAt, input.job.startedAt)}
Args
${input.args}
58 | 59 | 60 |
    61 |
  • ${log}
  • 62 |
63 |
64 |
65 |
66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /ui/pages/layout.marko: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ui/pages/nav.html: -------------------------------------------------------------------------------- 1 | 30 |
{{ env }}
31 | -------------------------------------------------------------------------------- /ui/pages/queues/index.marko: -------------------------------------------------------------------------------- 1 | 2 | <@body> 3 | 4 |
5 |
6 |
7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 29 | 30 | 31 |
#QueueSizeActions
${loop.getIndex() + 1}${name}${size} 22 |
23 | Show 24 |
25 | 26 |
27 |
28 |
32 |
33 |
34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /ui/pages/queues/show.marko: -------------------------------------------------------------------------------- 1 | 2 | <@body> 3 |
4 |
5 |
6 |

Queue: ${input.id}

7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 30 | 33 | 34 | 35 |
JIDWorkerQueueProgress
${job.jid}${job.task}${job.queue} 25 |
26 |
27 |
28 |
29 |
31 | Show 32 |
36 |
37 |
38 |
39 |
40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ui/pages/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | } 4 | 5 | h1 { 6 | margin-bottom: 20px; 7 | padding-bottom: 9px; 8 | border-bottom: 1px solid #eee; 9 | } 10 | 11 | .sidebar { 12 | position: fixed; 13 | top: 51px; 14 | bottom: 0; 15 | left: 0; 16 | z-index: 1000; 17 | padding: 20px; 18 | overflow-x: hidden; 19 | overflow-y: auto; 20 | /* Scrollable contents if viewport is shorter than content. */ 21 | border-right: 1px solid #eee; 22 | } 23 | 24 | .sidebar { 25 | padding-left: 0; 26 | padding-right: 0; 27 | } 28 | 29 | .sidebar .nav { 30 | margin-bottom: 20px; 31 | } 32 | 33 | .sidebar .nav-item { 34 | width: 100%; 35 | } 36 | 37 | .sidebar .nav-item.active { 38 | background-color: #DDD; 39 | } 40 | 41 | .sidebar .nav-item+.nav-item { 42 | margin-left: 0; 43 | } 44 | 45 | .sidebar .nav-link { 46 | border-radius: 0; 47 | } 48 | 49 | .placeholders { 50 | padding-bottom: 3rem; 51 | } 52 | 53 | .placeholder img { 54 | padding-top: 1.5rem; 55 | padding-bottom: 1.5rem; 56 | } 57 | 58 | .terminal { 59 | float: left; 60 | margin: 0; 61 | padding: 0; 62 | font-family: Menlo, Courier New; 63 | font-size: 16px; 64 | text-rendering: optimizeLegibility; 65 | color: #EFEFEF; 66 | padding: 10px; 67 | cursor: text; 68 | counter-reset: input; 69 | list-style: none; 70 | background-color: #454545; 71 | width: 100%; 72 | } 73 | 74 | .search { 75 | width: 100%; 76 | padding: .5rem; 77 | margin: 1rem 0; 78 | } 79 | 80 | .bar { 81 | display: block; 82 | padding: 15px 20px; 83 | font-weight: 700; 84 | color: #fff; 85 | text-align: right; 86 | text-transform: uppercase; 87 | } 88 | 89 | .bar.staging { 90 | background-color: #1abc9c; 91 | } 92 | 93 | .bar.production { 94 | background-color: #9b59b6; 95 | } 96 | 97 | pre { 98 | border-radius: 2px; 99 | padding: 0; 100 | font-family: Menlo, Courier New; 101 | font-size: 16px; 102 | text-rendering: optimizeLegibility; 103 | color: #454545; 104 | padding: 10px; 105 | cursor: text; 106 | counter-reset: input; 107 | list-style: none; 108 | background-color: #EFEFEF; 109 | width: 100%; 110 | } 111 | -------------------------------------------------------------------------------- /ui/pages/tasks/index.marko: -------------------------------------------------------------------------------- 1 | 2 | <@body> 3 | 4 |
5 |
6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 22 | 23 | 24 |
Name
{{ _.name }} 20 | Run 21 |
25 |
26 |
27 |
28 |
29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /ui/routes/home.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const Stats = require('../../lib/stats'); 15 | const env = process.env.BLEZER_ENV; 16 | 17 | const { page } = require('huncwot/view'); 18 | 19 | async function dashboard(ctx, next) { 20 | const stats = await Promise.all([ 21 | Stats.processed, 22 | Stats.failed, 23 | Stats.active, 24 | Stats.enqueued]); 25 | 26 | return page('index', { stats, env }); 27 | } 28 | 29 | module.exports = { 30 | dashboard, 31 | }; 32 | -------------------------------------------------------------------------------- /ui/routes/index.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const queues = require('./queues'); 15 | const jobs = require('./jobs'); 16 | const home = require('./home'); 17 | // const tasks = require('./tasks'); 18 | 19 | module.exports = { 20 | queues, 21 | jobs, 22 | home, 23 | // tasks, 24 | }; 25 | -------------------------------------------------------------------------------- /ui/routes/jobs.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License.const Promise = require('bluebird'); 13 | 14 | const cluster = require('cluster'); 15 | const { redirect } = require('huncwot/response'); 16 | const { page } = require('huncwot/view'); 17 | 18 | const Job = require('../../lib/job'); 19 | 20 | async function show(request) { 21 | const { jid } = request.params; 22 | 23 | let logs = await Job.logs(jid); 24 | let job = await Job.find(jid); 25 | let progress = job.progress || 100; 26 | let args = JSON.stringify(job.args, null, 4); 27 | 28 | return page('jobs/show', { jid, job, args, logs, progress }); 29 | } 30 | 31 | async function index(request) { 32 | const { status } = request.params; 33 | 34 | let jobs = []; 35 | 36 | switch (status) { 37 | case 'active': 38 | jobs = await Job.active(); 39 | break; 40 | case 'failed': 41 | jobs = await Job.failed(); 42 | break; 43 | case 'processed': 44 | jobs = await Job.processed(); 45 | break; 46 | default: 47 | } 48 | 49 | return page('jobs/index', { jobs, status }); 50 | } 51 | 52 | async function remove(request) { 53 | const { status } = request.params; 54 | 55 | const job = await Job.empty(status); 56 | 57 | return redirect('/jobs?status=active', `Emptying ${status} for ${job.jid}...`); 58 | } 59 | 60 | async function stop(request) { 61 | const { jid, status } = request.params; 62 | 63 | try { 64 | await Job.remove(jid); 65 | } catch (error) { 66 | console.log(error); 67 | } 68 | 69 | 70 | return redirect(`/jobs?status=${status}`); 71 | } 72 | 73 | async function retry(request) { 74 | const { status, jid } = request.params; 75 | 76 | const job = await Job.find(jid); 77 | await Job.retry(job.queue, jid); 78 | 79 | return redirect(`/jobs?status=${status}`); 80 | } 81 | 82 | module.exports = { 83 | index, 84 | show, 85 | remove, 86 | stop, 87 | retry, 88 | }; 89 | -------------------------------------------------------------------------------- /ui/routes/queues.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const { redirect } = require('huncwot/response'); 15 | const { page } = require('huncwot/view'); 16 | 17 | const Stats = require('../../lib/stats'); 18 | const Queue = require('../../lib/queue'); 19 | const Job = require('../../lib/job'); 20 | 21 | async function index(request) { 22 | let queues = await Stats.queues(); 23 | 24 | return page('queues/index', { queues }); 25 | } 26 | 27 | async function show(request) { 28 | const { id } = request.params; 29 | let jobs = await Job.forQueue(id); 30 | 31 | return page('queues/show', { jobs, id }); 32 | } 33 | 34 | async function remove(request) { 35 | const { id } = request.params; 36 | 37 | const queue = await Queue.remove(id); 38 | 39 | return redirect('/queues', `Removing ${id} from ${queue.name} ...`); 40 | } 41 | 42 | module.exports = { 43 | index, 44 | show, 45 | remove, 46 | }; 47 | -------------------------------------------------------------------------------- /ui/routes/tasks.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License.const Promise = require('bluebird'); 13 | 14 | 15 | const { page } = require('huncwot/view'); 16 | const { tasks } = require('../../lib/load.js'); 17 | 18 | function index(request) { 19 | return page('tasks/index', { tasks }); 20 | } 21 | 22 | module.exports = { 23 | index, 24 | }; 25 | -------------------------------------------------------------------------------- /ui/server.js: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Zaiste & contributors. All rights reserved. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // http://www.apache.org/licenses/LICENSE-2.0 7 | // 8 | // Unless required by applicable law or agreed to in writing, software 9 | // distributed under the License is distributed on an "AS IS" BASIS, 10 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | // See the License for the specific language governing permissions and 12 | // limitations under the License. 13 | 14 | const Promise = require('bluebird'); 15 | const Huncwot = require('huncwot'); 16 | 17 | const api = require('./api'); 18 | const { home, queues, jobs, tasks } = require('./routes'); 19 | 20 | function server(port) { 21 | const app = new Huncwot(); 22 | 23 | // API 24 | app.get('/api/jobs', api.jobs); 25 | app.delete('/api/jobs/status/:status', api.removeJobs); 26 | app.get('/api/jobs/:jid', api.job); 27 | app.delete('/api/jobs/:jid', api.remove); 28 | app.post('/api/jobs/:jid/retry', api.retry); 29 | app.get('/api/queues', api.all); 30 | app.post('/api/queues/:name', api.enqueue); 31 | app.get('/api/stats', api.stats); 32 | app.post('/api/enqueue', api.enqueue); 33 | 34 | // Views 35 | 36 | app.get('/', home.dashboard); 37 | app.get('/queues', queues.index); 38 | app.get('/queues/:id', queues.show); 39 | app.post('/queues/:id', queues.remove); 40 | app.get('/jobs', jobs.index); 41 | app.get('/jobs/:jid', jobs.show); 42 | app.post('/jobs/:jid/delete', jobs.stop); 43 | app.post('/jobs/:jid/retry', jobs.retry); 44 | app.post('/jobs', jobs.remove); 45 | // app.get('/tasks', tasks.index); 46 | 47 | return app.listen(port); 48 | } 49 | 50 | module.exports = server; 51 | -------------------------------------------------------------------------------- /ui/util.js: -------------------------------------------------------------------------------- 1 | const nunjucks = require('nunjucks'); 2 | const { html } = require('huncwot/response'); 3 | const { resolve, dirname } = require('path'); 4 | const Sugar = require('sugar-date'); 5 | Sugar.Date.extend(); 6 | Sugar.Number.extend(); 7 | 8 | const env = nunjucks.configure(resolve(dirname(module.filename), 'views'), { autoescape: true }); 9 | env.addFilter('date', (date, format) => { 10 | return Date.create(parseInt(date)).relative() 11 | }); 12 | 13 | env.addFilter('duration', (dates, format) => { 14 | const finished = Date.create(parseInt(dates[0])); 15 | const started = Date.create(parseInt(dates[1])); 16 | return (finished - started).duration() 17 | }); 18 | 19 | env.addFilter('name', (queue, format) => { 20 | return queue.replace(/blezer:queues:/, ''); 21 | }); 22 | 23 | function render(view, bindings) { 24 | return html(nunjucks.render(view, bindings)); 25 | } 26 | 27 | module.exports = { render }; 28 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/async@2.0.45": 6 | version "2.0.45" 7 | resolved "https://registry.yarnpkg.com/@types/async/-/async-2.0.45.tgz#0cfe971d7ed5542695740338e0455c91078a0e83" 8 | 9 | "@types/zen-observable@0.5.3", "@types/zen-observable@^0.5.3": 10 | version "0.5.3" 11 | resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.5.3.tgz#91b728599544efbb7386d8b6633693a3c2e7ade5" 12 | 13 | a-sync-waterfall@^1.0.0: 14 | version "1.0.0" 15 | resolved "https://registry.yarnpkg.com/a-sync-waterfall/-/a-sync-waterfall-1.0.0.tgz#38e8319d79379e24628845b53b96722b29e0e47c" 16 | 17 | abbrev@1: 18 | version "1.1.0" 19 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 20 | 21 | acorn-jsx@^3.0.0: 22 | version "3.0.1" 23 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 24 | dependencies: 25 | acorn "^3.0.4" 26 | 27 | acorn@^3.0.4: 28 | version "3.3.0" 29 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 30 | 31 | acorn@^5.2.1: 32 | version "5.2.1" 33 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" 34 | 35 | ajv-keywords@^1.0.0: 36 | version "1.5.1" 37 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 38 | 39 | ajv@^4.7.0, ajv@^4.9.1: 40 | version "4.11.8" 41 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 42 | dependencies: 43 | co "^4.6.0" 44 | json-stable-stringify "^1.0.1" 45 | 46 | ajv@^5.3.0: 47 | version "5.4.0" 48 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.4.0.tgz#32d1cf08dbc80c432f426f12e10b2511f6b46474" 49 | dependencies: 50 | co "^4.6.0" 51 | fast-deep-equal "^1.0.0" 52 | fast-json-stable-stringify "^2.0.0" 53 | json-schema-traverse "^0.3.0" 54 | 55 | align-text@^0.1.1, align-text@^0.1.3: 56 | version "0.1.4" 57 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 58 | dependencies: 59 | kind-of "^3.0.2" 60 | longest "^1.0.1" 61 | repeat-string "^1.5.2" 62 | 63 | amdefine@>=0.0.4: 64 | version "1.0.1" 65 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 66 | 67 | ansi-align@^2.0.0: 68 | version "2.0.0" 69 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 70 | dependencies: 71 | string-width "^2.0.0" 72 | 73 | ansi-escapes@^2.0.0: 74 | version "2.0.0" 75 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 76 | 77 | ansi-regex@^2.0.0: 78 | version "2.1.1" 79 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 80 | 81 | ansi-regex@^3.0.0: 82 | version "3.0.0" 83 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 84 | 85 | ansi-styles@^2.2.1: 86 | version "2.2.1" 87 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 88 | 89 | ansi-styles@^3.1.0: 90 | version "3.1.0" 91 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" 92 | dependencies: 93 | color-convert "^1.0.0" 94 | 95 | anymatch@^1.3.0: 96 | version "1.3.0" 97 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 98 | dependencies: 99 | arrify "^1.0.0" 100 | micromatch "^2.1.5" 101 | 102 | apollo-cache-control@^0.0.x: 103 | version "0.0.7" 104 | resolved "https://registry.yarnpkg.com/apollo-cache-control/-/apollo-cache-control-0.0.7.tgz#ffef56413a429a1ce204be5b78d248c4fe3b67ac" 105 | dependencies: 106 | graphql-extensions "^0.0.x" 107 | 108 | apollo-cache@^1.0.1: 109 | version "1.0.1" 110 | resolved "https://registry.yarnpkg.com/apollo-cache/-/apollo-cache-1.0.1.tgz#66c16141173bc752d3ad3dce990310c10dfc4076" 111 | dependencies: 112 | apollo-utilities "^1.0.2" 113 | 114 | apollo-client@^2.0.3: 115 | version "2.0.3" 116 | resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-2.0.3.tgz#f99f32e2c851bbd52da1e1b113ce8f6a0cf94945" 117 | dependencies: 118 | "@types/zen-observable" "^0.5.3" 119 | apollo-cache "^1.0.1" 120 | apollo-link "^1.0.0" 121 | apollo-link-dedup "^1.0.0" 122 | apollo-utilities "^1.0.2" 123 | symbol-observable "^1.0.2" 124 | zen-observable "^0.6.0" 125 | optionalDependencies: 126 | "@types/async" "2.0.45" 127 | 128 | apollo-link-dedup@^1.0.0: 129 | version "1.0.2" 130 | resolved "https://registry.yarnpkg.com/apollo-link-dedup/-/apollo-link-dedup-1.0.2.tgz#bab659dde41f8dd627839142d4dad90e55251110" 131 | 132 | apollo-link@^1.0.0: 133 | version "1.0.3" 134 | resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.0.3.tgz#759c36abeeb99e227eca45f919ee07fb8fee911e" 135 | dependencies: 136 | "@types/zen-observable" "0.5.3" 137 | apollo-utilities "^1.0.0" 138 | zen-observable "^0.6.0" 139 | 140 | apollo-server-core@^1.2.0: 141 | version "1.2.0" 142 | resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-1.2.0.tgz#e851c47444991b6f89f88529237076b83e01e8ee" 143 | dependencies: 144 | apollo-cache-control "^0.0.x" 145 | apollo-tracing "^0.1.0" 146 | graphql-extensions "^0.0.x" 147 | 148 | apollo-server-module-graphiql@^1.2.0: 149 | version "1.2.0" 150 | resolved "https://registry.yarnpkg.com/apollo-server-module-graphiql/-/apollo-server-module-graphiql-1.2.0.tgz#899d84f3b747795dbbfc8354aa51622ef038151c" 151 | 152 | apollo-tracing@^0.1.0: 153 | version "0.1.1" 154 | resolved "https://registry.yarnpkg.com/apollo-tracing/-/apollo-tracing-0.1.1.tgz#7a5707543fc102f81cda7ba45b98331a82a6750b" 155 | dependencies: 156 | graphql-extensions "^0.0.x" 157 | 158 | apollo-utilities@^1.0.0, apollo-utilities@^1.0.1, apollo-utilities@^1.0.2: 159 | version "1.0.2" 160 | resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.2.tgz#bcf348a7e613e82e2624ddb5be2b9f6bf1259c6d" 161 | 162 | app-module-path@^1.1.0: 163 | version "1.1.0" 164 | resolved "https://registry.yarnpkg.com/app-module-path/-/app-module-path-1.1.0.tgz#a6ac5368450f209b9f5b86e9a3e4a6ab6fe7531c" 165 | 166 | app-module-path@^2.2.0: 167 | version "2.2.0" 168 | resolved "https://registry.yarnpkg.com/app-module-path/-/app-module-path-2.2.0.tgz#641aa55dfb7d6a6f0a8141c4b9c0aa50b6c24dd5" 169 | 170 | app-root-dir@^1.0.2: 171 | version "1.0.2" 172 | resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" 173 | 174 | aproba@^1.0.3: 175 | version "1.1.2" 176 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 177 | 178 | are-we-there-yet@~1.1.2: 179 | version "1.1.4" 180 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 181 | dependencies: 182 | delegates "^1.0.0" 183 | readable-stream "^2.0.6" 184 | 185 | argly@^1.0.0: 186 | version "1.2.0" 187 | resolved "https://registry.yarnpkg.com/argly/-/argly-1.2.0.tgz#2b274e4551a29ff5e7199d2ed9788eb66ed36e60" 188 | 189 | argparse@^1.0.7: 190 | version "1.0.9" 191 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 192 | dependencies: 193 | sprintf-js "~1.0.2" 194 | 195 | arr-diff@^2.0.0: 196 | version "2.0.0" 197 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 198 | dependencies: 199 | arr-flatten "^1.0.1" 200 | 201 | arr-flatten@^1.0.1: 202 | version "1.0.3" 203 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 204 | 205 | array-union@^1.0.1: 206 | version "1.0.2" 207 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 208 | dependencies: 209 | array-uniq "^1.0.1" 210 | 211 | array-uniq@^1.0.1: 212 | version "1.0.3" 213 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 214 | 215 | array-unique@^0.2.1: 216 | version "0.2.1" 217 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 218 | 219 | arrify@^1.0.0: 220 | version "1.0.1" 221 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 222 | 223 | asap@^2.0.3: 224 | version "2.0.6" 225 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 226 | 227 | asn1@~0.2.3: 228 | version "0.2.3" 229 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 230 | 231 | assert-plus@1.0.0, assert-plus@^1.0.0: 232 | version "1.0.0" 233 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 234 | 235 | assert-plus@^0.2.0: 236 | version "0.2.0" 237 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 238 | 239 | assert@^1.1.2: 240 | version "1.4.1" 241 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 242 | dependencies: 243 | util "0.10.3" 244 | 245 | assertion-error@^1.0.1: 246 | version "1.0.2" 247 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 248 | 249 | async-each@^1.0.0: 250 | version "1.0.1" 251 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 252 | 253 | async@^0.9.2: 254 | version "0.9.2" 255 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 256 | 257 | async@^1.5.2: 258 | version "1.5.2" 259 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 260 | 261 | asynckit@^0.4.0: 262 | version "0.4.0" 263 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 264 | 265 | aws-sign2@~0.6.0: 266 | version "0.6.0" 267 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 268 | 269 | aws4@^1.2.1: 270 | version "1.6.0" 271 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 272 | 273 | axios@^0.17.1: 274 | version "0.17.1" 275 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.17.1.tgz#2d8e3e5d0bdbd7327f91bc814f5c57660f81824d" 276 | dependencies: 277 | follow-redirects "^1.2.5" 278 | is-buffer "^1.1.5" 279 | 280 | babel-code-frame@^6.22.0: 281 | version "6.22.0" 282 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 283 | dependencies: 284 | chalk "^1.1.0" 285 | esutils "^2.0.2" 286 | js-tokens "^3.0.0" 287 | 288 | babel-core@^6.24.1, babel-core@^6.7.6: 289 | version "6.24.1" 290 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 291 | dependencies: 292 | babel-code-frame "^6.22.0" 293 | babel-generator "^6.24.1" 294 | babel-helpers "^6.24.1" 295 | babel-messages "^6.23.0" 296 | babel-register "^6.24.1" 297 | babel-runtime "^6.22.0" 298 | babel-template "^6.24.1" 299 | babel-traverse "^6.24.1" 300 | babel-types "^6.24.1" 301 | babylon "^6.11.0" 302 | convert-source-map "^1.1.0" 303 | debug "^2.1.1" 304 | json5 "^0.5.0" 305 | lodash "^4.2.0" 306 | minimatch "^3.0.2" 307 | path-is-absolute "^1.0.0" 308 | private "^0.1.6" 309 | slash "^1.0.0" 310 | source-map "^0.5.0" 311 | 312 | babel-generator@^6.24.1: 313 | version "6.24.1" 314 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 315 | dependencies: 316 | babel-messages "^6.23.0" 317 | babel-runtime "^6.22.0" 318 | babel-types "^6.24.1" 319 | detect-indent "^4.0.0" 320 | jsesc "^1.3.0" 321 | lodash "^4.2.0" 322 | source-map "^0.5.0" 323 | trim-right "^1.0.1" 324 | 325 | babel-helper-call-delegate@^6.24.1: 326 | version "6.24.1" 327 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 328 | dependencies: 329 | babel-helper-hoist-variables "^6.24.1" 330 | babel-runtime "^6.22.0" 331 | babel-traverse "^6.24.1" 332 | babel-types "^6.24.1" 333 | 334 | babel-helper-define-map@^6.24.1: 335 | version "6.24.1" 336 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 337 | dependencies: 338 | babel-helper-function-name "^6.24.1" 339 | babel-runtime "^6.22.0" 340 | babel-types "^6.24.1" 341 | lodash "^4.2.0" 342 | 343 | babel-helper-function-name@^6.24.1: 344 | version "6.24.1" 345 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 346 | dependencies: 347 | babel-helper-get-function-arity "^6.24.1" 348 | babel-runtime "^6.22.0" 349 | babel-template "^6.24.1" 350 | babel-traverse "^6.24.1" 351 | babel-types "^6.24.1" 352 | 353 | babel-helper-get-function-arity@^6.24.1: 354 | version "6.24.1" 355 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 356 | dependencies: 357 | babel-runtime "^6.22.0" 358 | babel-types "^6.24.1" 359 | 360 | babel-helper-hoist-variables@^6.24.1: 361 | version "6.24.1" 362 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 363 | dependencies: 364 | babel-runtime "^6.22.0" 365 | babel-types "^6.24.1" 366 | 367 | babel-helper-optimise-call-expression@^6.24.1: 368 | version "6.24.1" 369 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 370 | dependencies: 371 | babel-runtime "^6.22.0" 372 | babel-types "^6.24.1" 373 | 374 | babel-helper-regex@^6.24.1: 375 | version "6.24.1" 376 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 377 | dependencies: 378 | babel-runtime "^6.22.0" 379 | babel-types "^6.24.1" 380 | lodash "^4.2.0" 381 | 382 | babel-helper-replace-supers@^6.24.1: 383 | version "6.24.1" 384 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 385 | dependencies: 386 | babel-helper-optimise-call-expression "^6.24.1" 387 | babel-messages "^6.23.0" 388 | babel-runtime "^6.22.0" 389 | babel-template "^6.24.1" 390 | babel-traverse "^6.24.1" 391 | babel-types "^6.24.1" 392 | 393 | babel-helpers@^6.24.1: 394 | version "6.24.1" 395 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 396 | dependencies: 397 | babel-runtime "^6.22.0" 398 | babel-template "^6.24.1" 399 | 400 | babel-messages@^6.23.0: 401 | version "6.23.0" 402 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 403 | dependencies: 404 | babel-runtime "^6.22.0" 405 | 406 | babel-plugin-check-es2015-constants@^6.22.0: 407 | version "6.22.0" 408 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 409 | dependencies: 410 | babel-runtime "^6.22.0" 411 | 412 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 413 | version "6.22.0" 414 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 415 | dependencies: 416 | babel-runtime "^6.22.0" 417 | 418 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 419 | version "6.22.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 421 | dependencies: 422 | babel-runtime "^6.22.0" 423 | 424 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 425 | version "6.24.1" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 427 | dependencies: 428 | babel-runtime "^6.22.0" 429 | babel-template "^6.24.1" 430 | babel-traverse "^6.24.1" 431 | babel-types "^6.24.1" 432 | lodash "^4.2.0" 433 | 434 | babel-plugin-transform-es2015-classes@^6.24.1: 435 | version "6.24.1" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 437 | dependencies: 438 | babel-helper-define-map "^6.24.1" 439 | babel-helper-function-name "^6.24.1" 440 | babel-helper-optimise-call-expression "^6.24.1" 441 | babel-helper-replace-supers "^6.24.1" 442 | babel-messages "^6.23.0" 443 | babel-runtime "^6.22.0" 444 | babel-template "^6.24.1" 445 | babel-traverse "^6.24.1" 446 | babel-types "^6.24.1" 447 | 448 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 449 | version "6.24.1" 450 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 451 | dependencies: 452 | babel-runtime "^6.22.0" 453 | babel-template "^6.24.1" 454 | 455 | babel-plugin-transform-es2015-destructuring@^6.22.0: 456 | version "6.23.0" 457 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 458 | dependencies: 459 | babel-runtime "^6.22.0" 460 | 461 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 462 | version "6.24.1" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 464 | dependencies: 465 | babel-runtime "^6.22.0" 466 | babel-types "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-for-of@^6.22.0: 469 | version "6.23.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | 474 | babel-plugin-transform-es2015-function-name@^6.24.1: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 477 | dependencies: 478 | babel-helper-function-name "^6.24.1" 479 | babel-runtime "^6.22.0" 480 | babel-types "^6.24.1" 481 | 482 | babel-plugin-transform-es2015-literals@^6.22.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | 488 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 489 | version "6.24.1" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 491 | dependencies: 492 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 493 | babel-runtime "^6.22.0" 494 | babel-template "^6.24.1" 495 | 496 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 497 | version "6.24.1" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 499 | dependencies: 500 | babel-plugin-transform-strict-mode "^6.24.1" 501 | babel-runtime "^6.22.0" 502 | babel-template "^6.24.1" 503 | babel-types "^6.24.1" 504 | 505 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 508 | dependencies: 509 | babel-helper-hoist-variables "^6.24.1" 510 | babel-runtime "^6.22.0" 511 | babel-template "^6.24.1" 512 | 513 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 514 | version "6.24.1" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 516 | dependencies: 517 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 518 | babel-runtime "^6.22.0" 519 | babel-template "^6.24.1" 520 | 521 | babel-plugin-transform-es2015-object-super@^6.24.1: 522 | version "6.24.1" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 524 | dependencies: 525 | babel-helper-replace-supers "^6.24.1" 526 | babel-runtime "^6.22.0" 527 | 528 | babel-plugin-transform-es2015-parameters@^6.24.1: 529 | version "6.24.1" 530 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 531 | dependencies: 532 | babel-helper-call-delegate "^6.24.1" 533 | babel-helper-get-function-arity "^6.24.1" 534 | babel-runtime "^6.22.0" 535 | babel-template "^6.24.1" 536 | babel-traverse "^6.24.1" 537 | babel-types "^6.24.1" 538 | 539 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 540 | version "6.24.1" 541 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 542 | dependencies: 543 | babel-runtime "^6.22.0" 544 | babel-types "^6.24.1" 545 | 546 | babel-plugin-transform-es2015-spread@^6.22.0: 547 | version "6.22.0" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 549 | dependencies: 550 | babel-runtime "^6.22.0" 551 | 552 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 553 | version "6.24.1" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 555 | dependencies: 556 | babel-helper-regex "^6.24.1" 557 | babel-runtime "^6.22.0" 558 | babel-types "^6.24.1" 559 | 560 | babel-plugin-transform-es2015-template-literals@^6.22.0: 561 | version "6.22.0" 562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 563 | dependencies: 564 | babel-runtime "^6.22.0" 565 | 566 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 567 | version "6.23.0" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 569 | dependencies: 570 | babel-runtime "^6.22.0" 571 | 572 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 573 | version "6.24.1" 574 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 575 | dependencies: 576 | babel-helper-regex "^6.24.1" 577 | babel-runtime "^6.22.0" 578 | regexpu-core "^2.0.0" 579 | 580 | babel-plugin-transform-regenerator@^6.24.1: 581 | version "6.24.1" 582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 583 | dependencies: 584 | regenerator-transform "0.9.11" 585 | 586 | babel-plugin-transform-strict-mode@^6.24.1: 587 | version "6.24.1" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 589 | dependencies: 590 | babel-runtime "^6.22.0" 591 | babel-types "^6.24.1" 592 | 593 | babel-preset-es2015@^6.1.2: 594 | version "6.24.1" 595 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 596 | dependencies: 597 | babel-plugin-check-es2015-constants "^6.22.0" 598 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 599 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 600 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 601 | babel-plugin-transform-es2015-classes "^6.24.1" 602 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 603 | babel-plugin-transform-es2015-destructuring "^6.22.0" 604 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 605 | babel-plugin-transform-es2015-for-of "^6.22.0" 606 | babel-plugin-transform-es2015-function-name "^6.24.1" 607 | babel-plugin-transform-es2015-literals "^6.22.0" 608 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 609 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 610 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 611 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 612 | babel-plugin-transform-es2015-object-super "^6.24.1" 613 | babel-plugin-transform-es2015-parameters "^6.24.1" 614 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 615 | babel-plugin-transform-es2015-spread "^6.22.0" 616 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 617 | babel-plugin-transform-es2015-template-literals "^6.22.0" 618 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 619 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 620 | babel-plugin-transform-regenerator "^6.24.1" 621 | 622 | babel-register@^6.24.1: 623 | version "6.24.1" 624 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 625 | dependencies: 626 | babel-core "^6.24.1" 627 | babel-runtime "^6.22.0" 628 | core-js "^2.4.0" 629 | home-or-tmp "^2.0.0" 630 | lodash "^4.2.0" 631 | mkdirp "^0.5.1" 632 | source-map-support "^0.4.2" 633 | 634 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 635 | version "6.23.0" 636 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 637 | dependencies: 638 | core-js "^2.4.0" 639 | regenerator-runtime "^0.10.0" 640 | 641 | babel-template@^6.24.1: 642 | version "6.24.1" 643 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 644 | dependencies: 645 | babel-runtime "^6.22.0" 646 | babel-traverse "^6.24.1" 647 | babel-types "^6.24.1" 648 | babylon "^6.11.0" 649 | lodash "^4.2.0" 650 | 651 | babel-traverse@^6.24.1: 652 | version "6.24.1" 653 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 654 | dependencies: 655 | babel-code-frame "^6.22.0" 656 | babel-messages "^6.23.0" 657 | babel-runtime "^6.22.0" 658 | babel-types "^6.24.1" 659 | babylon "^6.15.0" 660 | debug "^2.2.0" 661 | globals "^9.0.0" 662 | invariant "^2.2.0" 663 | lodash "^4.2.0" 664 | 665 | babel-types@^6.19.0, babel-types@^6.24.1: 666 | version "6.24.1" 667 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 668 | dependencies: 669 | babel-runtime "^6.22.0" 670 | esutils "^2.0.2" 671 | lodash "^4.2.0" 672 | to-fast-properties "^1.0.1" 673 | 674 | babylon@^6.11.0, babylon@^6.15.0: 675 | version "6.17.2" 676 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.2.tgz#201d25ef5f892c41bae49488b08db0dd476e9f5c" 677 | 678 | balanced-match@^0.4.1: 679 | version "0.4.2" 680 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 681 | 682 | base64-js@^1.0.2: 683 | version "1.2.0" 684 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 685 | 686 | basic-auth@^2.0.0: 687 | version "2.0.0" 688 | resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.0.tgz#015db3f353e02e56377755f962742e8981e7bbba" 689 | dependencies: 690 | safe-buffer "5.1.1" 691 | 692 | bcrypt-pbkdf@^1.0.0: 693 | version "1.0.1" 694 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 695 | dependencies: 696 | tweetnacl "^0.14.3" 697 | 698 | binary-extensions@^1.0.0: 699 | version "1.8.0" 700 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 701 | 702 | bl@^0.7.0: 703 | version "0.7.0" 704 | resolved "https://registry.yarnpkg.com/bl/-/bl-0.7.0.tgz#3fb0670602ac2878eb770dc2039f1836be62ae5b" 705 | dependencies: 706 | readable-stream "~1.0.2" 707 | 708 | block-stream@*: 709 | version "0.0.9" 710 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 711 | dependencies: 712 | inherits "~2.0.0" 713 | 714 | bluebird@^3.5.1: 715 | version "3.5.1" 716 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 717 | 718 | boom@2.x.x: 719 | version "2.10.1" 720 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 721 | dependencies: 722 | hoek "2.x.x" 723 | 724 | boxen@^1.2.1: 725 | version "1.2.2" 726 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.2.tgz#3f1d4032c30ffea9d4b02c322eaf2ea741dcbce5" 727 | dependencies: 728 | ansi-align "^2.0.0" 729 | camelcase "^4.0.0" 730 | chalk "^2.0.1" 731 | cli-boxes "^1.0.0" 732 | string-width "^2.0.0" 733 | term-size "^1.2.0" 734 | widest-line "^1.0.0" 735 | 736 | brace-expansion@^1.1.7: 737 | version "1.1.7" 738 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 739 | dependencies: 740 | balanced-match "^0.4.1" 741 | concat-map "0.0.1" 742 | 743 | braces@^1.8.2: 744 | version "1.8.5" 745 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 746 | dependencies: 747 | expand-range "^1.8.1" 748 | preserve "^0.2.0" 749 | repeat-element "^1.1.2" 750 | 751 | browser-refresh-client@^1.0.0, browser-refresh-client@^1.1.4: 752 | version "1.1.4" 753 | resolved "https://registry.yarnpkg.com/browser-refresh-client/-/browser-refresh-client-1.1.4.tgz#8e5ff8475fe1d541d2ae81f7a1aea05ae21a6217" 754 | 755 | browser-stdout@1.3.0: 756 | version "1.3.0" 757 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 758 | 759 | buffer@^4.5.1: 760 | version "4.9.1" 761 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 762 | dependencies: 763 | base64-js "^1.0.2" 764 | ieee754 "^1.1.4" 765 | isarray "^1.0.0" 766 | 767 | bytes@3.0.0: 768 | version "3.0.0" 769 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 770 | 771 | caller-path@^0.1.0: 772 | version "0.1.0" 773 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 774 | dependencies: 775 | callsites "^0.2.0" 776 | 777 | callsites@^0.2.0: 778 | version "0.2.0" 779 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 780 | 781 | camelcase@^1.0.2: 782 | version "1.2.1" 783 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 784 | 785 | camelcase@^2.0.1: 786 | version "2.1.1" 787 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 788 | 789 | camelcase@^4.0.0, camelcase@^4.1.0: 790 | version "4.1.0" 791 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 792 | 793 | capture-stack-trace@^1.0.0: 794 | version "1.0.0" 795 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 796 | 797 | caseless@~0.12.0: 798 | version "0.12.0" 799 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 800 | 801 | center-align@^0.1.1: 802 | version "0.1.3" 803 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 804 | dependencies: 805 | align-text "^0.1.3" 806 | lazy-cache "^1.0.3" 807 | 808 | chai-http@^3.0.0: 809 | version "3.0.0" 810 | resolved "https://registry.yarnpkg.com/chai-http/-/chai-http-3.0.0.tgz#5460d8036e1f1a12b0b5b5cbd529e6dc1d31eb4b" 811 | dependencies: 812 | cookiejar "2.0.x" 813 | is-ip "1.0.0" 814 | methods "^1.1.2" 815 | qs "^6.2.0" 816 | superagent "^2.0.0" 817 | 818 | chai@^3.5.0: 819 | version "3.5.0" 820 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 821 | dependencies: 822 | assertion-error "^1.0.1" 823 | deep-eql "^0.1.3" 824 | type-detect "^1.0.0" 825 | 826 | chai@^4.1.2: 827 | version "4.1.2" 828 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.1.2.tgz#0f64584ba642f0f2ace2806279f4f06ca23ad73c" 829 | dependencies: 830 | assertion-error "^1.0.1" 831 | check-error "^1.0.1" 832 | deep-eql "^3.0.0" 833 | get-func-name "^2.0.0" 834 | pathval "^1.0.0" 835 | type-detect "^4.0.0" 836 | 837 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1: 838 | version "1.1.3" 839 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 840 | dependencies: 841 | ansi-styles "^2.2.1" 842 | escape-string-regexp "^1.0.2" 843 | has-ansi "^2.0.0" 844 | strip-ansi "^3.0.0" 845 | supports-color "^2.0.0" 846 | 847 | chalk@^2.0.1: 848 | version "2.0.1" 849 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.0.1.tgz#dbec49436d2ae15f536114e76d14656cdbc0f44d" 850 | dependencies: 851 | ansi-styles "^3.1.0" 852 | escape-string-regexp "^1.0.5" 853 | supports-color "^4.0.0" 854 | 855 | chalk@^2.1.0, chalk@^2.3.0: 856 | version "2.3.0" 857 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 858 | dependencies: 859 | ansi-styles "^3.1.0" 860 | escape-string-regexp "^1.0.5" 861 | supports-color "^4.0.0" 862 | 863 | char-props@^0.1.5, char-props@~0.1.5: 864 | version "0.1.5" 865 | resolved "https://registry.yarnpkg.com/char-props/-/char-props-0.1.5.tgz#5b952f9e20ea21cd08ca7fe135a10f6fe91c109e" 866 | 867 | check-error@^1.0.1: 868 | version "1.0.2" 869 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 870 | 871 | chokidar@^1.6.0, chokidar@^1.7.0: 872 | version "1.7.0" 873 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 874 | dependencies: 875 | anymatch "^1.3.0" 876 | async-each "^1.0.0" 877 | glob-parent "^2.0.0" 878 | inherits "^2.0.1" 879 | is-binary-path "^1.0.0" 880 | is-glob "^2.0.0" 881 | path-is-absolute "^1.0.0" 882 | readdirp "^2.0.0" 883 | optionalDependencies: 884 | fsevents "^1.0.0" 885 | 886 | circular-json@^0.3.1: 887 | version "0.3.1" 888 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 889 | 890 | cli-boxes@^1.0.0: 891 | version "1.0.0" 892 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 893 | 894 | cli-cursor@^2.1.0: 895 | version "2.1.0" 896 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 897 | dependencies: 898 | restore-cursor "^2.0.0" 899 | 900 | cli-width@^2.0.0: 901 | version "2.1.0" 902 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 903 | 904 | cliui@^2.1.0: 905 | version "2.1.0" 906 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 907 | dependencies: 908 | center-align "^0.1.1" 909 | right-align "^0.1.1" 910 | wordwrap "0.0.2" 911 | 912 | cliui@^3.0.3, cliui@^3.2.0: 913 | version "3.2.0" 914 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 915 | dependencies: 916 | string-width "^1.0.1" 917 | strip-ansi "^3.0.1" 918 | wrap-ansi "^2.0.0" 919 | 920 | clone@^0.1.19: 921 | version "0.1.19" 922 | resolved "https://registry.yarnpkg.com/clone/-/clone-0.1.19.tgz#613fb68639b26a494ac53253e15b1a6bd88ada85" 923 | 924 | co@^4.6.0: 925 | version "4.6.0" 926 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 927 | 928 | code-point-at@^1.0.0: 929 | version "1.1.0" 930 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 931 | 932 | color-convert@^1.0.0: 933 | version "1.9.0" 934 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 935 | dependencies: 936 | color-name "^1.1.1" 937 | 938 | color-name@^1.1.1: 939 | version "1.1.2" 940 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.2.tgz#5c8ab72b64bd2215d617ae9559ebb148475cf98d" 941 | 942 | combined-stream@^1.0.5, combined-stream@~1.0.5: 943 | version "1.0.5" 944 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 945 | dependencies: 946 | delayed-stream "~1.0.0" 947 | 948 | commander@2.11.0: 949 | version "2.11.0" 950 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 951 | 952 | complain@^1.0.0: 953 | version "1.0.0" 954 | resolved "https://registry.yarnpkg.com/complain/-/complain-1.0.0.tgz#d7ccbbe342df3ebf37201b2cf3d88b6f00e6f5f5" 955 | 956 | complain@^1.2.0: 957 | version "1.2.0" 958 | resolved "https://registry.yarnpkg.com/complain/-/complain-1.2.0.tgz#85964a2d95ac785d95b004a85dfac8d378293532" 959 | dependencies: 960 | error-stack-parser "^2.0.1" 961 | 962 | component-emitter@^1.2.0: 963 | version "1.2.1" 964 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 965 | 966 | concat-map@0.0.1: 967 | version "0.0.1" 968 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 969 | 970 | concat-stream@^1.6.0: 971 | version "1.6.0" 972 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 973 | dependencies: 974 | inherits "^2.0.3" 975 | readable-stream "^2.2.2" 976 | typedarray "^0.0.6" 977 | 978 | configstore@^3.0.0: 979 | version "3.1.1" 980 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 981 | dependencies: 982 | dot-prop "^4.1.0" 983 | graceful-fs "^4.1.2" 984 | make-dir "^1.0.0" 985 | unique-string "^1.0.0" 986 | write-file-atomic "^2.0.0" 987 | xdg-basedir "^3.0.0" 988 | 989 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 990 | version "1.1.0" 991 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 992 | 993 | convert-source-map@^1.1.0: 994 | version "1.5.0" 995 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 996 | 997 | cookiejar@2.0.x, cookiejar@^2.0.6: 998 | version "2.0.6" 999 | resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.0.6.tgz#0abf356ad00d1c5a219d88d44518046dd026acfe" 1000 | 1001 | core-js@^2.4.0: 1002 | version "2.4.1" 1003 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1004 | 1005 | core-js@^2.5.1: 1006 | version "2.5.1" 1007 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 1008 | 1009 | core-util-is@~1.0.0: 1010 | version "1.0.2" 1011 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1012 | 1013 | create-error-class@^3.0.0: 1014 | version "3.0.2" 1015 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 1016 | dependencies: 1017 | capture-stack-trace "^1.0.0" 1018 | 1019 | cross-spawn@^4.0.0: 1020 | version "4.0.2" 1021 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1022 | dependencies: 1023 | lru-cache "^4.0.1" 1024 | which "^1.2.9" 1025 | 1026 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1027 | version "5.1.0" 1028 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1029 | dependencies: 1030 | lru-cache "^4.0.1" 1031 | shebang-command "^1.2.0" 1032 | which "^1.2.9" 1033 | 1034 | cryptiles@2.x.x: 1035 | version "2.0.5" 1036 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1037 | dependencies: 1038 | boom "2.x.x" 1039 | 1040 | crypto-random-string@^1.0.0: 1041 | version "1.0.0" 1042 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 1043 | 1044 | dashdash@^1.12.0: 1045 | version "1.14.1" 1046 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1047 | dependencies: 1048 | assert-plus "^1.0.0" 1049 | 1050 | debug@3.1.0, debug@^3.0.1, debug@^3.1.0: 1051 | version "3.1.0" 1052 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1053 | dependencies: 1054 | ms "2.0.0" 1055 | 1056 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.8: 1057 | version "2.6.8" 1058 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1059 | dependencies: 1060 | ms "2.0.0" 1061 | 1062 | debug@^2.6.9: 1063 | version "2.6.9" 1064 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1065 | dependencies: 1066 | ms "2.0.0" 1067 | 1068 | debug@~2.2.0: 1069 | version "2.2.0" 1070 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1071 | dependencies: 1072 | ms "0.7.1" 1073 | 1074 | decamelize@^1.0.0, decamelize@^1.1.1: 1075 | version "1.2.0" 1076 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1077 | 1078 | deep-eql@^0.1.3: 1079 | version "0.1.3" 1080 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1081 | dependencies: 1082 | type-detect "0.1.1" 1083 | 1084 | deep-eql@^3.0.0: 1085 | version "3.0.1" 1086 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 1087 | dependencies: 1088 | type-detect "^4.0.0" 1089 | 1090 | deep-extend@~0.4.0: 1091 | version "0.4.2" 1092 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1093 | 1094 | deep-is@~0.1.3: 1095 | version "0.1.3" 1096 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1097 | 1098 | del@^2.0.2: 1099 | version "2.2.2" 1100 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1101 | dependencies: 1102 | globby "^5.0.0" 1103 | is-path-cwd "^1.0.0" 1104 | is-path-in-cwd "^1.0.0" 1105 | object-assign "^4.0.1" 1106 | pify "^2.0.0" 1107 | pinkie-promise "^2.0.0" 1108 | rimraf "^2.2.8" 1109 | 1110 | delayed-stream@~1.0.0: 1111 | version "1.0.0" 1112 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1113 | 1114 | delegates@^1.0.0: 1115 | version "1.0.0" 1116 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1117 | 1118 | depd@1.1.1: 1119 | version "1.1.1" 1120 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" 1121 | 1122 | depd@~1.1.0: 1123 | version "1.1.0" 1124 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1125 | 1126 | deprecated-decorator@^0.1.6: 1127 | version "0.1.6" 1128 | resolved "https://registry.yarnpkg.com/deprecated-decorator/-/deprecated-decorator-0.1.6.tgz#00966317b7a12fe92f3cc831f7583af329b86c37" 1129 | 1130 | deresolve@^1.1.2: 1131 | version "1.1.2" 1132 | resolved "https://registry.yarnpkg.com/deresolve/-/deresolve-1.1.2.tgz#9cf2379c8d2d631dc4b9957294b90e4a72cb6ce0" 1133 | dependencies: 1134 | lasso-package-root "^1.0.0" 1135 | raptor-polyfill "^1.0.2" 1136 | resolve-from "^1.0.1" 1137 | 1138 | destroy@~1.0.4: 1139 | version "1.0.4" 1140 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1141 | 1142 | detect-indent@^4.0.0: 1143 | version "4.0.0" 1144 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1145 | dependencies: 1146 | repeating "^2.0.0" 1147 | 1148 | diff@3.3.1: 1149 | version "3.3.1" 1150 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 1151 | 1152 | dissolve@^0.3.3: 1153 | version "0.3.3" 1154 | resolved "https://registry.yarnpkg.com/dissolve/-/dissolve-0.3.3.tgz#b97ef1ff2989c789cecfb03107e17411fa8be6e5" 1155 | dependencies: 1156 | bl "^0.7.0" 1157 | readable-stream "^1.0.26" 1158 | 1159 | doctrine@^2.0.2: 1160 | version "2.0.2" 1161 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.2.tgz#68f96ce8efc56cc42651f1faadb4f175273b0075" 1162 | dependencies: 1163 | esutils "^2.0.2" 1164 | 1165 | dot-prop@^4.1.0: 1166 | version "4.2.0" 1167 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 1168 | dependencies: 1169 | is-obj "^1.0.0" 1170 | 1171 | double-ended-queue@^2.1.0-0: 1172 | version "2.1.0-0" 1173 | resolved "https://registry.yarnpkg.com/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" 1174 | 1175 | duplexer3@^0.1.4: 1176 | version "0.1.4" 1177 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1178 | 1179 | duplexer@~0.1.1: 1180 | version "0.1.1" 1181 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 1182 | 1183 | ecc-jsbn@~0.1.1: 1184 | version "0.1.1" 1185 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1186 | dependencies: 1187 | jsbn "~0.1.0" 1188 | 1189 | ee-first@1.1.1: 1190 | version "1.1.1" 1191 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1192 | 1193 | error-stack-parser@^2.0.1: 1194 | version "2.0.1" 1195 | resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.0.1.tgz#a3202b8fb03114aa9b40a0e3669e48b2b65a010a" 1196 | dependencies: 1197 | stackframe "^1.0.3" 1198 | 1199 | es6-promise@^3.3.1: 1200 | version "3.3.1" 1201 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 1202 | 1203 | escape-html@~1.0.3: 1204 | version "1.0.3" 1205 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1206 | 1207 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1208 | version "1.0.5" 1209 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1210 | 1211 | escodegen@^1.6.0, escodegen@^1.8.1: 1212 | version "1.8.1" 1213 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1214 | dependencies: 1215 | esprima "^2.7.1" 1216 | estraverse "^1.9.1" 1217 | esutils "^2.0.2" 1218 | optionator "^0.8.1" 1219 | optionalDependencies: 1220 | source-map "~0.2.0" 1221 | 1222 | eslint-scope@^3.7.1: 1223 | version "3.7.1" 1224 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1225 | dependencies: 1226 | esrecurse "^4.1.0" 1227 | estraverse "^4.1.1" 1228 | 1229 | eslint@^4.13.1: 1230 | version "4.13.1" 1231 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.13.1.tgz#0055e0014464c7eb7878caf549ef2941992b444f" 1232 | dependencies: 1233 | ajv "^5.3.0" 1234 | babel-code-frame "^6.22.0" 1235 | chalk "^2.1.0" 1236 | concat-stream "^1.6.0" 1237 | cross-spawn "^5.1.0" 1238 | debug "^3.0.1" 1239 | doctrine "^2.0.2" 1240 | eslint-scope "^3.7.1" 1241 | espree "^3.5.2" 1242 | esquery "^1.0.0" 1243 | estraverse "^4.2.0" 1244 | esutils "^2.0.2" 1245 | file-entry-cache "^2.0.0" 1246 | functional-red-black-tree "^1.0.1" 1247 | glob "^7.1.2" 1248 | globals "^11.0.1" 1249 | ignore "^3.3.3" 1250 | imurmurhash "^0.1.4" 1251 | inquirer "^3.0.6" 1252 | is-resolvable "^1.0.0" 1253 | js-yaml "^3.9.1" 1254 | json-stable-stringify-without-jsonify "^1.0.1" 1255 | levn "^0.3.0" 1256 | lodash "^4.17.4" 1257 | minimatch "^3.0.2" 1258 | mkdirp "^0.5.1" 1259 | natural-compare "^1.4.0" 1260 | optionator "^0.8.2" 1261 | path-is-inside "^1.0.2" 1262 | pluralize "^7.0.0" 1263 | progress "^2.0.0" 1264 | require-uncached "^1.0.3" 1265 | semver "^5.3.0" 1266 | strip-ansi "^4.0.0" 1267 | strip-json-comments "~2.0.1" 1268 | table "^4.0.1" 1269 | text-table "~0.2.0" 1270 | 1271 | espree@^3.5.2: 1272 | version "3.5.2" 1273 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca" 1274 | dependencies: 1275 | acorn "^5.2.1" 1276 | acorn-jsx "^3.0.0" 1277 | 1278 | esprima@^2.7.1, esprima@^2.7.2: 1279 | version "2.7.3" 1280 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1281 | 1282 | esprima@^3.1.1: 1283 | version "3.1.3" 1284 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1285 | 1286 | esprima@^4.0.0: 1287 | version "4.0.0" 1288 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1289 | 1290 | esquery@^1.0.0: 1291 | version "1.0.0" 1292 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1293 | dependencies: 1294 | estraverse "^4.0.0" 1295 | 1296 | esrecurse@^4.1.0: 1297 | version "4.1.0" 1298 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1299 | dependencies: 1300 | estraverse "~4.1.0" 1301 | object-assign "^4.0.1" 1302 | 1303 | estraverse@^1.9.1: 1304 | version "1.9.3" 1305 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1306 | 1307 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1308 | version "4.2.0" 1309 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1310 | 1311 | estraverse@~4.1.0: 1312 | version "4.1.1" 1313 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1314 | 1315 | esutils@^2.0.2: 1316 | version "2.0.2" 1317 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1318 | 1319 | etag@~1.7.0: 1320 | version "1.7.0" 1321 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" 1322 | 1323 | event-stream@~3.3.0: 1324 | version "3.3.4" 1325 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 1326 | dependencies: 1327 | duplexer "~0.1.1" 1328 | from "~0" 1329 | map-stream "~0.1.0" 1330 | pause-stream "0.0.11" 1331 | split "0.3" 1332 | stream-combiner "~0.0.4" 1333 | through "~2.3.1" 1334 | 1335 | events-light@^1.0.0: 1336 | version "1.0.5" 1337 | resolved "https://registry.yarnpkg.com/events-light/-/events-light-1.0.5.tgz#964e63450ba0af4a6b022aa955b17ffef657b5ee" 1338 | dependencies: 1339 | chai "^3.5.0" 1340 | 1341 | events@^1.0.2: 1342 | version "1.1.1" 1343 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1344 | 1345 | execa@^0.5.0: 1346 | version "0.5.1" 1347 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 1348 | dependencies: 1349 | cross-spawn "^4.0.0" 1350 | get-stream "^2.2.0" 1351 | is-stream "^1.1.0" 1352 | npm-run-path "^2.0.0" 1353 | p-finally "^1.0.0" 1354 | signal-exit "^3.0.0" 1355 | strip-eof "^1.0.0" 1356 | 1357 | execa@^0.7.0: 1358 | version "0.7.0" 1359 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1360 | dependencies: 1361 | cross-spawn "^5.0.1" 1362 | get-stream "^3.0.0" 1363 | is-stream "^1.1.0" 1364 | npm-run-path "^2.0.0" 1365 | p-finally "^1.0.0" 1366 | signal-exit "^3.0.0" 1367 | strip-eof "^1.0.0" 1368 | 1369 | expand-brackets@^0.1.4: 1370 | version "0.1.5" 1371 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1372 | dependencies: 1373 | is-posix-bracket "^0.1.0" 1374 | 1375 | expand-range@^1.8.1: 1376 | version "1.8.2" 1377 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1378 | dependencies: 1379 | fill-range "^2.1.0" 1380 | 1381 | extend@^3.0.0, extend@~3.0.0: 1382 | version "3.0.1" 1383 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1384 | 1385 | external-editor@^2.0.4: 1386 | version "2.0.4" 1387 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" 1388 | dependencies: 1389 | iconv-lite "^0.4.17" 1390 | jschardet "^1.4.2" 1391 | tmp "^0.0.31" 1392 | 1393 | extglob@^0.3.1: 1394 | version "0.3.2" 1395 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1396 | dependencies: 1397 | is-extglob "^1.0.0" 1398 | 1399 | extsprintf@1.0.2: 1400 | version "1.0.2" 1401 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1402 | 1403 | fast-deep-equal@^1.0.0: 1404 | version "1.0.0" 1405 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1406 | 1407 | fast-json-stable-stringify@^2.0.0: 1408 | version "2.0.0" 1409 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1410 | 1411 | fast-levenshtein@~2.0.4: 1412 | version "2.0.6" 1413 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1414 | 1415 | figlet@^1.2.0: 1416 | version "1.2.0" 1417 | resolved "https://registry.yarnpkg.com/figlet/-/figlet-1.2.0.tgz#6c46537378fab649146b5a6143dda019b430b410" 1418 | 1419 | figures@^2.0.0: 1420 | version "2.0.0" 1421 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1422 | dependencies: 1423 | escape-string-regexp "^1.0.5" 1424 | 1425 | file-entry-cache@^2.0.0: 1426 | version "2.0.0" 1427 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1428 | dependencies: 1429 | flat-cache "^1.2.1" 1430 | object-assign "^4.0.1" 1431 | 1432 | filename-regex@^2.0.0: 1433 | version "2.0.1" 1434 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1435 | 1436 | fill-range@^2.1.0: 1437 | version "2.2.3" 1438 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1439 | dependencies: 1440 | is-number "^2.1.0" 1441 | isobject "^2.0.0" 1442 | randomatic "^1.1.3" 1443 | repeat-element "^1.1.2" 1444 | repeat-string "^1.5.2" 1445 | 1446 | find-up@^2.1.0: 1447 | version "2.1.0" 1448 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1449 | dependencies: 1450 | locate-path "^2.0.0" 1451 | 1452 | flat-cache@^1.2.1: 1453 | version "1.2.2" 1454 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1455 | dependencies: 1456 | circular-json "^0.3.1" 1457 | del "^2.0.2" 1458 | graceful-fs "^4.1.2" 1459 | write "^0.2.1" 1460 | 1461 | follow-redirects@^1.2.5: 1462 | version "1.2.5" 1463 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.2.5.tgz#ffd3e14cbdd5eaa72f61b6368c1f68516c2a26cc" 1464 | dependencies: 1465 | debug "^2.6.9" 1466 | 1467 | for-in@^1.0.1: 1468 | version "1.0.2" 1469 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1470 | 1471 | for-own@^0.1.4: 1472 | version "0.1.5" 1473 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1474 | dependencies: 1475 | for-in "^1.0.1" 1476 | 1477 | forever-agent@~0.6.1: 1478 | version "0.6.1" 1479 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1480 | 1481 | form-data@1.0.0-rc4: 1482 | version "1.0.0-rc4" 1483 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.0-rc4.tgz#05ac6bc22227b43e4461f488161554699d4f8b5e" 1484 | dependencies: 1485 | async "^1.5.2" 1486 | combined-stream "^1.0.5" 1487 | mime-types "^2.1.10" 1488 | 1489 | form-data@~2.1.1: 1490 | version "2.1.4" 1491 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1492 | dependencies: 1493 | asynckit "^0.4.0" 1494 | combined-stream "^1.0.5" 1495 | mime-types "^2.1.12" 1496 | 1497 | formidable@^1.0.17: 1498 | version "1.1.1" 1499 | resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.1.1.tgz#96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9" 1500 | 1501 | fresh@0.3.0: 1502 | version "0.3.0" 1503 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" 1504 | 1505 | from@~0: 1506 | version "0.1.7" 1507 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 1508 | 1509 | fs-extra@^4.0.2: 1510 | version "4.0.2" 1511 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.2.tgz#f91704c53d1b461f893452b0c307d9997647ab6b" 1512 | dependencies: 1513 | graceful-fs "^4.1.2" 1514 | jsonfile "^4.0.0" 1515 | universalify "^0.1.0" 1516 | 1517 | fs-extra@^5.0.0: 1518 | version "5.0.0" 1519 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd" 1520 | dependencies: 1521 | graceful-fs "^4.1.2" 1522 | jsonfile "^4.0.0" 1523 | universalify "^0.1.0" 1524 | 1525 | fs.realpath@^1.0.0: 1526 | version "1.0.0" 1527 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1528 | 1529 | fsevents@^1.0.0: 1530 | version "1.1.1" 1531 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1532 | dependencies: 1533 | nan "^2.3.0" 1534 | node-pre-gyp "^0.6.29" 1535 | 1536 | fstream-ignore@^1.0.5: 1537 | version "1.0.5" 1538 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1539 | dependencies: 1540 | fstream "^1.0.0" 1541 | inherits "2" 1542 | minimatch "^3.0.0" 1543 | 1544 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1545 | version "1.0.11" 1546 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1547 | dependencies: 1548 | graceful-fs "^4.1.2" 1549 | inherits "~2.0.0" 1550 | mkdirp ">=0.5 0" 1551 | rimraf "2" 1552 | 1553 | functional-red-black-tree@^1.0.1: 1554 | version "1.0.1" 1555 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1556 | 1557 | gauge@~2.7.3: 1558 | version "2.7.4" 1559 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1560 | dependencies: 1561 | aproba "^1.0.3" 1562 | console-control-strings "^1.0.0" 1563 | has-unicode "^2.0.0" 1564 | object-assign "^4.1.0" 1565 | signal-exit "^3.0.0" 1566 | string-width "^1.0.1" 1567 | strip-ansi "^3.0.1" 1568 | wide-align "^1.1.0" 1569 | 1570 | get-caller-file@^1.0.1: 1571 | version "1.0.2" 1572 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1573 | 1574 | get-func-name@^2.0.0: 1575 | version "2.0.0" 1576 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 1577 | 1578 | get-stream@^2.2.0: 1579 | version "2.3.1" 1580 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 1581 | dependencies: 1582 | object-assign "^4.0.1" 1583 | pinkie-promise "^2.0.0" 1584 | 1585 | get-stream@^3.0.0: 1586 | version "3.0.0" 1587 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1588 | 1589 | getpass@^0.1.1: 1590 | version "0.1.7" 1591 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1592 | dependencies: 1593 | assert-plus "^1.0.0" 1594 | 1595 | glob-base@^0.3.0: 1596 | version "0.3.0" 1597 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1598 | dependencies: 1599 | glob-parent "^2.0.0" 1600 | is-glob "^2.0.0" 1601 | 1602 | glob-parent@^2.0.0: 1603 | version "2.0.0" 1604 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1605 | dependencies: 1606 | is-glob "^2.0.0" 1607 | 1608 | glob@7.1.2, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1609 | version "7.1.2" 1610 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1611 | dependencies: 1612 | fs.realpath "^1.0.0" 1613 | inflight "^1.0.4" 1614 | inherits "2" 1615 | minimatch "^3.0.4" 1616 | once "^1.3.0" 1617 | path-is-absolute "^1.0.0" 1618 | 1619 | global-dirs@^0.1.0: 1620 | version "0.1.0" 1621 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.0.tgz#10d34039e0df04272e262cf24224f7209434df4f" 1622 | dependencies: 1623 | ini "^1.3.4" 1624 | 1625 | globals@^11.0.1: 1626 | version "11.1.0" 1627 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.1.0.tgz#632644457f5f0e3ae711807183700ebf2e4633e4" 1628 | 1629 | globals@^9.0.0: 1630 | version "9.17.0" 1631 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1632 | 1633 | globby@^5.0.0: 1634 | version "5.0.0" 1635 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1636 | dependencies: 1637 | array-union "^1.0.1" 1638 | arrify "^1.0.0" 1639 | glob "^7.0.3" 1640 | object-assign "^4.0.1" 1641 | pify "^2.0.0" 1642 | pinkie-promise "^2.0.0" 1643 | 1644 | got@^6.7.1: 1645 | version "6.7.1" 1646 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 1647 | dependencies: 1648 | create-error-class "^3.0.0" 1649 | duplexer3 "^0.1.4" 1650 | get-stream "^3.0.0" 1651 | is-redirect "^1.0.0" 1652 | is-retry-allowed "^1.0.0" 1653 | is-stream "^1.0.0" 1654 | lowercase-keys "^1.0.0" 1655 | safe-buffer "^5.0.1" 1656 | timed-out "^4.0.0" 1657 | unzip-response "^2.0.1" 1658 | url-parse-lax "^1.0.0" 1659 | 1660 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1661 | version "4.1.11" 1662 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1663 | 1664 | graphql-extensions@^0.0.x: 1665 | version "0.0.5" 1666 | resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.0.5.tgz#63bc4a3fd31aab12bfadf783cbc038a9a6937cf0" 1667 | dependencies: 1668 | core-js "^2.5.1" 1669 | source-map-support "^0.5.0" 1670 | 1671 | graphql-tag@^2.5.0: 1672 | version "2.5.0" 1673 | resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.5.0.tgz#b43bfd8b5babcd2c205ad680c03e98b238934e0f" 1674 | 1675 | graphql-tools@^2.8.0: 1676 | version "2.8.0" 1677 | resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-2.8.0.tgz#1a248ec6be62b0b77607bba6f7470e7a651425fa" 1678 | dependencies: 1679 | apollo-utilities "^1.0.1" 1680 | deprecated-decorator "^0.1.6" 1681 | uuid "^3.1.0" 1682 | 1683 | graphql@^0.11.7: 1684 | version "0.11.7" 1685 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.11.7.tgz#e5abaa9cb7b7cccb84e9f0836bf4370d268750c6" 1686 | dependencies: 1687 | iterall "1.1.3" 1688 | 1689 | growl@1.10.3: 1690 | version "1.10.3" 1691 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" 1692 | 1693 | har-schema@^1.0.5: 1694 | version "1.0.5" 1695 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1696 | 1697 | har-validator@~4.2.1: 1698 | version "4.2.1" 1699 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1700 | dependencies: 1701 | ajv "^4.9.1" 1702 | har-schema "^1.0.5" 1703 | 1704 | has-ansi@^2.0.0: 1705 | version "2.0.0" 1706 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1707 | dependencies: 1708 | ansi-regex "^2.0.0" 1709 | 1710 | has-flag@^2.0.0: 1711 | version "2.0.0" 1712 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1713 | 1714 | has-unicode@^2.0.0: 1715 | version "2.0.1" 1716 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1717 | 1718 | hawk@~3.1.3: 1719 | version "3.1.3" 1720 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1721 | dependencies: 1722 | boom "2.x.x" 1723 | cryptiles "2.x.x" 1724 | hoek "2.x.x" 1725 | sntp "1.x.x" 1726 | 1727 | he@1.1.1, he@^1.1.0: 1728 | version "1.1.1" 1729 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1730 | 1731 | hoek@2.x.x: 1732 | version "2.16.3" 1733 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1734 | 1735 | home-or-tmp@^2.0.0: 1736 | version "2.0.0" 1737 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1738 | dependencies: 1739 | os-homedir "^1.0.0" 1740 | os-tmpdir "^1.0.1" 1741 | 1742 | htmljs-parser@^2.3.2: 1743 | version "2.3.2" 1744 | resolved "https://registry.yarnpkg.com/htmljs-parser/-/htmljs-parser-2.3.2.tgz#1cc5bf9824a091c28820b33eaf78083a8eaa856c" 1745 | dependencies: 1746 | char-props "^0.1.5" 1747 | complain "^1.0.0" 1748 | 1749 | http-errors@1.6.2: 1750 | version "1.6.2" 1751 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736" 1752 | dependencies: 1753 | depd "1.1.1" 1754 | inherits "2.0.3" 1755 | setprototypeof "1.0.3" 1756 | statuses ">= 1.3.1 < 2" 1757 | 1758 | http-errors@~1.3.1: 1759 | version "1.3.1" 1760 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.3.1.tgz#197e22cdebd4198585e8694ef6786197b91ed942" 1761 | dependencies: 1762 | inherits "~2.0.1" 1763 | statuses "1" 1764 | 1765 | http-signature@~1.1.0: 1766 | version "1.1.1" 1767 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1768 | dependencies: 1769 | assert-plus "^0.2.0" 1770 | jsprim "^1.2.2" 1771 | sshpk "^1.7.0" 1772 | 1773 | huncwot@^0.17.0: 1774 | version "0.17.0" 1775 | resolved "https://registry.yarnpkg.com/huncwot/-/huncwot-0.17.0.tgz#f31231ee03d6d5f335563f02df9b8e44cde93c4c" 1776 | dependencies: 1777 | apollo-client "^2.0.3" 1778 | apollo-server-core "^1.2.0" 1779 | apollo-server-module-graphiql "^1.2.0" 1780 | app-module-path "^2.2.0" 1781 | basic-auth "^2.0.0" 1782 | bluebird "^3.5.1" 1783 | chalk "^2.3.0" 1784 | chokidar "^1.7.0" 1785 | debug "^3.1.0" 1786 | fs-extra "^4.0.2" 1787 | graphql "^0.11.7" 1788 | graphql-tag "^2.5.0" 1789 | graphql-tools "^2.8.0" 1790 | lasso "^2.11.21" 1791 | lasso-marko "^2.3.1" 1792 | marko "^4.6.0" 1793 | marko-path-router "^0.6.1" 1794 | mime-types "^2.1.17" 1795 | path-to-regexp "^2.1.0" 1796 | raw-body "^2.3.2" 1797 | upath "^1.0.2" 1798 | yargs "^10.0.3" 1799 | 1800 | iconv-lite@0.4.19: 1801 | version "0.4.19" 1802 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1803 | 1804 | iconv-lite@^0.4.17: 1805 | version "0.4.17" 1806 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.17.tgz#4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d" 1807 | 1808 | ieee754@^1.1.4: 1809 | version "1.1.8" 1810 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1811 | 1812 | ignore-by-default@^1.0.1: 1813 | version "1.0.1" 1814 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1815 | 1816 | ignore@^3.1.1, ignore@^3.3.3: 1817 | version "3.3.3" 1818 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" 1819 | 1820 | image-size@^0.3.3: 1821 | version "0.3.5" 1822 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.3.5.tgz#83240eab2fb5b00b04aab8c74b0471e9cba7ad8c" 1823 | 1824 | import-lazy@^2.1.0: 1825 | version "2.1.0" 1826 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1827 | 1828 | imurmurhash@^0.1.4: 1829 | version "0.1.4" 1830 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1831 | 1832 | inflight@^1.0.4: 1833 | version "1.0.6" 1834 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1835 | dependencies: 1836 | once "^1.3.0" 1837 | wrappy "1" 1838 | 1839 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1840 | version "2.0.3" 1841 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1842 | 1843 | inherits@2.0.1: 1844 | version "2.0.1" 1845 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1846 | 1847 | ini@^1.3.4, ini@~1.3.0: 1848 | version "1.3.4" 1849 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1850 | 1851 | inquirer@^3.0.6: 1852 | version "3.1.0" 1853 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.1.0.tgz#e05400d48b94937c2d3caa7038663ba9189aab01" 1854 | dependencies: 1855 | ansi-escapes "^2.0.0" 1856 | chalk "^1.0.0" 1857 | cli-cursor "^2.1.0" 1858 | cli-width "^2.0.0" 1859 | external-editor "^2.0.4" 1860 | figures "^2.0.0" 1861 | lodash "^4.3.0" 1862 | mute-stream "0.0.7" 1863 | run-async "^2.2.0" 1864 | rx-lite "^4.0.8" 1865 | rx-lite-aggregates "^4.0.8" 1866 | string-width "^2.0.0" 1867 | strip-ansi "^3.0.0" 1868 | through "^2.3.6" 1869 | 1870 | invariant@^2.2.0: 1871 | version "2.2.2" 1872 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1873 | dependencies: 1874 | loose-envify "^1.0.0" 1875 | 1876 | invert-kv@^1.0.0: 1877 | version "1.0.0" 1878 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1879 | 1880 | ip-regex@^1.0.0: 1881 | version "1.0.3" 1882 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-1.0.3.tgz#dc589076f659f419c222039a33316f1c7387effd" 1883 | 1884 | is-absolute@^0.2.3: 1885 | version "0.2.6" 1886 | resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-0.2.6.tgz#20de69f3db942ef2d87b9c2da36f172235b1b5eb" 1887 | dependencies: 1888 | is-relative "^0.2.1" 1889 | is-windows "^0.2.0" 1890 | 1891 | is-binary-path@^1.0.0: 1892 | version "1.0.1" 1893 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1894 | dependencies: 1895 | binary-extensions "^1.0.0" 1896 | 1897 | is-buffer@^1.1.5: 1898 | version "1.1.5" 1899 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1900 | 1901 | is-dotfile@^1.0.0: 1902 | version "1.0.3" 1903 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1904 | 1905 | is-equal-shallow@^0.1.3: 1906 | version "0.1.3" 1907 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1908 | dependencies: 1909 | is-primitive "^2.0.0" 1910 | 1911 | is-extendable@^0.1.1: 1912 | version "0.1.1" 1913 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1914 | 1915 | is-extglob@^1.0.0: 1916 | version "1.0.0" 1917 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1918 | 1919 | is-finite@^1.0.0: 1920 | version "1.0.2" 1921 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1922 | dependencies: 1923 | number-is-nan "^1.0.0" 1924 | 1925 | is-fullwidth-code-point@^1.0.0: 1926 | version "1.0.0" 1927 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1928 | dependencies: 1929 | number-is-nan "^1.0.0" 1930 | 1931 | is-fullwidth-code-point@^2.0.0: 1932 | version "2.0.0" 1933 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1934 | 1935 | is-glob@^2.0.0, is-glob@^2.0.1: 1936 | version "2.0.1" 1937 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1938 | dependencies: 1939 | is-extglob "^1.0.0" 1940 | 1941 | is-installed-globally@^0.1.0: 1942 | version "0.1.0" 1943 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 1944 | dependencies: 1945 | global-dirs "^0.1.0" 1946 | is-path-inside "^1.0.0" 1947 | 1948 | is-ip@1.0.0: 1949 | version "1.0.0" 1950 | resolved "https://registry.yarnpkg.com/is-ip/-/is-ip-1.0.0.tgz#2bb6959f797ccd6f9fdc812758bcbc87c4c59074" 1951 | dependencies: 1952 | ip-regex "^1.0.0" 1953 | 1954 | is-npm@^1.0.0: 1955 | version "1.0.0" 1956 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1957 | 1958 | is-number@^2.0.2, is-number@^2.1.0: 1959 | version "2.1.0" 1960 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1961 | dependencies: 1962 | kind-of "^3.0.2" 1963 | 1964 | is-obj@^1.0.0: 1965 | version "1.0.1" 1966 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1967 | 1968 | is-path-cwd@^1.0.0: 1969 | version "1.0.0" 1970 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1971 | 1972 | is-path-in-cwd@^1.0.0: 1973 | version "1.0.0" 1974 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1975 | dependencies: 1976 | is-path-inside "^1.0.0" 1977 | 1978 | is-path-inside@^1.0.0: 1979 | version "1.0.0" 1980 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1981 | dependencies: 1982 | path-is-inside "^1.0.1" 1983 | 1984 | is-posix-bracket@^0.1.0: 1985 | version "0.1.1" 1986 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1987 | 1988 | is-primitive@^2.0.0: 1989 | version "2.0.0" 1990 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1991 | 1992 | is-promise@^2.1.0: 1993 | version "2.1.0" 1994 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1995 | 1996 | is-redirect@^1.0.0: 1997 | version "1.0.0" 1998 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1999 | 2000 | is-relative@^0.2.1: 2001 | version "0.2.1" 2002 | resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5" 2003 | dependencies: 2004 | is-unc-path "^0.1.1" 2005 | 2006 | is-resolvable@^1.0.0: 2007 | version "1.0.0" 2008 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2009 | dependencies: 2010 | tryit "^1.0.1" 2011 | 2012 | is-retry-allowed@^1.0.0: 2013 | version "1.1.0" 2014 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 2015 | 2016 | is-stream@^1.0.0, is-stream@^1.1.0: 2017 | version "1.1.0" 2018 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2019 | 2020 | is-typedarray@~1.0.0: 2021 | version "1.0.0" 2022 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2023 | 2024 | is-unc-path@^0.1.1: 2025 | version "0.1.2" 2026 | resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-0.1.2.tgz#6ab053a72573c10250ff416a3814c35178af39b9" 2027 | dependencies: 2028 | unc-path-regex "^0.1.0" 2029 | 2030 | is-windows@^0.2.0: 2031 | version "0.2.0" 2032 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 2033 | 2034 | isarray@0.0.1: 2035 | version "0.0.1" 2036 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2037 | 2038 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2039 | version "1.0.0" 2040 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2041 | 2042 | isexe@^2.0.0: 2043 | version "2.0.0" 2044 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2045 | 2046 | isobject@^2.0.0: 2047 | version "2.1.0" 2048 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2049 | dependencies: 2050 | isarray "1.0.0" 2051 | 2052 | isstream@~0.1.2: 2053 | version "0.1.2" 2054 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2055 | 2056 | iterall@1.1.3: 2057 | version "1.1.3" 2058 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.3.tgz#1cbbff96204056dde6656e2ed2e2226d0e6d72c9" 2059 | 2060 | jodid25519@^1.0.0: 2061 | version "1.0.2" 2062 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2063 | dependencies: 2064 | jsbn "~0.1.0" 2065 | 2066 | js-tokens@^3.0.0: 2067 | version "3.0.1" 2068 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2069 | 2070 | js-yaml@^3.9.1: 2071 | version "3.10.0" 2072 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2073 | dependencies: 2074 | argparse "^1.0.7" 2075 | esprima "^4.0.0" 2076 | 2077 | jsbn@~0.1.0: 2078 | version "0.1.1" 2079 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2080 | 2081 | jschardet@^1.4.2: 2082 | version "1.4.2" 2083 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.4.2.tgz#2aa107f142af4121d145659d44f50830961e699a" 2084 | 2085 | jsesc@^1.3.0: 2086 | version "1.3.0" 2087 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2088 | 2089 | jsesc@~0.5.0: 2090 | version "0.5.0" 2091 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2092 | 2093 | json-schema-traverse@^0.3.0: 2094 | version "0.3.1" 2095 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2096 | 2097 | json-schema@0.2.3: 2098 | version "0.2.3" 2099 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2100 | 2101 | json-stable-stringify-without-jsonify@^1.0.1: 2102 | version "1.0.1" 2103 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2104 | 2105 | json-stable-stringify@^1.0.1: 2106 | version "1.0.1" 2107 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2108 | dependencies: 2109 | jsonify "~0.0.0" 2110 | 2111 | json-stringify-safe@~5.0.1: 2112 | version "5.0.1" 2113 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2114 | 2115 | json5@^0.5.0: 2116 | version "0.5.1" 2117 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2118 | 2119 | jsonfile@^4.0.0: 2120 | version "4.0.0" 2121 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 2122 | optionalDependencies: 2123 | graceful-fs "^4.1.6" 2124 | 2125 | jsonify@~0.0.0: 2126 | version "0.0.0" 2127 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2128 | 2129 | jsprim@^1.2.2: 2130 | version "1.4.0" 2131 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2132 | dependencies: 2133 | assert-plus "1.0.0" 2134 | extsprintf "1.0.2" 2135 | json-schema "0.2.3" 2136 | verror "1.3.6" 2137 | 2138 | kind-of@^3.0.2: 2139 | version "3.2.2" 2140 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2141 | dependencies: 2142 | is-buffer "^1.1.5" 2143 | 2144 | lasso-caching-fs@^1.0.0, lasso-caching-fs@^1.0.1, lasso-caching-fs@^1.0.2: 2145 | version "1.0.2" 2146 | resolved "https://registry.yarnpkg.com/lasso-caching-fs/-/lasso-caching-fs-1.0.2.tgz#9be4eb1f06aac1260344caeaef42c2f0086eb10d" 2147 | dependencies: 2148 | raptor-async "^1.1.2" 2149 | 2150 | lasso-image@^1.0.12: 2151 | version "1.0.12" 2152 | resolved "https://registry.yarnpkg.com/lasso-image/-/lasso-image-1.0.12.tgz#a633811ea897152f2f9413a4b4b9228ef422763e" 2153 | dependencies: 2154 | image-size "^0.3.3" 2155 | raptor-async "^1.0.1" 2156 | 2157 | lasso-loader@^3.0.2: 2158 | version "3.0.2" 2159 | resolved "https://registry.yarnpkg.com/lasso-loader/-/lasso-loader-3.0.2.tgz#dbdb55d5f72eeb3a5bae74a7e31b6bb5ff2dd093" 2160 | dependencies: 2161 | events "^1.0.2" 2162 | raptor-util "^1.0.0" 2163 | 2164 | lasso-marko@^2.3.1: 2165 | version "2.3.1" 2166 | resolved "https://registry.yarnpkg.com/lasso-marko/-/lasso-marko-2.3.1.tgz#687e6967801f2826991eb4c0fa178e93f975c7bf" 2167 | dependencies: 2168 | minprops "^1.0.0" 2169 | 2170 | lasso-minify-css@^1.1.4: 2171 | version "1.1.4" 2172 | resolved "https://registry.yarnpkg.com/lasso-minify-css/-/lasso-minify-css-1.1.4.tgz#9aa94db8178bf06b21474cc30ca634975d13c01f" 2173 | dependencies: 2174 | sqwish "~0.2.1" 2175 | 2176 | lasso-minify-js@^1.4.0: 2177 | version "1.4.0" 2178 | resolved "https://registry.yarnpkg.com/lasso-minify-js/-/lasso-minify-js-1.4.0.tgz#f228f427bb6479b4b377141e37c4e9df81739e4b" 2179 | dependencies: 2180 | uglify-js "^2.7.3" 2181 | 2182 | lasso-modules-client@^2.0.0, lasso-modules-client@^2.0.3: 2183 | version "2.0.4" 2184 | resolved "https://registry.yarnpkg.com/lasso-modules-client/-/lasso-modules-client-2.0.4.tgz#00b770c7c4a74c14298d945eb9c2db9c56d870ea" 2185 | dependencies: 2186 | lasso-package-root "^1.0.0" 2187 | raptor-polyfill "^1.0.2" 2188 | 2189 | lasso-package-root@^1.0.0, lasso-package-root@^1.0.1: 2190 | version "1.0.1" 2191 | resolved "https://registry.yarnpkg.com/lasso-package-root/-/lasso-package-root-1.0.1.tgz#997d0e71f41d03c5f0fa09a5bc298d796f8b2c23" 2192 | dependencies: 2193 | lasso-caching-fs "^1.0.0" 2194 | 2195 | lasso-require@^3.4.4: 2196 | version "3.4.4" 2197 | resolved "https://registry.yarnpkg.com/lasso-require/-/lasso-require-3.4.4.tgz#6377d03d188131265a403548aa9ee13798e818d7" 2198 | dependencies: 2199 | assert "^1.1.2" 2200 | babel-core "^6.7.6" 2201 | babel-preset-es2015 "^6.1.2" 2202 | buffer "^4.5.1" 2203 | clone "^0.1.19" 2204 | escodegen "^1.6.0" 2205 | esprima "^2.7.2" 2206 | estraverse "^4.2.0" 2207 | events "^1.0.2" 2208 | ignore "^3.1.1" 2209 | lasso-caching-fs "^1.0.0" 2210 | lasso-loader "^3.0.2" 2211 | lasso-modules-client "^2.0.0" 2212 | lasso-package-root "^1.0.0" 2213 | lasso-resolve-from "^1.2.0" 2214 | mkdirp "^0.5.0" 2215 | path-browserify "0.0.0" 2216 | process "^0.6.0" 2217 | raptor-async "^1.0.3" 2218 | raptor-logging "^1.1.0" 2219 | raptor-polyfill "^1.0.2" 2220 | raptor-promises "^1.0.3" 2221 | raptor-util "^1.0.7" 2222 | resolve-from "^2.0.0" 2223 | stream-browserify "^1.0.0" 2224 | string_decoder "^0.10.31" 2225 | through "^2.3.4" 2226 | url "^0.11.0" 2227 | util "^0.10.3" 2228 | 2229 | lasso-resolve-css-urls@^2.0.2: 2230 | version "2.0.2" 2231 | resolved "https://registry.yarnpkg.com/lasso-resolve-css-urls/-/lasso-resolve-css-urls-2.0.2.tgz#55e58e4ef2c2bbd9e4ec8fa396206fd4a01574c1" 2232 | dependencies: 2233 | lasso-resolve-from "^1.0.1" 2234 | raptor-css-parser "^1.0.2" 2235 | 2236 | lasso-resolve-from@^1.0.1, lasso-resolve-from@^1.2.0: 2237 | version "1.2.0" 2238 | resolved "https://registry.yarnpkg.com/lasso-resolve-from/-/lasso-resolve-from-1.2.0.tgz#bfb234467afb69b5309f568ba459cc8320621c6e" 2239 | dependencies: 2240 | is-absolute "^0.2.3" 2241 | lasso-caching-fs "^1.0.1" 2242 | raptor-util "^1.0.10" 2243 | resolve-from "^2.0.0" 2244 | 2245 | lasso@^2.11.21: 2246 | version "2.11.21" 2247 | resolved "https://registry.yarnpkg.com/lasso/-/lasso-2.11.21.tgz#3fa26147fffc7f73c5777f6b581eff3ad4a1e20d" 2248 | dependencies: 2249 | app-module-path "^1.1.0" 2250 | app-root-dir "^1.0.2" 2251 | async "^0.9.2" 2252 | browser-refresh-client "^1.1.4" 2253 | glob "^7.1.1" 2254 | lasso-caching-fs "^1.0.2" 2255 | lasso-image "^1.0.12" 2256 | lasso-minify-css "^1.1.4" 2257 | lasso-minify-js "^1.4.0" 2258 | lasso-package-root "^1.0.1" 2259 | lasso-require "^3.4.4" 2260 | lasso-resolve-css-urls "^2.0.2" 2261 | lasso-resolve-from "^1.2.0" 2262 | marko "^4.2.8" 2263 | mime "^1.2.11" 2264 | mkdirp "^0.5.1" 2265 | property-handlers "^1.1.1" 2266 | raptor-async "^1.1.3" 2267 | raptor-cache "^1.2.3" 2268 | raptor-detect "^1.0.1" 2269 | raptor-logging "^1.1.2" 2270 | raptor-objects "^1.0.2" 2271 | raptor-polyfill "^1.0.2" 2272 | raptor-promises "^1.0.3" 2273 | raptor-regexp "^1.0.1" 2274 | raptor-strings "^1.0.2" 2275 | raptor-util "^3.2.0" 2276 | resolve-from "^1.0.1" 2277 | send "^0.13.2" 2278 | strip-json-comments "^2.0.1" 2279 | through "^2.3.8" 2280 | 2281 | latest-version@^3.0.0: 2282 | version "3.1.0" 2283 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 2284 | dependencies: 2285 | package-json "^4.0.0" 2286 | 2287 | lazy-cache@^1.0.3: 2288 | version "1.0.4" 2289 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2290 | 2291 | lcid@^1.0.0: 2292 | version "1.0.0" 2293 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2294 | dependencies: 2295 | invert-kv "^1.0.0" 2296 | 2297 | levn@^0.3.0, levn@~0.3.0: 2298 | version "0.3.0" 2299 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2300 | dependencies: 2301 | prelude-ls "~1.1.2" 2302 | type-check "~0.3.2" 2303 | 2304 | listener-tracker@^2.0.0: 2305 | version "2.0.0" 2306 | resolved "https://registry.yarnpkg.com/listener-tracker/-/listener-tracker-2.0.0.tgz#39608b435c0901fa5510217c1452728d6bc19b5f" 2307 | 2308 | locate-path@^2.0.0: 2309 | version "2.0.0" 2310 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2311 | dependencies: 2312 | p-locate "^2.0.0" 2313 | path-exists "^3.0.0" 2314 | 2315 | lodash._baseassign@^3.0.0: 2316 | version "3.2.0" 2317 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2318 | dependencies: 2319 | lodash._basecopy "^3.0.0" 2320 | lodash.keys "^3.0.0" 2321 | 2322 | lodash._basecopy@^3.0.0: 2323 | version "3.0.1" 2324 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2325 | 2326 | lodash._bindcallback@^3.0.0: 2327 | version "3.0.1" 2328 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 2329 | 2330 | lodash._createassigner@^3.0.0: 2331 | version "3.1.1" 2332 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 2333 | dependencies: 2334 | lodash._bindcallback "^3.0.0" 2335 | lodash._isiterateecall "^3.0.0" 2336 | lodash.restparam "^3.0.0" 2337 | 2338 | lodash._getnative@^3.0.0: 2339 | version "3.9.1" 2340 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2341 | 2342 | lodash._isiterateecall@^3.0.0: 2343 | version "3.0.9" 2344 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2345 | 2346 | lodash.assign@^3.0.0: 2347 | version "3.2.0" 2348 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 2349 | dependencies: 2350 | lodash._baseassign "^3.0.0" 2351 | lodash._createassigner "^3.0.0" 2352 | lodash.keys "^3.0.0" 2353 | 2354 | lodash.defaults@^3.1.2: 2355 | version "3.1.2" 2356 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 2357 | dependencies: 2358 | lodash.assign "^3.0.0" 2359 | lodash.restparam "^3.0.0" 2360 | 2361 | lodash.endswith@^4.2.1: 2362 | version "4.2.1" 2363 | resolved "https://registry.yarnpkg.com/lodash.endswith/-/lodash.endswith-4.2.1.tgz#fed59ac1738ed3e236edd7064ec456448b37bc09" 2364 | 2365 | lodash.isarguments@^3.0.0: 2366 | version "3.1.0" 2367 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2368 | 2369 | lodash.isarray@^3.0.0: 2370 | version "3.0.4" 2371 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2372 | 2373 | lodash.isfunction@^3.0.8: 2374 | version "3.0.8" 2375 | resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.8.tgz#4db709fc81bc4a8fd7127a458a5346c5cdce2c6b" 2376 | 2377 | lodash.isstring@^4.0.1: 2378 | version "4.0.1" 2379 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 2380 | 2381 | lodash.keys@^3.0.0: 2382 | version "3.1.2" 2383 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2384 | dependencies: 2385 | lodash._getnative "^3.0.0" 2386 | lodash.isarguments "^3.0.0" 2387 | lodash.isarray "^3.0.0" 2388 | 2389 | lodash.restparam@^3.0.0: 2390 | version "3.6.1" 2391 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 2392 | 2393 | lodash.startswith@^4.2.1: 2394 | version "4.2.1" 2395 | resolved "https://registry.yarnpkg.com/lodash.startswith/-/lodash.startswith-4.2.1.tgz#c598c4adce188a27e53145731cdc6c0e7177600c" 2396 | 2397 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0: 2398 | version "4.17.4" 2399 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2400 | 2401 | longest@^1.0.1: 2402 | version "1.0.1" 2403 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2404 | 2405 | loose-envify@^1.0.0: 2406 | version "1.3.1" 2407 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2408 | dependencies: 2409 | js-tokens "^3.0.0" 2410 | 2411 | lowercase-keys@^1.0.0: 2412 | version "1.0.0" 2413 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2414 | 2415 | lru-cache@^4.0.1: 2416 | version "4.0.2" 2417 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" 2418 | dependencies: 2419 | pseudomap "^1.0.1" 2420 | yallist "^2.0.0" 2421 | 2422 | make-dir@^1.0.0: 2423 | version "1.1.0" 2424 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 2425 | dependencies: 2426 | pify "^3.0.0" 2427 | 2428 | map-stream@~0.1.0: 2429 | version "0.1.0" 2430 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 2431 | 2432 | marko-path-router@^0.6.1: 2433 | version "0.6.1" 2434 | resolved "https://registry.yarnpkg.com/marko-path-router/-/marko-path-router-0.6.1.tgz#46a790bebc571800354a205060d31f10bd69e8fa" 2435 | dependencies: 2436 | marko "^4.4.5" 2437 | radix-router "^2.0.0" 2438 | 2439 | marko@^4.2.8: 2440 | version "4.4.9" 2441 | resolved "https://registry.yarnpkg.com/marko/-/marko-4.4.9.tgz#c643f14a12f698bf65bd5b2b252633d612578395" 2442 | dependencies: 2443 | app-module-path "^2.2.0" 2444 | argly "^1.0.0" 2445 | browser-refresh-client "^1.0.0" 2446 | char-props "~0.1.5" 2447 | complain "^1.0.0" 2448 | deresolve "^1.1.2" 2449 | escodegen "^1.8.1" 2450 | esprima "^3.1.1" 2451 | estraverse "^4.2.0" 2452 | events "^1.0.2" 2453 | events-light "^1.0.0" 2454 | he "^1.1.0" 2455 | htmljs-parser "^2.3.2" 2456 | lasso-caching-fs "^1.0.1" 2457 | lasso-modules-client "^2.0.3" 2458 | lasso-package-root "^1.0.1" 2459 | listener-tracker "^2.0.0" 2460 | minimatch "^3.0.2" 2461 | object-assign "^4.1.0" 2462 | property-handlers "^1.0.0" 2463 | raptor-async "^1.1.2" 2464 | raptor-json "^1.0.1" 2465 | raptor-logging "^1.0.1" 2466 | raptor-polyfill "^1.0.0" 2467 | raptor-promises "^1.0.1" 2468 | raptor-regexp "^1.0.0" 2469 | raptor-util "^3.2.0" 2470 | resolve-from "^2.0.0" 2471 | simple-sha1 "^2.1.0" 2472 | strip-json-comments "^2.0.1" 2473 | try-require "^1.2.1" 2474 | warp10 "^1.0.0" 2475 | 2476 | marko@^4.4.5: 2477 | version "4.4.17" 2478 | resolved "https://registry.yarnpkg.com/marko/-/marko-4.4.17.tgz#94b0cce7d8850bd6dfe7cecfbfa2fdedbf09a5bd" 2479 | dependencies: 2480 | app-module-path "^2.2.0" 2481 | argly "^1.0.0" 2482 | browser-refresh-client "^1.0.0" 2483 | char-props "~0.1.5" 2484 | complain "^1.0.0" 2485 | deresolve "^1.1.2" 2486 | escodegen "^1.8.1" 2487 | esprima "^3.1.1" 2488 | estraverse "^4.2.0" 2489 | events "^1.0.2" 2490 | events-light "^1.0.0" 2491 | he "^1.1.0" 2492 | htmljs-parser "^2.3.2" 2493 | lasso-caching-fs "^1.0.1" 2494 | lasso-modules-client "^2.0.3" 2495 | lasso-package-root "^1.0.1" 2496 | listener-tracker "^2.0.0" 2497 | minimatch "^3.0.2" 2498 | object-assign "^4.1.0" 2499 | property-handlers "^1.0.0" 2500 | raptor-async "^1.1.2" 2501 | raptor-json "^1.0.1" 2502 | raptor-polyfill "^1.0.0" 2503 | raptor-promises "^1.0.1" 2504 | raptor-regexp "^1.0.0" 2505 | raptor-util "^3.2.0" 2506 | resolve-from "^2.0.0" 2507 | simple-sha1 "^2.1.0" 2508 | strip-json-comments "^2.0.1" 2509 | try-require "^1.2.1" 2510 | warp10 "^1.0.0" 2511 | 2512 | marko@^4.6.0: 2513 | version "4.6.0" 2514 | resolved "https://registry.yarnpkg.com/marko/-/marko-4.6.0.tgz#56fcbd72f74661f1ac3872e362e4dca7335f30df" 2515 | dependencies: 2516 | app-module-path "^2.2.0" 2517 | argly "^1.0.0" 2518 | browser-refresh-client "^1.0.0" 2519 | char-props "~0.1.5" 2520 | complain "^1.2.0" 2521 | deresolve "^1.1.2" 2522 | escodegen "^1.8.1" 2523 | esprima "^4.0.0" 2524 | estraverse "^4.2.0" 2525 | events "^1.0.2" 2526 | events-light "^1.0.0" 2527 | he "^1.1.0" 2528 | htmljs-parser "^2.3.2" 2529 | lasso-caching-fs "^1.0.1" 2530 | lasso-modules-client "^2.0.3" 2531 | lasso-package-root "^1.0.1" 2532 | listener-tracker "^2.0.0" 2533 | minimatch "^3.0.2" 2534 | object-assign "^4.1.0" 2535 | property-handlers "^1.0.0" 2536 | raptor-json "^1.0.1" 2537 | raptor-polyfill "^1.0.0" 2538 | raptor-promises "^1.0.1" 2539 | raptor-regexp "^1.0.0" 2540 | raptor-util "^3.2.0" 2541 | resolve-from "^2.0.0" 2542 | simple-sha1 "^2.1.0" 2543 | strip-json-comments "^2.0.1" 2544 | try-require "^1.2.1" 2545 | warp10 "^1.0.0" 2546 | 2547 | mem@^1.1.0: 2548 | version "1.1.0" 2549 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2550 | dependencies: 2551 | mimic-fn "^1.0.0" 2552 | 2553 | methods@^1.1.1, methods@^1.1.2: 2554 | version "1.1.2" 2555 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2556 | 2557 | micromatch@^2.1.5: 2558 | version "2.3.11" 2559 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2560 | dependencies: 2561 | arr-diff "^2.0.0" 2562 | array-unique "^0.2.1" 2563 | braces "^1.8.2" 2564 | expand-brackets "^0.1.4" 2565 | extglob "^0.3.1" 2566 | filename-regex "^2.0.0" 2567 | is-extglob "^1.0.0" 2568 | is-glob "^2.0.1" 2569 | kind-of "^3.0.2" 2570 | normalize-path "^2.0.1" 2571 | object.omit "^2.0.0" 2572 | parse-glob "^3.0.4" 2573 | regex-cache "^0.4.2" 2574 | 2575 | mime-db@~1.27.0: 2576 | version "1.27.0" 2577 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2578 | 2579 | mime-db@~1.30.0: 2580 | version "1.30.0" 2581 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2582 | 2583 | mime-types@^2.1.10, mime-types@^2.1.12, mime-types@~2.1.7: 2584 | version "2.1.15" 2585 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2586 | dependencies: 2587 | mime-db "~1.27.0" 2588 | 2589 | mime-types@^2.1.17: 2590 | version "2.1.17" 2591 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2592 | dependencies: 2593 | mime-db "~1.30.0" 2594 | 2595 | mime@1.3.4: 2596 | version "1.3.4" 2597 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2598 | 2599 | mime@^1.2.11, mime@^1.3.4: 2600 | version "1.3.6" 2601 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" 2602 | 2603 | mimic-fn@^1.0.0: 2604 | version "1.1.0" 2605 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2606 | 2607 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 2608 | version "3.0.4" 2609 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2610 | dependencies: 2611 | brace-expansion "^1.1.7" 2612 | 2613 | minimist@0.0.8: 2614 | version "0.0.8" 2615 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2616 | 2617 | minimist@^1.2.0: 2618 | version "1.2.0" 2619 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2620 | 2621 | minprops@^1.0.0: 2622 | version "1.0.0" 2623 | resolved "https://registry.yarnpkg.com/minprops/-/minprops-1.0.0.tgz#d0ef5922b0283f56c568fee0a1c1467544c4b307" 2624 | dependencies: 2625 | escape-string-regexp "^1.0.5" 2626 | lasso-caching-fs "^1.0.1" 2627 | through2 "^2.0.3" 2628 | 2629 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1: 2630 | version "0.5.1" 2631 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2632 | dependencies: 2633 | minimist "0.0.8" 2634 | 2635 | mocha@^4.0.1: 2636 | version "4.0.1" 2637 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-4.0.1.tgz#0aee5a95cf69a4618820f5e51fa31717117daf1b" 2638 | dependencies: 2639 | browser-stdout "1.3.0" 2640 | commander "2.11.0" 2641 | debug "3.1.0" 2642 | diff "3.3.1" 2643 | escape-string-regexp "1.0.5" 2644 | glob "7.1.2" 2645 | growl "1.10.3" 2646 | he "1.1.1" 2647 | mkdirp "0.5.1" 2648 | supports-color "4.4.0" 2649 | 2650 | ms@0.7.1: 2651 | version "0.7.1" 2652 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2653 | 2654 | ms@2.0.0: 2655 | version "2.0.0" 2656 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2657 | 2658 | mute-stream@0.0.7: 2659 | version "0.0.7" 2660 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2661 | 2662 | nan@^2.3.0: 2663 | version "2.6.2" 2664 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2665 | 2666 | natural-compare@^1.4.0: 2667 | version "1.4.0" 2668 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2669 | 2670 | node-pre-gyp@^0.6.29: 2671 | version "0.6.36" 2672 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2673 | dependencies: 2674 | mkdirp "^0.5.1" 2675 | nopt "^4.0.1" 2676 | npmlog "^4.0.2" 2677 | rc "^1.1.7" 2678 | request "^2.81.0" 2679 | rimraf "^2.6.1" 2680 | semver "^5.3.0" 2681 | tar "^2.2.1" 2682 | tar-pack "^3.4.0" 2683 | 2684 | nodemon@^1.12.7: 2685 | version "1.12.7" 2686 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.12.7.tgz#4d0fa8386291c4f532f583cc102c05350722f647" 2687 | dependencies: 2688 | chokidar "^1.7.0" 2689 | debug "^2.6.8" 2690 | es6-promise "^3.3.1" 2691 | ignore-by-default "^1.0.1" 2692 | lodash.defaults "^3.1.2" 2693 | minimatch "^3.0.4" 2694 | ps-tree "^1.1.0" 2695 | touch "^3.1.0" 2696 | undefsafe "0.0.3" 2697 | update-notifier "^2.3.0" 2698 | 2699 | nopt@^4.0.1: 2700 | version "4.0.1" 2701 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2702 | dependencies: 2703 | abbrev "1" 2704 | osenv "^0.1.4" 2705 | 2706 | nopt@~1.0.10: 2707 | version "1.0.10" 2708 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2709 | dependencies: 2710 | abbrev "1" 2711 | 2712 | normalize-path@^2.0.1: 2713 | version "2.1.1" 2714 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2715 | dependencies: 2716 | remove-trailing-separator "^1.0.1" 2717 | 2718 | npm-run-path@^2.0.0: 2719 | version "2.0.2" 2720 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2721 | dependencies: 2722 | path-key "^2.0.0" 2723 | 2724 | npmlog@^4.0.2: 2725 | version "4.1.0" 2726 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2727 | dependencies: 2728 | are-we-there-yet "~1.1.2" 2729 | console-control-strings "~1.1.0" 2730 | gauge "~2.7.3" 2731 | set-blocking "~2.0.0" 2732 | 2733 | number-is-nan@^1.0.0: 2734 | version "1.0.1" 2735 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2736 | 2737 | nunjucks@^3.0.1: 2738 | version "3.0.1" 2739 | resolved "https://registry.yarnpkg.com/nunjucks/-/nunjucks-3.0.1.tgz#4de74a3e550baf6fa3370323f3d1c7c2a86bdc4d" 2740 | dependencies: 2741 | a-sync-waterfall "^1.0.0" 2742 | asap "^2.0.3" 2743 | yargs "^3.32.0" 2744 | optionalDependencies: 2745 | chokidar "^1.6.0" 2746 | 2747 | oauth-sign@~0.8.1: 2748 | version "0.8.2" 2749 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2750 | 2751 | object-assign@^4.0.1, object-assign@^4.1.0: 2752 | version "4.1.1" 2753 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2754 | 2755 | object.omit@^2.0.0: 2756 | version "2.0.1" 2757 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2758 | dependencies: 2759 | for-own "^0.1.4" 2760 | is-extendable "^0.1.1" 2761 | 2762 | on-finished@~2.3.0: 2763 | version "2.3.0" 2764 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2765 | dependencies: 2766 | ee-first "1.1.1" 2767 | 2768 | once@^1.3.0, once@^1.3.3: 2769 | version "1.4.0" 2770 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2771 | dependencies: 2772 | wrappy "1" 2773 | 2774 | onetime@^2.0.0: 2775 | version "2.0.1" 2776 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2777 | dependencies: 2778 | mimic-fn "^1.0.0" 2779 | 2780 | optionator@^0.8.1, optionator@^0.8.2: 2781 | version "0.8.2" 2782 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2783 | dependencies: 2784 | deep-is "~0.1.3" 2785 | fast-levenshtein "~2.0.4" 2786 | levn "~0.3.0" 2787 | prelude-ls "~1.1.2" 2788 | type-check "~0.3.2" 2789 | wordwrap "~1.0.0" 2790 | 2791 | os-homedir@^1.0.0: 2792 | version "1.0.2" 2793 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2794 | 2795 | os-locale@^1.4.0: 2796 | version "1.4.0" 2797 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2798 | dependencies: 2799 | lcid "^1.0.0" 2800 | 2801 | os-locale@^2.0.0: 2802 | version "2.0.0" 2803 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.0.0.tgz#15918ded510522b81ee7ae5a309d54f639fc39a4" 2804 | dependencies: 2805 | execa "^0.5.0" 2806 | lcid "^1.0.0" 2807 | mem "^1.1.0" 2808 | 2809 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: 2810 | version "1.0.2" 2811 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2812 | 2813 | osenv@^0.1.4: 2814 | version "0.1.4" 2815 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2816 | dependencies: 2817 | os-homedir "^1.0.0" 2818 | os-tmpdir "^1.0.0" 2819 | 2820 | p-finally@^1.0.0: 2821 | version "1.0.0" 2822 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2823 | 2824 | p-limit@^1.1.0: 2825 | version "1.1.0" 2826 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2827 | 2828 | p-locate@^2.0.0: 2829 | version "2.0.0" 2830 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2831 | dependencies: 2832 | p-limit "^1.1.0" 2833 | 2834 | package-json@^4.0.0: 2835 | version "4.0.1" 2836 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 2837 | dependencies: 2838 | got "^6.7.1" 2839 | registry-auth-token "^3.0.1" 2840 | registry-url "^3.0.3" 2841 | semver "^5.1.0" 2842 | 2843 | parse-glob@^3.0.4: 2844 | version "3.0.4" 2845 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2846 | dependencies: 2847 | glob-base "^0.3.0" 2848 | is-dotfile "^1.0.0" 2849 | is-extglob "^1.0.0" 2850 | is-glob "^2.0.0" 2851 | 2852 | path-browserify@0.0.0: 2853 | version "0.0.0" 2854 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2855 | 2856 | path-exists@^3.0.0: 2857 | version "3.0.0" 2858 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2859 | 2860 | path-is-absolute@^1.0.0: 2861 | version "1.0.1" 2862 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2863 | 2864 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 2865 | version "1.0.2" 2866 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2867 | 2868 | path-key@^2.0.0: 2869 | version "2.0.1" 2870 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2871 | 2872 | path-to-regexp@^2.1.0: 2873 | version "2.1.0" 2874 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.1.0.tgz#7e30f9f5b134bd6a28ffc2e3ef1e47075ac5259b" 2875 | 2876 | pathval@^1.0.0: 2877 | version "1.1.0" 2878 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 2879 | 2880 | pause-stream@0.0.11: 2881 | version "0.0.11" 2882 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 2883 | dependencies: 2884 | through "~2.3" 2885 | 2886 | performance-now@^0.2.0: 2887 | version "0.2.0" 2888 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2889 | 2890 | pify@^2.0.0: 2891 | version "2.3.0" 2892 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2893 | 2894 | pify@^3.0.0: 2895 | version "3.0.0" 2896 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2897 | 2898 | pinkie-promise@^2.0.0: 2899 | version "2.0.1" 2900 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2901 | dependencies: 2902 | pinkie "^2.0.0" 2903 | 2904 | pinkie@^2.0.0: 2905 | version "2.0.4" 2906 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2907 | 2908 | pkginfo@^0.4.1: 2909 | version "0.4.1" 2910 | resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz#b5418ef0439de5425fc4995042dced14fb2a84ff" 2911 | 2912 | pluralize@^7.0.0: 2913 | version "7.0.0" 2914 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2915 | 2916 | prelude-ls@~1.1.2: 2917 | version "1.1.2" 2918 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2919 | 2920 | prepend-http@^1.0.1: 2921 | version "1.0.4" 2922 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2923 | 2924 | preserve@^0.2.0: 2925 | version "0.2.0" 2926 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2927 | 2928 | private@^0.1.6: 2929 | version "0.1.7" 2930 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2931 | 2932 | process-nextick-args@~1.0.6: 2933 | version "1.0.7" 2934 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2935 | 2936 | process@^0.6.0: 2937 | version "0.6.0" 2938 | resolved "https://registry.yarnpkg.com/process/-/process-0.6.0.tgz#7dd9be80ffaaedd4cb628f1827f1cbab6dc0918f" 2939 | 2940 | progress@^2.0.0: 2941 | version "2.0.0" 2942 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2943 | 2944 | property-handlers@^1.0.0, property-handlers@^1.1.1: 2945 | version "1.1.1" 2946 | resolved "https://registry.yarnpkg.com/property-handlers/-/property-handlers-1.1.1.tgz#cb20d322aab7d94fffac28f46c9186bd5947b4b4" 2947 | 2948 | ps-tree@^1.1.0: 2949 | version "1.1.0" 2950 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 2951 | dependencies: 2952 | event-stream "~3.3.0" 2953 | 2954 | pseudomap@^1.0.1: 2955 | version "1.0.2" 2956 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2957 | 2958 | punycode@1.3.2: 2959 | version "1.3.2" 2960 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2961 | 2962 | punycode@^1.4.1: 2963 | version "1.4.1" 2964 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2965 | 2966 | q@^1.0.1: 2967 | version "1.5.0" 2968 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 2969 | 2970 | qs@^6.1.0, qs@^6.2.0, qs@~6.4.0: 2971 | version "6.4.0" 2972 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2973 | 2974 | querystring@0.2.0: 2975 | version "0.2.0" 2976 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2977 | 2978 | radix-router@^2.0.0: 2979 | version "2.0.0" 2980 | resolved "https://registry.yarnpkg.com/radix-router/-/radix-router-2.0.0.tgz#2424e105490102183818f9185d6a1484683c65d7" 2981 | 2982 | randomatic@^1.1.3: 2983 | version "1.1.6" 2984 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2985 | dependencies: 2986 | is-number "^2.0.2" 2987 | kind-of "^3.0.2" 2988 | 2989 | range-parser@~1.0.3: 2990 | version "1.0.3" 2991 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.0.3.tgz#6872823535c692e2c2a0103826afd82c2e0ff175" 2992 | 2993 | raptor-async@^1.0.0, raptor-async@^1.0.1, raptor-async@^1.0.3, raptor-async@^1.1.2, raptor-async@^1.1.3: 2994 | version "1.1.3" 2995 | resolved "https://registry.yarnpkg.com/raptor-async/-/raptor-async-1.1.3.tgz#b83c3c9b603dc985c2c3a9f78d2b4073e6f6024c" 2996 | 2997 | raptor-cache@^1.2.3: 2998 | version "1.2.3" 2999 | resolved "https://registry.yarnpkg.com/raptor-cache/-/raptor-cache-1.2.3.tgz#c281267a0a1f7fa6d1a5447311f674eae61b4c33" 3000 | dependencies: 3001 | dissolve "^0.3.3" 3002 | mkdirp "^0.5.0" 3003 | property-handlers "^1.0.0" 3004 | raptor-async "^1.0.0" 3005 | raptor-logging "^1.0.1" 3006 | raptor-util "^1.0.0" 3007 | through "^2.3.4" 3008 | uuid "^3.0.0" 3009 | 3010 | raptor-css-parser@^1.0.2: 3011 | version "1.1.5" 3012 | resolved "https://registry.yarnpkg.com/raptor-css-parser/-/raptor-css-parser-1.1.5.tgz#1de018d96121c8dc1f1c34686549aff71649d037" 3013 | dependencies: 3014 | raptor-async "^1.0.0" 3015 | raptor-promises "^1.0.1" 3016 | 3017 | raptor-detect@^1.0.1: 3018 | version "1.0.1" 3019 | resolved "https://registry.yarnpkg.com/raptor-detect/-/raptor-detect-1.0.1.tgz#0a54c639056ef66dfd52be3945fa22cc6d1466f3" 3020 | 3021 | raptor-json@^1.0.1: 3022 | version "1.1.0" 3023 | resolved "https://registry.yarnpkg.com/raptor-json/-/raptor-json-1.1.0.tgz#70bd09b14e64f7d32ec50cce8377d6029c0f0876" 3024 | dependencies: 3025 | raptor-strings "^1.0.0" 3026 | 3027 | raptor-logging@^1.0.1, raptor-logging@^1.1.0, raptor-logging@^1.1.2: 3028 | version "1.1.2" 3029 | resolved "https://registry.yarnpkg.com/raptor-logging/-/raptor-logging-1.1.2.tgz#cff82c688f367b0c4c2fcd593ea4acb007ee2418" 3030 | dependencies: 3031 | raptor-polyfill "^1.0.0" 3032 | raptor-stacktraces "^1.0.0" 3033 | 3034 | raptor-objects@^1.0.2: 3035 | version "1.0.2" 3036 | resolved "https://registry.yarnpkg.com/raptor-objects/-/raptor-objects-1.0.2.tgz#990dce360413b079e2e4af114f2e7344a71cee11" 3037 | dependencies: 3038 | raptor-util "^1.0.0" 3039 | 3040 | raptor-polyfill@^1.0.0, raptor-polyfill@^1.0.1, raptor-polyfill@^1.0.2: 3041 | version "1.0.2" 3042 | resolved "https://registry.yarnpkg.com/raptor-polyfill/-/raptor-polyfill-1.0.2.tgz#6575bce762540d844056d71cef11662488f513ed" 3043 | 3044 | raptor-promises@^1.0.1, raptor-promises@^1.0.3: 3045 | version "1.0.3" 3046 | resolved "https://registry.yarnpkg.com/raptor-promises/-/raptor-promises-1.0.3.tgz#d576b110e0423654f7fdf1721e28d42e4dc3c0eb" 3047 | dependencies: 3048 | q "^1.0.1" 3049 | raptor-util "^1.0.0" 3050 | 3051 | raptor-regexp@^1.0.0, raptor-regexp@^1.0.1: 3052 | version "1.0.1" 3053 | resolved "https://registry.yarnpkg.com/raptor-regexp/-/raptor-regexp-1.0.1.tgz#ecf0f66c6671c0cd9f5e48c3705026c5509995c0" 3054 | 3055 | raptor-stacktraces@^1.0.0: 3056 | version "1.0.1" 3057 | resolved "https://registry.yarnpkg.com/raptor-stacktraces/-/raptor-stacktraces-1.0.1.tgz#7f9fb271a7ddcdae291c6a6b15ddeffbcc008a76" 3058 | 3059 | raptor-strings@^1.0.0, raptor-strings@^1.0.2: 3060 | version "1.0.2" 3061 | resolved "https://registry.yarnpkg.com/raptor-strings/-/raptor-strings-1.0.2.tgz#92ce2cb0153afe90470d8039a0255b4cf33ab5fc" 3062 | dependencies: 3063 | raptor-polyfill "^1.0.1" 3064 | 3065 | raptor-util@^1.0.0, raptor-util@^1.0.10, raptor-util@^1.0.7: 3066 | version "1.1.2" 3067 | resolved "https://registry.yarnpkg.com/raptor-util/-/raptor-util-1.1.2.tgz#f2ee8076a9ae3eae2e65672e46a220074fa2dff3" 3068 | 3069 | raptor-util@^3.2.0: 3070 | version "3.2.0" 3071 | resolved "https://registry.yarnpkg.com/raptor-util/-/raptor-util-3.2.0.tgz#23b0c803c8f1ac8a1cae67d9a6388b49161c9758" 3072 | 3073 | raw-body@^2.3.2: 3074 | version "2.3.2" 3075 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89" 3076 | dependencies: 3077 | bytes "3.0.0" 3078 | http-errors "1.6.2" 3079 | iconv-lite "0.4.19" 3080 | unpipe "1.0.0" 3081 | 3082 | rc@^1.0.1, rc@^1.1.7: 3083 | version "1.2.1" 3084 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3085 | dependencies: 3086 | deep-extend "~0.4.0" 3087 | ini "~1.3.0" 3088 | minimist "^1.2.0" 3089 | strip-json-comments "~2.0.1" 3090 | 3091 | rc@^1.1.6: 3092 | version "1.2.2" 3093 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 3094 | dependencies: 3095 | deep-extend "~0.4.0" 3096 | ini "~1.3.0" 3097 | minimist "^1.2.0" 3098 | strip-json-comments "~2.0.1" 3099 | 3100 | readable-stream@^1.0.26, readable-stream@^1.0.27-1: 3101 | version "1.1.14" 3102 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 3103 | dependencies: 3104 | core-util-is "~1.0.0" 3105 | inherits "~2.0.1" 3106 | isarray "0.0.1" 3107 | string_decoder "~0.10.x" 3108 | 3109 | readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.1.5, readable-stream@^2.2.2: 3110 | version "2.2.10" 3111 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.10.tgz#effe72bb7c884c0dd335e2379d526196d9d011ee" 3112 | dependencies: 3113 | core-util-is "~1.0.0" 3114 | inherits "~2.0.1" 3115 | isarray "~1.0.0" 3116 | process-nextick-args "~1.0.6" 3117 | safe-buffer "^5.0.1" 3118 | string_decoder "~1.0.0" 3119 | util-deprecate "~1.0.1" 3120 | 3121 | readable-stream@~1.0.2: 3122 | version "1.0.34" 3123 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 3124 | dependencies: 3125 | core-util-is "~1.0.0" 3126 | inherits "~2.0.1" 3127 | isarray "0.0.1" 3128 | string_decoder "~0.10.x" 3129 | 3130 | readdirp@^2.0.0: 3131 | version "2.1.0" 3132 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3133 | dependencies: 3134 | graceful-fs "^4.1.2" 3135 | minimatch "^3.0.2" 3136 | readable-stream "^2.0.2" 3137 | set-immediate-shim "^1.0.1" 3138 | 3139 | redis-commands@^1.2.0: 3140 | version "1.3.1" 3141 | resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.3.1.tgz#81d826f45fa9c8b2011f4cd7a0fe597d241d442b" 3142 | 3143 | redis-mock@^0.20.0: 3144 | version "0.20.0" 3145 | resolved "https://registry.yarnpkg.com/redis-mock/-/redis-mock-0.20.0.tgz#94a395865babbcebf538b6b59941723e48073010" 3146 | 3147 | redis-parser@^2.6.0: 3148 | version "2.6.0" 3149 | resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" 3150 | 3151 | redis@^2.8.0: 3152 | version "2.8.0" 3153 | resolved "https://registry.yarnpkg.com/redis/-/redis-2.8.0.tgz#202288e3f58c49f6079d97af7a10e1303ae14b02" 3154 | dependencies: 3155 | double-ended-queue "^2.1.0-0" 3156 | redis-commands "^1.2.0" 3157 | redis-parser "^2.6.0" 3158 | 3159 | regenerate@^1.2.1: 3160 | version "1.3.2" 3161 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 3162 | 3163 | regenerator-runtime@^0.10.0: 3164 | version "0.10.5" 3165 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3166 | 3167 | regenerator-transform@0.9.11: 3168 | version "0.9.11" 3169 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3170 | dependencies: 3171 | babel-runtime "^6.18.0" 3172 | babel-types "^6.19.0" 3173 | private "^0.1.6" 3174 | 3175 | regex-cache@^0.4.2: 3176 | version "0.4.3" 3177 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3178 | dependencies: 3179 | is-equal-shallow "^0.1.3" 3180 | is-primitive "^2.0.0" 3181 | 3182 | regexpu-core@^2.0.0: 3183 | version "2.0.0" 3184 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3185 | dependencies: 3186 | regenerate "^1.2.1" 3187 | regjsgen "^0.2.0" 3188 | regjsparser "^0.1.4" 3189 | 3190 | registry-auth-token@^3.0.1: 3191 | version "3.3.1" 3192 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 3193 | dependencies: 3194 | rc "^1.1.6" 3195 | safe-buffer "^5.0.1" 3196 | 3197 | registry-url@^3.0.3: 3198 | version "3.1.0" 3199 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 3200 | dependencies: 3201 | rc "^1.0.1" 3202 | 3203 | regjsgen@^0.2.0: 3204 | version "0.2.0" 3205 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3206 | 3207 | regjsparser@^0.1.4: 3208 | version "0.1.5" 3209 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3210 | dependencies: 3211 | jsesc "~0.5.0" 3212 | 3213 | remove-trailing-separator@^1.0.1: 3214 | version "1.0.1" 3215 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3216 | 3217 | repeat-element@^1.1.2: 3218 | version "1.1.2" 3219 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3220 | 3221 | repeat-string@^1.5.2: 3222 | version "1.6.1" 3223 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3224 | 3225 | repeating@^2.0.0: 3226 | version "2.0.1" 3227 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3228 | dependencies: 3229 | is-finite "^1.0.0" 3230 | 3231 | request@^2.81.0: 3232 | version "2.81.0" 3233 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3234 | dependencies: 3235 | aws-sign2 "~0.6.0" 3236 | aws4 "^1.2.1" 3237 | caseless "~0.12.0" 3238 | combined-stream "~1.0.5" 3239 | extend "~3.0.0" 3240 | forever-agent "~0.6.1" 3241 | form-data "~2.1.1" 3242 | har-validator "~4.2.1" 3243 | hawk "~3.1.3" 3244 | http-signature "~1.1.0" 3245 | is-typedarray "~1.0.0" 3246 | isstream "~0.1.2" 3247 | json-stringify-safe "~5.0.1" 3248 | mime-types "~2.1.7" 3249 | oauth-sign "~0.8.1" 3250 | performance-now "^0.2.0" 3251 | qs "~6.4.0" 3252 | safe-buffer "^5.0.1" 3253 | stringstream "~0.0.4" 3254 | tough-cookie "~2.3.0" 3255 | tunnel-agent "^0.6.0" 3256 | uuid "^3.0.0" 3257 | 3258 | require-all@^2.2.0: 3259 | version "2.2.0" 3260 | resolved "https://registry.yarnpkg.com/require-all/-/require-all-2.2.0.tgz#b4420c233ac0282d0ff49b277fb880a8b5de0894" 3261 | 3262 | require-directory@^2.1.1: 3263 | version "2.1.1" 3264 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3265 | 3266 | require-main-filename@^1.0.1: 3267 | version "1.0.1" 3268 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3269 | 3270 | require-uncached@^1.0.3: 3271 | version "1.0.3" 3272 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3273 | dependencies: 3274 | caller-path "^0.1.0" 3275 | resolve-from "^1.0.0" 3276 | 3277 | resolve-from@^1.0.0, resolve-from@^1.0.1: 3278 | version "1.0.1" 3279 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3280 | 3281 | resolve-from@^2.0.0: 3282 | version "2.0.0" 3283 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 3284 | 3285 | restore-cursor@^2.0.0: 3286 | version "2.0.0" 3287 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3288 | dependencies: 3289 | onetime "^2.0.0" 3290 | signal-exit "^3.0.2" 3291 | 3292 | right-align@^0.1.1: 3293 | version "0.1.3" 3294 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3295 | dependencies: 3296 | align-text "^0.1.1" 3297 | 3298 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3299 | version "2.6.1" 3300 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3301 | dependencies: 3302 | glob "^7.0.5" 3303 | 3304 | run-async@^2.2.0: 3305 | version "2.3.0" 3306 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3307 | dependencies: 3308 | is-promise "^2.1.0" 3309 | 3310 | rusha@^0.8.1: 3311 | version "0.8.6" 3312 | resolved "https://registry.yarnpkg.com/rusha/-/rusha-0.8.6.tgz#b264ddaa4d49a1d67300061858ba9358c4adca14" 3313 | 3314 | rx-lite-aggregates@^4.0.8: 3315 | version "4.0.8" 3316 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3317 | dependencies: 3318 | rx-lite "*" 3319 | 3320 | rx-lite@*, rx-lite@^4.0.8: 3321 | version "4.0.8" 3322 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3323 | 3324 | safe-buffer@5.1.1: 3325 | version "5.1.1" 3326 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3327 | 3328 | safe-buffer@^5.0.1: 3329 | version "5.1.0" 3330 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.0.tgz#fe4c8460397f9eaaaa58e73be46273408a45e223" 3331 | 3332 | semver-diff@^2.0.0: 3333 | version "2.1.0" 3334 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 3335 | dependencies: 3336 | semver "^5.0.3" 3337 | 3338 | semver@^5.0.3, semver@^5.3.0: 3339 | version "5.3.0" 3340 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3341 | 3342 | semver@^5.1.0: 3343 | version "5.4.1" 3344 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3345 | 3346 | send@^0.13.2: 3347 | version "0.13.2" 3348 | resolved "https://registry.yarnpkg.com/send/-/send-0.13.2.tgz#765e7607c8055452bba6f0b052595350986036de" 3349 | dependencies: 3350 | debug "~2.2.0" 3351 | depd "~1.1.0" 3352 | destroy "~1.0.4" 3353 | escape-html "~1.0.3" 3354 | etag "~1.7.0" 3355 | fresh "0.3.0" 3356 | http-errors "~1.3.1" 3357 | mime "1.3.4" 3358 | ms "0.7.1" 3359 | on-finished "~2.3.0" 3360 | range-parser "~1.0.3" 3361 | statuses "~1.2.1" 3362 | 3363 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3364 | version "2.0.0" 3365 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3366 | 3367 | set-immediate-shim@^1.0.1: 3368 | version "1.0.1" 3369 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3370 | 3371 | setprototypeof@1.0.3: 3372 | version "1.0.3" 3373 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3374 | 3375 | shebang-command@^1.2.0: 3376 | version "1.2.0" 3377 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3378 | dependencies: 3379 | shebang-regex "^1.0.0" 3380 | 3381 | shebang-regex@^1.0.0: 3382 | version "1.0.0" 3383 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3384 | 3385 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3386 | version "3.0.2" 3387 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3388 | 3389 | simple-sha1@^2.1.0: 3390 | version "2.1.0" 3391 | resolved "https://registry.yarnpkg.com/simple-sha1/-/simple-sha1-2.1.0.tgz#9427bb96ff1263cc10a8414cedd51a18b919e8b3" 3392 | dependencies: 3393 | rusha "^0.8.1" 3394 | 3395 | slash@^1.0.0: 3396 | version "1.0.0" 3397 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3398 | 3399 | slice-ansi@0.0.4: 3400 | version "0.0.4" 3401 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3402 | 3403 | sntp@1.x.x: 3404 | version "1.0.9" 3405 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3406 | dependencies: 3407 | hoek "2.x.x" 3408 | 3409 | source-map-support@^0.4.2: 3410 | version "0.4.15" 3411 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" 3412 | dependencies: 3413 | source-map "^0.5.6" 3414 | 3415 | source-map-support@^0.5.0: 3416 | version "0.5.0" 3417 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.0.tgz#2018a7ad2bdf8faf2691e5fddab26bed5a2bacab" 3418 | dependencies: 3419 | source-map "^0.6.0" 3420 | 3421 | source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.1: 3422 | version "0.5.6" 3423 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3424 | 3425 | source-map@^0.6.0: 3426 | version "0.6.1" 3427 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3428 | 3429 | source-map@~0.2.0: 3430 | version "0.2.0" 3431 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3432 | dependencies: 3433 | amdefine ">=0.0.4" 3434 | 3435 | split@0.3: 3436 | version "0.3.3" 3437 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 3438 | dependencies: 3439 | through "2" 3440 | 3441 | sprintf-js@~1.0.2: 3442 | version "1.0.3" 3443 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3444 | 3445 | sqwish@~0.2.1: 3446 | version "0.2.2" 3447 | resolved "https://registry.yarnpkg.com/sqwish/-/sqwish-0.2.2.tgz#00fe2668104f1228b5bb7ee739ef60121bbcb057" 3448 | 3449 | sshpk@^1.7.0: 3450 | version "1.13.0" 3451 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3452 | dependencies: 3453 | asn1 "~0.2.3" 3454 | assert-plus "^1.0.0" 3455 | dashdash "^1.12.0" 3456 | getpass "^0.1.1" 3457 | optionalDependencies: 3458 | bcrypt-pbkdf "^1.0.0" 3459 | ecc-jsbn "~0.1.1" 3460 | jodid25519 "^1.0.0" 3461 | jsbn "~0.1.0" 3462 | tweetnacl "~0.14.0" 3463 | 3464 | stackframe@^1.0.3: 3465 | version "1.0.4" 3466 | resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.0.4.tgz#357b24a992f9427cba6b545d96a14ed2cbca187b" 3467 | 3468 | statuses@1, statuses@~1.2.1: 3469 | version "1.2.1" 3470 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.2.1.tgz#dded45cc18256d51ed40aec142489d5c61026d28" 3471 | 3472 | "statuses@>= 1.3.1 < 2": 3473 | version "1.4.0" 3474 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 3475 | 3476 | stream-browserify@^1.0.0: 3477 | version "1.0.0" 3478 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-1.0.0.tgz#bf9b4abfb42b274d751479e44e0ff2656b6f1193" 3479 | dependencies: 3480 | inherits "~2.0.1" 3481 | readable-stream "^1.0.27-1" 3482 | 3483 | stream-combiner@~0.0.4: 3484 | version "0.0.4" 3485 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 3486 | dependencies: 3487 | duplexer "~0.1.1" 3488 | 3489 | string-width@^1.0.1, string-width@^1.0.2: 3490 | version "1.0.2" 3491 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3492 | dependencies: 3493 | code-point-at "^1.0.0" 3494 | is-fullwidth-code-point "^1.0.0" 3495 | strip-ansi "^3.0.0" 3496 | 3497 | string-width@^2.0.0: 3498 | version "2.0.0" 3499 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3500 | dependencies: 3501 | is-fullwidth-code-point "^2.0.0" 3502 | strip-ansi "^3.0.0" 3503 | 3504 | string_decoder@^0.10.31, string_decoder@~0.10.x: 3505 | version "0.10.31" 3506 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3507 | 3508 | string_decoder@~1.0.0: 3509 | version "1.0.1" 3510 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98" 3511 | dependencies: 3512 | safe-buffer "^5.0.1" 3513 | 3514 | stringstream@~0.0.4: 3515 | version "0.0.5" 3516 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3517 | 3518 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3519 | version "3.0.1" 3520 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3521 | dependencies: 3522 | ansi-regex "^2.0.0" 3523 | 3524 | strip-ansi@^4.0.0: 3525 | version "4.0.0" 3526 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3527 | dependencies: 3528 | ansi-regex "^3.0.0" 3529 | 3530 | strip-eof@^1.0.0: 3531 | version "1.0.0" 3532 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3533 | 3534 | strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 3535 | version "2.0.1" 3536 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3537 | 3538 | sugar-core@^2.0.0: 3539 | version "2.0.4" 3540 | resolved "https://registry.yarnpkg.com/sugar-core/-/sugar-core-2.0.4.tgz#9db0730e6c47eb7d28184a79c4ab18b2b7946ca0" 3541 | 3542 | sugar-date@^2.0.4: 3543 | version "2.0.4" 3544 | resolved "https://registry.yarnpkg.com/sugar-date/-/sugar-date-2.0.4.tgz#6b297276487445c246487a4239480a3cfabd55c2" 3545 | dependencies: 3546 | sugar-core "^2.0.0" 3547 | 3548 | superagent@^2.0.0: 3549 | version "2.3.0" 3550 | resolved "https://registry.yarnpkg.com/superagent/-/superagent-2.3.0.tgz#703529a0714e57e123959ddefbce193b2e50d115" 3551 | dependencies: 3552 | component-emitter "^1.2.0" 3553 | cookiejar "^2.0.6" 3554 | debug "^2.2.0" 3555 | extend "^3.0.0" 3556 | form-data "1.0.0-rc4" 3557 | formidable "^1.0.17" 3558 | methods "^1.1.1" 3559 | mime "^1.3.4" 3560 | qs "^6.1.0" 3561 | readable-stream "^2.0.5" 3562 | 3563 | supports-color@4.4.0: 3564 | version "4.4.0" 3565 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3566 | dependencies: 3567 | has-flag "^2.0.0" 3568 | 3569 | supports-color@^2.0.0: 3570 | version "2.0.0" 3571 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3572 | 3573 | supports-color@^4.0.0: 3574 | version "4.1.0" 3575 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.1.0.tgz#92cc14bb3dad8928ca5656c33e19a19f20af5c7a" 3576 | dependencies: 3577 | has-flag "^2.0.0" 3578 | 3579 | symbol-observable@^1.0.2: 3580 | version "1.0.4" 3581 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3582 | 3583 | table@^4.0.1: 3584 | version "4.0.1" 3585 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.1.tgz#a8116c133fac2c61f4a420ab6cdf5c4d61f0e435" 3586 | dependencies: 3587 | ajv "^4.7.0" 3588 | ajv-keywords "^1.0.0" 3589 | chalk "^1.1.1" 3590 | lodash "^4.0.0" 3591 | slice-ansi "0.0.4" 3592 | string-width "^2.0.0" 3593 | 3594 | tar-pack@^3.4.0: 3595 | version "3.4.0" 3596 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3597 | dependencies: 3598 | debug "^2.2.0" 3599 | fstream "^1.0.10" 3600 | fstream-ignore "^1.0.5" 3601 | once "^1.3.3" 3602 | readable-stream "^2.1.4" 3603 | rimraf "^2.5.1" 3604 | tar "^2.2.1" 3605 | uid-number "^0.0.6" 3606 | 3607 | tar@^2.2.1: 3608 | version "2.2.1" 3609 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3610 | dependencies: 3611 | block-stream "*" 3612 | fstream "^1.0.2" 3613 | inherits "2" 3614 | 3615 | term-size@^1.2.0: 3616 | version "1.2.0" 3617 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 3618 | dependencies: 3619 | execa "^0.7.0" 3620 | 3621 | text-table@~0.2.0: 3622 | version "0.2.0" 3623 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3624 | 3625 | through2@^2.0.3: 3626 | version "2.0.3" 3627 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 3628 | dependencies: 3629 | readable-stream "^2.1.5" 3630 | xtend "~4.0.1" 3631 | 3632 | through@2, through@^2.3.4, through@^2.3.6, through@^2.3.8, through@~2.3, through@~2.3.1: 3633 | version "2.3.8" 3634 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3635 | 3636 | timed-out@^4.0.0: 3637 | version "4.0.1" 3638 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 3639 | 3640 | tmp@^0.0.31: 3641 | version "0.0.31" 3642 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" 3643 | dependencies: 3644 | os-tmpdir "~1.0.1" 3645 | 3646 | to-fast-properties@^1.0.1: 3647 | version "1.0.3" 3648 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3649 | 3650 | touch@^3.1.0: 3651 | version "3.1.0" 3652 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 3653 | dependencies: 3654 | nopt "~1.0.10" 3655 | 3656 | tough-cookie@~2.3.0: 3657 | version "2.3.2" 3658 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3659 | dependencies: 3660 | punycode "^1.4.1" 3661 | 3662 | trim-right@^1.0.1: 3663 | version "1.0.1" 3664 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3665 | 3666 | try-require@^1.2.1: 3667 | version "1.2.1" 3668 | resolved "https://registry.yarnpkg.com/try-require/-/try-require-1.2.1.tgz#34489a2cac0c09c1cc10ed91ba011594d4333be2" 3669 | 3670 | tryit@^1.0.1: 3671 | version "1.0.3" 3672 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3673 | 3674 | tunnel-agent@^0.6.0: 3675 | version "0.6.0" 3676 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3677 | dependencies: 3678 | safe-buffer "^5.0.1" 3679 | 3680 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3681 | version "0.14.5" 3682 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3683 | 3684 | type-check@~0.3.2: 3685 | version "0.3.2" 3686 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3687 | dependencies: 3688 | prelude-ls "~1.1.2" 3689 | 3690 | type-detect@0.1.1: 3691 | version "0.1.1" 3692 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3693 | 3694 | type-detect@^1.0.0: 3695 | version "1.0.0" 3696 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3697 | 3698 | type-detect@^4.0.0: 3699 | version "4.0.3" 3700 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.3.tgz#0e3f2670b44099b0b46c284d136a7ef49c74c2ea" 3701 | 3702 | typedarray@^0.0.6: 3703 | version "0.0.6" 3704 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3705 | 3706 | uglify-js@^2.7.3: 3707 | version "2.8.28" 3708 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.28.tgz#e335032df9bb20dcb918f164589d5af47f38834a" 3709 | dependencies: 3710 | source-map "~0.5.1" 3711 | yargs "~3.10.0" 3712 | optionalDependencies: 3713 | uglify-to-browserify "~1.0.0" 3714 | 3715 | uglify-to-browserify@~1.0.0: 3716 | version "1.0.2" 3717 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3718 | 3719 | uid-number@^0.0.6: 3720 | version "0.0.6" 3721 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3722 | 3723 | unc-path-regex@^0.1.0: 3724 | version "0.1.2" 3725 | resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" 3726 | 3727 | undefsafe@0.0.3: 3728 | version "0.0.3" 3729 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 3730 | 3731 | unique-string@^1.0.0: 3732 | version "1.0.0" 3733 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 3734 | dependencies: 3735 | crypto-random-string "^1.0.0" 3736 | 3737 | universalify@^0.1.0: 3738 | version "0.1.0" 3739 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.0.tgz#9eb1c4651debcc670cc94f1a75762332bb967778" 3740 | 3741 | unpipe@1.0.0: 3742 | version "1.0.0" 3743 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3744 | 3745 | unzip-response@^2.0.1: 3746 | version "2.0.1" 3747 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 3748 | 3749 | upath@^1.0.2: 3750 | version "1.0.2" 3751 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.0.2.tgz#80aaae5395abc5fd402933ae2f58694f0860204c" 3752 | dependencies: 3753 | lodash.endswith "^4.2.1" 3754 | lodash.isfunction "^3.0.8" 3755 | lodash.isstring "^4.0.1" 3756 | lodash.startswith "^4.2.1" 3757 | 3758 | update-notifier@^2.3.0: 3759 | version "2.3.0" 3760 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 3761 | dependencies: 3762 | boxen "^1.2.1" 3763 | chalk "^2.0.1" 3764 | configstore "^3.0.0" 3765 | import-lazy "^2.1.0" 3766 | is-installed-globally "^0.1.0" 3767 | is-npm "^1.0.0" 3768 | latest-version "^3.0.0" 3769 | semver-diff "^2.0.0" 3770 | xdg-basedir "^3.0.0" 3771 | 3772 | url-parse-lax@^1.0.0: 3773 | version "1.0.0" 3774 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 3775 | dependencies: 3776 | prepend-http "^1.0.1" 3777 | 3778 | url@^0.11.0: 3779 | version "0.11.0" 3780 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3781 | dependencies: 3782 | punycode "1.3.2" 3783 | querystring "0.2.0" 3784 | 3785 | util-deprecate@~1.0.1: 3786 | version "1.0.2" 3787 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3788 | 3789 | util@0.10.3, util@^0.10.3: 3790 | version "0.10.3" 3791 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3792 | dependencies: 3793 | inherits "2.0.1" 3794 | 3795 | uuid@^3.0.0: 3796 | version "3.0.1" 3797 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3798 | 3799 | uuid@^3.1.0: 3800 | version "3.1.0" 3801 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 3802 | 3803 | verror@1.3.6: 3804 | version "1.3.6" 3805 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3806 | dependencies: 3807 | extsprintf "1.0.2" 3808 | 3809 | warp10@^1.0.0: 3810 | version "1.3.4" 3811 | resolved "https://registry.yarnpkg.com/warp10/-/warp10-1.3.4.tgz#d4d4fbe41b015253ade1eb7210a6e823284d1e15" 3812 | 3813 | which-module@^2.0.0: 3814 | version "2.0.0" 3815 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3816 | 3817 | which@^1.2.9: 3818 | version "1.2.14" 3819 | resolved "https://registry.yarnpkg.com/which/-/which-1.2.14.tgz#9a87c4378f03e827cecaf1acdf56c736c01c14e5" 3820 | dependencies: 3821 | isexe "^2.0.0" 3822 | 3823 | wide-align@^1.1.0: 3824 | version "1.1.2" 3825 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3826 | dependencies: 3827 | string-width "^1.0.2" 3828 | 3829 | widest-line@^1.0.0: 3830 | version "1.0.0" 3831 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 3832 | dependencies: 3833 | string-width "^1.0.1" 3834 | 3835 | window-size@0.1.0: 3836 | version "0.1.0" 3837 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3838 | 3839 | window-size@^0.1.4: 3840 | version "0.1.4" 3841 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" 3842 | 3843 | wordwrap@0.0.2: 3844 | version "0.0.2" 3845 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3846 | 3847 | wordwrap@~1.0.0: 3848 | version "1.0.0" 3849 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3850 | 3851 | wrap-ansi@^2.0.0: 3852 | version "2.1.0" 3853 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3854 | dependencies: 3855 | string-width "^1.0.1" 3856 | strip-ansi "^3.0.1" 3857 | 3858 | wrappy@1: 3859 | version "1.0.2" 3860 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3861 | 3862 | write-file-atomic@^2.0.0: 3863 | version "2.3.0" 3864 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3865 | dependencies: 3866 | graceful-fs "^4.1.11" 3867 | imurmurhash "^0.1.4" 3868 | signal-exit "^3.0.2" 3869 | 3870 | write@^0.2.1: 3871 | version "0.2.1" 3872 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 3873 | dependencies: 3874 | mkdirp "^0.5.1" 3875 | 3876 | xdg-basedir@^3.0.0: 3877 | version "3.0.0" 3878 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 3879 | 3880 | xtend@~4.0.1: 3881 | version "4.0.1" 3882 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3883 | 3884 | y18n@^3.2.0, y18n@^3.2.1: 3885 | version "3.2.1" 3886 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3887 | 3888 | yallist@^2.0.0: 3889 | version "2.1.2" 3890 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3891 | 3892 | yargs-parser@^8.0.0: 3893 | version "8.0.0" 3894 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.0.0.tgz#21d476330e5a82279a4b881345bf066102e219c6" 3895 | dependencies: 3896 | camelcase "^4.1.0" 3897 | 3898 | yargs@^10.0.3: 3899 | version "10.0.3" 3900 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.0.3.tgz#6542debd9080ad517ec5048fb454efe9e4d4aaae" 3901 | dependencies: 3902 | cliui "^3.2.0" 3903 | decamelize "^1.1.1" 3904 | find-up "^2.1.0" 3905 | get-caller-file "^1.0.1" 3906 | os-locale "^2.0.0" 3907 | require-directory "^2.1.1" 3908 | require-main-filename "^1.0.1" 3909 | set-blocking "^2.0.0" 3910 | string-width "^2.0.0" 3911 | which-module "^2.0.0" 3912 | y18n "^3.2.1" 3913 | yargs-parser "^8.0.0" 3914 | 3915 | yargs@^3.32.0: 3916 | version "3.32.0" 3917 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" 3918 | dependencies: 3919 | camelcase "^2.0.1" 3920 | cliui "^3.0.3" 3921 | decamelize "^1.1.1" 3922 | os-locale "^1.4.0" 3923 | string-width "^1.0.1" 3924 | window-size "^0.1.4" 3925 | y18n "^3.2.0" 3926 | 3927 | yargs@~3.10.0: 3928 | version "3.10.0" 3929 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3930 | dependencies: 3931 | camelcase "^1.0.2" 3932 | cliui "^2.1.0" 3933 | decamelize "^1.0.0" 3934 | window-size "0.1.0" 3935 | 3936 | zen-observable@^0.6.0: 3937 | version "0.6.0" 3938 | resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.6.0.tgz#8a6157ed15348d185d948cfc4a59d90a2c0f70ee" 3939 | --------------------------------------------------------------------------------