├── .babelrc ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── index.js └── index.test.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "targets": { 5 | "node": "6.0.0" 6 | } 7 | }] 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | dist 3 | node6 4 | logs 5 | *.log 6 | coverage 7 | lib/test_key.js 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | node_modules 12 | .npm 13 | .yarn-integrity 14 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | logs 2 | *.log 3 | lib/test_key.js 4 | dist/test_key.js 5 | coverage 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | node_modules 10 | .env 11 | .npm 12 | .yarn-integrity 13 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "trailingComma": "all" 4 | } 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to this project will be documented in this file. 3 | 4 | The format is based on [Keep a Changelog](http://keepachangelog.com/) 5 | and this project adheres to [Semantic Versioning](http://semver.org/). 6 | 7 | ## [2.2.0] - 2017-07-21 8 | - Added support for `text_format` option (thanks @Scriptim!) 9 | 10 | ## [2.1.0] - 2017-06-10 11 | - Fixed scraping for new Genius.com layout 12 | - Split ES6/5 versions of code. No transpiling required for Node 7+ 13 | 14 | ## [2.0.0] - 2015-04-27 15 | - Complete rewrite with async/await and new API 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Lyricist 🎤 2 | ⭐️ Genius.com API client with lyric scraping 3 | 4 | ## Installation 5 | ``` 6 | yarn add lyricist 7 | ``` 8 | 9 | or 10 | 11 | ``` 12 | npm install lyricist 13 | ``` 14 | 15 | ## API Key 16 | Get an access token at https://genius.com/api-clients 17 | 18 | ```js 19 | const lyricist = new Lyricist(accessToken); 20 | ``` 21 | 22 | ## Look up a song by ID 23 | Use `song()` to fetch a song by ID: 24 | ```js 25 | const song = await lyricist.song(714198); 26 | console.log(song.title); 27 | 28 | // output: Death with Dignity 29 | ``` 30 | 31 | #### or with promises 32 | ```js 33 | lyricist.song(714198).then(song => console.log(song.title)); 34 | ``` 35 | 36 | ## Get song lyrics 37 | The Genius API doesn't offer lyrics, but Lyricist can scrape Genius.com for you. Simply provide the `fetchLyrics` option like this: 38 | ```js 39 | const song = await lyricist.song(714198, { fetchLyrics: true }); 40 | console.log(song.lyrics); 41 | 42 | // output: Spirit of my silence I can hear you... 43 | ``` 44 | ## Look up an album 45 | 46 | Use `album()` to look up an album by ID. The Genius API doesn't allow you to search an album by title, but song() will return an `album.id`: 47 | 48 | ```js 49 | const album = await lyricist.album(56682); 50 | console.log(`${album.name} by ${album.artist.name}`); 51 | 52 | // output: Lanterns by Son Lux 53 | ``` 54 | 55 | ## Get an album's tracklist 56 | The Genius API doesn't provide tracklists, but Lyricist can scrape Genius.com and return the tracklist for you. Simply provide the `fetchTracklist` option like this: 57 | 58 | ```js 59 | const album = await lyricist.album(56682, { fetchTracklist: true }); 60 | console.log(album.songs); 61 | 62 | // output: [{ id: 502102, title: 'Alternate World', ... }, { id: 267773, title: 'Lost It To Trying', ... }, ...] 63 | 64 | ``` 65 | ## Look up an artist 66 | Use `artist()` to look up an artist by ID: 67 | ```js 68 | const artist = await lyricist.artist(2); 69 | console.log(artist.name); 70 | 71 | // output: Jay Z 72 | ``` 73 | 74 | ## Get songs by an artist 75 | Use `songsByArtist()` to list an artist's songs. Example usage: 76 | ```js 77 | const songs = await lyricist.songsByArtist(2); 78 | ``` 79 | `songsByArtist()` will show **20 results per page** by default, and can be as high as 50. 80 | 81 | You can provide options as a second parameter. The available options are: 82 | 83 | * `perPage`: Number (default: 20) 84 | * `page`: Number (default: 1) 85 | * `sort` String: 'title' or 'popularity' (default: 'title') 86 | 87 | Example: 88 | ```js 89 | const songs = await lyricist.songsByArtist(2, { page: 2, perPage: 50 }); 90 | ``` 91 | 92 | ## Search songs by artist name/title 93 | Use `search()` to search for songs: 94 | ```js 95 | const songs = await lyricist.search('Virtual Insanity - Jamiroquai'); 96 | console.log(songs); 97 | 98 | /* output: (Array of all matching songs) 99 | [ 100 | { 101 | annotation_count: 1, 102 | api_path: '/songs/1952220', 103 | full_title: 'Virtual insanity - remastered by Jamiroquai', 104 | header_image_thumbnail_url: 'https://images.genius.com/cd9bd5e1d6d23c9a8b044843831d4b3c.300x300x1.png', 105 | header_image_url: 'https://images.genius.com/cd9bd5e1d6d23c9a8b044843831d4b3c.820x820x1.png', 106 | id: 1952220, 107 | ... 108 | }, 109 | ... 110 | ] 111 | */ 112 | ``` 113 | 114 | ## Set text_format 115 | The Genius API lets you specify how the response text is formatted. Supported formatting options are `dom` (default), `plain` and `html`. See https://docs.genius.com/#/response-format-h1 for further information. The `textFormat` option is supported by `song()`, `album()` and `artist()`. 116 | ```js 117 | const song = lyricist.song(714198, { textFormat: 'html' }); 118 | console.log(song.description.html); 119 | 120 | // output:

The first track off of Sufjan’s 2015 album... 121 | ``` 122 | 123 | ## Warning ⚠️ 124 | Take care when fetching lyrics. This feature isn't officially supported by the Genius API, so use caching and rate-limit your app's requests as much as possible. 125 | 126 | ## Node 6 127 | Node 6 doesn't support async/await and will need to use the transpiled version (lyricist/node6) along with promises: 128 | ```js 129 | const Lyricist = require('lyricist/node6'); 130 | ``` 131 | 132 | > Future updates will likely remove this support for old versions of Node 133 | 134 | ## Genius API Docs 135 | 136 | Check the [Genius.com API docs](https://docs.genius.com) for more info. 137 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | const fetch = require('node-fetch'); 2 | const cheerio = require('cheerio'); 3 | 4 | module.exports = class Lyricist { 5 | constructor(accessToken) { 6 | if (!accessToken) throw new Error('No access token provided to lyricist!'); 7 | this.accessToken = accessToken; 8 | } 9 | 10 | /* 11 | Main request function 12 | */ 13 | 14 | async _request(path) { 15 | const url = `https://api.genius.com/${path}`; 16 | const headers = { 17 | Authorization: `Bearer ${this.accessToken}`, 18 | }; 19 | 20 | // Fetch result and parse it as JSON 21 | const body = await fetch(url, { headers }); 22 | const result = await body.json(); 23 | 24 | // Handle errors 25 | if (result.error) 26 | throw new Error(`${result.error}: ${result.error_description}`); 27 | if (result.meta.status !== 200) 28 | throw new Error(`${result.meta.status}: ${result.meta.message}`); 29 | 30 | return result.response; 31 | } 32 | 33 | /* 34 | Get song by ID 35 | */ 36 | 37 | async song(id, { fetchLyrics = false, textFormat = 'dom' } = {}) { 38 | if (!id) throw new Error('No ID was provided to lyricist.song()'); 39 | 40 | const path = `songs/${id}?text_format=${textFormat}`; 41 | const { song } = await this._request(path); 42 | 43 | const lyrics = fetchLyrics ? await this._scrapeLyrics(song.url) : null; 44 | 45 | return Object.assign({ lyrics }, song); 46 | } 47 | 48 | /* 49 | Get album by ID 50 | */ 51 | 52 | async album(id, { fetchTracklist = false, textFormat = 'dom' } = {}) { 53 | if (!id) throw new Error('No ID was provided to lyricist.album()'); 54 | 55 | const path = `albums/${id}?text_format=${textFormat}`; 56 | const { album } = await this._request(path); 57 | 58 | const tracklist = fetchTracklist 59 | ? await this._scrapeTracklist(album.url) 60 | : null; 61 | 62 | return Object.assign({ tracklist }, album); 63 | } 64 | 65 | /* Get artist by ID */ 66 | 67 | async artist(id, { textFormat = 'dom' } = {}) { 68 | if (!id) throw new Error('No ID was provided to lyricist.artist()'); 69 | 70 | const path = `artists/${id}?text_format=${textFormat}`; 71 | const { artist } = await this._request(path); 72 | return artist; 73 | } 74 | 75 | /* 76 | Get artist by exact name (undocumented, likely to change) 77 | Potentially unreliable, use at own risk! ⚠️ 78 | */ 79 | 80 | async artistByName(name, opts) { 81 | const slug = this._geniusSlug(name); 82 | const id = await this._scrapeArtistPageForArtistID(slug); 83 | return this.artist(id, opts); 84 | } 85 | 86 | /* Get artist songs */ 87 | 88 | async songsByArtist(id, { page = 1, perPage = 20, sort = 'title' } = {}) { 89 | if (!id) throw new Error('No ID was provided to lyricist.songsByArtist()'); 90 | 91 | const path = `artists/${id}/songs?per_page=${perPage}&page=${page}&sort=${sort}`; 92 | const { songs } = await this._request(path); 93 | 94 | return songs; 95 | } 96 | 97 | /* Search (for songs) */ 98 | 99 | async search(query) { 100 | if (!query) throw new Error('No query was provided to lyricist.search()'); 101 | 102 | const path = `search?q=${query}`; 103 | const response = await this._request(path); 104 | 105 | return response.hits.map(hit => hit.result); 106 | } 107 | 108 | /* Scrape tracklist */ 109 | 110 | async _scrapeTracklist(url) { 111 | const html = await fetch(url).then(res => res.text()); 112 | const $ = cheerio.load(html); 113 | const json = $('meta[itemprop="page_data"]').attr('content'); 114 | const parsed = JSON.parse(json); 115 | const songs = parsed.album_appearances; 116 | return songs.map(({ song, track_number }) => 117 | Object.assign({ track_number }, song), 118 | ); 119 | } 120 | 121 | /* Scrape song lyrics */ 122 | 123 | async _scrapeLyrics(url) { 124 | const response = await fetch(url); 125 | const text = await response.text(); 126 | const $ = cheerio.load(text); 127 | return $('.lyrics') 128 | .text() 129 | .trim(); 130 | } 131 | 132 | /* Get slug from name/title */ 133 | 134 | _geniusSlug(string) { 135 | // Probably not 100% accurate yet 136 | // Currently only used by undocumented artistByName function 137 | const slug = string 138 | .trim() 139 | .replace(/\s+/g, '-') 140 | .replace("'", '') 141 | .replace('&', 'and') 142 | .replace(/[^a-zA-Z0-9]/g, '-') 143 | .toLowerCase(); 144 | // Uppercase first letter 145 | return slug.charAt(0).toUpperCase() + slug.slice(1); 146 | } 147 | 148 | /* Scrape artist page to retrieve artist ID */ 149 | 150 | async _scrapeArtistPageForArtistID(slug) { 151 | const url = `https://genius.com/artists/${slug}`; 152 | const html = await fetch(url).then(res => res.text()); 153 | const $ = cheerio.load(html); 154 | const id = $('meta[name="newrelic-resource-path"]') 155 | .attr('content') 156 | .split('/') 157 | .pop(); 158 | return id; 159 | } 160 | }; 161 | -------------------------------------------------------------------------------- /lib/index.test.js: -------------------------------------------------------------------------------- 1 | const Lyricist = require('./'); 2 | require('dotenv').config(); 3 | 4 | describe('Lyricist', () => { 5 | const lyricist = new Lyricist(process.env.TEST_KEY); 6 | 7 | test('initiating without an authKey should throw an error', () => { 8 | expect(() => { 9 | new Lyricist(); 10 | }).toThrow(); 11 | }); 12 | 13 | test('invalid request should return 403 status and throw error', () => 14 | expect(lyricist._request('abc')).rejects.toEqual( 15 | new Error('403: Action forbidden for current scope'), 16 | )); 17 | 18 | test('request with invalid auth key should throw a helpful error', async done => { 19 | const lyricist = new Lyricist("I'm an invalid auth key"); 20 | try { 21 | await lyricist._request('songs/1'); 22 | } catch (e) { 23 | expect(e.message).toMatch('invalid_token'); 24 | done(); 25 | } 26 | }); 27 | 28 | test('successful requests should return object', async () => { 29 | const result = await lyricist._request('songs/1'); 30 | expect(result).toBeInstanceOf(Object); 31 | }); 32 | 33 | describe('_scrapeTracklist', () => { 34 | test('scrape an album tracklist and return an array of songs', async () => { 35 | const result = await lyricist._scrapeTracklist( 36 | 'http://genius.com/albums/Son-lux/Lanterns', 37 | ); 38 | expect(result).toBeInstanceOf(Array); 39 | expect(result.length > 0).toBeTruthy(); 40 | }); 41 | }); 42 | 43 | describe('_scrapeLyrics', () => { 44 | test('scrape song lyrics and return text', async () => { 45 | const result = await lyricist._scrapeLyrics( 46 | 'https://genius.com/Son-lux-alternate-world-lyrics', 47 | ); 48 | expect(result).toMatch(/Alternate world/); 49 | }); 50 | }); 51 | 52 | describe('_geniusSlug', () => { 53 | test('converts a name/title to the slug used by genius.com', async () => { 54 | const namesAndExpectedSlugs = { 55 | 'Kanye West': 'Kanye-west', 56 | 'A$AP Rocky': 'A-ap-rocky', 57 | 'Alt J': 'Alt-j', 58 | }; 59 | const names = Object.keys(namesAndExpectedSlugs); 60 | const expectedSlugs = names.map(name => namesAndExpectedSlugs[name]); 61 | const slugs = names.map(lyricist._geniusSlug); 62 | expect(slugs).toEqual(expectedSlugs); 63 | }); 64 | }); 65 | 66 | describe('_scrapeArtistPageForArtistID', () => { 67 | test('scrape an artist page and return their genius ID', async () => { 68 | const result = await lyricist._scrapeArtistPageForArtistID('Son-lux'); 69 | expect(result).toEqual('94423'); 70 | }); 71 | }); 72 | 73 | describe('song()', () => { 74 | test('throw an error if no ID is given', async done => { 75 | try { 76 | await lyricist.song(); 77 | } catch (e) { 78 | expect(e.message).toEqual('No ID was provided to lyricist.song()'); 79 | done(); 80 | } 81 | }); 82 | 83 | test('load a song', async () => { 84 | const result = await lyricist.song(714198, {}); 85 | expect(result).toHaveProperty('title'); 86 | }); 87 | 88 | test('include lyrics when the option is given', async () => { 89 | const result = await lyricist.song(714198, { fetchLyrics: true }); 90 | expect(result.lyrics).toMatch(/Spirit of my silence/); 91 | }); 92 | }); 93 | 94 | describe('album()', () => { 95 | test('throw an error if no ID is given', async done => { 96 | try { 97 | await lyricist.album(); 98 | } catch (e) { 99 | expect(e.message).toEqual('No ID was provided to lyricist.album()'); 100 | done(); 101 | } 102 | }); 103 | 104 | test('load an album', async () => { 105 | const result = await lyricist.album(56682); 106 | expect(result).toHaveProperty('artist'); 107 | }); 108 | 109 | test('include tracklist when the option is given', async () => { 110 | const result = await lyricist.album(56682, { fetchTracklist: true }); 111 | expect(result.tracklist).toBeInstanceOf(Array); 112 | expect(result.tracklist[0].title).toEqual('Alternate World'); 113 | }); 114 | }); 115 | 116 | describe('artist()', () => { 117 | test('throw an error if no ID is given', async done => { 118 | try { 119 | await lyricist.artist(); 120 | } catch (e) { 121 | expect(e.message).toEqual('No ID was provided to lyricist.artist()'); 122 | done(); 123 | } 124 | }); 125 | 126 | test('load an artist', async () => { 127 | const result = await lyricist.artist(2); 128 | expect(result.api_path).toEqual('/artists/2'); 129 | }); 130 | }); 131 | 132 | describe('artistByName()', () => { 133 | test('load artist by name', async () => { 134 | const result = await lyricist.artistByName('Son Lux'); 135 | expect(result.api_path).toEqual('/artists/94423'); 136 | }); 137 | }); 138 | 139 | describe('songsByArtist()', () => { 140 | test('throw an error if no ID is given', async done => { 141 | try { 142 | await lyricist.songsByArtist(); 143 | } catch (e) { 144 | expect(e.message).toEqual( 145 | 'No ID was provided to lyricist.songsByArtist()', 146 | ); 147 | done(); 148 | } 149 | }); 150 | 151 | test('load artist songs', async () => { 152 | const result = await lyricist.songsByArtist(2); 153 | expect(result[0]).toHaveProperty('title'); 154 | }); 155 | 156 | test('perPage option', async () => { 157 | const perPage = 10; 158 | const result = await lyricist.songsByArtist(2, { perPage }); 159 | expect(result.length).toEqual(perPage); 160 | }); 161 | 162 | test('page option', async () => { 163 | const page = 2; 164 | const result = await lyricist.songsByArtist(2, { page }); 165 | expect(result.find(t => t.title === 'Addicted to the Game').id).toEqual( 166 | 3129, 167 | ); 168 | }); 169 | 170 | test('sort option', async () => { 171 | const sort = 'popularity'; 172 | const result = await lyricist.songsByArtist(2); 173 | const resultWithSort = await lyricist.songsByArtist(2, { sort }); 174 | expect(result).toBeInstanceOf(Array); 175 | expect(resultWithSort).toBeInstanceOf(Array); 176 | expect(result).not.toEqual(resultWithSort); 177 | }); 178 | }); 179 | 180 | describe('search()', () => { 181 | test('throw an error if no search term is given', async done => { 182 | try { 183 | await lyricist.search(); 184 | } catch (e) { 185 | expect(e.message).toEqual('No query was provided to lyricist.search()'); 186 | done(); 187 | } 188 | }); 189 | 190 | test('return search results', async () => { 191 | const result = await lyricist.search( 192 | 'spirit of my silence I can hear you', 193 | ); 194 | expect(result[0].primary_artist.name).toEqual('Sufjan Stevens'); 195 | }); 196 | }); 197 | }); 198 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lyricist", 3 | "version": "2.2.0", 4 | "description": "Fetches song lyrics using the Genius.com API and website.", 5 | "main": "lib/index.js", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/scf4/lyricist.git" 9 | }, 10 | "scripts": { 11 | "test": "jest", 12 | "test:watch": "jest --watch", 13 | "test:coverage": "jest --coverage", 14 | "build": "rimraf node6 && babel lib --out-dir node6 --ignore *.test.js", 15 | "precommit": "lint-staged" 16 | }, 17 | "lint-staged": { 18 | "lib/*.js": ["prettier --write", "git add"] 19 | }, 20 | "keywords": ["lyric", "lyrics", "scrape", "genius"], 21 | "author": "scf4 (https://github.com/scf4)", 22 | "license": "MIT", 23 | "bugs": { 24 | "url": "https://github.com/scf4/lyricist/issues" 25 | }, 26 | "homepage": "https://github.com/scf4/lyricist#readme", 27 | "dependencies": { 28 | "cheerio": "^0.22.0", 29 | "node-fetch": "^1.6.3" 30 | }, 31 | "devDependencies": { 32 | "babel-cli": "^6.24.1", 33 | "babel-jest": "^21.0.2", 34 | "babel-polyfill": "^6.23.0", 35 | "babel-preset-env": "^1.5.2", 36 | "dotenv": "^4.0.0", 37 | "husky": "^0.14.3", 38 | "jest": "^21.1.0", 39 | "lint-staged": "^4.1.3", 40 | "prettier": "^1.6.1", 41 | "rimraf": "^2.6.1" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn@^4.0.4: 20 | version "4.0.13" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 22 | 23 | ajv@^4.9.1: 24 | version "4.11.7" 25 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.7.tgz#8655a5d86d0824985cc471a1d913fb6729a0ec48" 26 | dependencies: 27 | co "^4.6.0" 28 | json-stable-stringify "^1.0.1" 29 | 30 | align-text@^0.1.1, align-text@^0.1.3: 31 | version "0.1.4" 32 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 33 | dependencies: 34 | kind-of "^3.0.2" 35 | longest "^1.0.1" 36 | repeat-string "^1.5.2" 37 | 38 | amdefine@>=0.0.4: 39 | version "1.0.1" 40 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 41 | 42 | ansi-escapes@^1.0.0: 43 | version "1.4.0" 44 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 45 | 46 | ansi-escapes@^3.0.0: 47 | version "3.0.0" 48 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 49 | 50 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 51 | version "2.1.1" 52 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 53 | 54 | ansi-regex@^3.0.0: 55 | version "3.0.0" 56 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 57 | 58 | ansi-styles@^2.2.1: 59 | version "2.2.1" 60 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 61 | 62 | ansi-styles@^3.0.0, ansi-styles@^3.1.0, ansi-styles@^3.2.0: 63 | version "3.2.0" 64 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 65 | dependencies: 66 | color-convert "^1.9.0" 67 | 68 | anymatch@^1.3.0: 69 | version "1.3.0" 70 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 71 | dependencies: 72 | arrify "^1.0.0" 73 | micromatch "^2.1.5" 74 | 75 | app-root-path@^2.0.0: 76 | version "2.0.1" 77 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 78 | 79 | append-transform@^0.4.0: 80 | version "0.4.0" 81 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 82 | dependencies: 83 | default-require-extensions "^1.0.0" 84 | 85 | aproba@^1.0.3: 86 | version "1.1.2" 87 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 88 | 89 | are-we-there-yet@~1.1.2: 90 | version "1.1.4" 91 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 92 | dependencies: 93 | delegates "^1.0.0" 94 | readable-stream "^2.0.6" 95 | 96 | argparse@^1.0.7: 97 | version "1.0.9" 98 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 99 | dependencies: 100 | sprintf-js "~1.0.2" 101 | 102 | arr-diff@^2.0.0: 103 | version "2.0.0" 104 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 105 | dependencies: 106 | arr-flatten "^1.0.1" 107 | 108 | arr-flatten@^1.0.1: 109 | version "1.0.3" 110 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 111 | 112 | array-equal@^1.0.0: 113 | version "1.0.0" 114 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 115 | 116 | array-unique@^0.2.1: 117 | version "0.2.1" 118 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 119 | 120 | arrify@^1.0.0, arrify@^1.0.1: 121 | version "1.0.1" 122 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 123 | 124 | asn1@~0.2.3: 125 | version "0.2.3" 126 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 127 | 128 | assert-plus@1.0.0, assert-plus@^1.0.0: 129 | version "1.0.0" 130 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 131 | 132 | assert-plus@^0.2.0: 133 | version "0.2.0" 134 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 135 | 136 | astral-regex@^1.0.0: 137 | version "1.0.0" 138 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 139 | 140 | async-each@^1.0.0: 141 | version "1.0.1" 142 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 143 | 144 | async@^1.4.0: 145 | version "1.5.2" 146 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 147 | 148 | async@^2.1.4: 149 | version "2.5.0" 150 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 151 | dependencies: 152 | lodash "^4.14.0" 153 | 154 | asynckit@^0.4.0: 155 | version "0.4.0" 156 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 157 | 158 | aws-sign2@~0.6.0: 159 | version "0.6.0" 160 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 161 | 162 | aws4@^1.2.1: 163 | version "1.6.0" 164 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 165 | 166 | babel-cli@^6.24.1: 167 | version "6.26.0" 168 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 169 | dependencies: 170 | babel-core "^6.26.0" 171 | babel-polyfill "^6.26.0" 172 | babel-register "^6.26.0" 173 | babel-runtime "^6.26.0" 174 | commander "^2.11.0" 175 | convert-source-map "^1.5.0" 176 | fs-readdir-recursive "^1.0.0" 177 | glob "^7.1.2" 178 | lodash "^4.17.4" 179 | output-file-sync "^1.1.2" 180 | path-is-absolute "^1.0.1" 181 | slash "^1.0.0" 182 | source-map "^0.5.6" 183 | v8flags "^2.1.1" 184 | optionalDependencies: 185 | chokidar "^1.6.1" 186 | 187 | babel-code-frame@^6.22.0: 188 | version "6.22.0" 189 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 190 | dependencies: 191 | chalk "^1.1.0" 192 | esutils "^2.0.2" 193 | js-tokens "^3.0.0" 194 | 195 | babel-code-frame@^6.26.0: 196 | version "6.26.0" 197 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 198 | dependencies: 199 | chalk "^1.1.3" 200 | esutils "^2.0.2" 201 | js-tokens "^3.0.2" 202 | 203 | babel-core@^6.0.0, babel-core@^6.24.1: 204 | version "6.24.1" 205 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" 206 | dependencies: 207 | babel-code-frame "^6.22.0" 208 | babel-generator "^6.24.1" 209 | babel-helpers "^6.24.1" 210 | babel-messages "^6.23.0" 211 | babel-register "^6.24.1" 212 | babel-runtime "^6.22.0" 213 | babel-template "^6.24.1" 214 | babel-traverse "^6.24.1" 215 | babel-types "^6.24.1" 216 | babylon "^6.11.0" 217 | convert-source-map "^1.1.0" 218 | debug "^2.1.1" 219 | json5 "^0.5.0" 220 | lodash "^4.2.0" 221 | minimatch "^3.0.2" 222 | path-is-absolute "^1.0.0" 223 | private "^0.1.6" 224 | slash "^1.0.0" 225 | source-map "^0.5.0" 226 | 227 | babel-core@^6.26.0: 228 | version "6.26.0" 229 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 230 | dependencies: 231 | babel-code-frame "^6.26.0" 232 | babel-generator "^6.26.0" 233 | babel-helpers "^6.24.1" 234 | babel-messages "^6.23.0" 235 | babel-register "^6.26.0" 236 | babel-runtime "^6.26.0" 237 | babel-template "^6.26.0" 238 | babel-traverse "^6.26.0" 239 | babel-types "^6.26.0" 240 | babylon "^6.18.0" 241 | convert-source-map "^1.5.0" 242 | debug "^2.6.8" 243 | json5 "^0.5.1" 244 | lodash "^4.17.4" 245 | minimatch "^3.0.4" 246 | path-is-absolute "^1.0.1" 247 | private "^0.1.7" 248 | slash "^1.0.0" 249 | source-map "^0.5.6" 250 | 251 | babel-generator@^6.18.0, babel-generator@^6.24.1: 252 | version "6.24.1" 253 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" 254 | dependencies: 255 | babel-messages "^6.23.0" 256 | babel-runtime "^6.22.0" 257 | babel-types "^6.24.1" 258 | detect-indent "^4.0.0" 259 | jsesc "^1.3.0" 260 | lodash "^4.2.0" 261 | source-map "^0.5.0" 262 | trim-right "^1.0.1" 263 | 264 | babel-generator@^6.26.0: 265 | version "6.26.0" 266 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 267 | dependencies: 268 | babel-messages "^6.23.0" 269 | babel-runtime "^6.26.0" 270 | babel-types "^6.26.0" 271 | detect-indent "^4.0.0" 272 | jsesc "^1.3.0" 273 | lodash "^4.17.4" 274 | source-map "^0.5.6" 275 | trim-right "^1.0.1" 276 | 277 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 278 | version "6.24.1" 279 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 280 | dependencies: 281 | babel-helper-explode-assignable-expression "^6.24.1" 282 | babel-runtime "^6.22.0" 283 | babel-types "^6.24.1" 284 | 285 | babel-helper-call-delegate@^6.24.1: 286 | version "6.24.1" 287 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 288 | dependencies: 289 | babel-helper-hoist-variables "^6.24.1" 290 | babel-runtime "^6.22.0" 291 | babel-traverse "^6.24.1" 292 | babel-types "^6.24.1" 293 | 294 | babel-helper-define-map@^6.24.1: 295 | version "6.24.1" 296 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 297 | dependencies: 298 | babel-helper-function-name "^6.24.1" 299 | babel-runtime "^6.22.0" 300 | babel-types "^6.24.1" 301 | lodash "^4.2.0" 302 | 303 | babel-helper-explode-assignable-expression@^6.24.1: 304 | version "6.24.1" 305 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | babel-traverse "^6.24.1" 309 | babel-types "^6.24.1" 310 | 311 | babel-helper-function-name@^6.24.1: 312 | version "6.24.1" 313 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 314 | dependencies: 315 | babel-helper-get-function-arity "^6.24.1" 316 | babel-runtime "^6.22.0" 317 | babel-template "^6.24.1" 318 | babel-traverse "^6.24.1" 319 | babel-types "^6.24.1" 320 | 321 | babel-helper-get-function-arity@^6.24.1: 322 | version "6.24.1" 323 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 324 | dependencies: 325 | babel-runtime "^6.22.0" 326 | babel-types "^6.24.1" 327 | 328 | babel-helper-hoist-variables@^6.24.1: 329 | version "6.24.1" 330 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 331 | dependencies: 332 | babel-runtime "^6.22.0" 333 | babel-types "^6.24.1" 334 | 335 | babel-helper-optimise-call-expression@^6.24.1: 336 | version "6.24.1" 337 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 338 | dependencies: 339 | babel-runtime "^6.22.0" 340 | babel-types "^6.24.1" 341 | 342 | babel-helper-regex@^6.24.1: 343 | version "6.24.1" 344 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 345 | dependencies: 346 | babel-runtime "^6.22.0" 347 | babel-types "^6.24.1" 348 | lodash "^4.2.0" 349 | 350 | babel-helper-remap-async-to-generator@^6.24.1: 351 | version "6.24.1" 352 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 353 | dependencies: 354 | babel-helper-function-name "^6.24.1" 355 | babel-runtime "^6.22.0" 356 | babel-template "^6.24.1" 357 | babel-traverse "^6.24.1" 358 | babel-types "^6.24.1" 359 | 360 | babel-helper-replace-supers@^6.24.1: 361 | version "6.24.1" 362 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 363 | dependencies: 364 | babel-helper-optimise-call-expression "^6.24.1" 365 | babel-messages "^6.23.0" 366 | babel-runtime "^6.22.0" 367 | babel-template "^6.24.1" 368 | babel-traverse "^6.24.1" 369 | babel-types "^6.24.1" 370 | 371 | babel-helpers@^6.24.1: 372 | version "6.24.1" 373 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 374 | dependencies: 375 | babel-runtime "^6.22.0" 376 | babel-template "^6.24.1" 377 | 378 | babel-jest@^21.0.2: 379 | version "21.0.2" 380 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.0.2.tgz#817ea52c23f1c6c4b684d6960968416b6a9e9c6c" 381 | dependencies: 382 | babel-plugin-istanbul "^4.0.0" 383 | babel-preset-jest "^21.0.2" 384 | 385 | babel-messages@^6.23.0: 386 | version "6.23.0" 387 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 388 | dependencies: 389 | babel-runtime "^6.22.0" 390 | 391 | babel-plugin-check-es2015-constants@^6.22.0: 392 | version "6.22.0" 393 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 394 | dependencies: 395 | babel-runtime "^6.22.0" 396 | 397 | babel-plugin-istanbul@^4.0.0: 398 | version "4.1.1" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.1.tgz#c12de0fc6fe42adfb16be56f1ad11e4a9782eca9" 400 | dependencies: 401 | find-up "^2.1.0" 402 | istanbul-lib-instrument "^1.6.2" 403 | test-exclude "^4.0.3" 404 | 405 | babel-plugin-jest-hoist@^21.0.2: 406 | version "21.0.2" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.0.2.tgz#cfdce5bca40d772a056cb8528ad159c7bb4bb03d" 408 | 409 | babel-plugin-syntax-async-functions@^6.8.0: 410 | version "6.13.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 412 | 413 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 414 | version "6.13.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 416 | 417 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 418 | version "6.22.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 420 | 421 | babel-plugin-transform-async-to-generator@^6.22.0: 422 | version "6.24.1" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 424 | dependencies: 425 | babel-helper-remap-async-to-generator "^6.24.1" 426 | babel-plugin-syntax-async-functions "^6.8.0" 427 | babel-runtime "^6.22.0" 428 | 429 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 430 | version "6.22.0" 431 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 432 | dependencies: 433 | babel-runtime "^6.22.0" 434 | 435 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 436 | version "6.22.0" 437 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 438 | dependencies: 439 | babel-runtime "^6.22.0" 440 | 441 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 442 | version "6.24.1" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 444 | dependencies: 445 | babel-runtime "^6.22.0" 446 | babel-template "^6.24.1" 447 | babel-traverse "^6.24.1" 448 | babel-types "^6.24.1" 449 | lodash "^4.2.0" 450 | 451 | babel-plugin-transform-es2015-classes@^6.23.0: 452 | version "6.24.1" 453 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 454 | dependencies: 455 | babel-helper-define-map "^6.24.1" 456 | babel-helper-function-name "^6.24.1" 457 | babel-helper-optimise-call-expression "^6.24.1" 458 | babel-helper-replace-supers "^6.24.1" 459 | babel-messages "^6.23.0" 460 | babel-runtime "^6.22.0" 461 | babel-template "^6.24.1" 462 | babel-traverse "^6.24.1" 463 | babel-types "^6.24.1" 464 | 465 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 466 | version "6.24.1" 467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 468 | dependencies: 469 | babel-runtime "^6.22.0" 470 | babel-template "^6.24.1" 471 | 472 | babel-plugin-transform-es2015-destructuring@^6.23.0: 473 | version "6.23.0" 474 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 475 | dependencies: 476 | babel-runtime "^6.22.0" 477 | 478 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 479 | version "6.24.1" 480 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 481 | dependencies: 482 | babel-runtime "^6.22.0" 483 | babel-types "^6.24.1" 484 | 485 | babel-plugin-transform-es2015-for-of@^6.23.0: 486 | version "6.23.0" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 488 | dependencies: 489 | babel-runtime "^6.22.0" 490 | 491 | babel-plugin-transform-es2015-function-name@^6.22.0: 492 | version "6.24.1" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 494 | dependencies: 495 | babel-helper-function-name "^6.24.1" 496 | babel-runtime "^6.22.0" 497 | babel-types "^6.24.1" 498 | 499 | babel-plugin-transform-es2015-literals@^6.22.0: 500 | version "6.22.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 502 | dependencies: 503 | babel-runtime "^6.22.0" 504 | 505 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 508 | dependencies: 509 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 510 | babel-runtime "^6.22.0" 511 | babel-template "^6.24.1" 512 | 513 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 514 | version "6.24.1" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 516 | dependencies: 517 | babel-plugin-transform-strict-mode "^6.24.1" 518 | babel-runtime "^6.22.0" 519 | babel-template "^6.24.1" 520 | babel-types "^6.24.1" 521 | 522 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 523 | version "6.24.1" 524 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 525 | dependencies: 526 | babel-helper-hoist-variables "^6.24.1" 527 | babel-runtime "^6.22.0" 528 | babel-template "^6.24.1" 529 | 530 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 531 | version "6.24.1" 532 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 533 | dependencies: 534 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 535 | babel-runtime "^6.22.0" 536 | babel-template "^6.24.1" 537 | 538 | babel-plugin-transform-es2015-object-super@^6.22.0: 539 | version "6.24.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 541 | dependencies: 542 | babel-helper-replace-supers "^6.24.1" 543 | babel-runtime "^6.22.0" 544 | 545 | babel-plugin-transform-es2015-parameters@^6.23.0: 546 | version "6.24.1" 547 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 548 | dependencies: 549 | babel-helper-call-delegate "^6.24.1" 550 | babel-helper-get-function-arity "^6.24.1" 551 | babel-runtime "^6.22.0" 552 | babel-template "^6.24.1" 553 | babel-traverse "^6.24.1" 554 | babel-types "^6.24.1" 555 | 556 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 557 | version "6.24.1" 558 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 559 | dependencies: 560 | babel-runtime "^6.22.0" 561 | babel-types "^6.24.1" 562 | 563 | babel-plugin-transform-es2015-spread@^6.22.0: 564 | version "6.22.0" 565 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 566 | dependencies: 567 | babel-runtime "^6.22.0" 568 | 569 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 570 | version "6.24.1" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 572 | dependencies: 573 | babel-helper-regex "^6.24.1" 574 | babel-runtime "^6.22.0" 575 | babel-types "^6.24.1" 576 | 577 | babel-plugin-transform-es2015-template-literals@^6.22.0: 578 | version "6.22.0" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 580 | dependencies: 581 | babel-runtime "^6.22.0" 582 | 583 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 584 | version "6.23.0" 585 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 586 | dependencies: 587 | babel-runtime "^6.22.0" 588 | 589 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 590 | version "6.24.1" 591 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 592 | dependencies: 593 | babel-helper-regex "^6.24.1" 594 | babel-runtime "^6.22.0" 595 | regexpu-core "^2.0.0" 596 | 597 | babel-plugin-transform-exponentiation-operator@^6.22.0: 598 | version "6.24.1" 599 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 600 | dependencies: 601 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 602 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 603 | babel-runtime "^6.22.0" 604 | 605 | babel-plugin-transform-regenerator@^6.22.0: 606 | version "6.24.1" 607 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 608 | dependencies: 609 | regenerator-transform "0.9.11" 610 | 611 | babel-plugin-transform-strict-mode@^6.24.1: 612 | version "6.24.1" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 614 | dependencies: 615 | babel-runtime "^6.22.0" 616 | babel-types "^6.24.1" 617 | 618 | babel-polyfill@^6.23.0, babel-polyfill@^6.26.0: 619 | version "6.26.0" 620 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 621 | dependencies: 622 | babel-runtime "^6.26.0" 623 | core-js "^2.5.0" 624 | regenerator-runtime "^0.10.5" 625 | 626 | babel-preset-env@^1.5.2: 627 | version "1.6.0" 628 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.0.tgz#2de1c782a780a0a5d605d199c957596da43c44e4" 629 | dependencies: 630 | babel-plugin-check-es2015-constants "^6.22.0" 631 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 632 | babel-plugin-transform-async-to-generator "^6.22.0" 633 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 634 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 635 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 636 | babel-plugin-transform-es2015-classes "^6.23.0" 637 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 638 | babel-plugin-transform-es2015-destructuring "^6.23.0" 639 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 640 | babel-plugin-transform-es2015-for-of "^6.23.0" 641 | babel-plugin-transform-es2015-function-name "^6.22.0" 642 | babel-plugin-transform-es2015-literals "^6.22.0" 643 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 644 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 645 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 646 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 647 | babel-plugin-transform-es2015-object-super "^6.22.0" 648 | babel-plugin-transform-es2015-parameters "^6.23.0" 649 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 650 | babel-plugin-transform-es2015-spread "^6.22.0" 651 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 652 | babel-plugin-transform-es2015-template-literals "^6.22.0" 653 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 654 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 655 | babel-plugin-transform-exponentiation-operator "^6.22.0" 656 | babel-plugin-transform-regenerator "^6.22.0" 657 | browserslist "^2.1.2" 658 | invariant "^2.2.2" 659 | semver "^5.3.0" 660 | 661 | babel-preset-jest@^21.0.2: 662 | version "21.0.2" 663 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.0.2.tgz#9db25def2329f49eace3f5ea0de42a0b898d12cc" 664 | dependencies: 665 | babel-plugin-jest-hoist "^21.0.2" 666 | 667 | babel-register@^6.24.1: 668 | version "6.24.1" 669 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" 670 | dependencies: 671 | babel-core "^6.24.1" 672 | babel-runtime "^6.22.0" 673 | core-js "^2.4.0" 674 | home-or-tmp "^2.0.0" 675 | lodash "^4.2.0" 676 | mkdirp "^0.5.1" 677 | source-map-support "^0.4.2" 678 | 679 | babel-register@^6.26.0: 680 | version "6.26.0" 681 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 682 | dependencies: 683 | babel-core "^6.26.0" 684 | babel-runtime "^6.26.0" 685 | core-js "^2.5.0" 686 | home-or-tmp "^2.0.0" 687 | lodash "^4.17.4" 688 | mkdirp "^0.5.1" 689 | source-map-support "^0.4.15" 690 | 691 | babel-runtime@^6.18.0, babel-runtime@^6.22.0: 692 | version "6.23.0" 693 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 694 | dependencies: 695 | core-js "^2.4.0" 696 | regenerator-runtime "^0.10.0" 697 | 698 | babel-runtime@^6.26.0: 699 | version "6.26.0" 700 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 701 | dependencies: 702 | core-js "^2.4.0" 703 | regenerator-runtime "^0.11.0" 704 | 705 | babel-template@^6.16.0, babel-template@^6.24.1: 706 | version "6.24.1" 707 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" 708 | dependencies: 709 | babel-runtime "^6.22.0" 710 | babel-traverse "^6.24.1" 711 | babel-types "^6.24.1" 712 | babylon "^6.11.0" 713 | lodash "^4.2.0" 714 | 715 | babel-template@^6.26.0: 716 | version "6.26.0" 717 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 718 | dependencies: 719 | babel-runtime "^6.26.0" 720 | babel-traverse "^6.26.0" 721 | babel-types "^6.26.0" 722 | babylon "^6.18.0" 723 | lodash "^4.17.4" 724 | 725 | babel-traverse@^6.18.0, babel-traverse@^6.24.1: 726 | version "6.24.1" 727 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" 728 | dependencies: 729 | babel-code-frame "^6.22.0" 730 | babel-messages "^6.23.0" 731 | babel-runtime "^6.22.0" 732 | babel-types "^6.24.1" 733 | babylon "^6.15.0" 734 | debug "^2.2.0" 735 | globals "^9.0.0" 736 | invariant "^2.2.0" 737 | lodash "^4.2.0" 738 | 739 | babel-traverse@^6.26.0: 740 | version "6.26.0" 741 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 742 | dependencies: 743 | babel-code-frame "^6.26.0" 744 | babel-messages "^6.23.0" 745 | babel-runtime "^6.26.0" 746 | babel-types "^6.26.0" 747 | babylon "^6.18.0" 748 | debug "^2.6.8" 749 | globals "^9.18.0" 750 | invariant "^2.2.2" 751 | lodash "^4.17.4" 752 | 753 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1: 754 | version "6.24.1" 755 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" 756 | dependencies: 757 | babel-runtime "^6.22.0" 758 | esutils "^2.0.2" 759 | lodash "^4.2.0" 760 | to-fast-properties "^1.0.1" 761 | 762 | babel-types@^6.26.0: 763 | version "6.26.0" 764 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 765 | dependencies: 766 | babel-runtime "^6.26.0" 767 | esutils "^2.0.2" 768 | lodash "^4.17.4" 769 | to-fast-properties "^1.0.3" 770 | 771 | babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0: 772 | version "6.17.0" 773 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.0.tgz#37da948878488b9c4e3c4038893fa3314b3fc932" 774 | 775 | babylon@^6.18.0: 776 | version "6.18.0" 777 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 778 | 779 | balanced-match@^0.4.1: 780 | version "0.4.2" 781 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 782 | 783 | balanced-match@^1.0.0: 784 | version "1.0.0" 785 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 786 | 787 | bcrypt-pbkdf@^1.0.0: 788 | version "1.0.1" 789 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 790 | dependencies: 791 | tweetnacl "^0.14.3" 792 | 793 | binary-extensions@^1.0.0: 794 | version "1.8.0" 795 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 796 | 797 | block-stream@*: 798 | version "0.0.9" 799 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 800 | dependencies: 801 | inherits "~2.0.0" 802 | 803 | boolbase@~1.0.0: 804 | version "1.0.0" 805 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 806 | 807 | boom@2.x.x: 808 | version "2.10.1" 809 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 810 | dependencies: 811 | hoek "2.x.x" 812 | 813 | brace-expansion@^1.0.0: 814 | version "1.1.7" 815 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59" 816 | dependencies: 817 | balanced-match "^0.4.1" 818 | concat-map "0.0.1" 819 | 820 | brace-expansion@^1.1.7: 821 | version "1.1.8" 822 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 823 | dependencies: 824 | balanced-match "^1.0.0" 825 | concat-map "0.0.1" 826 | 827 | braces@^1.8.2: 828 | version "1.8.5" 829 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 830 | dependencies: 831 | expand-range "^1.8.1" 832 | preserve "^0.2.0" 833 | repeat-element "^1.1.2" 834 | 835 | browser-resolve@^1.11.2: 836 | version "1.11.2" 837 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 838 | dependencies: 839 | resolve "1.1.7" 840 | 841 | browserslist@^2.1.2: 842 | version "2.1.4" 843 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.1.4.tgz#cc526af4a1312b7d2e05653e56d0c8ab70c0e053" 844 | dependencies: 845 | caniuse-lite "^1.0.30000670" 846 | electron-to-chromium "^1.3.11" 847 | 848 | bser@^2.0.0: 849 | version "2.0.0" 850 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 851 | dependencies: 852 | node-int64 "^0.4.0" 853 | 854 | buffer-shims@~1.0.0: 855 | version "1.0.0" 856 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 857 | 858 | builtin-modules@^1.0.0: 859 | version "1.1.1" 860 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 861 | 862 | callsites@^2.0.0: 863 | version "2.0.0" 864 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 865 | 866 | camelcase@^1.0.2: 867 | version "1.2.1" 868 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 869 | 870 | camelcase@^4.1.0: 871 | version "4.1.0" 872 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 873 | 874 | caniuse-lite@^1.0.30000670: 875 | version "1.0.30000683" 876 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000683.tgz#a7573707cf2acc9217ca6484d1dfbc9f13898364" 877 | 878 | caseless@~0.12.0: 879 | version "0.12.0" 880 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 881 | 882 | center-align@^0.1.1: 883 | version "0.1.3" 884 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 885 | dependencies: 886 | align-text "^0.1.3" 887 | lazy-cache "^1.0.3" 888 | 889 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 890 | version "1.1.3" 891 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 892 | dependencies: 893 | ansi-styles "^2.2.1" 894 | escape-string-regexp "^1.0.2" 895 | has-ansi "^2.0.0" 896 | strip-ansi "^3.0.0" 897 | supports-color "^2.0.0" 898 | 899 | chalk@^2.0.1, chalk@^2.1.0: 900 | version "2.1.0" 901 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 902 | dependencies: 903 | ansi-styles "^3.1.0" 904 | escape-string-regexp "^1.0.5" 905 | supports-color "^4.0.0" 906 | 907 | cheerio@^0.22.0: 908 | version "0.22.0" 909 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 910 | dependencies: 911 | css-select "~1.2.0" 912 | dom-serializer "~0.1.0" 913 | entities "~1.1.1" 914 | htmlparser2 "^3.9.1" 915 | lodash.assignin "^4.0.9" 916 | lodash.bind "^4.1.4" 917 | lodash.defaults "^4.0.1" 918 | lodash.filter "^4.4.0" 919 | lodash.flatten "^4.2.0" 920 | lodash.foreach "^4.3.0" 921 | lodash.map "^4.4.0" 922 | lodash.merge "^4.4.0" 923 | lodash.pick "^4.2.1" 924 | lodash.reduce "^4.4.0" 925 | lodash.reject "^4.4.0" 926 | lodash.some "^4.4.0" 927 | 928 | chokidar@^1.6.1: 929 | version "1.7.0" 930 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 931 | dependencies: 932 | anymatch "^1.3.0" 933 | async-each "^1.0.0" 934 | glob-parent "^2.0.0" 935 | inherits "^2.0.1" 936 | is-binary-path "^1.0.0" 937 | is-glob "^2.0.0" 938 | path-is-absolute "^1.0.0" 939 | readdirp "^2.0.0" 940 | optionalDependencies: 941 | fsevents "^1.0.0" 942 | 943 | ci-info@^1.0.0: 944 | version "1.1.1" 945 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 946 | 947 | cli-cursor@^1.0.2: 948 | version "1.0.2" 949 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 950 | dependencies: 951 | restore-cursor "^1.0.1" 952 | 953 | cli-spinners@^0.1.2: 954 | version "0.1.2" 955 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 956 | 957 | cli-truncate@^0.2.1: 958 | version "0.2.1" 959 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 960 | dependencies: 961 | slice-ansi "0.0.4" 962 | string-width "^1.0.1" 963 | 964 | cliui@^2.1.0: 965 | version "2.1.0" 966 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 967 | dependencies: 968 | center-align "^0.1.1" 969 | right-align "^0.1.1" 970 | wordwrap "0.0.2" 971 | 972 | cliui@^3.2.0: 973 | version "3.2.0" 974 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 975 | dependencies: 976 | string-width "^1.0.1" 977 | strip-ansi "^3.0.1" 978 | wrap-ansi "^2.0.0" 979 | 980 | co@^4.6.0: 981 | version "4.6.0" 982 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 983 | 984 | code-point-at@^1.0.0: 985 | version "1.1.0" 986 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 987 | 988 | color-convert@^1.9.0: 989 | version "1.9.0" 990 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 991 | dependencies: 992 | color-name "^1.1.1" 993 | 994 | color-name@^1.1.1: 995 | version "1.1.3" 996 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 997 | 998 | combined-stream@^1.0.5, combined-stream@~1.0.5: 999 | version "1.0.5" 1000 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1001 | dependencies: 1002 | delayed-stream "~1.0.0" 1003 | 1004 | commander@^2.11.0, commander@^2.9.0: 1005 | version "2.11.0" 1006 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 1007 | 1008 | concat-map@0.0.1: 1009 | version "0.0.1" 1010 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1011 | 1012 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1013 | version "1.1.0" 1014 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1015 | 1016 | content-type-parser@^1.0.1: 1017 | version "1.0.1" 1018 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1019 | 1020 | convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0: 1021 | version "1.5.0" 1022 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1023 | 1024 | core-js@^2.4.0: 1025 | version "2.4.1" 1026 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1027 | 1028 | core-js@^2.5.0: 1029 | version "2.5.1" 1030 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 1031 | 1032 | core-util-is@~1.0.0: 1033 | version "1.0.2" 1034 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1035 | 1036 | cosmiconfig@^1.1.0: 1037 | version "1.1.0" 1038 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 1039 | dependencies: 1040 | graceful-fs "^4.1.2" 1041 | js-yaml "^3.4.3" 1042 | minimist "^1.2.0" 1043 | object-assign "^4.0.1" 1044 | os-homedir "^1.0.1" 1045 | parse-json "^2.2.0" 1046 | pinkie-promise "^2.0.0" 1047 | require-from-string "^1.1.0" 1048 | 1049 | cross-spawn@^5.0.1: 1050 | version "5.1.0" 1051 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1052 | dependencies: 1053 | lru-cache "^4.0.1" 1054 | shebang-command "^1.2.0" 1055 | which "^1.2.9" 1056 | 1057 | cryptiles@2.x.x: 1058 | version "2.0.5" 1059 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1060 | dependencies: 1061 | boom "2.x.x" 1062 | 1063 | css-select@~1.2.0: 1064 | version "1.2.0" 1065 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1066 | dependencies: 1067 | boolbase "~1.0.0" 1068 | css-what "2.1" 1069 | domutils "1.5.1" 1070 | nth-check "~1.0.1" 1071 | 1072 | css-what@2.1: 1073 | version "2.1.0" 1074 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1075 | 1076 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1077 | version "0.3.2" 1078 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1079 | 1080 | "cssstyle@>= 0.2.37 < 0.3.0": 1081 | version "0.2.37" 1082 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1083 | dependencies: 1084 | cssom "0.3.x" 1085 | 1086 | dashdash@^1.12.0: 1087 | version "1.14.1" 1088 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1089 | dependencies: 1090 | assert-plus "^1.0.0" 1091 | 1092 | date-fns@^1.27.2: 1093 | version "1.28.5" 1094 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 1095 | 1096 | debug@^2.1.1, debug@^2.2.0: 1097 | version "2.6.4" 1098 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.4.tgz#7586a9b3c39741c0282ae33445c4e8ac74734fe0" 1099 | dependencies: 1100 | ms "0.7.3" 1101 | 1102 | debug@^2.6.3, debug@^2.6.8: 1103 | version "2.6.8" 1104 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1105 | dependencies: 1106 | ms "2.0.0" 1107 | 1108 | decamelize@^1.0.0, decamelize@^1.1.1: 1109 | version "1.2.0" 1110 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1111 | 1112 | deep-equal@~1.0.1: 1113 | version "1.0.1" 1114 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1115 | 1116 | deep-extend@~0.4.0: 1117 | version "0.4.2" 1118 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1119 | 1120 | deep-is@~0.1.3: 1121 | version "0.1.3" 1122 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1123 | 1124 | default-require-extensions@^1.0.0: 1125 | version "1.0.0" 1126 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1127 | dependencies: 1128 | strip-bom "^2.0.0" 1129 | 1130 | define-properties@^1.1.2: 1131 | version "1.1.2" 1132 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1133 | dependencies: 1134 | foreach "^2.0.5" 1135 | object-keys "^1.0.8" 1136 | 1137 | defined@~1.0.0: 1138 | version "1.0.0" 1139 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 1140 | 1141 | delayed-stream@~1.0.0: 1142 | version "1.0.0" 1143 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1144 | 1145 | delegates@^1.0.0: 1146 | version "1.0.0" 1147 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1148 | 1149 | detect-indent@^4.0.0: 1150 | version "4.0.0" 1151 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1152 | dependencies: 1153 | repeating "^2.0.0" 1154 | 1155 | diff@^3.2.0: 1156 | version "3.3.1" 1157 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 1158 | 1159 | dom-serializer@0, dom-serializer@~0.1.0: 1160 | version "0.1.0" 1161 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1162 | dependencies: 1163 | domelementtype "~1.1.1" 1164 | entities "~1.1.1" 1165 | 1166 | domelementtype@1, domelementtype@^1.3.0: 1167 | version "1.3.0" 1168 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1169 | 1170 | domelementtype@~1.1.1: 1171 | version "1.1.3" 1172 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1173 | 1174 | domhandler@^2.3.0: 1175 | version "2.3.0" 1176 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" 1177 | dependencies: 1178 | domelementtype "1" 1179 | 1180 | domutils@1.5.1, domutils@^1.5.1: 1181 | version "1.5.1" 1182 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1183 | dependencies: 1184 | dom-serializer "0" 1185 | domelementtype "1" 1186 | 1187 | dotenv@^4.0.0: 1188 | version "4.0.0" 1189 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-4.0.0.tgz#864ef1379aced55ce6f95debecdce179f7a0cd1d" 1190 | 1191 | ecc-jsbn@~0.1.1: 1192 | version "0.1.1" 1193 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1194 | dependencies: 1195 | jsbn "~0.1.0" 1196 | 1197 | electron-to-chromium@^1.3.11: 1198 | version "1.3.14" 1199 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.14.tgz#64af0f9efd3c3c6acd57d71f83b49ca7ee9c4b43" 1200 | 1201 | elegant-spinner@^1.0.1: 1202 | version "1.0.1" 1203 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 1204 | 1205 | encoding@^0.1.11: 1206 | version "0.1.12" 1207 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1208 | dependencies: 1209 | iconv-lite "~0.4.13" 1210 | 1211 | entities@^1.1.1, entities@~1.1.1: 1212 | version "1.1.1" 1213 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1214 | 1215 | errno@^0.1.4: 1216 | version "0.1.4" 1217 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1218 | dependencies: 1219 | prr "~0.0.0" 1220 | 1221 | error-ex@^1.2.0: 1222 | version "1.3.1" 1223 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1224 | dependencies: 1225 | is-arrayish "^0.2.1" 1226 | 1227 | es-abstract@^1.5.0: 1228 | version "1.8.2" 1229 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.2.tgz#25103263dc4decbda60e0c737ca32313518027ee" 1230 | dependencies: 1231 | es-to-primitive "^1.1.1" 1232 | function-bind "^1.1.1" 1233 | has "^1.0.1" 1234 | is-callable "^1.1.3" 1235 | is-regex "^1.0.4" 1236 | 1237 | es-to-primitive@^1.1.1: 1238 | version "1.1.1" 1239 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1240 | dependencies: 1241 | is-callable "^1.1.1" 1242 | is-date-object "^1.0.1" 1243 | is-symbol "^1.0.1" 1244 | 1245 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1246 | version "1.0.5" 1247 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1248 | 1249 | escodegen@^1.6.1: 1250 | version "1.9.0" 1251 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1252 | dependencies: 1253 | esprima "^3.1.3" 1254 | estraverse "^4.2.0" 1255 | esutils "^2.0.2" 1256 | optionator "^0.8.1" 1257 | optionalDependencies: 1258 | source-map "~0.5.6" 1259 | 1260 | esprima@^3.1.3: 1261 | version "3.1.3" 1262 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1263 | 1264 | esprima@^4.0.0: 1265 | version "4.0.0" 1266 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1267 | 1268 | estraverse@^4.2.0: 1269 | version "4.2.0" 1270 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1271 | 1272 | esutils@^2.0.2: 1273 | version "2.0.2" 1274 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1275 | 1276 | exec-sh@^0.2.0: 1277 | version "0.2.1" 1278 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1279 | dependencies: 1280 | merge "^1.1.3" 1281 | 1282 | execa@^0.7.0: 1283 | version "0.7.0" 1284 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1285 | dependencies: 1286 | cross-spawn "^5.0.1" 1287 | get-stream "^3.0.0" 1288 | is-stream "^1.1.0" 1289 | npm-run-path "^2.0.0" 1290 | p-finally "^1.0.0" 1291 | signal-exit "^3.0.0" 1292 | strip-eof "^1.0.0" 1293 | 1294 | execa@^0.8.0: 1295 | version "0.8.0" 1296 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 1297 | dependencies: 1298 | cross-spawn "^5.0.1" 1299 | get-stream "^3.0.0" 1300 | is-stream "^1.1.0" 1301 | npm-run-path "^2.0.0" 1302 | p-finally "^1.0.0" 1303 | signal-exit "^3.0.0" 1304 | strip-eof "^1.0.0" 1305 | 1306 | exit-hook@^1.0.0: 1307 | version "1.1.1" 1308 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1309 | 1310 | expand-brackets@^0.1.4: 1311 | version "0.1.5" 1312 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1313 | dependencies: 1314 | is-posix-bracket "^0.1.0" 1315 | 1316 | expand-range@^1.8.1: 1317 | version "1.8.2" 1318 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1319 | dependencies: 1320 | fill-range "^2.1.0" 1321 | 1322 | expect@^21.1.0: 1323 | version "21.1.0" 1324 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.1.0.tgz#1c138ec803c72d28cbd10dfe97104966d967c24a" 1325 | dependencies: 1326 | ansi-styles "^3.2.0" 1327 | jest-diff "^21.1.0" 1328 | jest-get-type "^21.0.2" 1329 | jest-matcher-utils "^21.1.0" 1330 | jest-message-util "^21.1.0" 1331 | jest-regex-util "^21.1.0" 1332 | 1333 | extend@~3.0.0: 1334 | version "3.0.0" 1335 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1336 | 1337 | extglob@^0.3.1: 1338 | version "0.3.2" 1339 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1340 | dependencies: 1341 | is-extglob "^1.0.0" 1342 | 1343 | extsprintf@1.0.2: 1344 | version "1.0.2" 1345 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1346 | 1347 | fast-levenshtein@~2.0.4: 1348 | version "2.0.6" 1349 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1350 | 1351 | fb-watchman@^2.0.0: 1352 | version "2.0.0" 1353 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1354 | dependencies: 1355 | bser "^2.0.0" 1356 | 1357 | figures@^1.7.0: 1358 | version "1.7.0" 1359 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1360 | dependencies: 1361 | escape-string-regexp "^1.0.5" 1362 | object-assign "^4.1.0" 1363 | 1364 | filename-regex@^2.0.0: 1365 | version "2.0.0" 1366 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1367 | 1368 | fileset@^2.0.2: 1369 | version "2.0.3" 1370 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1371 | dependencies: 1372 | glob "^7.0.3" 1373 | minimatch "^3.0.3" 1374 | 1375 | fill-range@^2.1.0: 1376 | version "2.2.3" 1377 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1378 | dependencies: 1379 | is-number "^2.1.0" 1380 | isobject "^2.0.0" 1381 | randomatic "^1.1.3" 1382 | repeat-element "^1.1.2" 1383 | repeat-string "^1.5.2" 1384 | 1385 | find-up@^1.0.0: 1386 | version "1.1.2" 1387 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1388 | dependencies: 1389 | path-exists "^2.0.0" 1390 | pinkie-promise "^2.0.0" 1391 | 1392 | find-up@^2.0.0, find-up@^2.1.0: 1393 | version "2.1.0" 1394 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1395 | dependencies: 1396 | locate-path "^2.0.0" 1397 | 1398 | for-each@~0.3.2: 1399 | version "0.3.2" 1400 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4" 1401 | dependencies: 1402 | is-function "~1.0.0" 1403 | 1404 | for-in@^1.0.1: 1405 | version "1.0.2" 1406 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1407 | 1408 | for-own@^0.1.4: 1409 | version "0.1.5" 1410 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1411 | dependencies: 1412 | for-in "^1.0.1" 1413 | 1414 | foreach@^2.0.5: 1415 | version "2.0.5" 1416 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1417 | 1418 | forever-agent@~0.6.1: 1419 | version "0.6.1" 1420 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1421 | 1422 | form-data@~2.1.1: 1423 | version "2.1.4" 1424 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1425 | dependencies: 1426 | asynckit "^0.4.0" 1427 | combined-stream "^1.0.5" 1428 | mime-types "^2.1.12" 1429 | 1430 | fs-readdir-recursive@^1.0.0: 1431 | version "1.0.0" 1432 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1433 | 1434 | fs.realpath@^1.0.0: 1435 | version "1.0.0" 1436 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1437 | 1438 | fsevents@^1.0.0: 1439 | version "1.1.1" 1440 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1441 | dependencies: 1442 | nan "^2.3.0" 1443 | node-pre-gyp "^0.6.29" 1444 | 1445 | fsevents@^1.1.1: 1446 | version "1.1.2" 1447 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1448 | dependencies: 1449 | nan "^2.3.0" 1450 | node-pre-gyp "^0.6.36" 1451 | 1452 | fstream-ignore@^1.0.5: 1453 | version "1.0.5" 1454 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1455 | dependencies: 1456 | fstream "^1.0.0" 1457 | inherits "2" 1458 | minimatch "^3.0.0" 1459 | 1460 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1461 | version "1.0.11" 1462 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1463 | dependencies: 1464 | graceful-fs "^4.1.2" 1465 | inherits "~2.0.0" 1466 | mkdirp ">=0.5 0" 1467 | rimraf "2" 1468 | 1469 | function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0: 1470 | version "1.1.1" 1471 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1472 | 1473 | gauge@~2.7.3: 1474 | version "2.7.4" 1475 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1476 | dependencies: 1477 | aproba "^1.0.3" 1478 | console-control-strings "^1.0.0" 1479 | has-unicode "^2.0.0" 1480 | object-assign "^4.1.0" 1481 | signal-exit "^3.0.0" 1482 | string-width "^1.0.1" 1483 | strip-ansi "^3.0.1" 1484 | wide-align "^1.1.0" 1485 | 1486 | get-caller-file@^1.0.1: 1487 | version "1.0.2" 1488 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1489 | 1490 | get-own-enumerable-property-symbols@^1.0.1: 1491 | version "1.0.1" 1492 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-1.0.1.tgz#f1d4e3ad1402e039898e56d1e9b9aa924c26e484" 1493 | 1494 | get-stream@^3.0.0: 1495 | version "3.0.0" 1496 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1497 | 1498 | getpass@^0.1.1: 1499 | version "0.1.7" 1500 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1501 | dependencies: 1502 | assert-plus "^1.0.0" 1503 | 1504 | glob-base@^0.3.0: 1505 | version "0.3.0" 1506 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1507 | dependencies: 1508 | glob-parent "^2.0.0" 1509 | is-glob "^2.0.0" 1510 | 1511 | glob-parent@^2.0.0: 1512 | version "2.0.0" 1513 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1514 | dependencies: 1515 | is-glob "^2.0.0" 1516 | 1517 | glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@~7.1.2: 1518 | version "7.1.2" 1519 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1520 | dependencies: 1521 | fs.realpath "^1.0.0" 1522 | inflight "^1.0.4" 1523 | inherits "2" 1524 | minimatch "^3.0.4" 1525 | once "^1.3.0" 1526 | path-is-absolute "^1.0.0" 1527 | 1528 | glob@^7.0.5: 1529 | version "7.1.1" 1530 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1531 | dependencies: 1532 | fs.realpath "^1.0.0" 1533 | inflight "^1.0.4" 1534 | inherits "2" 1535 | minimatch "^3.0.2" 1536 | once "^1.3.0" 1537 | path-is-absolute "^1.0.0" 1538 | 1539 | globals@^9.0.0: 1540 | version "9.17.0" 1541 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1542 | 1543 | globals@^9.18.0: 1544 | version "9.18.0" 1545 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1546 | 1547 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1548 | version "4.1.11" 1549 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1550 | 1551 | growly@^1.3.0: 1552 | version "1.3.0" 1553 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1554 | 1555 | handlebars@^4.0.3: 1556 | version "4.0.10" 1557 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1558 | dependencies: 1559 | async "^1.4.0" 1560 | optimist "^0.6.1" 1561 | source-map "^0.4.4" 1562 | optionalDependencies: 1563 | uglify-js "^2.6" 1564 | 1565 | har-schema@^1.0.5: 1566 | version "1.0.5" 1567 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1568 | 1569 | har-validator@~4.2.1: 1570 | version "4.2.1" 1571 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1572 | dependencies: 1573 | ajv "^4.9.1" 1574 | har-schema "^1.0.5" 1575 | 1576 | has-ansi@^2.0.0: 1577 | version "2.0.0" 1578 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1579 | dependencies: 1580 | ansi-regex "^2.0.0" 1581 | 1582 | has-flag@^1.0.0: 1583 | version "1.0.0" 1584 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1585 | 1586 | has-flag@^2.0.0: 1587 | version "2.0.0" 1588 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1589 | 1590 | has-unicode@^2.0.0: 1591 | version "2.0.1" 1592 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1593 | 1594 | has@^1.0.1, has@~1.0.1: 1595 | version "1.0.1" 1596 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1597 | dependencies: 1598 | function-bind "^1.0.2" 1599 | 1600 | hawk@~3.1.3: 1601 | version "3.1.3" 1602 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1603 | dependencies: 1604 | boom "2.x.x" 1605 | cryptiles "2.x.x" 1606 | hoek "2.x.x" 1607 | sntp "1.x.x" 1608 | 1609 | hoek@2.x.x: 1610 | version "2.16.3" 1611 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1612 | 1613 | home-or-tmp@^2.0.0: 1614 | version "2.0.0" 1615 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1616 | dependencies: 1617 | os-homedir "^1.0.0" 1618 | os-tmpdir "^1.0.1" 1619 | 1620 | hosted-git-info@^2.1.4: 1621 | version "2.4.2" 1622 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67" 1623 | 1624 | html-encoding-sniffer@^1.0.1: 1625 | version "1.0.1" 1626 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1627 | dependencies: 1628 | whatwg-encoding "^1.0.1" 1629 | 1630 | htmlparser2@^3.9.1: 1631 | version "3.9.2" 1632 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1633 | dependencies: 1634 | domelementtype "^1.3.0" 1635 | domhandler "^2.3.0" 1636 | domutils "^1.5.1" 1637 | entities "^1.1.1" 1638 | inherits "^2.0.1" 1639 | readable-stream "^2.0.2" 1640 | 1641 | http-signature@~1.1.0: 1642 | version "1.1.1" 1643 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1644 | dependencies: 1645 | assert-plus "^0.2.0" 1646 | jsprim "^1.2.2" 1647 | sshpk "^1.7.0" 1648 | 1649 | husky@^0.14.3: 1650 | version "0.14.3" 1651 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" 1652 | dependencies: 1653 | is-ci "^1.0.10" 1654 | normalize-path "^1.0.0" 1655 | strip-indent "^2.0.0" 1656 | 1657 | iconv-lite@0.4.13: 1658 | version "0.4.13" 1659 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1660 | 1661 | iconv-lite@~0.4.13: 1662 | version "0.4.16" 1663 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.16.tgz#65de3beeb39e2960d67f049f1634ffcbcde9014b" 1664 | 1665 | imurmurhash@^0.1.4: 1666 | version "0.1.4" 1667 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1668 | 1669 | indent-string@^2.1.0: 1670 | version "2.1.0" 1671 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1672 | dependencies: 1673 | repeating "^2.0.0" 1674 | 1675 | indent-string@^3.0.0: 1676 | version "3.2.0" 1677 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1678 | 1679 | inflight@^1.0.4: 1680 | version "1.0.6" 1681 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1682 | dependencies: 1683 | once "^1.3.0" 1684 | wrappy "1" 1685 | 1686 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1687 | version "2.0.3" 1688 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1689 | 1690 | ini@~1.3.0: 1691 | version "1.3.4" 1692 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1693 | 1694 | invariant@^2.2.0, invariant@^2.2.2: 1695 | version "2.2.2" 1696 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1697 | dependencies: 1698 | loose-envify "^1.0.0" 1699 | 1700 | invert-kv@^1.0.0: 1701 | version "1.0.0" 1702 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1703 | 1704 | is-arrayish@^0.2.1: 1705 | version "0.2.1" 1706 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1707 | 1708 | is-binary-path@^1.0.0: 1709 | version "1.0.1" 1710 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1711 | dependencies: 1712 | binary-extensions "^1.0.0" 1713 | 1714 | is-buffer@^1.1.5: 1715 | version "1.1.5" 1716 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1717 | 1718 | is-builtin-module@^1.0.0: 1719 | version "1.0.0" 1720 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1721 | dependencies: 1722 | builtin-modules "^1.0.0" 1723 | 1724 | is-callable@^1.1.1, is-callable@^1.1.3: 1725 | version "1.1.3" 1726 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1727 | 1728 | is-ci@^1.0.10: 1729 | version "1.0.10" 1730 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1731 | dependencies: 1732 | ci-info "^1.0.0" 1733 | 1734 | is-date-object@^1.0.1: 1735 | version "1.0.1" 1736 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1737 | 1738 | is-dotfile@^1.0.0: 1739 | version "1.0.2" 1740 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1741 | 1742 | is-equal-shallow@^0.1.3: 1743 | version "0.1.3" 1744 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1745 | dependencies: 1746 | is-primitive "^2.0.0" 1747 | 1748 | is-extendable@^0.1.1: 1749 | version "0.1.1" 1750 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1751 | 1752 | is-extglob@^1.0.0: 1753 | version "1.0.0" 1754 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1755 | 1756 | is-extglob@^2.1.1: 1757 | version "2.1.1" 1758 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1759 | 1760 | is-finite@^1.0.0: 1761 | version "1.0.2" 1762 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1763 | dependencies: 1764 | number-is-nan "^1.0.0" 1765 | 1766 | is-fullwidth-code-point@^1.0.0: 1767 | version "1.0.0" 1768 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1769 | dependencies: 1770 | number-is-nan "^1.0.0" 1771 | 1772 | is-fullwidth-code-point@^2.0.0: 1773 | version "2.0.0" 1774 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1775 | 1776 | is-function@~1.0.0: 1777 | version "1.0.1" 1778 | resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" 1779 | 1780 | is-glob@^2.0.0, is-glob@^2.0.1: 1781 | version "2.0.1" 1782 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1783 | dependencies: 1784 | is-extglob "^1.0.0" 1785 | 1786 | is-glob@^4.0.0: 1787 | version "4.0.0" 1788 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1789 | dependencies: 1790 | is-extglob "^2.1.1" 1791 | 1792 | is-number@^2.0.2, is-number@^2.1.0: 1793 | version "2.1.0" 1794 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1795 | dependencies: 1796 | kind-of "^3.0.2" 1797 | 1798 | is-obj@^1.0.1: 1799 | version "1.0.1" 1800 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1801 | 1802 | is-posix-bracket@^0.1.0: 1803 | version "0.1.1" 1804 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1805 | 1806 | is-primitive@^2.0.0: 1807 | version "2.0.0" 1808 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1809 | 1810 | is-promise@^2.1.0: 1811 | version "2.1.0" 1812 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1813 | 1814 | is-regex@^1.0.4: 1815 | version "1.0.4" 1816 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1817 | dependencies: 1818 | has "^1.0.1" 1819 | 1820 | is-regexp@^1.0.0: 1821 | version "1.0.0" 1822 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1823 | 1824 | is-stream@^1.0.1, is-stream@^1.1.0: 1825 | version "1.1.0" 1826 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1827 | 1828 | is-symbol@^1.0.1: 1829 | version "1.0.1" 1830 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1831 | 1832 | is-typedarray@~1.0.0: 1833 | version "1.0.0" 1834 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1835 | 1836 | is-utf8@^0.2.0: 1837 | version "0.2.1" 1838 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1839 | 1840 | isarray@1.0.0, isarray@~1.0.0: 1841 | version "1.0.0" 1842 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1843 | 1844 | isexe@^2.0.0: 1845 | version "2.0.0" 1846 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1847 | 1848 | isobject@^2.0.0: 1849 | version "2.1.0" 1850 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1851 | dependencies: 1852 | isarray "1.0.0" 1853 | 1854 | isstream@~0.1.2: 1855 | version "0.1.2" 1856 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1857 | 1858 | istanbul-api@^1.1.1: 1859 | version "1.1.14" 1860 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.14.tgz#25bc5701f7c680c0ffff913de46e3619a3a6e680" 1861 | dependencies: 1862 | async "^2.1.4" 1863 | fileset "^2.0.2" 1864 | istanbul-lib-coverage "^1.1.1" 1865 | istanbul-lib-hook "^1.0.7" 1866 | istanbul-lib-instrument "^1.8.0" 1867 | istanbul-lib-report "^1.1.1" 1868 | istanbul-lib-source-maps "^1.2.1" 1869 | istanbul-reports "^1.1.2" 1870 | js-yaml "^3.7.0" 1871 | mkdirp "^0.5.1" 1872 | once "^1.4.0" 1873 | 1874 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 1875 | version "1.1.1" 1876 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 1877 | 1878 | istanbul-lib-coverage@^1.0.2: 1879 | version "1.0.2" 1880 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.2.tgz#87a0c015b6910651cb3b184814dfb339337e25e1" 1881 | 1882 | istanbul-lib-hook@^1.0.7: 1883 | version "1.0.7" 1884 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 1885 | dependencies: 1886 | append-transform "^0.4.0" 1887 | 1888 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.8.0: 1889 | version "1.8.0" 1890 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz#66f6c9421cc9ec4704f76f2db084ba9078a2b532" 1891 | dependencies: 1892 | babel-generator "^6.18.0" 1893 | babel-template "^6.16.0" 1894 | babel-traverse "^6.18.0" 1895 | babel-types "^6.18.0" 1896 | babylon "^6.18.0" 1897 | istanbul-lib-coverage "^1.1.1" 1898 | semver "^5.3.0" 1899 | 1900 | istanbul-lib-instrument@^1.6.2: 1901 | version "1.7.0" 1902 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.0.tgz#b8e0dc25709bb44e17336ab47b7bb5c97c23f659" 1903 | dependencies: 1904 | babel-generator "^6.18.0" 1905 | babel-template "^6.16.0" 1906 | babel-traverse "^6.18.0" 1907 | babel-types "^6.18.0" 1908 | babylon "^6.13.0" 1909 | istanbul-lib-coverage "^1.0.2" 1910 | semver "^5.3.0" 1911 | 1912 | istanbul-lib-report@^1.1.1: 1913 | version "1.1.1" 1914 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 1915 | dependencies: 1916 | istanbul-lib-coverage "^1.1.1" 1917 | mkdirp "^0.5.1" 1918 | path-parse "^1.0.5" 1919 | supports-color "^3.1.2" 1920 | 1921 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 1922 | version "1.2.1" 1923 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 1924 | dependencies: 1925 | debug "^2.6.3" 1926 | istanbul-lib-coverage "^1.1.1" 1927 | mkdirp "^0.5.1" 1928 | rimraf "^2.6.1" 1929 | source-map "^0.5.3" 1930 | 1931 | istanbul-reports@^1.1.2: 1932 | version "1.1.2" 1933 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 1934 | dependencies: 1935 | handlebars "^4.0.3" 1936 | 1937 | jest-changed-files@^21.1.0: 1938 | version "21.1.0" 1939 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.1.0.tgz#e70f6b33b75d5987f4eae07e35bea5525635f92a" 1940 | dependencies: 1941 | throat "^4.0.0" 1942 | 1943 | jest-cli@^21.1.0: 1944 | version "21.1.0" 1945 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.1.0.tgz#4f671885ea3521803c96a1fd95baaa6a1ba8d70f" 1946 | dependencies: 1947 | ansi-escapes "^3.0.0" 1948 | chalk "^2.0.1" 1949 | glob "^7.1.2" 1950 | graceful-fs "^4.1.11" 1951 | is-ci "^1.0.10" 1952 | istanbul-api "^1.1.1" 1953 | istanbul-lib-coverage "^1.0.1" 1954 | istanbul-lib-instrument "^1.4.2" 1955 | istanbul-lib-source-maps "^1.1.0" 1956 | jest-changed-files "^21.1.0" 1957 | jest-config "^21.1.0" 1958 | jest-environment-jsdom "^21.1.0" 1959 | jest-haste-map "^21.1.0" 1960 | jest-message-util "^21.1.0" 1961 | jest-regex-util "^21.1.0" 1962 | jest-resolve-dependencies "^21.1.0" 1963 | jest-runner "^21.1.0" 1964 | jest-runtime "^21.1.0" 1965 | jest-snapshot "^21.1.0" 1966 | jest-util "^21.1.0" 1967 | micromatch "^2.3.11" 1968 | node-notifier "^5.0.2" 1969 | pify "^3.0.0" 1970 | slash "^1.0.0" 1971 | string-length "^2.0.0" 1972 | strip-ansi "^4.0.0" 1973 | which "^1.2.12" 1974 | worker-farm "^1.3.1" 1975 | yargs "^9.0.0" 1976 | 1977 | jest-config@^21.1.0: 1978 | version "21.1.0" 1979 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.1.0.tgz#7ef8778af679de30dad75e355a0dfbb0330b8d2f" 1980 | dependencies: 1981 | chalk "^2.0.1" 1982 | glob "^7.1.1" 1983 | jest-environment-jsdom "^21.1.0" 1984 | jest-environment-node "^21.1.0" 1985 | jest-get-type "^21.0.2" 1986 | jest-jasmine2 "^21.1.0" 1987 | jest-regex-util "^21.1.0" 1988 | jest-resolve "^21.1.0" 1989 | jest-util "^21.1.0" 1990 | jest-validate "^21.1.0" 1991 | pretty-format "^21.1.0" 1992 | 1993 | jest-diff@^21.1.0: 1994 | version "21.1.0" 1995 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.1.0.tgz#ca4c9d40272a6901dcde6c4c0bb2f568c363cc42" 1996 | dependencies: 1997 | chalk "^2.0.1" 1998 | diff "^3.2.0" 1999 | jest-get-type "^21.0.2" 2000 | pretty-format "^21.1.0" 2001 | 2002 | jest-docblock@^21.1.0: 2003 | version "21.1.0" 2004 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.1.0.tgz#43154be2441fb91403e36bb35cb791a5017cea81" 2005 | 2006 | jest-environment-jsdom@^21.1.0: 2007 | version "21.1.0" 2008 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.1.0.tgz#40729a60cd4544625f7d3a33c32bdaad63e57db7" 2009 | dependencies: 2010 | jest-mock "^21.1.0" 2011 | jest-util "^21.1.0" 2012 | jsdom "^9.12.0" 2013 | 2014 | jest-environment-node@^21.1.0: 2015 | version "21.1.0" 2016 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.1.0.tgz#a11fd611e8ae6c3e02b785aa1b12a3009f4fd0f1" 2017 | dependencies: 2018 | jest-mock "^21.1.0" 2019 | jest-util "^21.1.0" 2020 | 2021 | jest-get-type@^21.0.2: 2022 | version "21.0.2" 2023 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.0.2.tgz#304e6b816dd33cd1f47aba0597bcad258a509fc6" 2024 | 2025 | jest-haste-map@^21.1.0: 2026 | version "21.1.0" 2027 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.1.0.tgz#08e7a8c584008d4b790b8dddf7dd3e3db03b75d3" 2028 | dependencies: 2029 | fb-watchman "^2.0.0" 2030 | graceful-fs "^4.1.11" 2031 | jest-docblock "^21.1.0" 2032 | micromatch "^2.3.11" 2033 | sane "^2.0.0" 2034 | worker-farm "^1.3.1" 2035 | 2036 | jest-jasmine2@^21.1.0: 2037 | version "21.1.0" 2038 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.1.0.tgz#975c3cd3ecd9d50d385bfe3c680dd61979f50c9c" 2039 | dependencies: 2040 | chalk "^2.0.1" 2041 | expect "^21.1.0" 2042 | graceful-fs "^4.1.11" 2043 | jest-diff "^21.1.0" 2044 | jest-matcher-utils "^21.1.0" 2045 | jest-message-util "^21.1.0" 2046 | jest-snapshot "^21.1.0" 2047 | p-cancelable "^0.3.0" 2048 | 2049 | jest-matcher-utils@^20.0.3: 2050 | version "20.0.3" 2051 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 2052 | dependencies: 2053 | chalk "^1.1.3" 2054 | pretty-format "^20.0.3" 2055 | 2056 | jest-matcher-utils@^21.1.0: 2057 | version "21.1.0" 2058 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.1.0.tgz#b02e237b287c58915ce9a5bf3c7138dba95125a7" 2059 | dependencies: 2060 | chalk "^2.0.1" 2061 | jest-get-type "^21.0.2" 2062 | pretty-format "^21.1.0" 2063 | 2064 | jest-message-util@^21.1.0: 2065 | version "21.1.0" 2066 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.1.0.tgz#7f9a52535d1a640af0d4c800edde737e14ea0526" 2067 | dependencies: 2068 | chalk "^2.0.1" 2069 | micromatch "^2.3.11" 2070 | slash "^1.0.0" 2071 | 2072 | jest-mock@^21.1.0: 2073 | version "21.1.0" 2074 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.1.0.tgz#c4dddfa893a0b120b72b5ae87c7506745213a790" 2075 | 2076 | jest-regex-util@^21.1.0: 2077 | version "21.1.0" 2078 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.1.0.tgz#59e4bad74f5ffd62a3835225f9bc1ee3796b5adb" 2079 | 2080 | jest-resolve-dependencies@^21.1.0: 2081 | version "21.1.0" 2082 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.1.0.tgz#9f78852e65d864d04ad0919ac8226b3f1434e7b0" 2083 | dependencies: 2084 | jest-regex-util "^21.1.0" 2085 | 2086 | jest-resolve@^21.1.0: 2087 | version "21.1.0" 2088 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.1.0.tgz#6bb806ca5ad876c250044fe62f298321d2da5c06" 2089 | dependencies: 2090 | browser-resolve "^1.11.2" 2091 | chalk "^2.0.1" 2092 | is-builtin-module "^1.0.0" 2093 | 2094 | jest-runner@^21.1.0: 2095 | version "21.1.0" 2096 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.1.0.tgz#d7ea7e2fa10ed673d4dd25ba2f3faae2efb89a07" 2097 | dependencies: 2098 | jest-config "^21.1.0" 2099 | jest-docblock "^21.1.0" 2100 | jest-haste-map "^21.1.0" 2101 | jest-jasmine2 "^21.1.0" 2102 | jest-message-util "^21.1.0" 2103 | jest-runtime "^21.1.0" 2104 | jest-util "^21.1.0" 2105 | pify "^3.0.0" 2106 | throat "^4.0.0" 2107 | worker-farm "^1.3.1" 2108 | 2109 | jest-runtime@^21.1.0: 2110 | version "21.1.0" 2111 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.1.0.tgz#c9a180a9e06ef046d0ad157dea52355abb7cbad4" 2112 | dependencies: 2113 | babel-core "^6.0.0" 2114 | babel-jest "^21.0.2" 2115 | babel-plugin-istanbul "^4.0.0" 2116 | chalk "^2.0.1" 2117 | convert-source-map "^1.4.0" 2118 | graceful-fs "^4.1.11" 2119 | jest-config "^21.1.0" 2120 | jest-haste-map "^21.1.0" 2121 | jest-regex-util "^21.1.0" 2122 | jest-resolve "^21.1.0" 2123 | jest-util "^21.1.0" 2124 | json-stable-stringify "^1.0.1" 2125 | micromatch "^2.3.11" 2126 | slash "^1.0.0" 2127 | strip-bom "3.0.0" 2128 | write-file-atomic "^2.1.0" 2129 | yargs "^9.0.0" 2130 | 2131 | jest-snapshot@^21.1.0: 2132 | version "21.1.0" 2133 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.1.0.tgz#a5fa9d52847d8f52e19a1df6ccae9de699193ccc" 2134 | dependencies: 2135 | chalk "^2.0.1" 2136 | jest-diff "^21.1.0" 2137 | jest-matcher-utils "^21.1.0" 2138 | mkdirp "^0.5.1" 2139 | natural-compare "^1.4.0" 2140 | pretty-format "^21.1.0" 2141 | 2142 | jest-util@^21.1.0: 2143 | version "21.1.0" 2144 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.1.0.tgz#f92ff756422cc0609ddf5a9bfa4d34b2835d8c30" 2145 | dependencies: 2146 | callsites "^2.0.0" 2147 | chalk "^2.0.1" 2148 | graceful-fs "^4.1.11" 2149 | jest-message-util "^21.1.0" 2150 | jest-mock "^21.1.0" 2151 | jest-validate "^21.1.0" 2152 | mkdirp "^0.5.1" 2153 | 2154 | jest-validate@^20.0.3: 2155 | version "20.0.3" 2156 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2157 | dependencies: 2158 | chalk "^1.1.3" 2159 | jest-matcher-utils "^20.0.3" 2160 | leven "^2.1.0" 2161 | pretty-format "^20.0.3" 2162 | 2163 | jest-validate@^21.1.0: 2164 | version "21.1.0" 2165 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.1.0.tgz#39d01115544a758bce49f221a5fcbb24ebdecc65" 2166 | dependencies: 2167 | chalk "^2.0.1" 2168 | jest-get-type "^21.0.2" 2169 | leven "^2.1.0" 2170 | pretty-format "^21.1.0" 2171 | 2172 | jest@^21.1.0: 2173 | version "21.1.0" 2174 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.1.0.tgz#77c7baa8aa9e8bace7fe41a30d748ab56e89476a" 2175 | dependencies: 2176 | jest-cli "^21.1.0" 2177 | 2178 | jodid25519@^1.0.0: 2179 | version "1.0.2" 2180 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2181 | dependencies: 2182 | jsbn "~0.1.0" 2183 | 2184 | js-tokens@^3.0.0: 2185 | version "3.0.1" 2186 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2187 | 2188 | js-tokens@^3.0.2: 2189 | version "3.0.2" 2190 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2191 | 2192 | js-yaml@^3.4.3, js-yaml@^3.7.0: 2193 | version "3.10.0" 2194 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2195 | dependencies: 2196 | argparse "^1.0.7" 2197 | esprima "^4.0.0" 2198 | 2199 | jsbn@~0.1.0: 2200 | version "0.1.1" 2201 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2202 | 2203 | jsdom@^9.12.0: 2204 | version "9.12.0" 2205 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2206 | dependencies: 2207 | abab "^1.0.3" 2208 | acorn "^4.0.4" 2209 | acorn-globals "^3.1.0" 2210 | array-equal "^1.0.0" 2211 | content-type-parser "^1.0.1" 2212 | cssom ">= 0.3.2 < 0.4.0" 2213 | cssstyle ">= 0.2.37 < 0.3.0" 2214 | escodegen "^1.6.1" 2215 | html-encoding-sniffer "^1.0.1" 2216 | nwmatcher ">= 1.3.9 < 2.0.0" 2217 | parse5 "^1.5.1" 2218 | request "^2.79.0" 2219 | sax "^1.2.1" 2220 | symbol-tree "^3.2.1" 2221 | tough-cookie "^2.3.2" 2222 | webidl-conversions "^4.0.0" 2223 | whatwg-encoding "^1.0.1" 2224 | whatwg-url "^4.3.0" 2225 | xml-name-validator "^2.0.1" 2226 | 2227 | jsesc@^1.3.0: 2228 | version "1.3.0" 2229 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2230 | 2231 | jsesc@~0.5.0: 2232 | version "0.5.0" 2233 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2234 | 2235 | json-schema@0.2.3: 2236 | version "0.2.3" 2237 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2238 | 2239 | json-stable-stringify@^1.0.1: 2240 | version "1.0.1" 2241 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2242 | dependencies: 2243 | jsonify "~0.0.0" 2244 | 2245 | json-stringify-safe@~5.0.1: 2246 | version "5.0.1" 2247 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2248 | 2249 | json5@^0.5.0, json5@^0.5.1: 2250 | version "0.5.1" 2251 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2252 | 2253 | jsonify@~0.0.0: 2254 | version "0.0.0" 2255 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2256 | 2257 | jsprim@^1.2.2: 2258 | version "1.4.0" 2259 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2260 | dependencies: 2261 | assert-plus "1.0.0" 2262 | extsprintf "1.0.2" 2263 | json-schema "0.2.3" 2264 | verror "1.3.6" 2265 | 2266 | kind-of@^3.0.2: 2267 | version "3.2.0" 2268 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.0.tgz#b58abe4d5c044ad33726a8c1525b48cf891bff07" 2269 | dependencies: 2270 | is-buffer "^1.1.5" 2271 | 2272 | lazy-cache@^1.0.3: 2273 | version "1.0.4" 2274 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2275 | 2276 | lcid@^1.0.0: 2277 | version "1.0.0" 2278 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2279 | dependencies: 2280 | invert-kv "^1.0.0" 2281 | 2282 | leven@^2.1.0: 2283 | version "2.1.0" 2284 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2285 | 2286 | levn@~0.3.0: 2287 | version "0.3.0" 2288 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2289 | dependencies: 2290 | prelude-ls "~1.1.2" 2291 | type-check "~0.3.2" 2292 | 2293 | lint-staged@^4.1.3: 2294 | version "4.1.3" 2295 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.1.3.tgz#07c592e4b8dee914450a183c761187dc53d079e2" 2296 | dependencies: 2297 | app-root-path "^2.0.0" 2298 | chalk "^2.1.0" 2299 | cosmiconfig "^1.1.0" 2300 | execa "^0.8.0" 2301 | is-glob "^4.0.0" 2302 | jest-validate "^20.0.3" 2303 | listr "^0.12.0" 2304 | lodash "^4.17.4" 2305 | log-symbols "^2.0.0" 2306 | minimatch "^3.0.0" 2307 | npm-which "^3.0.1" 2308 | p-map "^1.1.1" 2309 | staged-git-files "0.0.4" 2310 | stringify-object "^3.2.0" 2311 | 2312 | listr-silent-renderer@^1.1.1: 2313 | version "1.1.1" 2314 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 2315 | 2316 | listr-update-renderer@^0.2.0: 2317 | version "0.2.0" 2318 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 2319 | dependencies: 2320 | chalk "^1.1.3" 2321 | cli-truncate "^0.2.1" 2322 | elegant-spinner "^1.0.1" 2323 | figures "^1.7.0" 2324 | indent-string "^3.0.0" 2325 | log-symbols "^1.0.2" 2326 | log-update "^1.0.2" 2327 | strip-ansi "^3.0.1" 2328 | 2329 | listr-verbose-renderer@^0.4.0: 2330 | version "0.4.0" 2331 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 2332 | dependencies: 2333 | chalk "^1.1.3" 2334 | cli-cursor "^1.0.2" 2335 | date-fns "^1.27.2" 2336 | figures "^1.7.0" 2337 | 2338 | listr@^0.12.0: 2339 | version "0.12.0" 2340 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 2341 | dependencies: 2342 | chalk "^1.1.3" 2343 | cli-truncate "^0.2.1" 2344 | figures "^1.7.0" 2345 | indent-string "^2.1.0" 2346 | is-promise "^2.1.0" 2347 | is-stream "^1.1.0" 2348 | listr-silent-renderer "^1.1.1" 2349 | listr-update-renderer "^0.2.0" 2350 | listr-verbose-renderer "^0.4.0" 2351 | log-symbols "^1.0.2" 2352 | log-update "^1.0.2" 2353 | ora "^0.2.3" 2354 | p-map "^1.1.1" 2355 | rxjs "^5.0.0-beta.11" 2356 | stream-to-observable "^0.1.0" 2357 | strip-ansi "^3.0.1" 2358 | 2359 | load-json-file@^1.0.0: 2360 | version "1.1.0" 2361 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2362 | dependencies: 2363 | graceful-fs "^4.1.2" 2364 | parse-json "^2.2.0" 2365 | pify "^2.0.0" 2366 | pinkie-promise "^2.0.0" 2367 | strip-bom "^2.0.0" 2368 | 2369 | load-json-file@^2.0.0: 2370 | version "2.0.0" 2371 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2372 | dependencies: 2373 | graceful-fs "^4.1.2" 2374 | parse-json "^2.2.0" 2375 | pify "^2.0.0" 2376 | strip-bom "^3.0.0" 2377 | 2378 | locate-path@^2.0.0: 2379 | version "2.0.0" 2380 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2381 | dependencies: 2382 | p-locate "^2.0.0" 2383 | path-exists "^3.0.0" 2384 | 2385 | lodash.assignin@^4.0.9: 2386 | version "4.2.0" 2387 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 2388 | 2389 | lodash.bind@^4.1.4: 2390 | version "4.2.1" 2391 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 2392 | 2393 | lodash.defaults@^4.0.1: 2394 | version "4.2.0" 2395 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 2396 | 2397 | lodash.filter@^4.4.0: 2398 | version "4.6.0" 2399 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 2400 | 2401 | lodash.flatten@^4.2.0: 2402 | version "4.4.0" 2403 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2404 | 2405 | lodash.foreach@^4.3.0: 2406 | version "4.5.0" 2407 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 2408 | 2409 | lodash.map@^4.4.0: 2410 | version "4.6.0" 2411 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2412 | 2413 | lodash.merge@^4.4.0: 2414 | version "4.6.0" 2415 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2416 | 2417 | lodash.pick@^4.2.1: 2418 | version "4.4.0" 2419 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2420 | 2421 | lodash.reduce@^4.4.0: 2422 | version "4.6.0" 2423 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 2424 | 2425 | lodash.reject@^4.4.0: 2426 | version "4.6.0" 2427 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 2428 | 2429 | lodash.some@^4.4.0: 2430 | version "4.6.0" 2431 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2432 | 2433 | lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0: 2434 | version "4.17.4" 2435 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2436 | 2437 | log-symbols@^1.0.2: 2438 | version "1.0.2" 2439 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2440 | dependencies: 2441 | chalk "^1.0.0" 2442 | 2443 | log-symbols@^2.0.0: 2444 | version "2.0.0" 2445 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.0.0.tgz#595e63be4d5c8cbf294a9e09e0d5629f5913fc0c" 2446 | dependencies: 2447 | chalk "^2.0.1" 2448 | 2449 | log-update@^1.0.2: 2450 | version "1.0.2" 2451 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 2452 | dependencies: 2453 | ansi-escapes "^1.0.0" 2454 | cli-cursor "^1.0.2" 2455 | 2456 | longest@^1.0.1: 2457 | version "1.0.1" 2458 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2459 | 2460 | loose-envify@^1.0.0: 2461 | version "1.3.1" 2462 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2463 | dependencies: 2464 | js-tokens "^3.0.0" 2465 | 2466 | lru-cache@^4.0.1: 2467 | version "4.1.1" 2468 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2469 | dependencies: 2470 | pseudomap "^1.0.2" 2471 | yallist "^2.1.2" 2472 | 2473 | makeerror@1.0.x: 2474 | version "1.0.11" 2475 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2476 | dependencies: 2477 | tmpl "1.0.x" 2478 | 2479 | mem@^1.1.0: 2480 | version "1.1.0" 2481 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2482 | dependencies: 2483 | mimic-fn "^1.0.0" 2484 | 2485 | merge@^1.1.3: 2486 | version "1.2.0" 2487 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2488 | 2489 | micromatch@^2.1.5, micromatch@^2.3.11: 2490 | version "2.3.11" 2491 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2492 | dependencies: 2493 | arr-diff "^2.0.0" 2494 | array-unique "^0.2.1" 2495 | braces "^1.8.2" 2496 | expand-brackets "^0.1.4" 2497 | extglob "^0.3.1" 2498 | filename-regex "^2.0.0" 2499 | is-extglob "^1.0.0" 2500 | is-glob "^2.0.1" 2501 | kind-of "^3.0.2" 2502 | normalize-path "^2.0.1" 2503 | object.omit "^2.0.0" 2504 | parse-glob "^3.0.4" 2505 | regex-cache "^0.4.2" 2506 | 2507 | mime-db@~1.27.0: 2508 | version "1.27.0" 2509 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2510 | 2511 | mime-types@^2.1.12, mime-types@~2.1.7: 2512 | version "2.1.15" 2513 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2514 | dependencies: 2515 | mime-db "~1.27.0" 2516 | 2517 | mimic-fn@^1.0.0: 2518 | version "1.1.0" 2519 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2520 | 2521 | minimatch@^3.0.0, minimatch@^3.0.2: 2522 | version "3.0.3" 2523 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2524 | dependencies: 2525 | brace-expansion "^1.0.0" 2526 | 2527 | minimatch@^3.0.3, minimatch@^3.0.4: 2528 | version "3.0.4" 2529 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2530 | dependencies: 2531 | brace-expansion "^1.1.7" 2532 | 2533 | minimist@0.0.8: 2534 | version "0.0.8" 2535 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2536 | 2537 | minimist@^1.1.1, minimist@^1.2.0, minimist@~1.2.0: 2538 | version "1.2.0" 2539 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2540 | 2541 | minimist@~0.0.1: 2542 | version "0.0.10" 2543 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2544 | 2545 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 2546 | version "0.5.1" 2547 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2548 | dependencies: 2549 | minimist "0.0.8" 2550 | 2551 | ms@0.7.3: 2552 | version "0.7.3" 2553 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" 2554 | 2555 | ms@2.0.0: 2556 | version "2.0.0" 2557 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2558 | 2559 | nan@^2.3.0: 2560 | version "2.6.2" 2561 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 2562 | 2563 | natural-compare@^1.4.0: 2564 | version "1.4.0" 2565 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2566 | 2567 | node-fetch@^1.6.3: 2568 | version "1.7.3" 2569 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2570 | dependencies: 2571 | encoding "^0.1.11" 2572 | is-stream "^1.0.1" 2573 | 2574 | node-int64@^0.4.0: 2575 | version "0.4.0" 2576 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2577 | 2578 | node-notifier@^5.0.2: 2579 | version "5.1.2" 2580 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2581 | dependencies: 2582 | growly "^1.3.0" 2583 | semver "^5.3.0" 2584 | shellwords "^0.1.0" 2585 | which "^1.2.12" 2586 | 2587 | node-pre-gyp@^0.6.29: 2588 | version "0.6.36" 2589 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 2590 | dependencies: 2591 | mkdirp "^0.5.1" 2592 | nopt "^4.0.1" 2593 | npmlog "^4.0.2" 2594 | rc "^1.1.7" 2595 | request "^2.81.0" 2596 | rimraf "^2.6.1" 2597 | semver "^5.3.0" 2598 | tar "^2.2.1" 2599 | tar-pack "^3.4.0" 2600 | 2601 | node-pre-gyp@^0.6.36: 2602 | version "0.6.37" 2603 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz#3c872b236b2e266e4140578fe1ee88f693323a05" 2604 | dependencies: 2605 | mkdirp "^0.5.1" 2606 | nopt "^4.0.1" 2607 | npmlog "^4.0.2" 2608 | rc "^1.1.7" 2609 | request "^2.81.0" 2610 | rimraf "^2.6.1" 2611 | semver "^5.3.0" 2612 | tape "^4.6.3" 2613 | tar "^2.2.1" 2614 | tar-pack "^3.4.0" 2615 | 2616 | nopt@^4.0.1: 2617 | version "4.0.1" 2618 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2619 | dependencies: 2620 | abbrev "1" 2621 | osenv "^0.1.4" 2622 | 2623 | normalize-package-data@^2.3.2: 2624 | version "2.3.8" 2625 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb" 2626 | dependencies: 2627 | hosted-git-info "^2.1.4" 2628 | is-builtin-module "^1.0.0" 2629 | semver "2 || 3 || 4 || 5" 2630 | validate-npm-package-license "^3.0.1" 2631 | 2632 | normalize-path@^1.0.0: 2633 | version "1.0.0" 2634 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 2635 | 2636 | normalize-path@^2.0.1: 2637 | version "2.1.1" 2638 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2639 | dependencies: 2640 | remove-trailing-separator "^1.0.1" 2641 | 2642 | npm-path@^2.0.2: 2643 | version "2.0.3" 2644 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 2645 | dependencies: 2646 | which "^1.2.10" 2647 | 2648 | npm-run-path@^2.0.0: 2649 | version "2.0.2" 2650 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2651 | dependencies: 2652 | path-key "^2.0.0" 2653 | 2654 | npm-which@^3.0.1: 2655 | version "3.0.1" 2656 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 2657 | dependencies: 2658 | commander "^2.9.0" 2659 | npm-path "^2.0.2" 2660 | which "^1.2.10" 2661 | 2662 | npmlog@^4.0.2: 2663 | version "4.1.0" 2664 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5" 2665 | dependencies: 2666 | are-we-there-yet "~1.1.2" 2667 | console-control-strings "~1.1.0" 2668 | gauge "~2.7.3" 2669 | set-blocking "~2.0.0" 2670 | 2671 | nth-check@~1.0.1: 2672 | version "1.0.1" 2673 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2674 | dependencies: 2675 | boolbase "~1.0.0" 2676 | 2677 | number-is-nan@^1.0.0: 2678 | version "1.0.1" 2679 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2680 | 2681 | "nwmatcher@>= 1.3.9 < 2.0.0": 2682 | version "1.4.1" 2683 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 2684 | 2685 | oauth-sign@~0.8.1: 2686 | version "0.8.2" 2687 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2688 | 2689 | object-assign@^4.0.1, object-assign@^4.1.0: 2690 | version "4.1.1" 2691 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2692 | 2693 | object-inspect@~1.3.0: 2694 | version "1.3.0" 2695 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d" 2696 | 2697 | object-keys@^1.0.8: 2698 | version "1.0.11" 2699 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2700 | 2701 | object.omit@^2.0.0: 2702 | version "2.0.1" 2703 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2704 | dependencies: 2705 | for-own "^0.1.4" 2706 | is-extendable "^0.1.1" 2707 | 2708 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2709 | version "1.4.0" 2710 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2711 | dependencies: 2712 | wrappy "1" 2713 | 2714 | onetime@^1.0.0: 2715 | version "1.1.0" 2716 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2717 | 2718 | optimist@^0.6.1: 2719 | version "0.6.1" 2720 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2721 | dependencies: 2722 | minimist "~0.0.1" 2723 | wordwrap "~0.0.2" 2724 | 2725 | optionator@^0.8.1: 2726 | version "0.8.2" 2727 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2728 | dependencies: 2729 | deep-is "~0.1.3" 2730 | fast-levenshtein "~2.0.4" 2731 | levn "~0.3.0" 2732 | prelude-ls "~1.1.2" 2733 | type-check "~0.3.2" 2734 | wordwrap "~1.0.0" 2735 | 2736 | ora@^0.2.3: 2737 | version "0.2.3" 2738 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 2739 | dependencies: 2740 | chalk "^1.1.1" 2741 | cli-cursor "^1.0.2" 2742 | cli-spinners "^0.1.2" 2743 | object-assign "^4.0.1" 2744 | 2745 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2746 | version "1.0.2" 2747 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2748 | 2749 | os-locale@^2.0.0: 2750 | version "2.1.0" 2751 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2752 | dependencies: 2753 | execa "^0.7.0" 2754 | lcid "^1.0.0" 2755 | mem "^1.1.0" 2756 | 2757 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2758 | version "1.0.2" 2759 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2760 | 2761 | osenv@^0.1.4: 2762 | version "0.1.4" 2763 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2764 | dependencies: 2765 | os-homedir "^1.0.0" 2766 | os-tmpdir "^1.0.0" 2767 | 2768 | output-file-sync@^1.1.2: 2769 | version "1.1.2" 2770 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2771 | dependencies: 2772 | graceful-fs "^4.1.4" 2773 | mkdirp "^0.5.1" 2774 | object-assign "^4.1.0" 2775 | 2776 | p-cancelable@^0.3.0: 2777 | version "0.3.0" 2778 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 2779 | 2780 | p-finally@^1.0.0: 2781 | version "1.0.0" 2782 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2783 | 2784 | p-limit@^1.1.0: 2785 | version "1.1.0" 2786 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2787 | 2788 | p-locate@^2.0.0: 2789 | version "2.0.0" 2790 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2791 | dependencies: 2792 | p-limit "^1.1.0" 2793 | 2794 | p-map@^1.1.1: 2795 | version "1.2.0" 2796 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 2797 | 2798 | parse-glob@^3.0.4: 2799 | version "3.0.4" 2800 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2801 | dependencies: 2802 | glob-base "^0.3.0" 2803 | is-dotfile "^1.0.0" 2804 | is-extglob "^1.0.0" 2805 | is-glob "^2.0.0" 2806 | 2807 | parse-json@^2.2.0: 2808 | version "2.2.0" 2809 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2810 | dependencies: 2811 | error-ex "^1.2.0" 2812 | 2813 | parse5@^1.5.1: 2814 | version "1.5.1" 2815 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2816 | 2817 | path-exists@^2.0.0: 2818 | version "2.1.0" 2819 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2820 | dependencies: 2821 | pinkie-promise "^2.0.0" 2822 | 2823 | path-exists@^3.0.0: 2824 | version "3.0.0" 2825 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2826 | 2827 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2828 | version "1.0.1" 2829 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2830 | 2831 | path-key@^2.0.0: 2832 | version "2.0.1" 2833 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2834 | 2835 | path-parse@^1.0.5: 2836 | version "1.0.5" 2837 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2838 | 2839 | path-type@^1.0.0: 2840 | version "1.1.0" 2841 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2842 | dependencies: 2843 | graceful-fs "^4.1.2" 2844 | pify "^2.0.0" 2845 | pinkie-promise "^2.0.0" 2846 | 2847 | path-type@^2.0.0: 2848 | version "2.0.0" 2849 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2850 | dependencies: 2851 | pify "^2.0.0" 2852 | 2853 | performance-now@^0.2.0: 2854 | version "0.2.0" 2855 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2856 | 2857 | pify@^2.0.0: 2858 | version "2.3.0" 2859 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2860 | 2861 | pify@^3.0.0: 2862 | version "3.0.0" 2863 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 2864 | 2865 | pinkie-promise@^2.0.0: 2866 | version "2.0.1" 2867 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2868 | dependencies: 2869 | pinkie "^2.0.0" 2870 | 2871 | pinkie@^2.0.0: 2872 | version "2.0.4" 2873 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2874 | 2875 | prelude-ls@~1.1.2: 2876 | version "1.1.2" 2877 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2878 | 2879 | preserve@^0.2.0: 2880 | version "0.2.0" 2881 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2882 | 2883 | prettier@^1.6.1: 2884 | version "1.6.1" 2885 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.6.1.tgz#850f411a3116226193e32ea5acfc21c0f9a76d7d" 2886 | 2887 | pretty-format@^20.0.3: 2888 | version "20.0.3" 2889 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 2890 | dependencies: 2891 | ansi-regex "^2.1.1" 2892 | ansi-styles "^3.0.0" 2893 | 2894 | pretty-format@^21.1.0: 2895 | version "21.1.0" 2896 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.1.0.tgz#557428254323832ee8b7c971cb613442bea67f61" 2897 | dependencies: 2898 | ansi-regex "^3.0.0" 2899 | ansi-styles "^3.2.0" 2900 | 2901 | private@^0.1.6, private@^0.1.7: 2902 | version "0.1.7" 2903 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2904 | 2905 | process-nextick-args@~1.0.6: 2906 | version "1.0.7" 2907 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2908 | 2909 | prr@~0.0.0: 2910 | version "0.0.0" 2911 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2912 | 2913 | pseudomap@^1.0.2: 2914 | version "1.0.2" 2915 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2916 | 2917 | punycode@^1.4.1: 2918 | version "1.4.1" 2919 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2920 | 2921 | qs@~6.4.0: 2922 | version "6.4.0" 2923 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2924 | 2925 | randomatic@^1.1.3: 2926 | version "1.1.6" 2927 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2928 | dependencies: 2929 | is-number "^2.0.2" 2930 | kind-of "^3.0.2" 2931 | 2932 | rc@^1.1.7: 2933 | version "1.2.1" 2934 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2935 | dependencies: 2936 | deep-extend "~0.4.0" 2937 | ini "~1.3.0" 2938 | minimist "^1.2.0" 2939 | strip-json-comments "~2.0.1" 2940 | 2941 | read-pkg-up@^1.0.1: 2942 | version "1.0.1" 2943 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2944 | dependencies: 2945 | find-up "^1.0.0" 2946 | read-pkg "^1.0.0" 2947 | 2948 | read-pkg-up@^2.0.0: 2949 | version "2.0.0" 2950 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2951 | dependencies: 2952 | find-up "^2.0.0" 2953 | read-pkg "^2.0.0" 2954 | 2955 | read-pkg@^1.0.0: 2956 | version "1.1.0" 2957 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2958 | dependencies: 2959 | load-json-file "^1.0.0" 2960 | normalize-package-data "^2.3.2" 2961 | path-type "^1.0.0" 2962 | 2963 | read-pkg@^2.0.0: 2964 | version "2.0.0" 2965 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2966 | dependencies: 2967 | load-json-file "^2.0.0" 2968 | normalize-package-data "^2.3.2" 2969 | path-type "^2.0.0" 2970 | 2971 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 2972 | version "2.2.9" 2973 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.9.tgz#cf78ec6f4a6d1eb43d26488cac97f042e74b7fc8" 2974 | dependencies: 2975 | buffer-shims "~1.0.0" 2976 | core-util-is "~1.0.0" 2977 | inherits "~2.0.1" 2978 | isarray "~1.0.0" 2979 | process-nextick-args "~1.0.6" 2980 | string_decoder "~1.0.0" 2981 | util-deprecate "~1.0.1" 2982 | 2983 | readdirp@^2.0.0: 2984 | version "2.1.0" 2985 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2986 | dependencies: 2987 | graceful-fs "^4.1.2" 2988 | minimatch "^3.0.2" 2989 | readable-stream "^2.0.2" 2990 | set-immediate-shim "^1.0.1" 2991 | 2992 | regenerate@^1.2.1: 2993 | version "1.3.2" 2994 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2995 | 2996 | regenerator-runtime@^0.10.0: 2997 | version "0.10.4" 2998 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.4.tgz#74cb6598d3ba2eb18694e968a40e2b3b4df9cf93" 2999 | 3000 | regenerator-runtime@^0.10.5: 3001 | version "0.10.5" 3002 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3003 | 3004 | regenerator-runtime@^0.11.0: 3005 | version "0.11.0" 3006 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 3007 | 3008 | regenerator-transform@0.9.11: 3009 | version "0.9.11" 3010 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 3011 | dependencies: 3012 | babel-runtime "^6.18.0" 3013 | babel-types "^6.19.0" 3014 | private "^0.1.6" 3015 | 3016 | regex-cache@^0.4.2: 3017 | version "0.4.3" 3018 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3019 | dependencies: 3020 | is-equal-shallow "^0.1.3" 3021 | is-primitive "^2.0.0" 3022 | 3023 | regexpu-core@^2.0.0: 3024 | version "2.0.0" 3025 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3026 | dependencies: 3027 | regenerate "^1.2.1" 3028 | regjsgen "^0.2.0" 3029 | regjsparser "^0.1.4" 3030 | 3031 | regjsgen@^0.2.0: 3032 | version "0.2.0" 3033 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3034 | 3035 | regjsparser@^0.1.4: 3036 | version "0.1.5" 3037 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3038 | dependencies: 3039 | jsesc "~0.5.0" 3040 | 3041 | remove-trailing-separator@^1.0.1: 3042 | version "1.0.1" 3043 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3044 | 3045 | repeat-element@^1.1.2: 3046 | version "1.1.2" 3047 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3048 | 3049 | repeat-string@^1.5.2: 3050 | version "1.6.1" 3051 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3052 | 3053 | repeating@^2.0.0: 3054 | version "2.0.1" 3055 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3056 | dependencies: 3057 | is-finite "^1.0.0" 3058 | 3059 | request@^2.79.0, request@^2.81.0: 3060 | version "2.81.0" 3061 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3062 | dependencies: 3063 | aws-sign2 "~0.6.0" 3064 | aws4 "^1.2.1" 3065 | caseless "~0.12.0" 3066 | combined-stream "~1.0.5" 3067 | extend "~3.0.0" 3068 | forever-agent "~0.6.1" 3069 | form-data "~2.1.1" 3070 | har-validator "~4.2.1" 3071 | hawk "~3.1.3" 3072 | http-signature "~1.1.0" 3073 | is-typedarray "~1.0.0" 3074 | isstream "~0.1.2" 3075 | json-stringify-safe "~5.0.1" 3076 | mime-types "~2.1.7" 3077 | oauth-sign "~0.8.1" 3078 | performance-now "^0.2.0" 3079 | qs "~6.4.0" 3080 | safe-buffer "^5.0.1" 3081 | stringstream "~0.0.4" 3082 | tough-cookie "~2.3.0" 3083 | tunnel-agent "^0.6.0" 3084 | uuid "^3.0.0" 3085 | 3086 | require-directory@^2.1.1: 3087 | version "2.1.1" 3088 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3089 | 3090 | require-from-string@^1.1.0: 3091 | version "1.2.1" 3092 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 3093 | 3094 | require-main-filename@^1.0.1: 3095 | version "1.0.1" 3096 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3097 | 3098 | resolve@1.1.7: 3099 | version "1.1.7" 3100 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3101 | 3102 | resolve@~1.4.0: 3103 | version "1.4.0" 3104 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 3105 | dependencies: 3106 | path-parse "^1.0.5" 3107 | 3108 | restore-cursor@^1.0.1: 3109 | version "1.0.1" 3110 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3111 | dependencies: 3112 | exit-hook "^1.0.0" 3113 | onetime "^1.0.0" 3114 | 3115 | resumer@~0.0.0: 3116 | version "0.0.0" 3117 | resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" 3118 | dependencies: 3119 | through "~2.3.4" 3120 | 3121 | right-align@^0.1.1: 3122 | version "0.1.3" 3123 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3124 | dependencies: 3125 | align-text "^0.1.1" 3126 | 3127 | rimraf@2, rimraf@^2.5.1: 3128 | version "2.6.1" 3129 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3130 | dependencies: 3131 | glob "^7.0.5" 3132 | 3133 | rimraf@^2.6.1: 3134 | version "2.6.2" 3135 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3136 | dependencies: 3137 | glob "^7.0.5" 3138 | 3139 | rxjs@^5.0.0-beta.11: 3140 | version "5.4.3" 3141 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.3.tgz#0758cddee6033d68e0fd53676f0f3596ce3d483f" 3142 | dependencies: 3143 | symbol-observable "^1.0.1" 3144 | 3145 | safe-buffer@^5.0.1: 3146 | version "5.0.1" 3147 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3148 | 3149 | sane@^2.0.0: 3150 | version "2.0.0" 3151 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.0.0.tgz#99cb79f21f4a53a69d4d0cd957c2db04024b8eb2" 3152 | dependencies: 3153 | anymatch "^1.3.0" 3154 | exec-sh "^0.2.0" 3155 | fb-watchman "^2.0.0" 3156 | minimatch "^3.0.2" 3157 | minimist "^1.1.1" 3158 | walker "~1.0.5" 3159 | watch "~0.10.0" 3160 | optionalDependencies: 3161 | fsevents "^1.1.1" 3162 | 3163 | sax@^1.2.1: 3164 | version "1.2.4" 3165 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3166 | 3167 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3168 | version "5.3.0" 3169 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3170 | 3171 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3172 | version "2.0.0" 3173 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3174 | 3175 | set-immediate-shim@^1.0.1: 3176 | version "1.0.1" 3177 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3178 | 3179 | shebang-command@^1.2.0: 3180 | version "1.2.0" 3181 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3182 | dependencies: 3183 | shebang-regex "^1.0.0" 3184 | 3185 | shebang-regex@^1.0.0: 3186 | version "1.0.0" 3187 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3188 | 3189 | shellwords@^0.1.0: 3190 | version "0.1.1" 3191 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3192 | 3193 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3194 | version "3.0.2" 3195 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3196 | 3197 | slash@^1.0.0: 3198 | version "1.0.0" 3199 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3200 | 3201 | slice-ansi@0.0.4: 3202 | version "0.0.4" 3203 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3204 | 3205 | sntp@1.x.x: 3206 | version "1.0.9" 3207 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3208 | dependencies: 3209 | hoek "2.x.x" 3210 | 3211 | source-map-support@^0.4.15: 3212 | version "0.4.18" 3213 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3214 | dependencies: 3215 | source-map "^0.5.6" 3216 | 3217 | source-map-support@^0.4.2: 3218 | version "0.4.14" 3219 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 3220 | dependencies: 3221 | source-map "^0.5.6" 3222 | 3223 | source-map@^0.4.4: 3224 | version "0.4.4" 3225 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3226 | dependencies: 3227 | amdefine ">=0.0.4" 3228 | 3229 | source-map@^0.5.0, source-map@^0.5.6: 3230 | version "0.5.6" 3231 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3232 | 3233 | source-map@^0.5.3, source-map@~0.5.1, source-map@~0.5.6: 3234 | version "0.5.7" 3235 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3236 | 3237 | spdx-correct@~1.0.0: 3238 | version "1.0.2" 3239 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3240 | dependencies: 3241 | spdx-license-ids "^1.0.2" 3242 | 3243 | spdx-expression-parse@~1.0.0: 3244 | version "1.0.4" 3245 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3246 | 3247 | spdx-license-ids@^1.0.2: 3248 | version "1.2.2" 3249 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3250 | 3251 | sprintf-js@~1.0.2: 3252 | version "1.0.3" 3253 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3254 | 3255 | sshpk@^1.7.0: 3256 | version "1.13.0" 3257 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c" 3258 | dependencies: 3259 | asn1 "~0.2.3" 3260 | assert-plus "^1.0.0" 3261 | dashdash "^1.12.0" 3262 | getpass "^0.1.1" 3263 | optionalDependencies: 3264 | bcrypt-pbkdf "^1.0.0" 3265 | ecc-jsbn "~0.1.1" 3266 | jodid25519 "^1.0.0" 3267 | jsbn "~0.1.0" 3268 | tweetnacl "~0.14.0" 3269 | 3270 | staged-git-files@0.0.4: 3271 | version "0.0.4" 3272 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 3273 | 3274 | stream-to-observable@^0.1.0: 3275 | version "0.1.0" 3276 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 3277 | 3278 | string-length@^2.0.0: 3279 | version "2.0.0" 3280 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3281 | dependencies: 3282 | astral-regex "^1.0.0" 3283 | strip-ansi "^4.0.0" 3284 | 3285 | string-width@^1.0.1, string-width@^1.0.2: 3286 | version "1.0.2" 3287 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3288 | dependencies: 3289 | code-point-at "^1.0.0" 3290 | is-fullwidth-code-point "^1.0.0" 3291 | strip-ansi "^3.0.0" 3292 | 3293 | string-width@^2.0.0: 3294 | version "2.1.1" 3295 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3296 | dependencies: 3297 | is-fullwidth-code-point "^2.0.0" 3298 | strip-ansi "^4.0.0" 3299 | 3300 | string.prototype.trim@~1.1.2: 3301 | version "1.1.2" 3302 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" 3303 | dependencies: 3304 | define-properties "^1.1.2" 3305 | es-abstract "^1.5.0" 3306 | function-bind "^1.0.2" 3307 | 3308 | string_decoder@~1.0.0: 3309 | version "1.0.0" 3310 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.0.tgz#f06f41157b664d86069f84bdbdc9b0d8ab281667" 3311 | dependencies: 3312 | buffer-shims "~1.0.0" 3313 | 3314 | stringify-object@^3.2.0: 3315 | version "3.2.0" 3316 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.0.tgz#94370a135e41bc048358813bf99481f1315c6aa6" 3317 | dependencies: 3318 | get-own-enumerable-property-symbols "^1.0.1" 3319 | is-obj "^1.0.1" 3320 | is-regexp "^1.0.0" 3321 | 3322 | stringstream@~0.0.4: 3323 | version "0.0.5" 3324 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3325 | 3326 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3327 | version "3.0.1" 3328 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3329 | dependencies: 3330 | ansi-regex "^2.0.0" 3331 | 3332 | strip-ansi@^4.0.0: 3333 | version "4.0.0" 3334 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3335 | dependencies: 3336 | ansi-regex "^3.0.0" 3337 | 3338 | strip-bom@3.0.0, strip-bom@^3.0.0: 3339 | version "3.0.0" 3340 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3341 | 3342 | strip-bom@^2.0.0: 3343 | version "2.0.0" 3344 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3345 | dependencies: 3346 | is-utf8 "^0.2.0" 3347 | 3348 | strip-eof@^1.0.0: 3349 | version "1.0.0" 3350 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3351 | 3352 | strip-indent@^2.0.0: 3353 | version "2.0.0" 3354 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 3355 | 3356 | strip-json-comments@~2.0.1: 3357 | version "2.0.1" 3358 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3359 | 3360 | supports-color@^2.0.0: 3361 | version "2.0.0" 3362 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3363 | 3364 | supports-color@^3.1.2: 3365 | version "3.2.3" 3366 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3367 | dependencies: 3368 | has-flag "^1.0.0" 3369 | 3370 | supports-color@^4.0.0: 3371 | version "4.4.0" 3372 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 3373 | dependencies: 3374 | has-flag "^2.0.0" 3375 | 3376 | symbol-observable@^1.0.1: 3377 | version "1.0.4" 3378 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3379 | 3380 | symbol-tree@^3.2.1: 3381 | version "3.2.2" 3382 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3383 | 3384 | tape@^4.6.3: 3385 | version "4.8.0" 3386 | resolved "https://registry.yarnpkg.com/tape/-/tape-4.8.0.tgz#f6a9fec41cc50a1de50fa33603ab580991f6068e" 3387 | dependencies: 3388 | deep-equal "~1.0.1" 3389 | defined "~1.0.0" 3390 | for-each "~0.3.2" 3391 | function-bind "~1.1.0" 3392 | glob "~7.1.2" 3393 | has "~1.0.1" 3394 | inherits "~2.0.3" 3395 | minimist "~1.2.0" 3396 | object-inspect "~1.3.0" 3397 | resolve "~1.4.0" 3398 | resumer "~0.0.0" 3399 | string.prototype.trim "~1.1.2" 3400 | through "~2.3.8" 3401 | 3402 | tar-pack@^3.4.0: 3403 | version "3.4.0" 3404 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3405 | dependencies: 3406 | debug "^2.2.0" 3407 | fstream "^1.0.10" 3408 | fstream-ignore "^1.0.5" 3409 | once "^1.3.3" 3410 | readable-stream "^2.1.4" 3411 | rimraf "^2.5.1" 3412 | tar "^2.2.1" 3413 | uid-number "^0.0.6" 3414 | 3415 | tar@^2.2.1: 3416 | version "2.2.1" 3417 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3418 | dependencies: 3419 | block-stream "*" 3420 | fstream "^1.0.2" 3421 | inherits "2" 3422 | 3423 | test-exclude@^4.0.3: 3424 | version "4.0.3" 3425 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.0.3.tgz#86a13ce3effcc60e6c90403cf31a27a60ac6c4e7" 3426 | dependencies: 3427 | arrify "^1.0.1" 3428 | micromatch "^2.3.11" 3429 | object-assign "^4.1.0" 3430 | read-pkg-up "^1.0.1" 3431 | require-main-filename "^1.0.1" 3432 | 3433 | throat@^4.0.0: 3434 | version "4.1.0" 3435 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3436 | 3437 | through@~2.3.4, through@~2.3.8: 3438 | version "2.3.8" 3439 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3440 | 3441 | tmpl@1.0.x: 3442 | version "1.0.4" 3443 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3444 | 3445 | to-fast-properties@^1.0.1: 3446 | version "1.0.2" 3447 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3448 | 3449 | to-fast-properties@^1.0.3: 3450 | version "1.0.3" 3451 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3452 | 3453 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3454 | version "2.3.2" 3455 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3456 | dependencies: 3457 | punycode "^1.4.1" 3458 | 3459 | tr46@~0.0.3: 3460 | version "0.0.3" 3461 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3462 | 3463 | trim-right@^1.0.1: 3464 | version "1.0.1" 3465 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3466 | 3467 | tunnel-agent@^0.6.0: 3468 | version "0.6.0" 3469 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3470 | dependencies: 3471 | safe-buffer "^5.0.1" 3472 | 3473 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3474 | version "0.14.5" 3475 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3476 | 3477 | type-check@~0.3.2: 3478 | version "0.3.2" 3479 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3480 | dependencies: 3481 | prelude-ls "~1.1.2" 3482 | 3483 | uglify-js@^2.6: 3484 | version "2.8.29" 3485 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3486 | dependencies: 3487 | source-map "~0.5.1" 3488 | yargs "~3.10.0" 3489 | optionalDependencies: 3490 | uglify-to-browserify "~1.0.0" 3491 | 3492 | uglify-to-browserify@~1.0.0: 3493 | version "1.0.2" 3494 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3495 | 3496 | uid-number@^0.0.6: 3497 | version "0.0.6" 3498 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3499 | 3500 | user-home@^1.1.1: 3501 | version "1.1.1" 3502 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3503 | 3504 | util-deprecate@~1.0.1: 3505 | version "1.0.2" 3506 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3507 | 3508 | uuid@^3.0.0: 3509 | version "3.0.1" 3510 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3511 | 3512 | v8flags@^2.1.1: 3513 | version "2.1.1" 3514 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 3515 | dependencies: 3516 | user-home "^1.1.1" 3517 | 3518 | validate-npm-package-license@^3.0.1: 3519 | version "3.0.1" 3520 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 3521 | dependencies: 3522 | spdx-correct "~1.0.0" 3523 | spdx-expression-parse "~1.0.0" 3524 | 3525 | verror@1.3.6: 3526 | version "1.3.6" 3527 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3528 | dependencies: 3529 | extsprintf "1.0.2" 3530 | 3531 | walker@~1.0.5: 3532 | version "1.0.7" 3533 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3534 | dependencies: 3535 | makeerror "1.0.x" 3536 | 3537 | watch@~0.10.0: 3538 | version "0.10.0" 3539 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 3540 | 3541 | webidl-conversions@^3.0.0: 3542 | version "3.0.1" 3543 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3544 | 3545 | webidl-conversions@^4.0.0: 3546 | version "4.0.2" 3547 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3548 | 3549 | whatwg-encoding@^1.0.1: 3550 | version "1.0.1" 3551 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3552 | dependencies: 3553 | iconv-lite "0.4.13" 3554 | 3555 | whatwg-url@^4.3.0: 3556 | version "4.8.0" 3557 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 3558 | dependencies: 3559 | tr46 "~0.0.3" 3560 | webidl-conversions "^3.0.0" 3561 | 3562 | which-module@^2.0.0: 3563 | version "2.0.0" 3564 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3565 | 3566 | which@^1.2.10, which@^1.2.12, which@^1.2.9: 3567 | version "1.3.0" 3568 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3569 | dependencies: 3570 | isexe "^2.0.0" 3571 | 3572 | wide-align@^1.1.0: 3573 | version "1.1.2" 3574 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3575 | dependencies: 3576 | string-width "^1.0.2" 3577 | 3578 | window-size@0.1.0: 3579 | version "0.1.0" 3580 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3581 | 3582 | wordwrap@0.0.2: 3583 | version "0.0.2" 3584 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3585 | 3586 | wordwrap@~0.0.2: 3587 | version "0.0.3" 3588 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3589 | 3590 | wordwrap@~1.0.0: 3591 | version "1.0.0" 3592 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3593 | 3594 | worker-farm@^1.3.1: 3595 | version "1.5.0" 3596 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 3597 | dependencies: 3598 | errno "^0.1.4" 3599 | xtend "^4.0.1" 3600 | 3601 | wrap-ansi@^2.0.0: 3602 | version "2.1.0" 3603 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3604 | dependencies: 3605 | string-width "^1.0.1" 3606 | strip-ansi "^3.0.1" 3607 | 3608 | wrappy@1: 3609 | version "1.0.2" 3610 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3611 | 3612 | write-file-atomic@^2.1.0: 3613 | version "2.3.0" 3614 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3615 | dependencies: 3616 | graceful-fs "^4.1.11" 3617 | imurmurhash "^0.1.4" 3618 | signal-exit "^3.0.2" 3619 | 3620 | xml-name-validator@^2.0.1: 3621 | version "2.0.1" 3622 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3623 | 3624 | xtend@^4.0.1: 3625 | version "4.0.1" 3626 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3627 | 3628 | y18n@^3.2.1: 3629 | version "3.2.1" 3630 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3631 | 3632 | yallist@^2.1.2: 3633 | version "2.1.2" 3634 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3635 | 3636 | yargs-parser@^7.0.0: 3637 | version "7.0.0" 3638 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3639 | dependencies: 3640 | camelcase "^4.1.0" 3641 | 3642 | yargs@^9.0.0: 3643 | version "9.0.0" 3644 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.0.tgz#efe5b1ad3f94bdc20423411b90628eeec0b25f3c" 3645 | dependencies: 3646 | camelcase "^4.1.0" 3647 | cliui "^3.2.0" 3648 | decamelize "^1.1.1" 3649 | get-caller-file "^1.0.1" 3650 | os-locale "^2.0.0" 3651 | read-pkg-up "^2.0.0" 3652 | require-directory "^2.1.1" 3653 | require-main-filename "^1.0.1" 3654 | set-blocking "^2.0.0" 3655 | string-width "^2.0.0" 3656 | which-module "^2.0.0" 3657 | y18n "^3.2.1" 3658 | yargs-parser "^7.0.0" 3659 | 3660 | yargs@~3.10.0: 3661 | version "3.10.0" 3662 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3663 | dependencies: 3664 | camelcase "^1.0.2" 3665 | cliui "^2.1.0" 3666 | decamelize "^1.0.0" 3667 | window-size "0.1.0" 3668 | --------------------------------------------------------------------------------