├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── src ├── index.js ├── socket.js └── spotify.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"], 3 | "plugins": ["transform-object-rest-spread"] 4 | } 5 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /build 2 | /lib -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /build 3 | /lib -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false, 3 | "singleQuote": true, 4 | "trailingComma": "none" 5 | } 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WebSockets for Spotify Connect API 2 | 3 | A Socket.IO plugin that enables interfacing with Spotify's Connect API using WebSockets. 4 | 5 | The advantage of using this package is that it takes away the need for client-side polling (and diffing). By connecting the client to the server with WebSockets, the server will handle all of the polling and diffing, and the client will simply be notified whenever there is a change to the state of the player. This makes the client side code a lot cleaner and simpler. 6 | 7 | It should be noted that this project does not fully solve the problems discussed in [this issue](https://github.com/spotify/web-api/issues/492), in that there is still polling taking place (one request per second right now) and therefore hitting rate limits is a possibility. If you do hit the rate limit using this plugin, please let me know how many concurrent users caused it, because I would like to integrate functionality that automatically throttles the poll rate based on the number of concurrent websocket connections. 8 | 9 | ### Usage 10 | 11 | This package has been developed to work with an Express + Socket.IO server environment. 12 | 13 | If you want to skip the server setup and go straight to working with your app, use this testing url in the meantime: https://spotify-connect-ws.herokuapp.com/connect 14 | 15 | #### Examples 16 | 17 | I have made a couple of example projects that show how your server and client apps might look when using this package. 18 | 19 | Client (React.js): https://github.com/lrholmes/spotify-connect-ws-react-example 20 | 21 | Server: https://github.com/lrholmes/spotify-connect-ws-server-example 22 | 23 | Server: 24 | 25 | ```bash 26 | npm install spotify-connect-ws --save 27 | # or 28 | yarn add spotify-connect-ws 29 | ``` 30 | 31 | ```js 32 | import express from 'express' 33 | import socketio from 'socket.io' 34 | import connectSocket from 'spotify-connect-ws' 35 | 36 | const app = express() 37 | const server = app.listen(process.env.PORT || 3001) 38 | 39 | const io = socketio(server) 40 | io.of('connect').on('connection', connectSocket) 41 | ``` 42 | 43 | Client: 44 | 45 | ```bash 46 | npm install socket.io-client --save 47 | # or 48 | yarn add socket.io-client 49 | ``` 50 | 51 | ```js 52 | import openSocket from 'socket.io-client' 53 | const io = openSocket('/connect') 54 | // or if using testing url 55 | const io = openSocket('https://spotify-connect-ws.herokuapp.com/connect') 56 | 57 | io.emit('initiate', { accessToken: 'access token' }) 58 | ``` 59 | 60 | ### How it works 61 | 62 | To start watching the player for changes, use `io.emit('initiate', { accessToken })`. If successful, the first event receieved by the client, named `initial_state` will provide the full Player object from Spotify. You should use this to set up any views or state needed for your app. After this event, your client will receive events based on changes to the Player's state (e.g. playback paused, track changed). All of these events are listed below. 63 | 64 | ### Events 65 | 66 | #### Received Events 67 | 68 | These events are used in combination with `on()` to receive changes to the player state. 69 | 70 | Example: 71 | 72 | ```js 73 | io.on('track_change', track => { 74 | // update state/store with new track 75 | }) 76 | ``` 77 | 78 | `initial_state`: This event is received once, after initiating the connection. It contains the full Player object. 79 | 80 | `connect_error`: Any errors encountered on the server will be sent back to the client here. 81 | 82 | `track_change`: Received after a track change is detected, along with the Spotify Track object for the new track. 83 | 84 | `playback_started`: Indicates playback starting (both when a new track starts and when a paused track resumes playback) 85 | 86 | `playback_paused` 87 | 88 | `device_change`: A change to the active playback device has occured. The new Device is sent back with this event. 89 | 90 | `volume_change`: Volume has been changed - the volume percent is sent back. 91 | 92 | `track_end`: The current track has ended. This event is detected on the serverside by checking if the track is has less than two seconds of playback remaining. This is reliable in my testing, but there is probably a better way of checking for track end. 93 | 94 | #### Sent Events 95 | 96 | These are used to trigger playback events. 97 | 98 | Example: 99 | 100 | ```js 101 | io.emit('play', { id: '5Y17vKO1JtfnxIlM4vNQT6' }) 102 | ``` 103 | 104 | `initiate`: Accepts an object with required `accessToken` parameter. This event begins watching the player state and is required before using any of the other events. 105 | 106 | `play`: This event accepts an optional object representing the parameters for the Connect API (`uris`, `context_uri`, `offset`), but additionally accepts `id`, representing a Spotify Track ID, that will play that track. If no object is provided, the server will attempt to `resume` playback. 107 | 108 | `resume`: Resume playback. 109 | 110 | `pause`: Pause playback. 111 | 112 | `seek`: Seek to position provided as argument (target position in milliseconds). 113 | 114 | `next_track`: Skip to next track in queue 115 | 116 | `previous_track`: Go to previous track in play history 117 | 118 | `set_volume`: Set volume to integer representing percentage provided as argument 119 | 120 | `transfer_playback`: Transfer playback to another device, accepts an object with following params: `id`, the device ID, and `play`, which defaults to `false` but if `true` will force playback on the new device. 121 | 122 | `access_token`: This will set the socket's access token. If you are refreshing your token, ensure to send this event after. 123 | 124 | ### Contributing 125 | 126 | Please contribute with any changes or fixes you'd like to see! Especially if you have any experience with Socket.IO, I'm sure that I've probably made some mistakes here or there. 127 | 128 | Some things that I would like to add soon: 129 | 130 | * The rest of the Player options (shuffle, repeat) 131 | * Tests 132 | * The ability to manage devices (events for new devices detected) 133 | 134 | Longer term, it might be possible to dynamically adjust the poll time when there are more users connected, but first we'll need to know at what point rate limits become an issue. 135 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "spotify-connect-ws", 3 | "version": "0.1.1", 4 | "description": "A WebSockets solution for Spotify's Connect API made using socket.io.", 5 | "main": "lib", 6 | "module": "lib/index.js", 7 | "author": "Lawrence Holmes", 8 | "license": "MIT", 9 | "scripts": { 10 | "lint": "eslint .", 11 | "build": "yarn lint && babel -d ./lib ./src", 12 | "watch": "babel -d ./lib ./src --watch" 13 | }, 14 | "dependencies": { 15 | "node-fetch": "^1.7.3" 16 | }, 17 | "devDependencies": { 18 | "babel-cli": "^6.26.0", 19 | "babel-core": "^6.26.0", 20 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 21 | "babel-preset-env": "^1.6.1", 22 | "eslint": "^4.10.0", 23 | "eslint-config-standard": "^10.2.1", 24 | "eslint-plugin-import": "^2.8.0", 25 | "eslint-plugin-node": "^5.2.1", 26 | "eslint-plugin-promise": "^3.6.0", 27 | "eslint-plugin-standard": "^3.0.1" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./socket') 2 | -------------------------------------------------------------------------------- /src/socket.js: -------------------------------------------------------------------------------- 1 | import { 2 | getPlayerState, 3 | playTrack, 4 | setPlayState, 5 | transferPlayback, 6 | seek, 7 | nextTrack, 8 | previousTrack, 9 | setVolume 10 | } from './spotify' 11 | 12 | const C = { 13 | CONNECT_ERROR: 'connect_error', 14 | HAS_SCRUBBED_THRESHOLD: 1500, 15 | HAS_FINISHED_THRESHOLD: 2000, 16 | POLL_RATE: 1000 17 | } 18 | 19 | const spotifyConnectWs = socket => { 20 | socket.use((packet, next) => { 21 | if (packet[0] !== 'initiate') { 22 | if (!socket.accessToken) { 23 | return socket.emit( 24 | C.CONNECT_ERROR, 25 | 'Access token not found: ensure to `initiate` with an access token before attempting other requests.' 26 | ) 27 | } 28 | } 29 | next() 30 | }) 31 | 32 | const handleError = error => { 33 | const message = error.message || error 34 | if (message !== socket.lastSentError) { 35 | socket.emit(C.CONNECT_ERROR, error) 36 | socket.lastSentError = message 37 | } else { 38 | socket.pollRate = socket.pollRate < 5000 ? socket.pollRate + 1000 : 5000 39 | } 40 | } 41 | 42 | socket.on('disconnect', () => { 43 | socket.poll = () => {} 44 | }) 45 | 46 | socket.on('initiate', ({ accessToken = null }) => { 47 | if (!accessToken && !socket.accessToken) { 48 | return socket.emit( 49 | C.CONNECT_ERROR, 50 | 'An access token is required in order to start listening for playback events' 51 | ) 52 | } 53 | 54 | socket.accessToken = accessToken 55 | socket.poll() 56 | }) 57 | 58 | socket.poll = () => { 59 | getPlayerState(socket.accessToken) 60 | .then(playerState => { 61 | if (!playerState.device) { 62 | handleError('No active device') 63 | return 64 | } 65 | if (!socket.hasSentInitialState) { 66 | socket.emit('initial_state', playerState) 67 | socket.playerState = playerState 68 | socket.hasSentInitialState = true 69 | return 70 | } 71 | 72 | // reset poll rate if no errors were encountered 73 | socket.pollRate = C.POLL_RATE 74 | 75 | if (playerState.item.id !== socket.playerState.item.id) { 76 | // track has changed 77 | socket.emit('track_change', playerState.item) 78 | socket.hasNotifiedTrackEnd = false 79 | } else { 80 | } 81 | 82 | // check if the track has been scrubbed 83 | const negativeProgress = 84 | playerState.progress_ms > 85 | socket.playerState.progress_ms + C.HAS_SCRUBBED_THRESHOLD 86 | const positiveProgess = 87 | playerState.progress_ms < 88 | socket.playerState.progress_ms - C.HAS_SCRUBBED_THRESHOLD 89 | if (negativeProgress || positiveProgess) { 90 | socket.emit('seek', playerState.progress_ms, playerState.timestamp) 91 | } 92 | if (playerState.is_playing !== socket.playerState.is_playing) { 93 | // play state has changed 94 | const event = playerState.is_playing 95 | ? 'playback_started' 96 | : 'playback_paused' 97 | socket.emit(event) 98 | } 99 | if (playerState.device.id !== socket.playerState.device.id) { 100 | // device has changed 101 | socket.emit('device_change', playerState.device) 102 | } else { 103 | // device is the same, check volume 104 | if ( 105 | playerState.device.volume_percent !== 106 | socket.playerState.device.volume_percent 107 | ) { 108 | // volume has changed 109 | socket.emit('volume_change', playerState.device.volume_percent) 110 | } 111 | } 112 | 113 | if ( 114 | !socket.hasNotifiedTrackEnd && 115 | playerState.progress_ms + C.HAS_FINISHED_THRESHOLD > 116 | playerState.item.duration_ms 117 | ) { 118 | socket.emit('track_end', playerState.item) 119 | socket.hasNotifiedTrackEnd = true 120 | } 121 | 122 | socket.playerState = playerState 123 | }) 124 | .catch(handleError) 125 | 126 | setTimeout(socket.poll, socket.pollRate) 127 | } 128 | 129 | socket.on('play', track => { 130 | if (track) { 131 | playTrack(socket.accessToken, track).catch(handleError) 132 | } else { 133 | setPlayState(socket.accessToken, 'play').catch(handleError) 134 | } 135 | }) 136 | 137 | socket.on('resume', () => { 138 | setPlayState(socket.accessToken, 'play').catch(handleError) 139 | }) 140 | 141 | socket.on('pause', () => { 142 | setPlayState(socket.accessToken, 'pause').catch(handleError) 143 | }) 144 | 145 | socket.on('seek', positionMs => { 146 | seek(socket.accessToken, positionMs).catch(handleError) 147 | }) 148 | 149 | socket.on('set_volume', volumePercent => { 150 | setVolume(socket.accessToken, volumePercent).catch(handleError) 151 | }) 152 | 153 | socket.on('next_track', () => { 154 | nextTrack(socket.accessToken).catch(e => socket.emit(C.CONNECT_ERROR, e)) 155 | }) 156 | 157 | socket.on('previous_track', () => { 158 | previousTrack(socket.accessToken).catch(handleError) 159 | }) 160 | 161 | socket.on('transfer_playback', device => { 162 | transferPlayback(socket.accessToken, device).catch(handleError) 163 | }) 164 | 165 | socket.on('access_token', accessToken => { 166 | socket.accessToken = accessToken 167 | }) 168 | } 169 | 170 | export default spotifyConnectWs 171 | -------------------------------------------------------------------------------- /src/spotify.js: -------------------------------------------------------------------------------- 1 | import fetch from 'node-fetch' 2 | 3 | const API_URL = 'https://api.spotify.com/v1' 4 | 5 | export const getPlayerState = accessToken => { 6 | return new Promise((resolve, reject) => { 7 | fetch(`${API_URL}/me/player`, { 8 | headers: { 9 | Authorization: 'Bearer ' + accessToken, 10 | 'Content-Type': 'application/json' 11 | } 12 | }) 13 | .then(response => { 14 | if (response.status === 202) { 15 | return resolve({}) 16 | } 17 | return response 18 | }) 19 | .then(r => r.json()) 20 | .then(response => { 21 | if (response.error) { 22 | return reject(response.error.message) 23 | } 24 | 25 | resolve(response) 26 | }) 27 | .catch(reject) 28 | }) 29 | } 30 | 31 | export const playTrack = (accessToken, { id, ...args }) => { 32 | return new Promise((resolve, reject) => { 33 | const body = {} 34 | if (id) { 35 | body.uris = [`spotify:track:${id}`] 36 | } else { 37 | Object.keys(args).forEach(key => { 38 | if (args[key]) { 39 | body[key] = args[key] 40 | } 41 | }) 42 | } 43 | 44 | fetch(`${API_URL}/me/player/play`, { 45 | method: 'PUT', 46 | headers: { 47 | Authorization: 'Bearer ' + accessToken, 48 | 'Content-Type': 'application/json' 49 | }, 50 | body: JSON.stringify(body) 51 | }) 52 | .then(r => { 53 | if (r.status === 204) { 54 | return resolve() 55 | } 56 | 57 | return reject(r.statusText) 58 | }) 59 | .catch(reject) 60 | }) 61 | } 62 | 63 | export const transferPlayback = (accessToken, { id, play = false }) => { 64 | return new Promise((resolve, reject) => { 65 | const body = { 66 | device_ids: [id], 67 | play 68 | } 69 | fetch(`${API_URL}/me/player`, { 70 | method: 'PUT', 71 | headers: { 72 | Authorization: 'Bearer ' + accessToken, 73 | 'Content-Type': 'application/json' 74 | }, 75 | body: JSON.stringify(body) 76 | }) 77 | .then(r => r.json()) 78 | .then(response => { 79 | if (response.error) { 80 | return reject(response.error.message) 81 | } 82 | 83 | resolve(response) 84 | }) 85 | .catch(reject) 86 | }) 87 | } 88 | 89 | export const setPlayState = (accessToken, playState) => 90 | fetch(`${API_URL}/me/player/${playState}`, { 91 | method: 'PUT', 92 | headers: { 93 | Authorization: 'Bearer ' + accessToken, 94 | 'Content-Type': 'application/json' 95 | } 96 | }) 97 | 98 | export const seek = (accessToken, positionMs) => 99 | fetch(`${API_URL}/me/player/seek?position_ms=${positionMs}`, { 100 | method: 'PUT', 101 | headers: { 102 | Authorization: 'Bearer ' + accessToken, 103 | 'Content-Type': 'application/json' 104 | } 105 | }) 106 | 107 | export const nextTrack = accessToken => 108 | fetch(`${API_URL}/me/player/next`, { 109 | method: 'POST', 110 | headers: { 111 | Authorization: 'Bearer ' + accessToken, 112 | 'Content-Type': 'application/json' 113 | } 114 | }) 115 | 116 | export const previousTrack = accessToken => 117 | fetch(`${API_URL}/me/player/previous`, { 118 | method: 'POST', 119 | headers: { 120 | Authorization: 'Bearer ' + accessToken, 121 | 'Content-Type': 'application/json' 122 | } 123 | }) 124 | 125 | export const setVolume = (accessToken, volume) => 126 | fetch(`${API_URL}/me/player/volume?volume_percent=${volume}`, { 127 | method: 'PUT', 128 | headers: { 129 | Authorization: 'Bearer ' + accessToken, 130 | 'Content-Type': 'application/json' 131 | } 132 | }) 133 | -------------------------------------------------------------------------------- /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 | acorn-jsx@^3.0.0: 10 | version "3.0.1" 11 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 12 | dependencies: 13 | acorn "^3.0.4" 14 | 15 | acorn@^3.0.4: 16 | version "3.3.0" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 18 | 19 | acorn@^5.1.1: 20 | version "5.2.1" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" 22 | 23 | ajv-keywords@^2.1.0: 24 | version "2.1.1" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 26 | 27 | ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | ajv@^5.2.0, ajv@^5.2.3: 35 | version "5.3.0" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 37 | dependencies: 38 | co "^4.6.0" 39 | fast-deep-equal "^1.0.0" 40 | fast-json-stable-stringify "^2.0.0" 41 | json-schema-traverse "^0.3.0" 42 | 43 | ansi-escapes@^3.0.0: 44 | version "3.0.0" 45 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 46 | 47 | ansi-regex@^2.0.0: 48 | version "2.1.1" 49 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 50 | 51 | ansi-regex@^3.0.0: 52 | version "3.0.0" 53 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 54 | 55 | ansi-styles@^2.2.1: 56 | version "2.2.1" 57 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 58 | 59 | ansi-styles@^3.1.0: 60 | version "3.2.0" 61 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 62 | dependencies: 63 | color-convert "^1.9.0" 64 | 65 | anymatch@^1.3.0: 66 | version "1.3.2" 67 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 68 | dependencies: 69 | micromatch "^2.1.5" 70 | normalize-path "^2.0.0" 71 | 72 | aproba@^1.0.3: 73 | version "1.2.0" 74 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 75 | 76 | are-we-there-yet@~1.1.2: 77 | version "1.1.4" 78 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 79 | dependencies: 80 | delegates "^1.0.0" 81 | readable-stream "^2.0.6" 82 | 83 | argparse@^1.0.7: 84 | version "1.0.9" 85 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 86 | dependencies: 87 | sprintf-js "~1.0.2" 88 | 89 | arr-diff@^2.0.0: 90 | version "2.0.0" 91 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 92 | dependencies: 93 | arr-flatten "^1.0.1" 94 | 95 | arr-flatten@^1.0.1: 96 | version "1.1.0" 97 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 98 | 99 | array-union@^1.0.1: 100 | version "1.0.2" 101 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 102 | dependencies: 103 | array-uniq "^1.0.1" 104 | 105 | array-uniq@^1.0.1: 106 | version "1.0.3" 107 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 108 | 109 | array-unique@^0.2.1: 110 | version "0.2.1" 111 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 112 | 113 | arrify@^1.0.0: 114 | version "1.0.1" 115 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 116 | 117 | asn1@~0.2.3: 118 | version "0.2.3" 119 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 120 | 121 | assert-plus@1.0.0, assert-plus@^1.0.0: 122 | version "1.0.0" 123 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 124 | 125 | assert-plus@^0.2.0: 126 | version "0.2.0" 127 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 128 | 129 | async-each@^1.0.0: 130 | version "1.0.1" 131 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 132 | 133 | asynckit@^0.4.0: 134 | version "0.4.0" 135 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 136 | 137 | aws-sign2@~0.6.0: 138 | version "0.6.0" 139 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 140 | 141 | aws4@^1.2.1: 142 | version "1.6.0" 143 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 144 | 145 | babel-cli@^6.26.0: 146 | version "6.26.0" 147 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 148 | dependencies: 149 | babel-core "^6.26.0" 150 | babel-polyfill "^6.26.0" 151 | babel-register "^6.26.0" 152 | babel-runtime "^6.26.0" 153 | commander "^2.11.0" 154 | convert-source-map "^1.5.0" 155 | fs-readdir-recursive "^1.0.0" 156 | glob "^7.1.2" 157 | lodash "^4.17.4" 158 | output-file-sync "^1.1.2" 159 | path-is-absolute "^1.0.1" 160 | slash "^1.0.0" 161 | source-map "^0.5.6" 162 | v8flags "^2.1.1" 163 | optionalDependencies: 164 | chokidar "^1.6.1" 165 | 166 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 167 | version "6.26.0" 168 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 169 | dependencies: 170 | chalk "^1.1.3" 171 | esutils "^2.0.2" 172 | js-tokens "^3.0.2" 173 | 174 | babel-core@^6.26.0: 175 | version "6.26.0" 176 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 177 | dependencies: 178 | babel-code-frame "^6.26.0" 179 | babel-generator "^6.26.0" 180 | babel-helpers "^6.24.1" 181 | babel-messages "^6.23.0" 182 | babel-register "^6.26.0" 183 | babel-runtime "^6.26.0" 184 | babel-template "^6.26.0" 185 | babel-traverse "^6.26.0" 186 | babel-types "^6.26.0" 187 | babylon "^6.18.0" 188 | convert-source-map "^1.5.0" 189 | debug "^2.6.8" 190 | json5 "^0.5.1" 191 | lodash "^4.17.4" 192 | minimatch "^3.0.4" 193 | path-is-absolute "^1.0.1" 194 | private "^0.1.7" 195 | slash "^1.0.0" 196 | source-map "^0.5.6" 197 | 198 | babel-generator@^6.26.0: 199 | version "6.26.0" 200 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 201 | dependencies: 202 | babel-messages "^6.23.0" 203 | babel-runtime "^6.26.0" 204 | babel-types "^6.26.0" 205 | detect-indent "^4.0.0" 206 | jsesc "^1.3.0" 207 | lodash "^4.17.4" 208 | source-map "^0.5.6" 209 | trim-right "^1.0.1" 210 | 211 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 212 | version "6.24.1" 213 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 214 | dependencies: 215 | babel-helper-explode-assignable-expression "^6.24.1" 216 | babel-runtime "^6.22.0" 217 | babel-types "^6.24.1" 218 | 219 | babel-helper-call-delegate@^6.24.1: 220 | version "6.24.1" 221 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 222 | dependencies: 223 | babel-helper-hoist-variables "^6.24.1" 224 | babel-runtime "^6.22.0" 225 | babel-traverse "^6.24.1" 226 | babel-types "^6.24.1" 227 | 228 | babel-helper-define-map@^6.24.1: 229 | version "6.26.0" 230 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 231 | dependencies: 232 | babel-helper-function-name "^6.24.1" 233 | babel-runtime "^6.26.0" 234 | babel-types "^6.26.0" 235 | lodash "^4.17.4" 236 | 237 | babel-helper-explode-assignable-expression@^6.24.1: 238 | version "6.24.1" 239 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 240 | dependencies: 241 | babel-runtime "^6.22.0" 242 | babel-traverse "^6.24.1" 243 | babel-types "^6.24.1" 244 | 245 | babel-helper-function-name@^6.24.1: 246 | version "6.24.1" 247 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 248 | dependencies: 249 | babel-helper-get-function-arity "^6.24.1" 250 | babel-runtime "^6.22.0" 251 | babel-template "^6.24.1" 252 | babel-traverse "^6.24.1" 253 | babel-types "^6.24.1" 254 | 255 | babel-helper-get-function-arity@^6.24.1: 256 | version "6.24.1" 257 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 258 | dependencies: 259 | babel-runtime "^6.22.0" 260 | babel-types "^6.24.1" 261 | 262 | babel-helper-hoist-variables@^6.24.1: 263 | version "6.24.1" 264 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 265 | dependencies: 266 | babel-runtime "^6.22.0" 267 | babel-types "^6.24.1" 268 | 269 | babel-helper-optimise-call-expression@^6.24.1: 270 | version "6.24.1" 271 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 272 | dependencies: 273 | babel-runtime "^6.22.0" 274 | babel-types "^6.24.1" 275 | 276 | babel-helper-regex@^6.24.1: 277 | version "6.26.0" 278 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 279 | dependencies: 280 | babel-runtime "^6.26.0" 281 | babel-types "^6.26.0" 282 | lodash "^4.17.4" 283 | 284 | babel-helper-remap-async-to-generator@^6.24.1: 285 | version "6.24.1" 286 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 287 | dependencies: 288 | babel-helper-function-name "^6.24.1" 289 | babel-runtime "^6.22.0" 290 | babel-template "^6.24.1" 291 | babel-traverse "^6.24.1" 292 | babel-types "^6.24.1" 293 | 294 | babel-helper-replace-supers@^6.24.1: 295 | version "6.24.1" 296 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 297 | dependencies: 298 | babel-helper-optimise-call-expression "^6.24.1" 299 | babel-messages "^6.23.0" 300 | babel-runtime "^6.22.0" 301 | babel-template "^6.24.1" 302 | babel-traverse "^6.24.1" 303 | babel-types "^6.24.1" 304 | 305 | babel-helpers@^6.24.1: 306 | version "6.24.1" 307 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 308 | dependencies: 309 | babel-runtime "^6.22.0" 310 | babel-template "^6.24.1" 311 | 312 | babel-messages@^6.23.0: 313 | version "6.23.0" 314 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 315 | dependencies: 316 | babel-runtime "^6.22.0" 317 | 318 | babel-plugin-check-es2015-constants@^6.22.0: 319 | version "6.22.0" 320 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 321 | dependencies: 322 | babel-runtime "^6.22.0" 323 | 324 | babel-plugin-syntax-async-functions@^6.8.0: 325 | version "6.13.0" 326 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 327 | 328 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 329 | version "6.13.0" 330 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 331 | 332 | babel-plugin-syntax-object-rest-spread@^6.8.0: 333 | version "6.13.0" 334 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 335 | 336 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 337 | version "6.22.0" 338 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 339 | 340 | babel-plugin-transform-async-to-generator@^6.22.0: 341 | version "6.24.1" 342 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 343 | dependencies: 344 | babel-helper-remap-async-to-generator "^6.24.1" 345 | babel-plugin-syntax-async-functions "^6.8.0" 346 | babel-runtime "^6.22.0" 347 | 348 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 349 | version "6.22.0" 350 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 351 | dependencies: 352 | babel-runtime "^6.22.0" 353 | 354 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 355 | version "6.22.0" 356 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 357 | dependencies: 358 | babel-runtime "^6.22.0" 359 | 360 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 361 | version "6.26.0" 362 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 363 | dependencies: 364 | babel-runtime "^6.26.0" 365 | babel-template "^6.26.0" 366 | babel-traverse "^6.26.0" 367 | babel-types "^6.26.0" 368 | lodash "^4.17.4" 369 | 370 | babel-plugin-transform-es2015-classes@^6.23.0: 371 | version "6.24.1" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 373 | dependencies: 374 | babel-helper-define-map "^6.24.1" 375 | babel-helper-function-name "^6.24.1" 376 | babel-helper-optimise-call-expression "^6.24.1" 377 | babel-helper-replace-supers "^6.24.1" 378 | babel-messages "^6.23.0" 379 | babel-runtime "^6.22.0" 380 | babel-template "^6.24.1" 381 | babel-traverse "^6.24.1" 382 | babel-types "^6.24.1" 383 | 384 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 385 | version "6.24.1" 386 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 387 | dependencies: 388 | babel-runtime "^6.22.0" 389 | babel-template "^6.24.1" 390 | 391 | babel-plugin-transform-es2015-destructuring@^6.23.0: 392 | version "6.23.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 394 | dependencies: 395 | babel-runtime "^6.22.0" 396 | 397 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 398 | version "6.24.1" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 400 | dependencies: 401 | babel-runtime "^6.22.0" 402 | babel-types "^6.24.1" 403 | 404 | babel-plugin-transform-es2015-for-of@^6.23.0: 405 | version "6.23.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 407 | dependencies: 408 | babel-runtime "^6.22.0" 409 | 410 | babel-plugin-transform-es2015-function-name@^6.22.0: 411 | version "6.24.1" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 413 | dependencies: 414 | babel-helper-function-name "^6.24.1" 415 | babel-runtime "^6.22.0" 416 | babel-types "^6.24.1" 417 | 418 | babel-plugin-transform-es2015-literals@^6.22.0: 419 | version "6.22.0" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 421 | dependencies: 422 | babel-runtime "^6.22.0" 423 | 424 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 425 | version "6.24.1" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 427 | dependencies: 428 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 429 | babel-runtime "^6.22.0" 430 | babel-template "^6.24.1" 431 | 432 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 433 | version "6.26.0" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 435 | dependencies: 436 | babel-plugin-transform-strict-mode "^6.24.1" 437 | babel-runtime "^6.26.0" 438 | babel-template "^6.26.0" 439 | babel-types "^6.26.0" 440 | 441 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 442 | version "6.24.1" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 444 | dependencies: 445 | babel-helper-hoist-variables "^6.24.1" 446 | babel-runtime "^6.22.0" 447 | babel-template "^6.24.1" 448 | 449 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 450 | version "6.24.1" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 452 | dependencies: 453 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 454 | babel-runtime "^6.22.0" 455 | babel-template "^6.24.1" 456 | 457 | babel-plugin-transform-es2015-object-super@^6.22.0: 458 | version "6.24.1" 459 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 460 | dependencies: 461 | babel-helper-replace-supers "^6.24.1" 462 | babel-runtime "^6.22.0" 463 | 464 | babel-plugin-transform-es2015-parameters@^6.23.0: 465 | version "6.24.1" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 467 | dependencies: 468 | babel-helper-call-delegate "^6.24.1" 469 | babel-helper-get-function-arity "^6.24.1" 470 | babel-runtime "^6.22.0" 471 | babel-template "^6.24.1" 472 | babel-traverse "^6.24.1" 473 | babel-types "^6.24.1" 474 | 475 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 476 | version "6.24.1" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | babel-types "^6.24.1" 481 | 482 | babel-plugin-transform-es2015-spread@^6.22.0: 483 | version "6.22.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | 488 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 489 | version "6.24.1" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 491 | dependencies: 492 | babel-helper-regex "^6.24.1" 493 | babel-runtime "^6.22.0" 494 | babel-types "^6.24.1" 495 | 496 | babel-plugin-transform-es2015-template-literals@^6.22.0: 497 | version "6.22.0" 498 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 499 | dependencies: 500 | babel-runtime "^6.22.0" 501 | 502 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 503 | version "6.23.0" 504 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 505 | dependencies: 506 | babel-runtime "^6.22.0" 507 | 508 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 509 | version "6.24.1" 510 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 511 | dependencies: 512 | babel-helper-regex "^6.24.1" 513 | babel-runtime "^6.22.0" 514 | regexpu-core "^2.0.0" 515 | 516 | babel-plugin-transform-exponentiation-operator@^6.22.0: 517 | version "6.24.1" 518 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 519 | dependencies: 520 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 521 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 522 | babel-runtime "^6.22.0" 523 | 524 | babel-plugin-transform-object-rest-spread@^6.26.0: 525 | version "6.26.0" 526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 527 | dependencies: 528 | babel-plugin-syntax-object-rest-spread "^6.8.0" 529 | babel-runtime "^6.26.0" 530 | 531 | babel-plugin-transform-regenerator@^6.22.0: 532 | version "6.26.0" 533 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 534 | dependencies: 535 | regenerator-transform "^0.10.0" 536 | 537 | babel-plugin-transform-strict-mode@^6.24.1: 538 | version "6.24.1" 539 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 540 | dependencies: 541 | babel-runtime "^6.22.0" 542 | babel-types "^6.24.1" 543 | 544 | babel-polyfill@^6.26.0: 545 | version "6.26.0" 546 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 547 | dependencies: 548 | babel-runtime "^6.26.0" 549 | core-js "^2.5.0" 550 | regenerator-runtime "^0.10.5" 551 | 552 | babel-preset-env@^1.6.1: 553 | version "1.6.1" 554 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 555 | dependencies: 556 | babel-plugin-check-es2015-constants "^6.22.0" 557 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 558 | babel-plugin-transform-async-to-generator "^6.22.0" 559 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 560 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 561 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 562 | babel-plugin-transform-es2015-classes "^6.23.0" 563 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 564 | babel-plugin-transform-es2015-destructuring "^6.23.0" 565 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 566 | babel-plugin-transform-es2015-for-of "^6.23.0" 567 | babel-plugin-transform-es2015-function-name "^6.22.0" 568 | babel-plugin-transform-es2015-literals "^6.22.0" 569 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 570 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 571 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 572 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 573 | babel-plugin-transform-es2015-object-super "^6.22.0" 574 | babel-plugin-transform-es2015-parameters "^6.23.0" 575 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 576 | babel-plugin-transform-es2015-spread "^6.22.0" 577 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 578 | babel-plugin-transform-es2015-template-literals "^6.22.0" 579 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 580 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 581 | babel-plugin-transform-exponentiation-operator "^6.22.0" 582 | babel-plugin-transform-regenerator "^6.22.0" 583 | browserslist "^2.1.2" 584 | invariant "^2.2.2" 585 | semver "^5.3.0" 586 | 587 | babel-register@^6.26.0: 588 | version "6.26.0" 589 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 590 | dependencies: 591 | babel-core "^6.26.0" 592 | babel-runtime "^6.26.0" 593 | core-js "^2.5.0" 594 | home-or-tmp "^2.0.0" 595 | lodash "^4.17.4" 596 | mkdirp "^0.5.1" 597 | source-map-support "^0.4.15" 598 | 599 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 600 | version "6.26.0" 601 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 602 | dependencies: 603 | core-js "^2.4.0" 604 | regenerator-runtime "^0.11.0" 605 | 606 | babel-template@^6.24.1, babel-template@^6.26.0: 607 | version "6.26.0" 608 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 609 | dependencies: 610 | babel-runtime "^6.26.0" 611 | babel-traverse "^6.26.0" 612 | babel-types "^6.26.0" 613 | babylon "^6.18.0" 614 | lodash "^4.17.4" 615 | 616 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 617 | version "6.26.0" 618 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 619 | dependencies: 620 | babel-code-frame "^6.26.0" 621 | babel-messages "^6.23.0" 622 | babel-runtime "^6.26.0" 623 | babel-types "^6.26.0" 624 | babylon "^6.18.0" 625 | debug "^2.6.8" 626 | globals "^9.18.0" 627 | invariant "^2.2.2" 628 | lodash "^4.17.4" 629 | 630 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 631 | version "6.26.0" 632 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 633 | dependencies: 634 | babel-runtime "^6.26.0" 635 | esutils "^2.0.2" 636 | lodash "^4.17.4" 637 | to-fast-properties "^1.0.3" 638 | 639 | babylon@^6.18.0: 640 | version "6.18.0" 641 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 642 | 643 | balanced-match@^1.0.0: 644 | version "1.0.0" 645 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 646 | 647 | bcrypt-pbkdf@^1.0.0: 648 | version "1.0.1" 649 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 650 | dependencies: 651 | tweetnacl "^0.14.3" 652 | 653 | binary-extensions@^1.0.0: 654 | version "1.10.0" 655 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 656 | 657 | block-stream@*: 658 | version "0.0.9" 659 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 660 | dependencies: 661 | inherits "~2.0.0" 662 | 663 | boom@2.x.x: 664 | version "2.10.1" 665 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 666 | dependencies: 667 | hoek "2.x.x" 668 | 669 | brace-expansion@^1.1.7: 670 | version "1.1.8" 671 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 672 | dependencies: 673 | balanced-match "^1.0.0" 674 | concat-map "0.0.1" 675 | 676 | braces@^1.8.2: 677 | version "1.8.5" 678 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 679 | dependencies: 680 | expand-range "^1.8.1" 681 | preserve "^0.2.0" 682 | repeat-element "^1.1.2" 683 | 684 | browserslist@^2.1.2: 685 | version "2.7.0" 686 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.7.0.tgz#dc375dc70048fec3d989042a35022342902eff00" 687 | dependencies: 688 | caniuse-lite "^1.0.30000757" 689 | electron-to-chromium "^1.3.27" 690 | 691 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 692 | version "1.1.1" 693 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 694 | 695 | caller-path@^0.1.0: 696 | version "0.1.0" 697 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 698 | dependencies: 699 | callsites "^0.2.0" 700 | 701 | callsites@^0.2.0: 702 | version "0.2.0" 703 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 704 | 705 | caniuse-lite@^1.0.30000757: 706 | version "1.0.30000758" 707 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000758.tgz#e261140076651049cf6891ed4bc649b5c8c26c69" 708 | 709 | caseless@~0.12.0: 710 | version "0.12.0" 711 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 712 | 713 | chalk@^1.1.3: 714 | version "1.1.3" 715 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 716 | dependencies: 717 | ansi-styles "^2.2.1" 718 | escape-string-regexp "^1.0.2" 719 | has-ansi "^2.0.0" 720 | strip-ansi "^3.0.0" 721 | supports-color "^2.0.0" 722 | 723 | chalk@^2.0.0, chalk@^2.1.0: 724 | version "2.3.0" 725 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 726 | dependencies: 727 | ansi-styles "^3.1.0" 728 | escape-string-regexp "^1.0.5" 729 | supports-color "^4.0.0" 730 | 731 | chokidar@^1.6.1: 732 | version "1.7.0" 733 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 734 | dependencies: 735 | anymatch "^1.3.0" 736 | async-each "^1.0.0" 737 | glob-parent "^2.0.0" 738 | inherits "^2.0.1" 739 | is-binary-path "^1.0.0" 740 | is-glob "^2.0.0" 741 | path-is-absolute "^1.0.0" 742 | readdirp "^2.0.0" 743 | optionalDependencies: 744 | fsevents "^1.0.0" 745 | 746 | circular-json@^0.3.1: 747 | version "0.3.3" 748 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 749 | 750 | cli-cursor@^2.1.0: 751 | version "2.1.0" 752 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 753 | dependencies: 754 | restore-cursor "^2.0.0" 755 | 756 | cli-width@^2.0.0: 757 | version "2.2.0" 758 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 759 | 760 | co@^4.6.0: 761 | version "4.6.0" 762 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 763 | 764 | code-point-at@^1.0.0: 765 | version "1.1.0" 766 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 767 | 768 | color-convert@^1.9.0: 769 | version "1.9.0" 770 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 771 | dependencies: 772 | color-name "^1.1.1" 773 | 774 | color-name@^1.1.1: 775 | version "1.1.3" 776 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 777 | 778 | combined-stream@^1.0.5, combined-stream@~1.0.5: 779 | version "1.0.5" 780 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 781 | dependencies: 782 | delayed-stream "~1.0.0" 783 | 784 | commander@^2.11.0: 785 | version "2.11.0" 786 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 787 | 788 | concat-map@0.0.1: 789 | version "0.0.1" 790 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 791 | 792 | concat-stream@^1.6.0: 793 | version "1.6.0" 794 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 795 | dependencies: 796 | inherits "^2.0.3" 797 | readable-stream "^2.2.2" 798 | typedarray "^0.0.6" 799 | 800 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 801 | version "1.1.0" 802 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 803 | 804 | contains-path@^0.1.0: 805 | version "0.1.0" 806 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 807 | 808 | convert-source-map@^1.5.0: 809 | version "1.5.0" 810 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 811 | 812 | core-js@^2.4.0, core-js@^2.5.0: 813 | version "2.5.1" 814 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 815 | 816 | core-util-is@1.0.2, core-util-is@~1.0.0: 817 | version "1.0.2" 818 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 819 | 820 | cross-spawn@^5.1.0: 821 | version "5.1.0" 822 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 823 | dependencies: 824 | lru-cache "^4.0.1" 825 | shebang-command "^1.2.0" 826 | which "^1.2.9" 827 | 828 | cryptiles@2.x.x: 829 | version "2.0.5" 830 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 831 | dependencies: 832 | boom "2.x.x" 833 | 834 | dashdash@^1.12.0: 835 | version "1.14.1" 836 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 837 | dependencies: 838 | assert-plus "^1.0.0" 839 | 840 | debug@^2.2.0, debug@^2.6.8: 841 | version "2.6.9" 842 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 843 | dependencies: 844 | ms "2.0.0" 845 | 846 | debug@^3.0.1: 847 | version "3.1.0" 848 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 849 | dependencies: 850 | ms "2.0.0" 851 | 852 | deep-extend@~0.4.0: 853 | version "0.4.2" 854 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 855 | 856 | deep-is@~0.1.3: 857 | version "0.1.3" 858 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 859 | 860 | del@^2.0.2: 861 | version "2.2.2" 862 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 863 | dependencies: 864 | globby "^5.0.0" 865 | is-path-cwd "^1.0.0" 866 | is-path-in-cwd "^1.0.0" 867 | object-assign "^4.0.1" 868 | pify "^2.0.0" 869 | pinkie-promise "^2.0.0" 870 | rimraf "^2.2.8" 871 | 872 | delayed-stream@~1.0.0: 873 | version "1.0.0" 874 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 875 | 876 | delegates@^1.0.0: 877 | version "1.0.0" 878 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 879 | 880 | detect-indent@^4.0.0: 881 | version "4.0.0" 882 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 883 | dependencies: 884 | repeating "^2.0.0" 885 | 886 | detect-libc@^1.0.2: 887 | version "1.0.2" 888 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.2.tgz#71ad5d204bf17a6a6ca8f450c61454066ef461e1" 889 | 890 | doctrine@1.5.0: 891 | version "1.5.0" 892 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 893 | dependencies: 894 | esutils "^2.0.2" 895 | isarray "^1.0.0" 896 | 897 | doctrine@^2.0.0: 898 | version "2.0.0" 899 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 900 | dependencies: 901 | esutils "^2.0.2" 902 | isarray "^1.0.0" 903 | 904 | ecc-jsbn@~0.1.1: 905 | version "0.1.1" 906 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 907 | dependencies: 908 | jsbn "~0.1.0" 909 | 910 | electron-to-chromium@^1.3.27: 911 | version "1.3.27" 912 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz#78ecb8a399066187bb374eede35d9c70565a803d" 913 | 914 | encoding@^0.1.11: 915 | version "0.1.12" 916 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 917 | dependencies: 918 | iconv-lite "~0.4.13" 919 | 920 | error-ex@^1.2.0: 921 | version "1.3.1" 922 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 923 | dependencies: 924 | is-arrayish "^0.2.1" 925 | 926 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 927 | version "1.0.5" 928 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 929 | 930 | eslint-config-standard@^10.2.1: 931 | version "10.2.1" 932 | resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-10.2.1.tgz#c061e4d066f379dc17cd562c64e819b4dd454591" 933 | 934 | eslint-import-resolver-node@^0.3.1: 935 | version "0.3.1" 936 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 937 | dependencies: 938 | debug "^2.6.8" 939 | resolve "^1.2.0" 940 | 941 | eslint-module-utils@^2.1.1: 942 | version "2.1.1" 943 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 944 | dependencies: 945 | debug "^2.6.8" 946 | pkg-dir "^1.0.0" 947 | 948 | eslint-plugin-import@^2.8.0: 949 | version "2.8.0" 950 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 951 | dependencies: 952 | builtin-modules "^1.1.1" 953 | contains-path "^0.1.0" 954 | debug "^2.6.8" 955 | doctrine "1.5.0" 956 | eslint-import-resolver-node "^0.3.1" 957 | eslint-module-utils "^2.1.1" 958 | has "^1.0.1" 959 | lodash.cond "^4.3.0" 960 | minimatch "^3.0.3" 961 | read-pkg-up "^2.0.0" 962 | 963 | eslint-plugin-node@^5.2.1: 964 | version "5.2.1" 965 | resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-5.2.1.tgz#80df3253c4d7901045ec87fa660a284e32bdca29" 966 | dependencies: 967 | ignore "^3.3.6" 968 | minimatch "^3.0.4" 969 | resolve "^1.3.3" 970 | semver "5.3.0" 971 | 972 | eslint-plugin-promise@^3.6.0: 973 | version "3.6.0" 974 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.6.0.tgz#54b7658c8f454813dc2a870aff8152ec4969ba75" 975 | 976 | eslint-plugin-standard@^3.0.1: 977 | version "3.0.1" 978 | resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz#34d0c915b45edc6f010393c7eef3823b08565cf2" 979 | 980 | eslint-scope@^3.7.1: 981 | version "3.7.1" 982 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 983 | dependencies: 984 | esrecurse "^4.1.0" 985 | estraverse "^4.1.1" 986 | 987 | eslint@^4.10.0: 988 | version "4.10.0" 989 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.10.0.tgz#f25d0d7955c81968c2309aa5c9a229e045176bb7" 990 | dependencies: 991 | ajv "^5.2.0" 992 | babel-code-frame "^6.22.0" 993 | chalk "^2.1.0" 994 | concat-stream "^1.6.0" 995 | cross-spawn "^5.1.0" 996 | debug "^3.0.1" 997 | doctrine "^2.0.0" 998 | eslint-scope "^3.7.1" 999 | espree "^3.5.1" 1000 | esquery "^1.0.0" 1001 | estraverse "^4.2.0" 1002 | esutils "^2.0.2" 1003 | file-entry-cache "^2.0.0" 1004 | functional-red-black-tree "^1.0.1" 1005 | glob "^7.1.2" 1006 | globals "^9.17.0" 1007 | ignore "^3.3.3" 1008 | imurmurhash "^0.1.4" 1009 | inquirer "^3.0.6" 1010 | is-resolvable "^1.0.0" 1011 | js-yaml "^3.9.1" 1012 | json-stable-stringify "^1.0.1" 1013 | levn "^0.3.0" 1014 | lodash "^4.17.4" 1015 | minimatch "^3.0.2" 1016 | mkdirp "^0.5.1" 1017 | natural-compare "^1.4.0" 1018 | optionator "^0.8.2" 1019 | path-is-inside "^1.0.2" 1020 | pluralize "^7.0.0" 1021 | progress "^2.0.0" 1022 | require-uncached "^1.0.3" 1023 | semver "^5.3.0" 1024 | strip-ansi "^4.0.0" 1025 | strip-json-comments "~2.0.1" 1026 | table "^4.0.1" 1027 | text-table "~0.2.0" 1028 | 1029 | espree@^3.5.1: 1030 | version "3.5.1" 1031 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.1.tgz#0c988b8ab46db53100a1954ae4ba995ddd27d87e" 1032 | dependencies: 1033 | acorn "^5.1.1" 1034 | acorn-jsx "^3.0.0" 1035 | 1036 | esprima@^4.0.0: 1037 | version "4.0.0" 1038 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1039 | 1040 | esquery@^1.0.0: 1041 | version "1.0.0" 1042 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1043 | dependencies: 1044 | estraverse "^4.0.0" 1045 | 1046 | esrecurse@^4.1.0: 1047 | version "4.2.0" 1048 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1049 | dependencies: 1050 | estraverse "^4.1.0" 1051 | object-assign "^4.0.1" 1052 | 1053 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1054 | version "4.2.0" 1055 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1056 | 1057 | esutils@^2.0.2: 1058 | version "2.0.2" 1059 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1060 | 1061 | expand-brackets@^0.1.4: 1062 | version "0.1.5" 1063 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1064 | dependencies: 1065 | is-posix-bracket "^0.1.0" 1066 | 1067 | expand-range@^1.8.1: 1068 | version "1.8.2" 1069 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1070 | dependencies: 1071 | fill-range "^2.1.0" 1072 | 1073 | extend@~3.0.0: 1074 | version "3.0.1" 1075 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1076 | 1077 | external-editor@^2.0.4: 1078 | version "2.0.5" 1079 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc" 1080 | dependencies: 1081 | iconv-lite "^0.4.17" 1082 | jschardet "^1.4.2" 1083 | tmp "^0.0.33" 1084 | 1085 | extglob@^0.3.1: 1086 | version "0.3.2" 1087 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1088 | dependencies: 1089 | is-extglob "^1.0.0" 1090 | 1091 | extsprintf@1.3.0, extsprintf@^1.2.0: 1092 | version "1.3.0" 1093 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1094 | 1095 | fast-deep-equal@^1.0.0: 1096 | version "1.0.0" 1097 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1098 | 1099 | fast-json-stable-stringify@^2.0.0: 1100 | version "2.0.0" 1101 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1102 | 1103 | fast-levenshtein@~2.0.4: 1104 | version "2.0.6" 1105 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1106 | 1107 | figures@^2.0.0: 1108 | version "2.0.0" 1109 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1110 | dependencies: 1111 | escape-string-regexp "^1.0.5" 1112 | 1113 | file-entry-cache@^2.0.0: 1114 | version "2.0.0" 1115 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1116 | dependencies: 1117 | flat-cache "^1.2.1" 1118 | object-assign "^4.0.1" 1119 | 1120 | filename-regex@^2.0.0: 1121 | version "2.0.1" 1122 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1123 | 1124 | fill-range@^2.1.0: 1125 | version "2.2.3" 1126 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1127 | dependencies: 1128 | is-number "^2.1.0" 1129 | isobject "^2.0.0" 1130 | randomatic "^1.1.3" 1131 | repeat-element "^1.1.2" 1132 | repeat-string "^1.5.2" 1133 | 1134 | find-up@^1.0.0: 1135 | version "1.1.2" 1136 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1137 | dependencies: 1138 | path-exists "^2.0.0" 1139 | pinkie-promise "^2.0.0" 1140 | 1141 | find-up@^2.0.0: 1142 | version "2.1.0" 1143 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1144 | dependencies: 1145 | locate-path "^2.0.0" 1146 | 1147 | flat-cache@^1.2.1: 1148 | version "1.3.0" 1149 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1150 | dependencies: 1151 | circular-json "^0.3.1" 1152 | del "^2.0.2" 1153 | graceful-fs "^4.1.2" 1154 | write "^0.2.1" 1155 | 1156 | for-in@^1.0.1: 1157 | version "1.0.2" 1158 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1159 | 1160 | for-own@^0.1.4: 1161 | version "0.1.5" 1162 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1163 | dependencies: 1164 | for-in "^1.0.1" 1165 | 1166 | forever-agent@~0.6.1: 1167 | version "0.6.1" 1168 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1169 | 1170 | form-data@~2.1.1: 1171 | version "2.1.4" 1172 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1173 | dependencies: 1174 | asynckit "^0.4.0" 1175 | combined-stream "^1.0.5" 1176 | mime-types "^2.1.12" 1177 | 1178 | fs-readdir-recursive@^1.0.0: 1179 | version "1.0.0" 1180 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1181 | 1182 | fs.realpath@^1.0.0: 1183 | version "1.0.0" 1184 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1185 | 1186 | fsevents@^1.0.0: 1187 | version "1.1.2" 1188 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1189 | dependencies: 1190 | nan "^2.3.0" 1191 | node-pre-gyp "^0.6.36" 1192 | 1193 | fstream-ignore@^1.0.5: 1194 | version "1.0.5" 1195 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1196 | dependencies: 1197 | fstream "^1.0.0" 1198 | inherits "2" 1199 | minimatch "^3.0.0" 1200 | 1201 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1202 | version "1.0.11" 1203 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1204 | dependencies: 1205 | graceful-fs "^4.1.2" 1206 | inherits "~2.0.0" 1207 | mkdirp ">=0.5 0" 1208 | rimraf "2" 1209 | 1210 | function-bind@^1.0.2: 1211 | version "1.1.1" 1212 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1213 | 1214 | functional-red-black-tree@^1.0.1: 1215 | version "1.0.1" 1216 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1217 | 1218 | gauge@~2.7.3: 1219 | version "2.7.4" 1220 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1221 | dependencies: 1222 | aproba "^1.0.3" 1223 | console-control-strings "^1.0.0" 1224 | has-unicode "^2.0.0" 1225 | object-assign "^4.1.0" 1226 | signal-exit "^3.0.0" 1227 | string-width "^1.0.1" 1228 | strip-ansi "^3.0.1" 1229 | wide-align "^1.1.0" 1230 | 1231 | getpass@^0.1.1: 1232 | version "0.1.7" 1233 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1234 | dependencies: 1235 | assert-plus "^1.0.0" 1236 | 1237 | glob-base@^0.3.0: 1238 | version "0.3.0" 1239 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1240 | dependencies: 1241 | glob-parent "^2.0.0" 1242 | is-glob "^2.0.0" 1243 | 1244 | glob-parent@^2.0.0: 1245 | version "2.0.0" 1246 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1247 | dependencies: 1248 | is-glob "^2.0.0" 1249 | 1250 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 1251 | version "7.1.2" 1252 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1253 | dependencies: 1254 | fs.realpath "^1.0.0" 1255 | inflight "^1.0.4" 1256 | inherits "2" 1257 | minimatch "^3.0.4" 1258 | once "^1.3.0" 1259 | path-is-absolute "^1.0.0" 1260 | 1261 | globals@^9.17.0, globals@^9.18.0: 1262 | version "9.18.0" 1263 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1264 | 1265 | globby@^5.0.0: 1266 | version "5.0.0" 1267 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1268 | dependencies: 1269 | array-union "^1.0.1" 1270 | arrify "^1.0.0" 1271 | glob "^7.0.3" 1272 | object-assign "^4.0.1" 1273 | pify "^2.0.0" 1274 | pinkie-promise "^2.0.0" 1275 | 1276 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1277 | version "4.1.11" 1278 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1279 | 1280 | har-schema@^1.0.5: 1281 | version "1.0.5" 1282 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1283 | 1284 | har-validator@~4.2.1: 1285 | version "4.2.1" 1286 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1287 | dependencies: 1288 | ajv "^4.9.1" 1289 | har-schema "^1.0.5" 1290 | 1291 | has-ansi@^2.0.0: 1292 | version "2.0.0" 1293 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1294 | dependencies: 1295 | ansi-regex "^2.0.0" 1296 | 1297 | has-flag@^2.0.0: 1298 | version "2.0.0" 1299 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1300 | 1301 | has-unicode@^2.0.0: 1302 | version "2.0.1" 1303 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1304 | 1305 | has@^1.0.1: 1306 | version "1.0.1" 1307 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1308 | dependencies: 1309 | function-bind "^1.0.2" 1310 | 1311 | hawk@3.1.3, hawk@~3.1.3: 1312 | version "3.1.3" 1313 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1314 | dependencies: 1315 | boom "2.x.x" 1316 | cryptiles "2.x.x" 1317 | hoek "2.x.x" 1318 | sntp "1.x.x" 1319 | 1320 | hoek@2.x.x: 1321 | version "2.16.3" 1322 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1323 | 1324 | home-or-tmp@^2.0.0: 1325 | version "2.0.0" 1326 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1327 | dependencies: 1328 | os-homedir "^1.0.0" 1329 | os-tmpdir "^1.0.1" 1330 | 1331 | hosted-git-info@^2.1.4: 1332 | version "2.5.0" 1333 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1334 | 1335 | http-signature@~1.1.0: 1336 | version "1.1.1" 1337 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1338 | dependencies: 1339 | assert-plus "^0.2.0" 1340 | jsprim "^1.2.2" 1341 | sshpk "^1.7.0" 1342 | 1343 | iconv-lite@^0.4.17, iconv-lite@~0.4.13: 1344 | version "0.4.19" 1345 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1346 | 1347 | ignore@^3.3.3, ignore@^3.3.6: 1348 | version "3.3.7" 1349 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1350 | 1351 | imurmurhash@^0.1.4: 1352 | version "0.1.4" 1353 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1354 | 1355 | inflight@^1.0.4: 1356 | version "1.0.6" 1357 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1358 | dependencies: 1359 | once "^1.3.0" 1360 | wrappy "1" 1361 | 1362 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1363 | version "2.0.3" 1364 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1365 | 1366 | ini@~1.3.0: 1367 | version "1.3.4" 1368 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1369 | 1370 | inquirer@^3.0.6: 1371 | version "3.3.0" 1372 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1373 | dependencies: 1374 | ansi-escapes "^3.0.0" 1375 | chalk "^2.0.0" 1376 | cli-cursor "^2.1.0" 1377 | cli-width "^2.0.0" 1378 | external-editor "^2.0.4" 1379 | figures "^2.0.0" 1380 | lodash "^4.3.0" 1381 | mute-stream "0.0.7" 1382 | run-async "^2.2.0" 1383 | rx-lite "^4.0.8" 1384 | rx-lite-aggregates "^4.0.8" 1385 | string-width "^2.1.0" 1386 | strip-ansi "^4.0.0" 1387 | through "^2.3.6" 1388 | 1389 | invariant@^2.2.2: 1390 | version "2.2.2" 1391 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1392 | dependencies: 1393 | loose-envify "^1.0.0" 1394 | 1395 | is-arrayish@^0.2.1: 1396 | version "0.2.1" 1397 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1398 | 1399 | is-binary-path@^1.0.0: 1400 | version "1.0.1" 1401 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1402 | dependencies: 1403 | binary-extensions "^1.0.0" 1404 | 1405 | is-buffer@^1.1.5: 1406 | version "1.1.6" 1407 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1408 | 1409 | is-builtin-module@^1.0.0: 1410 | version "1.0.0" 1411 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1412 | dependencies: 1413 | builtin-modules "^1.0.0" 1414 | 1415 | is-dotfile@^1.0.0: 1416 | version "1.0.3" 1417 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1418 | 1419 | is-equal-shallow@^0.1.3: 1420 | version "0.1.3" 1421 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1422 | dependencies: 1423 | is-primitive "^2.0.0" 1424 | 1425 | is-extendable@^0.1.1: 1426 | version "0.1.1" 1427 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1428 | 1429 | is-extglob@^1.0.0: 1430 | version "1.0.0" 1431 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1432 | 1433 | is-finite@^1.0.0: 1434 | version "1.0.2" 1435 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1436 | dependencies: 1437 | number-is-nan "^1.0.0" 1438 | 1439 | is-fullwidth-code-point@^1.0.0: 1440 | version "1.0.0" 1441 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1442 | dependencies: 1443 | number-is-nan "^1.0.0" 1444 | 1445 | is-fullwidth-code-point@^2.0.0: 1446 | version "2.0.0" 1447 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1448 | 1449 | is-glob@^2.0.0, is-glob@^2.0.1: 1450 | version "2.0.1" 1451 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1452 | dependencies: 1453 | is-extglob "^1.0.0" 1454 | 1455 | is-number@^2.1.0: 1456 | version "2.1.0" 1457 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1458 | dependencies: 1459 | kind-of "^3.0.2" 1460 | 1461 | is-number@^3.0.0: 1462 | version "3.0.0" 1463 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1464 | dependencies: 1465 | kind-of "^3.0.2" 1466 | 1467 | is-path-cwd@^1.0.0: 1468 | version "1.0.0" 1469 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1470 | 1471 | is-path-in-cwd@^1.0.0: 1472 | version "1.0.0" 1473 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1474 | dependencies: 1475 | is-path-inside "^1.0.0" 1476 | 1477 | is-path-inside@^1.0.0: 1478 | version "1.0.0" 1479 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1480 | dependencies: 1481 | path-is-inside "^1.0.1" 1482 | 1483 | is-posix-bracket@^0.1.0: 1484 | version "0.1.1" 1485 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1486 | 1487 | is-primitive@^2.0.0: 1488 | version "2.0.0" 1489 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1490 | 1491 | is-promise@^2.1.0: 1492 | version "2.1.0" 1493 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1494 | 1495 | is-resolvable@^1.0.0: 1496 | version "1.0.0" 1497 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1498 | dependencies: 1499 | tryit "^1.0.1" 1500 | 1501 | is-stream@^1.0.1: 1502 | version "1.1.0" 1503 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1504 | 1505 | is-typedarray@~1.0.0: 1506 | version "1.0.0" 1507 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1508 | 1509 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1510 | version "1.0.0" 1511 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1512 | 1513 | isexe@^2.0.0: 1514 | version "2.0.0" 1515 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1516 | 1517 | isobject@^2.0.0: 1518 | version "2.1.0" 1519 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1520 | dependencies: 1521 | isarray "1.0.0" 1522 | 1523 | isstream@~0.1.2: 1524 | version "0.1.2" 1525 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1526 | 1527 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1528 | version "3.0.2" 1529 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1530 | 1531 | js-yaml@^3.9.1: 1532 | version "3.10.0" 1533 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1534 | dependencies: 1535 | argparse "^1.0.7" 1536 | esprima "^4.0.0" 1537 | 1538 | jsbn@~0.1.0: 1539 | version "0.1.1" 1540 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1541 | 1542 | jschardet@^1.4.2: 1543 | version "1.6.0" 1544 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.6.0.tgz#c7d1a71edcff2839db2f9ec30fc5d5ebd3c1a678" 1545 | 1546 | jsesc@^1.3.0: 1547 | version "1.3.0" 1548 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1549 | 1550 | jsesc@~0.5.0: 1551 | version "0.5.0" 1552 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1553 | 1554 | json-schema-traverse@^0.3.0: 1555 | version "0.3.1" 1556 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1557 | 1558 | json-schema@0.2.3: 1559 | version "0.2.3" 1560 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1561 | 1562 | json-stable-stringify@^1.0.1: 1563 | version "1.0.1" 1564 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1565 | dependencies: 1566 | jsonify "~0.0.0" 1567 | 1568 | json-stringify-safe@~5.0.1: 1569 | version "5.0.1" 1570 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1571 | 1572 | json5@^0.5.1: 1573 | version "0.5.1" 1574 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1575 | 1576 | jsonify@~0.0.0: 1577 | version "0.0.0" 1578 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1579 | 1580 | jsprim@^1.2.2: 1581 | version "1.4.1" 1582 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1583 | dependencies: 1584 | assert-plus "1.0.0" 1585 | extsprintf "1.3.0" 1586 | json-schema "0.2.3" 1587 | verror "1.10.0" 1588 | 1589 | kind-of@^3.0.2: 1590 | version "3.2.2" 1591 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1592 | dependencies: 1593 | is-buffer "^1.1.5" 1594 | 1595 | kind-of@^4.0.0: 1596 | version "4.0.0" 1597 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1598 | dependencies: 1599 | is-buffer "^1.1.5" 1600 | 1601 | levn@^0.3.0, levn@~0.3.0: 1602 | version "0.3.0" 1603 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1604 | dependencies: 1605 | prelude-ls "~1.1.2" 1606 | type-check "~0.3.2" 1607 | 1608 | load-json-file@^2.0.0: 1609 | version "2.0.0" 1610 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1611 | dependencies: 1612 | graceful-fs "^4.1.2" 1613 | parse-json "^2.2.0" 1614 | pify "^2.0.0" 1615 | strip-bom "^3.0.0" 1616 | 1617 | locate-path@^2.0.0: 1618 | version "2.0.0" 1619 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1620 | dependencies: 1621 | p-locate "^2.0.0" 1622 | path-exists "^3.0.0" 1623 | 1624 | lodash.cond@^4.3.0: 1625 | version "4.5.2" 1626 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 1627 | 1628 | lodash@^4.17.4, lodash@^4.3.0: 1629 | version "4.17.4" 1630 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1631 | 1632 | loose-envify@^1.0.0: 1633 | version "1.3.1" 1634 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1635 | dependencies: 1636 | js-tokens "^3.0.0" 1637 | 1638 | lru-cache@^4.0.1: 1639 | version "4.1.1" 1640 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1641 | dependencies: 1642 | pseudomap "^1.0.2" 1643 | yallist "^2.1.2" 1644 | 1645 | micromatch@^2.1.5: 1646 | version "2.3.11" 1647 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1648 | dependencies: 1649 | arr-diff "^2.0.0" 1650 | array-unique "^0.2.1" 1651 | braces "^1.8.2" 1652 | expand-brackets "^0.1.4" 1653 | extglob "^0.3.1" 1654 | filename-regex "^2.0.0" 1655 | is-extglob "^1.0.0" 1656 | is-glob "^2.0.1" 1657 | kind-of "^3.0.2" 1658 | normalize-path "^2.0.1" 1659 | object.omit "^2.0.0" 1660 | parse-glob "^3.0.4" 1661 | regex-cache "^0.4.2" 1662 | 1663 | mime-db@~1.30.0: 1664 | version "1.30.0" 1665 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1666 | 1667 | mime-types@^2.1.12, mime-types@~2.1.7: 1668 | version "2.1.17" 1669 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1670 | dependencies: 1671 | mime-db "~1.30.0" 1672 | 1673 | mimic-fn@^1.0.0: 1674 | version "1.1.0" 1675 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1676 | 1677 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 1678 | version "3.0.4" 1679 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1680 | dependencies: 1681 | brace-expansion "^1.1.7" 1682 | 1683 | minimist@0.0.8: 1684 | version "0.0.8" 1685 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1686 | 1687 | minimist@^1.2.0: 1688 | version "1.2.0" 1689 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1690 | 1691 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1692 | version "0.5.1" 1693 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1694 | dependencies: 1695 | minimist "0.0.8" 1696 | 1697 | ms@2.0.0: 1698 | version "2.0.0" 1699 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1700 | 1701 | mute-stream@0.0.7: 1702 | version "0.0.7" 1703 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1704 | 1705 | nan@^2.3.0: 1706 | version "2.7.0" 1707 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1708 | 1709 | natural-compare@^1.4.0: 1710 | version "1.4.0" 1711 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1712 | 1713 | node-fetch@^1.7.3: 1714 | version "1.7.3" 1715 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 1716 | dependencies: 1717 | encoding "^0.1.11" 1718 | is-stream "^1.0.1" 1719 | 1720 | node-pre-gyp@^0.6.36: 1721 | version "0.6.39" 1722 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1723 | dependencies: 1724 | detect-libc "^1.0.2" 1725 | hawk "3.1.3" 1726 | mkdirp "^0.5.1" 1727 | nopt "^4.0.1" 1728 | npmlog "^4.0.2" 1729 | rc "^1.1.7" 1730 | request "2.81.0" 1731 | rimraf "^2.6.1" 1732 | semver "^5.3.0" 1733 | tar "^2.2.1" 1734 | tar-pack "^3.4.0" 1735 | 1736 | nopt@^4.0.1: 1737 | version "4.0.1" 1738 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1739 | dependencies: 1740 | abbrev "1" 1741 | osenv "^0.1.4" 1742 | 1743 | normalize-package-data@^2.3.2: 1744 | version "2.4.0" 1745 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1746 | dependencies: 1747 | hosted-git-info "^2.1.4" 1748 | is-builtin-module "^1.0.0" 1749 | semver "2 || 3 || 4 || 5" 1750 | validate-npm-package-license "^3.0.1" 1751 | 1752 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1753 | version "2.1.1" 1754 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1755 | dependencies: 1756 | remove-trailing-separator "^1.0.1" 1757 | 1758 | npmlog@^4.0.2: 1759 | version "4.1.2" 1760 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1761 | dependencies: 1762 | are-we-there-yet "~1.1.2" 1763 | console-control-strings "~1.1.0" 1764 | gauge "~2.7.3" 1765 | set-blocking "~2.0.0" 1766 | 1767 | number-is-nan@^1.0.0: 1768 | version "1.0.1" 1769 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1770 | 1771 | oauth-sign@~0.8.1: 1772 | version "0.8.2" 1773 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1774 | 1775 | object-assign@^4.0.1, object-assign@^4.1.0: 1776 | version "4.1.1" 1777 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1778 | 1779 | object.omit@^2.0.0: 1780 | version "2.0.1" 1781 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1782 | dependencies: 1783 | for-own "^0.1.4" 1784 | is-extendable "^0.1.1" 1785 | 1786 | once@^1.3.0, once@^1.3.3: 1787 | version "1.4.0" 1788 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1789 | dependencies: 1790 | wrappy "1" 1791 | 1792 | onetime@^2.0.0: 1793 | version "2.0.1" 1794 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1795 | dependencies: 1796 | mimic-fn "^1.0.0" 1797 | 1798 | optionator@^0.8.2: 1799 | version "0.8.2" 1800 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1801 | dependencies: 1802 | deep-is "~0.1.3" 1803 | fast-levenshtein "~2.0.4" 1804 | levn "~0.3.0" 1805 | prelude-ls "~1.1.2" 1806 | type-check "~0.3.2" 1807 | wordwrap "~1.0.0" 1808 | 1809 | os-homedir@^1.0.0: 1810 | version "1.0.2" 1811 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1812 | 1813 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 1814 | version "1.0.2" 1815 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1816 | 1817 | osenv@^0.1.4: 1818 | version "0.1.4" 1819 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1820 | dependencies: 1821 | os-homedir "^1.0.0" 1822 | os-tmpdir "^1.0.0" 1823 | 1824 | output-file-sync@^1.1.2: 1825 | version "1.1.2" 1826 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1827 | dependencies: 1828 | graceful-fs "^4.1.4" 1829 | mkdirp "^0.5.1" 1830 | object-assign "^4.1.0" 1831 | 1832 | p-limit@^1.1.0: 1833 | version "1.1.0" 1834 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1835 | 1836 | p-locate@^2.0.0: 1837 | version "2.0.0" 1838 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1839 | dependencies: 1840 | p-limit "^1.1.0" 1841 | 1842 | parse-glob@^3.0.4: 1843 | version "3.0.4" 1844 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1845 | dependencies: 1846 | glob-base "^0.3.0" 1847 | is-dotfile "^1.0.0" 1848 | is-extglob "^1.0.0" 1849 | is-glob "^2.0.0" 1850 | 1851 | parse-json@^2.2.0: 1852 | version "2.2.0" 1853 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1854 | dependencies: 1855 | error-ex "^1.2.0" 1856 | 1857 | path-exists@^2.0.0: 1858 | version "2.1.0" 1859 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1860 | dependencies: 1861 | pinkie-promise "^2.0.0" 1862 | 1863 | path-exists@^3.0.0: 1864 | version "3.0.0" 1865 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1866 | 1867 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1868 | version "1.0.1" 1869 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1870 | 1871 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 1872 | version "1.0.2" 1873 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1874 | 1875 | path-parse@^1.0.5: 1876 | version "1.0.5" 1877 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1878 | 1879 | path-type@^2.0.0: 1880 | version "2.0.0" 1881 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1882 | dependencies: 1883 | pify "^2.0.0" 1884 | 1885 | performance-now@^0.2.0: 1886 | version "0.2.0" 1887 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1888 | 1889 | pify@^2.0.0: 1890 | version "2.3.0" 1891 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1892 | 1893 | pinkie-promise@^2.0.0: 1894 | version "2.0.1" 1895 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1896 | dependencies: 1897 | pinkie "^2.0.0" 1898 | 1899 | pinkie@^2.0.0: 1900 | version "2.0.4" 1901 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1902 | 1903 | pkg-dir@^1.0.0: 1904 | version "1.0.0" 1905 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1906 | dependencies: 1907 | find-up "^1.0.0" 1908 | 1909 | pluralize@^7.0.0: 1910 | version "7.0.0" 1911 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 1912 | 1913 | prelude-ls@~1.1.2: 1914 | version "1.1.2" 1915 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1916 | 1917 | preserve@^0.2.0: 1918 | version "0.2.0" 1919 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1920 | 1921 | private@^0.1.6, private@^0.1.7: 1922 | version "0.1.8" 1923 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1924 | 1925 | process-nextick-args@~1.0.6: 1926 | version "1.0.7" 1927 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1928 | 1929 | progress@^2.0.0: 1930 | version "2.0.0" 1931 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 1932 | 1933 | pseudomap@^1.0.2: 1934 | version "1.0.2" 1935 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1936 | 1937 | punycode@^1.4.1: 1938 | version "1.4.1" 1939 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1940 | 1941 | qs@~6.4.0: 1942 | version "6.4.0" 1943 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1944 | 1945 | randomatic@^1.1.3: 1946 | version "1.1.7" 1947 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1948 | dependencies: 1949 | is-number "^3.0.0" 1950 | kind-of "^4.0.0" 1951 | 1952 | rc@^1.1.7: 1953 | version "1.2.2" 1954 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 1955 | dependencies: 1956 | deep-extend "~0.4.0" 1957 | ini "~1.3.0" 1958 | minimist "^1.2.0" 1959 | strip-json-comments "~2.0.1" 1960 | 1961 | read-pkg-up@^2.0.0: 1962 | version "2.0.0" 1963 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1964 | dependencies: 1965 | find-up "^2.0.0" 1966 | read-pkg "^2.0.0" 1967 | 1968 | read-pkg@^2.0.0: 1969 | version "2.0.0" 1970 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1971 | dependencies: 1972 | load-json-file "^2.0.0" 1973 | normalize-package-data "^2.3.2" 1974 | path-type "^2.0.0" 1975 | 1976 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 1977 | version "2.3.3" 1978 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1979 | dependencies: 1980 | core-util-is "~1.0.0" 1981 | inherits "~2.0.3" 1982 | isarray "~1.0.0" 1983 | process-nextick-args "~1.0.6" 1984 | safe-buffer "~5.1.1" 1985 | string_decoder "~1.0.3" 1986 | util-deprecate "~1.0.1" 1987 | 1988 | readdirp@^2.0.0: 1989 | version "2.1.0" 1990 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1991 | dependencies: 1992 | graceful-fs "^4.1.2" 1993 | minimatch "^3.0.2" 1994 | readable-stream "^2.0.2" 1995 | set-immediate-shim "^1.0.1" 1996 | 1997 | regenerate@^1.2.1: 1998 | version "1.3.3" 1999 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2000 | 2001 | regenerator-runtime@^0.10.5: 2002 | version "0.10.5" 2003 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2004 | 2005 | regenerator-runtime@^0.11.0: 2006 | version "0.11.0" 2007 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2008 | 2009 | regenerator-transform@^0.10.0: 2010 | version "0.10.1" 2011 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2012 | dependencies: 2013 | babel-runtime "^6.18.0" 2014 | babel-types "^6.19.0" 2015 | private "^0.1.6" 2016 | 2017 | regex-cache@^0.4.2: 2018 | version "0.4.4" 2019 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2020 | dependencies: 2021 | is-equal-shallow "^0.1.3" 2022 | 2023 | regexpu-core@^2.0.0: 2024 | version "2.0.0" 2025 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2026 | dependencies: 2027 | regenerate "^1.2.1" 2028 | regjsgen "^0.2.0" 2029 | regjsparser "^0.1.4" 2030 | 2031 | regjsgen@^0.2.0: 2032 | version "0.2.0" 2033 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2034 | 2035 | regjsparser@^0.1.4: 2036 | version "0.1.5" 2037 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2038 | dependencies: 2039 | jsesc "~0.5.0" 2040 | 2041 | remove-trailing-separator@^1.0.1: 2042 | version "1.1.0" 2043 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2044 | 2045 | repeat-element@^1.1.2: 2046 | version "1.1.2" 2047 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2048 | 2049 | repeat-string@^1.5.2: 2050 | version "1.6.1" 2051 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2052 | 2053 | repeating@^2.0.0: 2054 | version "2.0.1" 2055 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2056 | dependencies: 2057 | is-finite "^1.0.0" 2058 | 2059 | request@2.81.0: 2060 | version "2.81.0" 2061 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2062 | dependencies: 2063 | aws-sign2 "~0.6.0" 2064 | aws4 "^1.2.1" 2065 | caseless "~0.12.0" 2066 | combined-stream "~1.0.5" 2067 | extend "~3.0.0" 2068 | forever-agent "~0.6.1" 2069 | form-data "~2.1.1" 2070 | har-validator "~4.2.1" 2071 | hawk "~3.1.3" 2072 | http-signature "~1.1.0" 2073 | is-typedarray "~1.0.0" 2074 | isstream "~0.1.2" 2075 | json-stringify-safe "~5.0.1" 2076 | mime-types "~2.1.7" 2077 | oauth-sign "~0.8.1" 2078 | performance-now "^0.2.0" 2079 | qs "~6.4.0" 2080 | safe-buffer "^5.0.1" 2081 | stringstream "~0.0.4" 2082 | tough-cookie "~2.3.0" 2083 | tunnel-agent "^0.6.0" 2084 | uuid "^3.0.0" 2085 | 2086 | require-uncached@^1.0.3: 2087 | version "1.0.3" 2088 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 2089 | dependencies: 2090 | caller-path "^0.1.0" 2091 | resolve-from "^1.0.0" 2092 | 2093 | resolve-from@^1.0.0: 2094 | version "1.0.1" 2095 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 2096 | 2097 | resolve@^1.2.0, resolve@^1.3.3: 2098 | version "1.5.0" 2099 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36" 2100 | dependencies: 2101 | path-parse "^1.0.5" 2102 | 2103 | restore-cursor@^2.0.0: 2104 | version "2.0.0" 2105 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2106 | dependencies: 2107 | onetime "^2.0.0" 2108 | signal-exit "^3.0.2" 2109 | 2110 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2111 | version "2.6.2" 2112 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2113 | dependencies: 2114 | glob "^7.0.5" 2115 | 2116 | run-async@^2.2.0: 2117 | version "2.3.0" 2118 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2119 | dependencies: 2120 | is-promise "^2.1.0" 2121 | 2122 | rx-lite-aggregates@^4.0.8: 2123 | version "4.0.8" 2124 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2125 | dependencies: 2126 | rx-lite "*" 2127 | 2128 | rx-lite@*, rx-lite@^4.0.8: 2129 | version "4.0.8" 2130 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2131 | 2132 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2133 | version "5.1.1" 2134 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2135 | 2136 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2137 | version "5.4.1" 2138 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2139 | 2140 | semver@5.3.0: 2141 | version "5.3.0" 2142 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2143 | 2144 | set-blocking@~2.0.0: 2145 | version "2.0.0" 2146 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2147 | 2148 | set-immediate-shim@^1.0.1: 2149 | version "1.0.1" 2150 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2151 | 2152 | shebang-command@^1.2.0: 2153 | version "1.2.0" 2154 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2155 | dependencies: 2156 | shebang-regex "^1.0.0" 2157 | 2158 | shebang-regex@^1.0.0: 2159 | version "1.0.0" 2160 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2161 | 2162 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2163 | version "3.0.2" 2164 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2165 | 2166 | slash@^1.0.0: 2167 | version "1.0.0" 2168 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2169 | 2170 | slice-ansi@1.0.0: 2171 | version "1.0.0" 2172 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 2173 | dependencies: 2174 | is-fullwidth-code-point "^2.0.0" 2175 | 2176 | sntp@1.x.x: 2177 | version "1.0.9" 2178 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2179 | dependencies: 2180 | hoek "2.x.x" 2181 | 2182 | source-map-support@^0.4.15: 2183 | version "0.4.18" 2184 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2185 | dependencies: 2186 | source-map "^0.5.6" 2187 | 2188 | source-map@^0.5.6: 2189 | version "0.5.7" 2190 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2191 | 2192 | spdx-correct@~1.0.0: 2193 | version "1.0.2" 2194 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2195 | dependencies: 2196 | spdx-license-ids "^1.0.2" 2197 | 2198 | spdx-expression-parse@~1.0.0: 2199 | version "1.0.4" 2200 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2201 | 2202 | spdx-license-ids@^1.0.2: 2203 | version "1.2.2" 2204 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2205 | 2206 | sprintf-js@~1.0.2: 2207 | version "1.0.3" 2208 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2209 | 2210 | sshpk@^1.7.0: 2211 | version "1.13.1" 2212 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2213 | dependencies: 2214 | asn1 "~0.2.3" 2215 | assert-plus "^1.0.0" 2216 | dashdash "^1.12.0" 2217 | getpass "^0.1.1" 2218 | optionalDependencies: 2219 | bcrypt-pbkdf "^1.0.0" 2220 | ecc-jsbn "~0.1.1" 2221 | jsbn "~0.1.0" 2222 | tweetnacl "~0.14.0" 2223 | 2224 | string-width@^1.0.1, string-width@^1.0.2: 2225 | version "1.0.2" 2226 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2227 | dependencies: 2228 | code-point-at "^1.0.0" 2229 | is-fullwidth-code-point "^1.0.0" 2230 | strip-ansi "^3.0.0" 2231 | 2232 | string-width@^2.1.0, string-width@^2.1.1: 2233 | version "2.1.1" 2234 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2235 | dependencies: 2236 | is-fullwidth-code-point "^2.0.0" 2237 | strip-ansi "^4.0.0" 2238 | 2239 | string_decoder@~1.0.3: 2240 | version "1.0.3" 2241 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2242 | dependencies: 2243 | safe-buffer "~5.1.0" 2244 | 2245 | stringstream@~0.0.4: 2246 | version "0.0.5" 2247 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2248 | 2249 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2250 | version "3.0.1" 2251 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2252 | dependencies: 2253 | ansi-regex "^2.0.0" 2254 | 2255 | strip-ansi@^4.0.0: 2256 | version "4.0.0" 2257 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2258 | dependencies: 2259 | ansi-regex "^3.0.0" 2260 | 2261 | strip-bom@^3.0.0: 2262 | version "3.0.0" 2263 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2264 | 2265 | strip-json-comments@~2.0.1: 2266 | version "2.0.1" 2267 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2268 | 2269 | supports-color@^2.0.0: 2270 | version "2.0.0" 2271 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2272 | 2273 | supports-color@^4.0.0: 2274 | version "4.5.0" 2275 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2276 | dependencies: 2277 | has-flag "^2.0.0" 2278 | 2279 | table@^4.0.1: 2280 | version "4.0.2" 2281 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 2282 | dependencies: 2283 | ajv "^5.2.3" 2284 | ajv-keywords "^2.1.0" 2285 | chalk "^2.1.0" 2286 | lodash "^4.17.4" 2287 | slice-ansi "1.0.0" 2288 | string-width "^2.1.1" 2289 | 2290 | tar-pack@^3.4.0: 2291 | version "3.4.1" 2292 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2293 | dependencies: 2294 | debug "^2.2.0" 2295 | fstream "^1.0.10" 2296 | fstream-ignore "^1.0.5" 2297 | once "^1.3.3" 2298 | readable-stream "^2.1.4" 2299 | rimraf "^2.5.1" 2300 | tar "^2.2.1" 2301 | uid-number "^0.0.6" 2302 | 2303 | tar@^2.2.1: 2304 | version "2.2.1" 2305 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2306 | dependencies: 2307 | block-stream "*" 2308 | fstream "^1.0.2" 2309 | inherits "2" 2310 | 2311 | text-table@~0.2.0: 2312 | version "0.2.0" 2313 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2314 | 2315 | through@^2.3.6: 2316 | version "2.3.8" 2317 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2318 | 2319 | tmp@^0.0.33: 2320 | version "0.0.33" 2321 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2322 | dependencies: 2323 | os-tmpdir "~1.0.2" 2324 | 2325 | to-fast-properties@^1.0.3: 2326 | version "1.0.3" 2327 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2328 | 2329 | tough-cookie@~2.3.0: 2330 | version "2.3.3" 2331 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2332 | dependencies: 2333 | punycode "^1.4.1" 2334 | 2335 | trim-right@^1.0.1: 2336 | version "1.0.1" 2337 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2338 | 2339 | tryit@^1.0.1: 2340 | version "1.0.3" 2341 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 2342 | 2343 | tunnel-agent@^0.6.0: 2344 | version "0.6.0" 2345 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2346 | dependencies: 2347 | safe-buffer "^5.0.1" 2348 | 2349 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2350 | version "0.14.5" 2351 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2352 | 2353 | type-check@~0.3.2: 2354 | version "0.3.2" 2355 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2356 | dependencies: 2357 | prelude-ls "~1.1.2" 2358 | 2359 | typedarray@^0.0.6: 2360 | version "0.0.6" 2361 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2362 | 2363 | uid-number@^0.0.6: 2364 | version "0.0.6" 2365 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2366 | 2367 | user-home@^1.1.1: 2368 | version "1.1.1" 2369 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2370 | 2371 | util-deprecate@~1.0.1: 2372 | version "1.0.2" 2373 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2374 | 2375 | uuid@^3.0.0: 2376 | version "3.1.0" 2377 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2378 | 2379 | v8flags@^2.1.1: 2380 | version "2.1.1" 2381 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2382 | dependencies: 2383 | user-home "^1.1.1" 2384 | 2385 | validate-npm-package-license@^3.0.1: 2386 | version "3.0.1" 2387 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2388 | dependencies: 2389 | spdx-correct "~1.0.0" 2390 | spdx-expression-parse "~1.0.0" 2391 | 2392 | verror@1.10.0: 2393 | version "1.10.0" 2394 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2395 | dependencies: 2396 | assert-plus "^1.0.0" 2397 | core-util-is "1.0.2" 2398 | extsprintf "^1.2.0" 2399 | 2400 | which@^1.2.9: 2401 | version "1.3.0" 2402 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2403 | dependencies: 2404 | isexe "^2.0.0" 2405 | 2406 | wide-align@^1.1.0: 2407 | version "1.1.2" 2408 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2409 | dependencies: 2410 | string-width "^1.0.2" 2411 | 2412 | wordwrap@~1.0.0: 2413 | version "1.0.0" 2414 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2415 | 2416 | wrappy@1: 2417 | version "1.0.2" 2418 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2419 | 2420 | write@^0.2.1: 2421 | version "0.2.1" 2422 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2423 | dependencies: 2424 | mkdirp "^0.5.1" 2425 | 2426 | yallist@^2.1.2: 2427 | version "2.1.2" 2428 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2429 | --------------------------------------------------------------------------------