├── .gitignore ├── LICENSE ├── README.md ├── client.js ├── index.html ├── index.js ├── modules ├── cache.js ├── client.js ├── master.js ├── parser.js ├── server.js ├── utils.js └── workers.js ├── package.json ├── server.js ├── socket.js ├── worker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2017 - Present Tim Roberts 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Action Server 2 | 3 | > Why all the fuss? 4 | 5 | ## Overview 6 | 7 | Instead of using `HTTP` headers and all the mumbo jumbo that goes along with a normal network request, this is an example of using strings and `net` server to send messages between instances. 8 | 9 | ## Demo 10 | 11 | ``` 12 | $ git clone git@github.com:beardedtim/action-server.git 13 | 14 | $ cd action-server 15 | 16 | $ node index.js 17 | ``` 18 | 19 | In a different terminal 20 | 21 | ``` 22 | $ cd action-server 23 | 24 | $ node worker.js 25 | ``` 26 | 27 | And yet another one: 28 | ``` 29 | $ cd action-server 30 | 31 | $ node worker.js 32 | ``` 33 | 34 | You should get prints in both worker consoles. -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- 1 | const makeClient = require('./modules/client') 2 | const makeParser = require('./modules/parser') 3 | 4 | const config = { 5 | parser: makeParser(), 6 | port: 65432 7 | } 8 | 9 | const { stream, send } = makeClient() 10 | 11 | stream 12 | .subscribe( 13 | (data) => console.log('New message!', data) 14 | ) 15 | 16 | send({ 17 | data: { 18 | action: 'Message from the client!' 19 | } 20 | }) -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Action Server 8 | 9 | 10 | 19 | 20 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const masterService = require('./modules/master') 2 | 3 | const master = masterService() 4 | 5 | master 6 | .streams 7 | .server 8 | .subscribe( 9 | data => console.log(data,'data from server!') 10 | ) -------------------------------------------------------------------------------- /modules/cache.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns a new cache instance 3 | * 4 | * @return {Cache} 5 | */ 6 | const createCache = () => { 7 | const history = {} 8 | 9 | const add = (log) => { 10 | const { action } = log.data 11 | const pastEvents = history[action] || [] 12 | 13 | history[action] = pastEvents.concat(log) 14 | } 15 | 16 | return ({ 17 | add, 18 | get: key => history[key] 19 | }) 20 | } 21 | 22 | module.exports = createCache 23 | 24 | /** 25 | * A cache instance 26 | * 27 | * @typedef {Object} Cache 28 | * @property {function(Object): void} add - How we add to the log 29 | * @property {function(string): Array} get - How we get the history of an action 30 | */ -------------------------------------------------------------------------------- /modules/client.js: -------------------------------------------------------------------------------- 1 | const net = require('net') 2 | const Rx = require('rxjs') 3 | 4 | const { ensure } = require('./utils') 5 | const makeParser = require('./parser') 6 | const parser = makeParser() 7 | 8 | const DEFAULT_OPTS = { 9 | parser, 10 | port: 65432, 11 | host: 'localhost', 12 | useStdIn: true 13 | } 14 | 15 | const getStdStream = (parserObservable) => 16 | Rx.Observable 17 | .fromEvent(process.stdin, 'data') 18 | .flatMap(parserObservable) 19 | 20 | 21 | /** 22 | * Creates a Client instance 23 | * 24 | * @param {ClientConfig} opts - Our client options 25 | * @return {Client} 26 | */ 27 | const makeClient = (opts = {}) => { 28 | const config = ensure(DEFAULT_OPTS, opts) 29 | 30 | const client = net.createConnection({ port: config.port }, () => {}) 31 | 32 | const getData = msg => config.parser.decode(msg.toString()) 33 | 34 | const stream = Rx.Observable 35 | .of({ 36 | data: { 37 | action: 'CONNECTED' 38 | } 39 | }) 40 | .merge( 41 | Rx.Observable 42 | .fromEvent(client, 'data') 43 | .map(getData) 44 | .takeUntil( 45 | Rx.Observable.fromEvent(client, 'error') 46 | ) 47 | ) 48 | 49 | const send = msg => client.write( 50 | parser.encode(msg) 51 | ) 52 | 53 | let stdInSub = Rx.Observable.empty().subscribe() 54 | 55 | if (config.useStdIn) { 56 | const parserObservable = data => Rx.Observable.of({ 57 | data: config.parser.decode(data.toString()) 58 | }) 59 | stdInSub = getStdStream(parserObservable) 60 | .subscribe(send) 61 | } 62 | 63 | const tearDown = () => { 64 | stdInSub.unsubscribe() 65 | client.end(parser.encode({ 66 | action: 'CLIENT_DISCONNECT' 67 | })) 68 | } 69 | 70 | return ({ 71 | stream, 72 | send, 73 | stop: tearDown, 74 | }) 75 | } 76 | 77 | module.exports = makeClient 78 | 79 | /** 80 | * Our config 81 | * 82 | * @typedef {Object} ClientConfig 83 | * @property {number} port - The port to connect to 84 | * @property {Parser} parser - The parser to use for this service 85 | */ 86 | 87 | /** 88 | * Our Client instance 89 | * 90 | * @typedef {Object} Client 91 | * @property {function(string): void} send - Sends a message to the server from client 92 | * @property {Observable} stream - An observable of responses from the server 93 | */ -------------------------------------------------------------------------------- /modules/master.js: -------------------------------------------------------------------------------- 1 | const net = require('net') 2 | 3 | const Rx = require('rxjs') 4 | const { v4: uuid } = require('uuid') 5 | 6 | const socketServer = require('./server') 7 | const workerService = require('./workers') 8 | const cacheService = require('./cache') 9 | const makeParser = require('./parser') 10 | const { ensure } = require('./utils') 11 | const parser = makeParser() 12 | 13 | const send = (socket, message) => socket && socket.write(parser.encode(message)) 14 | 15 | const DEFAULT_OPTS = { 16 | port: 65432, 17 | send 18 | } 19 | 20 | /** 21 | * Creates a new server that has a cache and workers 22 | * 23 | * @param {MasterOpts} opts - Options for creating a Master 24 | * @return {Master} 25 | */ 26 | const makeMaster = (opts = {}) => { 27 | const config = ensure(DEFAULT_OPTS, opts) 28 | 29 | const server = socketServer() 30 | const { startServer, getId, getSocket, setSocket, socketStream } = server 31 | const serverStream = startServer(config.port) 32 | 33 | const workers = workerService({ 34 | serverStream, 35 | getSocket, 36 | send 37 | }) 38 | 39 | const cache = cacheService() 40 | 41 | const { 42 | workerUnRegisteration, 43 | workerRegisteration 44 | } = workers 45 | 46 | const logSubscription = serverStream 47 | .subscribe(({ data, socket }) => { 48 | const logItem = { 49 | data, 50 | socket, 51 | at: Date.now() 52 | } 53 | 54 | cache.add(logItem) 55 | }) 56 | 57 | const pastEventsSubscription = workerRegisteration 58 | .filter(({ data: { get_history } }) => get_history) 59 | .subscribe( 60 | ({ data, socket: _id }) => { 61 | const worker = getSocket(_id) 62 | 63 | const history = (data.payload.register_to || []) 64 | .reduce((acc, key) => acc.concat(cache.get(key)), []) 65 | 66 | config.send(worker, ({ 67 | data: { 68 | action: 'HISTORY', 69 | payload: history 70 | } 71 | })) 72 | } 73 | ) 74 | 75 | const allEventsSubscriptions = workerRegisteration 76 | .filter(({ data: { payload: { register_to } } }) => register_to.indexOf('ALL') >= 0) 77 | .flatMap(({ socket: _id }) => 78 | serverStream 79 | .map(({ data }) => ({ data, worker: _id })) 80 | ) 81 | .subscribe( 82 | ({ data, worker }) => config.send(getSocket(worker), data) 83 | ) 84 | 85 | const subscriptions = [ 86 | logSubscription, 87 | pastEventsSubscription, 88 | allEventsSubscriptions 89 | ] 90 | 91 | return ({ 92 | stop: () => { 93 | subscriptions.forEach(o => o.unsubscribe()) 94 | server.stop() 95 | }, 96 | streams: { 97 | worker: { 98 | registration: workerRegisteration, 99 | unregistration: workerUnRegisteration 100 | }, 101 | server: serverStream, 102 | sockets: socketStream 103 | }, 104 | cache 105 | }) 106 | } 107 | 108 | module.exports = makeMaster 109 | 110 | /** 111 | * @typedef {Object} WorkerStreams 112 | * 113 | * @property {Observable} registration - Stream of worker registrations 114 | * @property {Observable} unregistrations -Stream of workers unregistering 115 | */ 116 | 117 | /** 118 | * Our streams from Master 119 | * 120 | * @typedef {Object} Streams - The streams returned from Master 121 | * @property {WorkerStreams} worker - The Worker streams object 122 | * @property {Observable} server - A stream of server requests 123 | * @property {Observable} sockets - A stream of socket messages 124 | */ 125 | 126 | /** 127 | * Our Master options 128 | * 129 | * @typedef {Object} MasterOpts 130 | * @property {number} port - The port to listen on 131 | * @property {function(string, string): void} send - A function to send a message to a socket 132 | */ 133 | 134 | /** 135 | * Our Master instance 136 | * @typedef {Object} Master 137 | * @property {function(): void} stop - Stops the server 138 | * @property {Streams} streams - Our streams from master 139 | */ 140 | -------------------------------------------------------------------------------- /modules/parser.js: -------------------------------------------------------------------------------- 1 | const DEFAULT_OPTS = { 2 | encoder: msg => JSON.stringify(msg), 3 | decoder: msg => JSON.parse(msg) 4 | } 5 | 6 | module.exports = (opts) => { 7 | const config = Object.assign({}, DEFAULT_OPTS, opts) 8 | 9 | return ({ 10 | encode: config.encoder, 11 | decode: config.decoder 12 | }) 13 | } -------------------------------------------------------------------------------- /modules/server.js: -------------------------------------------------------------------------------- 1 | const net = require('net') 2 | const Rx = require('rxjs') 3 | const { v4: uuid } = require('uuid') 4 | const { ensure } = require('./utils') 5 | 6 | const makeParser = require('./parser') 7 | const parser = makeParser() 8 | 9 | const DEFAULT_OPTS = { 10 | parser 11 | } 12 | 13 | /** 14 | * Server Factory 15 | * 16 | * Creates a new net server instance returns streams 17 | * 18 | * @param {ServerOptions} opts - Our options object 19 | * @return {Server} - An instance of our server 20 | */ 21 | const makeServer = (opts = {}) => { 22 | const config = ensure(DEFAULT_OPTS, opts) 23 | 24 | const sockets = new Map() 25 | const ids = new Map() 26 | 27 | const getSocket = id => sockets.get(id) 28 | const getId = socket => ids.get(socket) 29 | 30 | const setSocket = socket => { 31 | socket.setEncoding('utf8') 32 | 33 | const _id = uuid() 34 | sockets.set(_id, socket) 35 | ids.set(socket, _id) 36 | 37 | return _id 38 | } 39 | 40 | const server = net.createServer({ allowHalfOpen: true }) 41 | const socketStream = Rx.Observable.fromEvent(server, 'connection') 42 | 43 | const removeSocket = socket => () => { 44 | const id = ids.get(socket) 45 | sockets.delete(id) 46 | ids.delete(socket) 47 | } 48 | 49 | const socketObservable = socket => setSocket(socket) && Rx.Observable 50 | .of({ 51 | data: { 52 | action: 'CONNECTION', 53 | socket: getId(socket) 54 | } 55 | }).merge( 56 | Rx.Observable 57 | .fromEvent(socket, 'data') 58 | .map(config.parser.decode) 59 | .map(message => Object.assign({}, message, { 60 | socket: getId(socket), 61 | })) 62 | ) 63 | .takeUntil( 64 | Rx.Observable.fromEvent(socket, 'close') 65 | .map(removeSocket(socket)) 66 | ) 67 | 68 | const startServer = (port = 65432) => server.listen(port) && 69 | socketStream 70 | .flatMap(socketObservable) 71 | 72 | return ({ 73 | startServer, 74 | getId, 75 | getSocket, 76 | setSocket, 77 | socketStream, 78 | stop: () => server.close() 79 | }) 80 | } 81 | 82 | module.exports = makeServer 83 | 84 | /** 85 | * A parser object 86 | * 87 | * @typedef {Object} Parser 88 | * @property {Function} encode - Encode a message 89 | * @property {Function} decode - Decode a message 90 | */ 91 | 92 | /** 93 | * makeServer Options Object 94 | * 95 | * @typedef {Object} ServerOptions 96 | * @property {Parser} parser 97 | */ 98 | 99 | 100 | /** 101 | * A Net Socket 102 | * 103 | * @typedef {Object} Socket 104 | * 105 | * @property {function(string): void} write - How we send messages to the socket 106 | */ 107 | 108 | 109 | /** 110 | * An RxJs Observable 111 | * 112 | * @typedef {Object} Observable 113 | */ 114 | 115 | 116 | /** 117 | * Our Server Instance 118 | * 119 | * @typedef {Object} Server 120 | * @property {function(number): Observable} startServer - A function that binds to the given port 121 | * @property {function(Object): string} getId - A function that returns the id given a socket 122 | * @property {function(string): Object} getSocket - A function that returns the socket given an id 123 | * @property {function(Socket): string} setSocket - Sets a socket into the server cache and returns the id 124 | * @property {Observable} socketStream - A stream of socket connections 125 | */ 126 | -------------------------------------------------------------------------------- /modules/utils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Ensures the returned object has at least the defautls 3 | * 4 | * @param {Object} defaults - An object of default values 5 | * @param {Object} obj - The input object that may or may not have values 6 | */ 7 | const ensure = (defaults, obj) => Object.assign({}, defaults, obj) 8 | 9 | /** 10 | * Our inspection object 11 | * 12 | * @typedef {Object} InspectionObject 13 | * @property {string} message - The message to throw 14 | * @property {function(a: *): boolean} valid - Function to validate 15 | */ 16 | 17 | /** 18 | * Our inspection schema 19 | * 20 | * @typedef {Object} InspectionSchema 21 | */ 22 | 23 | 24 | /** 25 | * Makes sure the incoming object passes inspection 26 | * with regards to opts 27 | * 28 | * @param {InspectionSchema} opts - Our configuration object 29 | * @return {function(Object): Object} - A function that takes an object and returns the object or throws 30 | */ 31 | const inspectWith = opts => obj => { 32 | for(let key in opts) { 33 | const isValid = () => opts[key].valid(obj[key]) 34 | if (!(key in obj) || !isValid()) { 35 | throw new Error(opts[key].message) 36 | } 37 | } 38 | 39 | return obj 40 | } 41 | 42 | module.exports = { 43 | ensure, 44 | inspectWith 45 | } -------------------------------------------------------------------------------- /modules/workers.js: -------------------------------------------------------------------------------- 1 | const { inspectWith } = require('./utils') 2 | const workers = new Map() 3 | 4 | const inspectOpts = { 5 | serverStream: { 6 | message: 'You must give `workers` a serverStream', 7 | valid: a => a, 8 | }, 9 | getSocket: { 10 | message: 'You must give `workers` a way to get the streams by id', 11 | valid: a => typeof a === 'function' 12 | }, 13 | send: { 14 | message: 'You must give `workers` a way to send messages', 15 | valid: a => typeof a === 'function' 16 | } 17 | } 18 | 19 | const inspect = inspectWith(inspectOpts) 20 | 21 | /** 22 | * Creates a worker handler instance 23 | * 24 | * @param {WorkerOptions} opts - The options for this instance 25 | * @return {WorkerInstance} - An instance of these workers 26 | */ 27 | const makeWorkers = opts => { 28 | const config = inspect(opts) 29 | 30 | const { serverStream, getSocket } = config 31 | 32 | const workerRegisteration = serverStream 33 | .filter(({ data: { action } }) => action === 'REGISTER_WORKER') 34 | 35 | const workerUnRegisteration = serverStream 36 | .filter(({ data: { action } }) => action === 'UNREGISTER_WORKER') 37 | 38 | const startWorkers = () => ([ 39 | serverStream 40 | .subscribe( 41 | ({ data, socket: _id }) => { 42 | const workerIds = workers.has(data.action) ? workers.get(data.action) : [] 43 | 44 | workerIds.forEach(socketId => { 45 | const socket = getSocket(socketId) 46 | 47 | config.send(socket, ({ data, sender: _id })) 48 | }) 49 | }), 50 | 51 | workerRegisteration 52 | .subscribe( 53 | ({ data, socket }) => { 54 | data.payload.register_to.forEach(action => { 55 | const oldSockets = workers.get(action) || [] 56 | // Only want unique ids in this list 57 | workers.set(action,[...new Set(oldSockets.concat(socket))]) 58 | }) 59 | } 60 | ), 61 | 62 | workerUnRegisteration 63 | .subscribe( 64 | ({ data, socket }) => { 65 | data.payload.register_to.forEach(action => { 66 | const oldSockets = workers.get(action) || [] 67 | 68 | workers.set(oldSockets.filter(s => s !== socket)) 69 | }) 70 | } 71 | ), 72 | ]) 73 | 74 | let unsubscribeObjs = startWorkers() 75 | 76 | const stop = () => { 77 | unsubscribeObjs.forEach(obj => { 78 | obj.unsubscribe() 79 | }) 80 | 81 | unsubscribeObjs = [] 82 | } 83 | 84 | const start = () => { 85 | stop() 86 | unsubscribeObjs = startWorkers() 87 | } 88 | 89 | return ({ 90 | getWorkers: action => workers.has(action) ? workers.get(action) : [], 91 | clear: () => workers.clear(), 92 | stop, 93 | start, 94 | workerRegisteration, 95 | workerUnRegisteration 96 | }) 97 | } 98 | 99 | module.exports = makeWorkers 100 | 101 | /** 102 | * Our SingleOptions Object 103 | * 104 | * @typedef {Object} SingleOpts 105 | * @property {string} message - The message the throw if not valid 106 | * @property {function(any): boolean} valid - The function to check if valid 107 | */ 108 | 109 | 110 | /** 111 | * Our Worker Options 112 | * 113 | * @typedef {Object} WorkerOptions 114 | */ 115 | 116 | /** 117 | * Our Worker Instance 118 | * 119 | * @typedef {Object} WorkerInstance 120 | * @property {function(string): [string]} getWorkers - Given an action, get all attached workers 121 | * @property {function} clear - How we clear all workers 122 | * @property {function} stop - How we stop all workers 123 | * @property {function} start - How we re-create the instance 124 | * @property {Observable} workerRegistration - An observable of workers registering 125 | * @property {Observable} workerUnregisteration - An observable of workers unregistering 126 | */ 127 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "nodemon": "^1.12.1", 4 | "redis": "^2.8.0", 5 | "rxjs": "^5.5.0", 6 | "uuid": "^3.1.0", 7 | "uws": "^8.14.1" 8 | }, 9 | "name": "action-server", 10 | "version": "0.0.0-development", 11 | "description": "A net server with JSON messaging", 12 | "main": "index.js", 13 | "repository": "git@github.com:beardedtim/action-server.git", 14 | "author": "Tim Roberts ", 15 | "license": "MIT" 16 | } 17 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | const socketServer = require('./modules/server') 2 | 3 | const config = { 4 | port: 65432, 5 | } 6 | 7 | const server = socketServer() 8 | const { startServer } = server 9 | const serverStream = startServer(config.port) 10 | 11 | serverStream 12 | .subscribe( 13 | ({ data, socket }) => { 14 | console.log(data.action,'this is action') 15 | console.log(socket,'this is socket') 16 | } 17 | ) -------------------------------------------------------------------------------- /socket.js: -------------------------------------------------------------------------------- 1 | const net = require('net') 2 | const { Server } = require('uws') 3 | const socketServer = new Server({ port: 8080 }) 4 | 5 | const client = net.createConnection({ port: 65432 }, () => { 6 | function onMessage(message) { 7 | console.log('received: ' + message); 8 | } 9 | 10 | socketServer.on('connection', function(socket) { 11 | socket.on('message', onMessage) 12 | client.on('data', (data) => { 13 | socket.send(data.toString()) 14 | }) 15 | }) 16 | 17 | client.write(JSON.stringify({ 18 | data: { 19 | action: 'REGISTER_WORKER', 20 | payload: { 21 | register_to: ['ALL'] 22 | } 23 | } 24 | })) 25 | }) -------------------------------------------------------------------------------- /worker.js: -------------------------------------------------------------------------------- 1 | const net = require('net') 2 | const Rx = require('rxjs') 3 | 4 | const makeParser = require('./modules/parser') 5 | const makeClient = require('./modules/client') 6 | 7 | const { stream, send } = makeClient() 8 | 9 | send({ 10 | data: { 11 | action: 'REGISTER_WORKER', 12 | payload: { 13 | register_to: ['SOME_ACTION'] 14 | }, 15 | get_history: true 16 | } 17 | }) 18 | 19 | stream.subscribe( 20 | msg => { 21 | console.log('worker message!') 22 | console.log(msg) 23 | } 24 | ) -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | ajv@^4.9.1: 10 | version "4.11.8" 11 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 12 | dependencies: 13 | co "^4.6.0" 14 | json-stable-stringify "^1.0.1" 15 | 16 | ansi-align@^2.0.0: 17 | version "2.0.0" 18 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 19 | dependencies: 20 | string-width "^2.0.0" 21 | 22 | ansi-regex@^2.0.0: 23 | version "2.1.1" 24 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 25 | 26 | ansi-regex@^3.0.0: 27 | version "3.0.0" 28 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 29 | 30 | ansi-styles@^3.1.0: 31 | version "3.2.0" 32 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 33 | dependencies: 34 | color-convert "^1.9.0" 35 | 36 | anymatch@^1.3.0: 37 | version "1.3.2" 38 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 39 | dependencies: 40 | micromatch "^2.1.5" 41 | normalize-path "^2.0.0" 42 | 43 | aproba@^1.0.3: 44 | version "1.2.0" 45 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 46 | 47 | are-we-there-yet@~1.1.2: 48 | version "1.1.4" 49 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 50 | dependencies: 51 | delegates "^1.0.0" 52 | readable-stream "^2.0.6" 53 | 54 | arr-diff@^2.0.0: 55 | version "2.0.0" 56 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 57 | dependencies: 58 | arr-flatten "^1.0.1" 59 | 60 | arr-flatten@^1.0.1: 61 | version "1.1.0" 62 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 63 | 64 | array-unique@^0.2.1: 65 | version "0.2.1" 66 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 67 | 68 | asn1@~0.2.3: 69 | version "0.2.3" 70 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 71 | 72 | assert-plus@1.0.0, assert-plus@^1.0.0: 73 | version "1.0.0" 74 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 75 | 76 | assert-plus@^0.2.0: 77 | version "0.2.0" 78 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 79 | 80 | async-each@^1.0.0: 81 | version "1.0.1" 82 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 83 | 84 | asynckit@^0.4.0: 85 | version "0.4.0" 86 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 87 | 88 | aws-sign2@~0.6.0: 89 | version "0.6.0" 90 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 91 | 92 | aws4@^1.2.1: 93 | version "1.6.0" 94 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 95 | 96 | balanced-match@^1.0.0: 97 | version "1.0.0" 98 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 99 | 100 | bcrypt-pbkdf@^1.0.0: 101 | version "1.0.1" 102 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 103 | dependencies: 104 | tweetnacl "^0.14.3" 105 | 106 | binary-extensions@^1.0.0: 107 | version "1.10.0" 108 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 109 | 110 | block-stream@*: 111 | version "0.0.9" 112 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 113 | dependencies: 114 | inherits "~2.0.0" 115 | 116 | boom@2.x.x: 117 | version "2.10.1" 118 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 119 | dependencies: 120 | hoek "2.x.x" 121 | 122 | boxen@^1.2.1: 123 | version "1.2.2" 124 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.2.tgz#3f1d4032c30ffea9d4b02c322eaf2ea741dcbce5" 125 | dependencies: 126 | ansi-align "^2.0.0" 127 | camelcase "^4.0.0" 128 | chalk "^2.0.1" 129 | cli-boxes "^1.0.0" 130 | string-width "^2.0.0" 131 | term-size "^1.2.0" 132 | widest-line "^1.0.0" 133 | 134 | brace-expansion@^1.1.7: 135 | version "1.1.8" 136 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 137 | dependencies: 138 | balanced-match "^1.0.0" 139 | concat-map "0.0.1" 140 | 141 | braces@^1.8.2: 142 | version "1.8.5" 143 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 144 | dependencies: 145 | expand-range "^1.8.1" 146 | preserve "^0.2.0" 147 | repeat-element "^1.1.2" 148 | 149 | camelcase@^4.0.0: 150 | version "4.1.0" 151 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 152 | 153 | capture-stack-trace@^1.0.0: 154 | version "1.0.0" 155 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 156 | 157 | caseless@~0.12.0: 158 | version "0.12.0" 159 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 160 | 161 | chalk@^2.0.1: 162 | version "2.2.0" 163 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.2.0.tgz#477b3bf2f9b8fd5ca9e429747e37f724ee7af240" 164 | dependencies: 165 | ansi-styles "^3.1.0" 166 | escape-string-regexp "^1.0.5" 167 | supports-color "^4.0.0" 168 | 169 | chokidar@^1.7.0: 170 | version "1.7.0" 171 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 172 | dependencies: 173 | anymatch "^1.3.0" 174 | async-each "^1.0.0" 175 | glob-parent "^2.0.0" 176 | inherits "^2.0.1" 177 | is-binary-path "^1.0.0" 178 | is-glob "^2.0.0" 179 | path-is-absolute "^1.0.0" 180 | readdirp "^2.0.0" 181 | optionalDependencies: 182 | fsevents "^1.0.0" 183 | 184 | cli-boxes@^1.0.0: 185 | version "1.0.0" 186 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 187 | 188 | co@^4.6.0: 189 | version "4.6.0" 190 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 191 | 192 | code-point-at@^1.0.0: 193 | version "1.1.0" 194 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 195 | 196 | color-convert@^1.9.0: 197 | version "1.9.0" 198 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 199 | dependencies: 200 | color-name "^1.1.1" 201 | 202 | color-name@^1.1.1: 203 | version "1.1.3" 204 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 205 | 206 | combined-stream@^1.0.5, combined-stream@~1.0.5: 207 | version "1.0.5" 208 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 209 | dependencies: 210 | delayed-stream "~1.0.0" 211 | 212 | concat-map@0.0.1: 213 | version "0.0.1" 214 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 215 | 216 | configstore@^3.0.0: 217 | version "3.1.1" 218 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" 219 | dependencies: 220 | dot-prop "^4.1.0" 221 | graceful-fs "^4.1.2" 222 | make-dir "^1.0.0" 223 | unique-string "^1.0.0" 224 | write-file-atomic "^2.0.0" 225 | xdg-basedir "^3.0.0" 226 | 227 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 228 | version "1.1.0" 229 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 230 | 231 | core-util-is@1.0.2, core-util-is@~1.0.0: 232 | version "1.0.2" 233 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 234 | 235 | create-error-class@^3.0.0: 236 | version "3.0.2" 237 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 238 | dependencies: 239 | capture-stack-trace "^1.0.0" 240 | 241 | cross-spawn@^5.0.1: 242 | version "5.1.0" 243 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 244 | dependencies: 245 | lru-cache "^4.0.1" 246 | shebang-command "^1.2.0" 247 | which "^1.2.9" 248 | 249 | cryptiles@2.x.x: 250 | version "2.0.5" 251 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 252 | dependencies: 253 | boom "2.x.x" 254 | 255 | crypto-random-string@^1.0.0: 256 | version "1.0.0" 257 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 258 | 259 | dashdash@^1.12.0: 260 | version "1.14.1" 261 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 262 | dependencies: 263 | assert-plus "^1.0.0" 264 | 265 | debug@^2.2.0, debug@^2.6.8: 266 | version "2.6.9" 267 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 268 | dependencies: 269 | ms "2.0.0" 270 | 271 | deep-extend@~0.4.0: 272 | version "0.4.2" 273 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 274 | 275 | delayed-stream@~1.0.0: 276 | version "1.0.0" 277 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 278 | 279 | delegates@^1.0.0: 280 | version "1.0.0" 281 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 282 | 283 | dot-prop@^4.1.0: 284 | version "4.2.0" 285 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 286 | dependencies: 287 | is-obj "^1.0.0" 288 | 289 | double-ended-queue@^2.1.0-0: 290 | version "2.1.0-0" 291 | resolved "https://registry.yarnpkg.com/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" 292 | 293 | duplexer3@^0.1.4: 294 | version "0.1.4" 295 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 296 | 297 | duplexer@~0.1.1: 298 | version "0.1.1" 299 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 300 | 301 | ecc-jsbn@~0.1.1: 302 | version "0.1.1" 303 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 304 | dependencies: 305 | jsbn "~0.1.0" 306 | 307 | es6-promise@^3.3.1: 308 | version "3.3.1" 309 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 310 | 311 | escape-string-regexp@^1.0.5: 312 | version "1.0.5" 313 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 314 | 315 | event-stream@~3.3.0: 316 | version "3.3.4" 317 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 318 | dependencies: 319 | duplexer "~0.1.1" 320 | from "~0" 321 | map-stream "~0.1.0" 322 | pause-stream "0.0.11" 323 | split "0.3" 324 | stream-combiner "~0.0.4" 325 | through "~2.3.1" 326 | 327 | execa@^0.7.0: 328 | version "0.7.0" 329 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 330 | dependencies: 331 | cross-spawn "^5.0.1" 332 | get-stream "^3.0.0" 333 | is-stream "^1.1.0" 334 | npm-run-path "^2.0.0" 335 | p-finally "^1.0.0" 336 | signal-exit "^3.0.0" 337 | strip-eof "^1.0.0" 338 | 339 | expand-brackets@^0.1.4: 340 | version "0.1.5" 341 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 342 | dependencies: 343 | is-posix-bracket "^0.1.0" 344 | 345 | expand-range@^1.8.1: 346 | version "1.8.2" 347 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 348 | dependencies: 349 | fill-range "^2.1.0" 350 | 351 | extend@~3.0.0: 352 | version "3.0.1" 353 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 354 | 355 | extglob@^0.3.1: 356 | version "0.3.2" 357 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 358 | dependencies: 359 | is-extglob "^1.0.0" 360 | 361 | extsprintf@1.3.0, extsprintf@^1.2.0: 362 | version "1.3.0" 363 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 364 | 365 | filename-regex@^2.0.0: 366 | version "2.0.1" 367 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 368 | 369 | fill-range@^2.1.0: 370 | version "2.2.3" 371 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 372 | dependencies: 373 | is-number "^2.1.0" 374 | isobject "^2.0.0" 375 | randomatic "^1.1.3" 376 | repeat-element "^1.1.2" 377 | repeat-string "^1.5.2" 378 | 379 | for-in@^1.0.1: 380 | version "1.0.2" 381 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 382 | 383 | for-own@^0.1.4: 384 | version "0.1.5" 385 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 386 | dependencies: 387 | for-in "^1.0.1" 388 | 389 | forever-agent@~0.6.1: 390 | version "0.6.1" 391 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 392 | 393 | form-data@~2.1.1: 394 | version "2.1.4" 395 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 396 | dependencies: 397 | asynckit "^0.4.0" 398 | combined-stream "^1.0.5" 399 | mime-types "^2.1.12" 400 | 401 | from@~0: 402 | version "0.1.7" 403 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 404 | 405 | fs.realpath@^1.0.0: 406 | version "1.0.0" 407 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 408 | 409 | fsevents@^1.0.0: 410 | version "1.1.2" 411 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 412 | dependencies: 413 | nan "^2.3.0" 414 | node-pre-gyp "^0.6.36" 415 | 416 | fstream-ignore@^1.0.5: 417 | version "1.0.5" 418 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 419 | dependencies: 420 | fstream "^1.0.0" 421 | inherits "2" 422 | minimatch "^3.0.0" 423 | 424 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 425 | version "1.0.11" 426 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 427 | dependencies: 428 | graceful-fs "^4.1.2" 429 | inherits "~2.0.0" 430 | mkdirp ">=0.5 0" 431 | rimraf "2" 432 | 433 | gauge@~2.7.3: 434 | version "2.7.4" 435 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 436 | dependencies: 437 | aproba "^1.0.3" 438 | console-control-strings "^1.0.0" 439 | has-unicode "^2.0.0" 440 | object-assign "^4.1.0" 441 | signal-exit "^3.0.0" 442 | string-width "^1.0.1" 443 | strip-ansi "^3.0.1" 444 | wide-align "^1.1.0" 445 | 446 | get-stream@^3.0.0: 447 | version "3.0.0" 448 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 449 | 450 | getpass@^0.1.1: 451 | version "0.1.7" 452 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 453 | dependencies: 454 | assert-plus "^1.0.0" 455 | 456 | glob-base@^0.3.0: 457 | version "0.3.0" 458 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 459 | dependencies: 460 | glob-parent "^2.0.0" 461 | is-glob "^2.0.0" 462 | 463 | glob-parent@^2.0.0: 464 | version "2.0.0" 465 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 466 | dependencies: 467 | is-glob "^2.0.0" 468 | 469 | glob@^7.0.5: 470 | version "7.1.2" 471 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 472 | dependencies: 473 | fs.realpath "^1.0.0" 474 | inflight "^1.0.4" 475 | inherits "2" 476 | minimatch "^3.0.4" 477 | once "^1.3.0" 478 | path-is-absolute "^1.0.0" 479 | 480 | global-dirs@^0.1.0: 481 | version "0.1.0" 482 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.0.tgz#10d34039e0df04272e262cf24224f7209434df4f" 483 | dependencies: 484 | ini "^1.3.4" 485 | 486 | got@^6.7.1: 487 | version "6.7.1" 488 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 489 | dependencies: 490 | create-error-class "^3.0.0" 491 | duplexer3 "^0.1.4" 492 | get-stream "^3.0.0" 493 | is-redirect "^1.0.0" 494 | is-retry-allowed "^1.0.0" 495 | is-stream "^1.0.0" 496 | lowercase-keys "^1.0.0" 497 | safe-buffer "^5.0.1" 498 | timed-out "^4.0.0" 499 | unzip-response "^2.0.1" 500 | url-parse-lax "^1.0.0" 501 | 502 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 503 | version "4.1.11" 504 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 505 | 506 | har-schema@^1.0.5: 507 | version "1.0.5" 508 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 509 | 510 | har-validator@~4.2.1: 511 | version "4.2.1" 512 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 513 | dependencies: 514 | ajv "^4.9.1" 515 | har-schema "^1.0.5" 516 | 517 | has-flag@^2.0.0: 518 | version "2.0.0" 519 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 520 | 521 | has-unicode@^2.0.0: 522 | version "2.0.1" 523 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 524 | 525 | hawk@3.1.3, hawk@~3.1.3: 526 | version "3.1.3" 527 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 528 | dependencies: 529 | boom "2.x.x" 530 | cryptiles "2.x.x" 531 | hoek "2.x.x" 532 | sntp "1.x.x" 533 | 534 | hoek@2.x.x: 535 | version "2.16.3" 536 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 537 | 538 | http-signature@~1.1.0: 539 | version "1.1.1" 540 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 541 | dependencies: 542 | assert-plus "^0.2.0" 543 | jsprim "^1.2.2" 544 | sshpk "^1.7.0" 545 | 546 | ignore-by-default@^1.0.1: 547 | version "1.0.1" 548 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 549 | 550 | import-lazy@^2.1.0: 551 | version "2.1.0" 552 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 553 | 554 | imurmurhash@^0.1.4: 555 | version "0.1.4" 556 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 557 | 558 | inflight@^1.0.4: 559 | version "1.0.6" 560 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 561 | dependencies: 562 | once "^1.3.0" 563 | wrappy "1" 564 | 565 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 566 | version "2.0.3" 567 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 568 | 569 | ini@^1.3.4, ini@~1.3.0: 570 | version "1.3.4" 571 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 572 | 573 | is-binary-path@^1.0.0: 574 | version "1.0.1" 575 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 576 | dependencies: 577 | binary-extensions "^1.0.0" 578 | 579 | is-buffer@^1.1.5: 580 | version "1.1.5" 581 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 582 | 583 | is-dotfile@^1.0.0: 584 | version "1.0.3" 585 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 586 | 587 | is-equal-shallow@^0.1.3: 588 | version "0.1.3" 589 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 590 | dependencies: 591 | is-primitive "^2.0.0" 592 | 593 | is-extendable@^0.1.1: 594 | version "0.1.1" 595 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 596 | 597 | is-extglob@^1.0.0: 598 | version "1.0.0" 599 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 600 | 601 | is-fullwidth-code-point@^1.0.0: 602 | version "1.0.0" 603 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 604 | dependencies: 605 | number-is-nan "^1.0.0" 606 | 607 | is-fullwidth-code-point@^2.0.0: 608 | version "2.0.0" 609 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 610 | 611 | is-glob@^2.0.0, is-glob@^2.0.1: 612 | version "2.0.1" 613 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 614 | dependencies: 615 | is-extglob "^1.0.0" 616 | 617 | is-installed-globally@^0.1.0: 618 | version "0.1.0" 619 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 620 | dependencies: 621 | global-dirs "^0.1.0" 622 | is-path-inside "^1.0.0" 623 | 624 | is-npm@^1.0.0: 625 | version "1.0.0" 626 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 627 | 628 | is-number@^2.1.0: 629 | version "2.1.0" 630 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 631 | dependencies: 632 | kind-of "^3.0.2" 633 | 634 | is-number@^3.0.0: 635 | version "3.0.0" 636 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 637 | dependencies: 638 | kind-of "^3.0.2" 639 | 640 | is-obj@^1.0.0: 641 | version "1.0.1" 642 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 643 | 644 | is-path-inside@^1.0.0: 645 | version "1.0.0" 646 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 647 | dependencies: 648 | path-is-inside "^1.0.1" 649 | 650 | is-posix-bracket@^0.1.0: 651 | version "0.1.1" 652 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 653 | 654 | is-primitive@^2.0.0: 655 | version "2.0.0" 656 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 657 | 658 | is-redirect@^1.0.0: 659 | version "1.0.0" 660 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 661 | 662 | is-retry-allowed@^1.0.0: 663 | version "1.1.0" 664 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 665 | 666 | is-stream@^1.0.0, is-stream@^1.1.0: 667 | version "1.1.0" 668 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 669 | 670 | is-typedarray@~1.0.0: 671 | version "1.0.0" 672 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 673 | 674 | isarray@1.0.0, isarray@~1.0.0: 675 | version "1.0.0" 676 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 677 | 678 | isexe@^2.0.0: 679 | version "2.0.0" 680 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 681 | 682 | isobject@^2.0.0: 683 | version "2.1.0" 684 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 685 | dependencies: 686 | isarray "1.0.0" 687 | 688 | isstream@~0.1.2: 689 | version "0.1.2" 690 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 691 | 692 | jsbn@~0.1.0: 693 | version "0.1.1" 694 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 695 | 696 | json-schema@0.2.3: 697 | version "0.2.3" 698 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 699 | 700 | json-stable-stringify@^1.0.1: 701 | version "1.0.1" 702 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 703 | dependencies: 704 | jsonify "~0.0.0" 705 | 706 | json-stringify-safe@~5.0.1: 707 | version "5.0.1" 708 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 709 | 710 | jsonify@~0.0.0: 711 | version "0.0.0" 712 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 713 | 714 | jsprim@^1.2.2: 715 | version "1.4.1" 716 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 717 | dependencies: 718 | assert-plus "1.0.0" 719 | extsprintf "1.3.0" 720 | json-schema "0.2.3" 721 | verror "1.10.0" 722 | 723 | kind-of@^3.0.2: 724 | version "3.2.2" 725 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 726 | dependencies: 727 | is-buffer "^1.1.5" 728 | 729 | kind-of@^4.0.0: 730 | version "4.0.0" 731 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 732 | dependencies: 733 | is-buffer "^1.1.5" 734 | 735 | latest-version@^3.0.0: 736 | version "3.1.0" 737 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 738 | dependencies: 739 | package-json "^4.0.0" 740 | 741 | lodash._baseassign@^3.0.0: 742 | version "3.2.0" 743 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 744 | dependencies: 745 | lodash._basecopy "^3.0.0" 746 | lodash.keys "^3.0.0" 747 | 748 | lodash._basecopy@^3.0.0: 749 | version "3.0.1" 750 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 751 | 752 | lodash._bindcallback@^3.0.0: 753 | version "3.0.1" 754 | resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" 755 | 756 | lodash._createassigner@^3.0.0: 757 | version "3.1.1" 758 | resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" 759 | dependencies: 760 | lodash._bindcallback "^3.0.0" 761 | lodash._isiterateecall "^3.0.0" 762 | lodash.restparam "^3.0.0" 763 | 764 | lodash._getnative@^3.0.0: 765 | version "3.9.1" 766 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 767 | 768 | lodash._isiterateecall@^3.0.0: 769 | version "3.0.9" 770 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 771 | 772 | lodash.assign@^3.0.0: 773 | version "3.2.0" 774 | resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" 775 | dependencies: 776 | lodash._baseassign "^3.0.0" 777 | lodash._createassigner "^3.0.0" 778 | lodash.keys "^3.0.0" 779 | 780 | lodash.defaults@^3.1.2: 781 | version "3.1.2" 782 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c" 783 | dependencies: 784 | lodash.assign "^3.0.0" 785 | lodash.restparam "^3.0.0" 786 | 787 | lodash.isarguments@^3.0.0: 788 | version "3.1.0" 789 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 790 | 791 | lodash.isarray@^3.0.0: 792 | version "3.0.4" 793 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 794 | 795 | lodash.keys@^3.0.0: 796 | version "3.1.2" 797 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 798 | dependencies: 799 | lodash._getnative "^3.0.0" 800 | lodash.isarguments "^3.0.0" 801 | lodash.isarray "^3.0.0" 802 | 803 | lodash.restparam@^3.0.0: 804 | version "3.6.1" 805 | resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" 806 | 807 | lowercase-keys@^1.0.0: 808 | version "1.0.0" 809 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 810 | 811 | lru-cache@^4.0.1: 812 | version "4.1.1" 813 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 814 | dependencies: 815 | pseudomap "^1.0.2" 816 | yallist "^2.1.2" 817 | 818 | make-dir@^1.0.0: 819 | version "1.1.0" 820 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.1.0.tgz#19b4369fe48c116f53c2af95ad102c0e39e85d51" 821 | dependencies: 822 | pify "^3.0.0" 823 | 824 | map-stream@~0.1.0: 825 | version "0.1.0" 826 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 827 | 828 | micromatch@^2.1.5: 829 | version "2.3.11" 830 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 831 | dependencies: 832 | arr-diff "^2.0.0" 833 | array-unique "^0.2.1" 834 | braces "^1.8.2" 835 | expand-brackets "^0.1.4" 836 | extglob "^0.3.1" 837 | filename-regex "^2.0.0" 838 | is-extglob "^1.0.0" 839 | is-glob "^2.0.1" 840 | kind-of "^3.0.2" 841 | normalize-path "^2.0.1" 842 | object.omit "^2.0.0" 843 | parse-glob "^3.0.4" 844 | regex-cache "^0.4.2" 845 | 846 | mime-db@~1.30.0: 847 | version "1.30.0" 848 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 849 | 850 | mime-types@^2.1.12, mime-types@~2.1.7: 851 | version "2.1.17" 852 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 853 | dependencies: 854 | mime-db "~1.30.0" 855 | 856 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 857 | version "3.0.4" 858 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 859 | dependencies: 860 | brace-expansion "^1.1.7" 861 | 862 | minimist@0.0.8: 863 | version "0.0.8" 864 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 865 | 866 | minimist@^1.2.0: 867 | version "1.2.0" 868 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 869 | 870 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 871 | version "0.5.1" 872 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 873 | dependencies: 874 | minimist "0.0.8" 875 | 876 | ms@2.0.0: 877 | version "2.0.0" 878 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 879 | 880 | nan@^2.3.0: 881 | version "2.7.0" 882 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 883 | 884 | node-pre-gyp@^0.6.36: 885 | version "0.6.38" 886 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" 887 | dependencies: 888 | hawk "3.1.3" 889 | mkdirp "^0.5.1" 890 | nopt "^4.0.1" 891 | npmlog "^4.0.2" 892 | rc "^1.1.7" 893 | request "2.81.0" 894 | rimraf "^2.6.1" 895 | semver "^5.3.0" 896 | tar "^2.2.1" 897 | tar-pack "^3.4.0" 898 | 899 | nodemon@^1.12.1: 900 | version "1.12.1" 901 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.12.1.tgz#996a56dc49d9f16bbf1b78a4de08f13634b3878d" 902 | dependencies: 903 | chokidar "^1.7.0" 904 | debug "^2.6.8" 905 | es6-promise "^3.3.1" 906 | ignore-by-default "^1.0.1" 907 | lodash.defaults "^3.1.2" 908 | minimatch "^3.0.4" 909 | ps-tree "^1.1.0" 910 | touch "^3.1.0" 911 | undefsafe "0.0.3" 912 | update-notifier "^2.2.0" 913 | 914 | nopt@^4.0.1: 915 | version "4.0.1" 916 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 917 | dependencies: 918 | abbrev "1" 919 | osenv "^0.1.4" 920 | 921 | nopt@~1.0.10: 922 | version "1.0.10" 923 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 924 | dependencies: 925 | abbrev "1" 926 | 927 | normalize-path@^2.0.0, normalize-path@^2.0.1: 928 | version "2.1.1" 929 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 930 | dependencies: 931 | remove-trailing-separator "^1.0.1" 932 | 933 | npm-run-path@^2.0.0: 934 | version "2.0.2" 935 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 936 | dependencies: 937 | path-key "^2.0.0" 938 | 939 | npmlog@^4.0.2: 940 | version "4.1.2" 941 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 942 | dependencies: 943 | are-we-there-yet "~1.1.2" 944 | console-control-strings "~1.1.0" 945 | gauge "~2.7.3" 946 | set-blocking "~2.0.0" 947 | 948 | number-is-nan@^1.0.0: 949 | version "1.0.1" 950 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 951 | 952 | oauth-sign@~0.8.1: 953 | version "0.8.2" 954 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 955 | 956 | object-assign@^4.1.0: 957 | version "4.1.1" 958 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 959 | 960 | object.omit@^2.0.0: 961 | version "2.0.1" 962 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 963 | dependencies: 964 | for-own "^0.1.4" 965 | is-extendable "^0.1.1" 966 | 967 | once@^1.3.0, once@^1.3.3: 968 | version "1.4.0" 969 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 970 | dependencies: 971 | wrappy "1" 972 | 973 | os-homedir@^1.0.0: 974 | version "1.0.2" 975 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 976 | 977 | os-tmpdir@^1.0.0: 978 | version "1.0.2" 979 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 980 | 981 | osenv@^0.1.4: 982 | version "0.1.4" 983 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 984 | dependencies: 985 | os-homedir "^1.0.0" 986 | os-tmpdir "^1.0.0" 987 | 988 | p-finally@^1.0.0: 989 | version "1.0.0" 990 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 991 | 992 | package-json@^4.0.0: 993 | version "4.0.1" 994 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 995 | dependencies: 996 | got "^6.7.1" 997 | registry-auth-token "^3.0.1" 998 | registry-url "^3.0.3" 999 | semver "^5.1.0" 1000 | 1001 | parse-glob@^3.0.4: 1002 | version "3.0.4" 1003 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1004 | dependencies: 1005 | glob-base "^0.3.0" 1006 | is-dotfile "^1.0.0" 1007 | is-extglob "^1.0.0" 1008 | is-glob "^2.0.0" 1009 | 1010 | path-is-absolute@^1.0.0: 1011 | version "1.0.1" 1012 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1013 | 1014 | path-is-inside@^1.0.1: 1015 | version "1.0.2" 1016 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1017 | 1018 | path-key@^2.0.0: 1019 | version "2.0.1" 1020 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1021 | 1022 | pause-stream@0.0.11: 1023 | version "0.0.11" 1024 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1025 | dependencies: 1026 | through "~2.3" 1027 | 1028 | performance-now@^0.2.0: 1029 | version "0.2.0" 1030 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1031 | 1032 | pify@^3.0.0: 1033 | version "3.0.0" 1034 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1035 | 1036 | prepend-http@^1.0.1: 1037 | version "1.0.4" 1038 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1039 | 1040 | preserve@^0.2.0: 1041 | version "0.2.0" 1042 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1043 | 1044 | process-nextick-args@~1.0.6: 1045 | version "1.0.7" 1046 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1047 | 1048 | ps-tree@^1.1.0: 1049 | version "1.1.0" 1050 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" 1051 | dependencies: 1052 | event-stream "~3.3.0" 1053 | 1054 | pseudomap@^1.0.2: 1055 | version "1.0.2" 1056 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1057 | 1058 | punycode@^1.4.1: 1059 | version "1.4.1" 1060 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1061 | 1062 | qs@~6.4.0: 1063 | version "6.4.0" 1064 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1065 | 1066 | randomatic@^1.1.3: 1067 | version "1.1.7" 1068 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1069 | dependencies: 1070 | is-number "^3.0.0" 1071 | kind-of "^4.0.0" 1072 | 1073 | rc@^1.0.1, rc@^1.1.6, rc@^1.1.7: 1074 | version "1.2.2" 1075 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 1076 | dependencies: 1077 | deep-extend "~0.4.0" 1078 | ini "~1.3.0" 1079 | minimist "^1.2.0" 1080 | strip-json-comments "~2.0.1" 1081 | 1082 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1083 | version "2.3.3" 1084 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1085 | dependencies: 1086 | core-util-is "~1.0.0" 1087 | inherits "~2.0.3" 1088 | isarray "~1.0.0" 1089 | process-nextick-args "~1.0.6" 1090 | safe-buffer "~5.1.1" 1091 | string_decoder "~1.0.3" 1092 | util-deprecate "~1.0.1" 1093 | 1094 | readdirp@^2.0.0: 1095 | version "2.1.0" 1096 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1097 | dependencies: 1098 | graceful-fs "^4.1.2" 1099 | minimatch "^3.0.2" 1100 | readable-stream "^2.0.2" 1101 | set-immediate-shim "^1.0.1" 1102 | 1103 | redis-commands@^1.2.0: 1104 | version "1.3.1" 1105 | resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.3.1.tgz#81d826f45fa9c8b2011f4cd7a0fe597d241d442b" 1106 | 1107 | redis-parser@^2.6.0: 1108 | version "2.6.0" 1109 | resolved "https://registry.yarnpkg.com/redis-parser/-/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" 1110 | 1111 | redis@^2.8.0: 1112 | version "2.8.0" 1113 | resolved "https://registry.yarnpkg.com/redis/-/redis-2.8.0.tgz#202288e3f58c49f6079d97af7a10e1303ae14b02" 1114 | dependencies: 1115 | double-ended-queue "^2.1.0-0" 1116 | redis-commands "^1.2.0" 1117 | redis-parser "^2.6.0" 1118 | 1119 | regex-cache@^0.4.2: 1120 | version "0.4.4" 1121 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1122 | dependencies: 1123 | is-equal-shallow "^0.1.3" 1124 | 1125 | registry-auth-token@^3.0.1: 1126 | version "3.3.1" 1127 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" 1128 | dependencies: 1129 | rc "^1.1.6" 1130 | safe-buffer "^5.0.1" 1131 | 1132 | registry-url@^3.0.3: 1133 | version "3.1.0" 1134 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1135 | dependencies: 1136 | rc "^1.0.1" 1137 | 1138 | remove-trailing-separator@^1.0.1: 1139 | version "1.1.0" 1140 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1141 | 1142 | repeat-element@^1.1.2: 1143 | version "1.1.2" 1144 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1145 | 1146 | repeat-string@^1.5.2: 1147 | version "1.6.1" 1148 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1149 | 1150 | request@2.81.0: 1151 | version "2.81.0" 1152 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1153 | dependencies: 1154 | aws-sign2 "~0.6.0" 1155 | aws4 "^1.2.1" 1156 | caseless "~0.12.0" 1157 | combined-stream "~1.0.5" 1158 | extend "~3.0.0" 1159 | forever-agent "~0.6.1" 1160 | form-data "~2.1.1" 1161 | har-validator "~4.2.1" 1162 | hawk "~3.1.3" 1163 | http-signature "~1.1.0" 1164 | is-typedarray "~1.0.0" 1165 | isstream "~0.1.2" 1166 | json-stringify-safe "~5.0.1" 1167 | mime-types "~2.1.7" 1168 | oauth-sign "~0.8.1" 1169 | performance-now "^0.2.0" 1170 | qs "~6.4.0" 1171 | safe-buffer "^5.0.1" 1172 | stringstream "~0.0.4" 1173 | tough-cookie "~2.3.0" 1174 | tunnel-agent "^0.6.0" 1175 | uuid "^3.0.0" 1176 | 1177 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1178 | version "2.6.2" 1179 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1180 | dependencies: 1181 | glob "^7.0.5" 1182 | 1183 | rxjs@^5.5.0: 1184 | version "5.5.0" 1185 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.0.tgz#26d8f3866eb700e247e0728a147c3d628993d812" 1186 | dependencies: 1187 | symbol-observable "^1.0.1" 1188 | 1189 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1190 | version "5.1.1" 1191 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1192 | 1193 | semver-diff@^2.0.0: 1194 | version "2.1.0" 1195 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1196 | dependencies: 1197 | semver "^5.0.3" 1198 | 1199 | semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 1200 | version "5.4.1" 1201 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 1202 | 1203 | set-blocking@~2.0.0: 1204 | version "2.0.0" 1205 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1206 | 1207 | set-immediate-shim@^1.0.1: 1208 | version "1.0.1" 1209 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1210 | 1211 | shebang-command@^1.2.0: 1212 | version "1.2.0" 1213 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1214 | dependencies: 1215 | shebang-regex "^1.0.0" 1216 | 1217 | shebang-regex@^1.0.0: 1218 | version "1.0.0" 1219 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1220 | 1221 | signal-exit@^3.0.0, signal-exit@^3.0.2: 1222 | version "3.0.2" 1223 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1224 | 1225 | sntp@1.x.x: 1226 | version "1.0.9" 1227 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1228 | dependencies: 1229 | hoek "2.x.x" 1230 | 1231 | split@0.3: 1232 | version "0.3.3" 1233 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 1234 | dependencies: 1235 | through "2" 1236 | 1237 | sshpk@^1.7.0: 1238 | version "1.13.1" 1239 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1240 | dependencies: 1241 | asn1 "~0.2.3" 1242 | assert-plus "^1.0.0" 1243 | dashdash "^1.12.0" 1244 | getpass "^0.1.1" 1245 | optionalDependencies: 1246 | bcrypt-pbkdf "^1.0.0" 1247 | ecc-jsbn "~0.1.1" 1248 | jsbn "~0.1.0" 1249 | tweetnacl "~0.14.0" 1250 | 1251 | stream-combiner@~0.0.4: 1252 | version "0.0.4" 1253 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 1254 | dependencies: 1255 | duplexer "~0.1.1" 1256 | 1257 | string-width@^1.0.1, string-width@^1.0.2: 1258 | version "1.0.2" 1259 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1260 | dependencies: 1261 | code-point-at "^1.0.0" 1262 | is-fullwidth-code-point "^1.0.0" 1263 | strip-ansi "^3.0.0" 1264 | 1265 | string-width@^2.0.0: 1266 | version "2.1.1" 1267 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1268 | dependencies: 1269 | is-fullwidth-code-point "^2.0.0" 1270 | strip-ansi "^4.0.0" 1271 | 1272 | string_decoder@~1.0.3: 1273 | version "1.0.3" 1274 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1275 | dependencies: 1276 | safe-buffer "~5.1.0" 1277 | 1278 | stringstream@~0.0.4: 1279 | version "0.0.5" 1280 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1281 | 1282 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1283 | version "3.0.1" 1284 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1285 | dependencies: 1286 | ansi-regex "^2.0.0" 1287 | 1288 | strip-ansi@^4.0.0: 1289 | version "4.0.0" 1290 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1291 | dependencies: 1292 | ansi-regex "^3.0.0" 1293 | 1294 | strip-eof@^1.0.0: 1295 | version "1.0.0" 1296 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1297 | 1298 | strip-json-comments@~2.0.1: 1299 | version "2.0.1" 1300 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1301 | 1302 | supports-color@^4.0.0: 1303 | version "4.5.0" 1304 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 1305 | dependencies: 1306 | has-flag "^2.0.0" 1307 | 1308 | symbol-observable@^1.0.1: 1309 | version "1.0.4" 1310 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 1311 | 1312 | tar-pack@^3.4.0: 1313 | version "3.4.0" 1314 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 1315 | dependencies: 1316 | debug "^2.2.0" 1317 | fstream "^1.0.10" 1318 | fstream-ignore "^1.0.5" 1319 | once "^1.3.3" 1320 | readable-stream "^2.1.4" 1321 | rimraf "^2.5.1" 1322 | tar "^2.2.1" 1323 | uid-number "^0.0.6" 1324 | 1325 | tar@^2.2.1: 1326 | version "2.2.1" 1327 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1328 | dependencies: 1329 | block-stream "*" 1330 | fstream "^1.0.2" 1331 | inherits "2" 1332 | 1333 | term-size@^1.2.0: 1334 | version "1.2.0" 1335 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 1336 | dependencies: 1337 | execa "^0.7.0" 1338 | 1339 | through@2, through@~2.3, through@~2.3.1: 1340 | version "2.3.8" 1341 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1342 | 1343 | timed-out@^4.0.0: 1344 | version "4.0.1" 1345 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 1346 | 1347 | touch@^3.1.0: 1348 | version "3.1.0" 1349 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 1350 | dependencies: 1351 | nopt "~1.0.10" 1352 | 1353 | tough-cookie@~2.3.0: 1354 | version "2.3.3" 1355 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1356 | dependencies: 1357 | punycode "^1.4.1" 1358 | 1359 | tunnel-agent@^0.6.0: 1360 | version "0.6.0" 1361 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1362 | dependencies: 1363 | safe-buffer "^5.0.1" 1364 | 1365 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1366 | version "0.14.5" 1367 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1368 | 1369 | uid-number@^0.0.6: 1370 | version "0.0.6" 1371 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1372 | 1373 | undefsafe@0.0.3: 1374 | version "0.0.3" 1375 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-0.0.3.tgz#ecca3a03e56b9af17385baac812ac83b994a962f" 1376 | 1377 | unique-string@^1.0.0: 1378 | version "1.0.0" 1379 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 1380 | dependencies: 1381 | crypto-random-string "^1.0.0" 1382 | 1383 | unzip-response@^2.0.1: 1384 | version "2.0.1" 1385 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 1386 | 1387 | update-notifier@^2.2.0: 1388 | version "2.3.0" 1389 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.3.0.tgz#4e8827a6bb915140ab093559d7014e3ebb837451" 1390 | dependencies: 1391 | boxen "^1.2.1" 1392 | chalk "^2.0.1" 1393 | configstore "^3.0.0" 1394 | import-lazy "^2.1.0" 1395 | is-installed-globally "^0.1.0" 1396 | is-npm "^1.0.0" 1397 | latest-version "^3.0.0" 1398 | semver-diff "^2.0.0" 1399 | xdg-basedir "^3.0.0" 1400 | 1401 | url-parse-lax@^1.0.0: 1402 | version "1.0.0" 1403 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 1404 | dependencies: 1405 | prepend-http "^1.0.1" 1406 | 1407 | util-deprecate@~1.0.1: 1408 | version "1.0.2" 1409 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1410 | 1411 | uuid@^3.0.0, uuid@^3.1.0: 1412 | version "3.1.0" 1413 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 1414 | 1415 | uws@^8.14.1: 1416 | version "8.14.1" 1417 | resolved "https://registry.yarnpkg.com/uws/-/uws-8.14.1.tgz#de09619f305f6174d5516a9c6942cb120904b20b" 1418 | 1419 | verror@1.10.0: 1420 | version "1.10.0" 1421 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1422 | dependencies: 1423 | assert-plus "^1.0.0" 1424 | core-util-is "1.0.2" 1425 | extsprintf "^1.2.0" 1426 | 1427 | which@^1.2.9: 1428 | version "1.3.0" 1429 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1430 | dependencies: 1431 | isexe "^2.0.0" 1432 | 1433 | wide-align@^1.1.0: 1434 | version "1.1.2" 1435 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1436 | dependencies: 1437 | string-width "^1.0.2" 1438 | 1439 | widest-line@^1.0.0: 1440 | version "1.0.0" 1441 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 1442 | dependencies: 1443 | string-width "^1.0.1" 1444 | 1445 | wrappy@1: 1446 | version "1.0.2" 1447 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1448 | 1449 | write-file-atomic@^2.0.0: 1450 | version "2.3.0" 1451 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 1452 | dependencies: 1453 | graceful-fs "^4.1.11" 1454 | imurmurhash "^0.1.4" 1455 | signal-exit "^3.0.2" 1456 | 1457 | xdg-basedir@^3.0.0: 1458 | version "3.0.0" 1459 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 1460 | 1461 | yallist@^2.1.2: 1462 | version "2.1.2" 1463 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1464 | --------------------------------------------------------------------------------