├── .gitignore ├── .travis.yml ├── source ├── images │ ├── claire-3-off.png │ ├── claire-3-on.png │ ├── claire-3-on-h2.png │ ├── claire-3-on-rg.png │ ├── claire-3-on@2x.png │ ├── claire-3-off-h2.png │ ├── claire-3-off-ipv6.png │ ├── claire-3-off@2x.png │ ├── claire-3-on-h2-rg.png │ ├── claire-3-on-h2@2x.png │ ├── claire-3-on-ipv6.png │ ├── claire-3-on-rg@2x.png │ ├── claire-3-popup-on.png │ ├── orange-cloud-128.png │ ├── orange-cloud-16.png │ ├── orange-cloud-48.png │ ├── claire-3-off-h2@2x.png │ ├── claire-3-on-h2-ipv6.png │ ├── claire-3-on-ipv6-rg.png │ ├── claire-3-on-ipv6@2x.png │ ├── claire-3-popup-off.png │ ├── claire-3-off-h2-ipv6.png │ ├── claire-3-off-ipv6@2x.png │ ├── claire-3-on-h2-ipv6-rg.png │ ├── claire-3-on-h2-ipv6@2x.png │ ├── claire-3-on-h2-rg@2x.png │ ├── claire-3-on-ipv6-rg@2x.png │ ├── claire-3-popup-off-h2.png │ ├── claire-3-popup-on-h2.png │ ├── claire-3-popup-on-ipv6.png │ ├── claire-3-popup-on-rg.png │ ├── claire-3-off-h2-ipv6@2x.png │ ├── claire-3-popup-off-ipv6.png │ ├── claire-3-popup-on-h2-rg.png │ ├── claire-3-on-h2-ipv6-rg@2x.png │ ├── claire-3-popup-off-h2-ipv6.png │ ├── claire-3-popup-on-h2-ipv6.png │ ├── claire-3-popup-on-ipv6-rg.png │ └── claire-3-popup-on-h2-ipv6-rg.png ├── contentscript.js ├── options.html ├── manifest.json ├── options.js ├── style.css ├── options.test.js ├── claire.js ├── page-action-popup.js ├── page-action-popup.html ├── request.test.js └── request.js ├── resources └── chrome-promo │ ├── large.png │ └── small.png ├── webpack.config.js ├── README.markdown ├── package.json ├── LICENSE.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | coverage/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | node_js: 4 | - stable 5 | -------------------------------------------------------------------------------- /source/images/claire-3-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-off.png -------------------------------------------------------------------------------- /source/images/claire-3-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on.png -------------------------------------------------------------------------------- /resources/chrome-promo/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/resources/chrome-promo/large.png -------------------------------------------------------------------------------- /resources/chrome-promo/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/resources/chrome-promo/small.png -------------------------------------------------------------------------------- /source/images/claire-3-on-h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-h2.png -------------------------------------------------------------------------------- /source/images/claire-3-on-rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-rg.png -------------------------------------------------------------------------------- /source/images/claire-3-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-off-h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-off-h2.png -------------------------------------------------------------------------------- /source/images/claire-3-off-ipv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-off-ipv6.png -------------------------------------------------------------------------------- /source/images/claire-3-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-off@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-on-h2-rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-h2-rg.png -------------------------------------------------------------------------------- /source/images/claire-3-on-h2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-h2@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-on-ipv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-ipv6.png -------------------------------------------------------------------------------- /source/images/claire-3-on-rg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-rg@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-on.png -------------------------------------------------------------------------------- /source/images/orange-cloud-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/orange-cloud-128.png -------------------------------------------------------------------------------- /source/images/orange-cloud-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/orange-cloud-16.png -------------------------------------------------------------------------------- /source/images/orange-cloud-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/orange-cloud-48.png -------------------------------------------------------------------------------- /source/images/claire-3-off-h2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-off-h2@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-on-h2-ipv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-h2-ipv6.png -------------------------------------------------------------------------------- /source/images/claire-3-on-ipv6-rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-ipv6-rg.png -------------------------------------------------------------------------------- /source/images/claire-3-on-ipv6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-ipv6@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-off.png -------------------------------------------------------------------------------- /source/images/claire-3-off-h2-ipv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-off-h2-ipv6.png -------------------------------------------------------------------------------- /source/images/claire-3-off-ipv6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-off-ipv6@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-on-h2-ipv6-rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-h2-ipv6-rg.png -------------------------------------------------------------------------------- /source/images/claire-3-on-h2-ipv6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-h2-ipv6@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-on-h2-rg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-h2-rg@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-on-ipv6-rg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-ipv6-rg@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-off-h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-off-h2.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-on-h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-on-h2.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-on-ipv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-on-ipv6.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-on-rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-on-rg.png -------------------------------------------------------------------------------- /source/images/claire-3-off-h2-ipv6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-off-h2-ipv6@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-off-ipv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-off-ipv6.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-on-h2-rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-on-h2-rg.png -------------------------------------------------------------------------------- /source/images/claire-3-on-h2-ipv6-rg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-on-h2-ipv6-rg@2x.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-off-h2-ipv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-off-h2-ipv6.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-on-h2-ipv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-on-h2-ipv6.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-on-ipv6-rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-on-ipv6-rg.png -------------------------------------------------------------------------------- /source/images/claire-3-popup-on-h2-ipv6-rg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/claire/master/source/images/claire-3-popup-on-h2-ipv6-rg.png -------------------------------------------------------------------------------- /source/contentscript.js: -------------------------------------------------------------------------------- 1 | // determineConnectionInfo returns the protocol used to connect to the first hop 2 | // for the first navigation event available. 3 | function determineConnectionInfo() { 4 | if (performance && performance.getEntriesByType) { 5 | let entry = performance.getEntriesByType('navigation')[0]; 6 | let proto = entry && entry.nextHopProtocol; 7 | 8 | return { 9 | type: proto 10 | }; 11 | } 12 | } 13 | 14 | chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) { 15 | if (request.action === 'check_connection_info') { 16 | sendResponse(determineConnectionInfo()); 17 | } 18 | }); 19 | 20 | // when executed, notify the extension about the connection info 21 | chrome.runtime.sendMessage(determineConnectionInfo(), function () { 22 | }); 23 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var path = require('path'); 3 | var ExtractTextPlugin = require('extract-text-webpack-plugin'); 4 | 5 | module.exports = { 6 | entry: { 7 | background: './source/claire.js', 8 | contentscript: './source/contentscript.js', 9 | options: './source/options.js', 10 | popup: './source/page-action-popup.js' 11 | }, 12 | output: { 13 | path: path.resolve(__dirname, 'dist'), 14 | filename: '[name].js' 15 | }, 16 | module: { 17 | rules: [{ 18 | test: /\.css?$/, 19 | use: ExtractTextPlugin.extract({ 20 | fallback: 'style-loader', 21 | use: [{ 22 | loader: 'css-loader', 23 | options: { 24 | minimize: true 25 | } 26 | }] 27 | }) 28 | }, { 29 | test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/, 30 | loader: 'url-loader', 31 | options: { 32 | limit: 10000 33 | } 34 | }] 35 | }, 36 | plugins: [ 37 | new ExtractTextPlugin({ 38 | filename: '[name].css' 39 | }) 40 | ] 41 | }; 42 | -------------------------------------------------------------------------------- /source/options.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Claire Options 7 | 8 | 9 | 10 |
11 |
12 |

Claire Options

13 |
14 |
15 |
16 | 19 | 22 |
23 |
24 |
25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /source/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Claire", 3 | "description": "Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare", 4 | "version": "0.11.1", 5 | "manifest_version": 2, 6 | "icons": { 7 | "128": "images/orange-cloud-128.png", 8 | "48": "images/orange-cloud-48.png", 9 | "16": "images/orange-cloud-16.png" 10 | }, 11 | "permissions": [ 12 | "tabs", 13 | "clipboardWrite", 14 | "webNavigation", 15 | "webRequest", 16 | "http://*/", 17 | "https://*/" 18 | ], 19 | "background": { 20 | "scripts": ["background.js"], 21 | "persistent": true 22 | }, 23 | "page_action": { 24 | "browser_style": true, 25 | "default_title": "Cloudflare", 26 | "default_popup": "popup.html" 27 | }, 28 | "content_scripts": [{ 29 | "matches": [""], 30 | "js" : ["contentscript.js"], 31 | "run_at": "document_start" 32 | }], 33 | "options_ui": { 34 | "page": "options.html", 35 | "open_in_tab": true 36 | }, 37 | "content_security_policy": "object-src 'self'; script-src 'self';" 38 | } 39 | -------------------------------------------------------------------------------- /source/options.js: -------------------------------------------------------------------------------- 1 | function run() { 2 | 'use strict'; 3 | var debugLogCheckbox = document.getElementById('debug_log_checkbox'); 4 | 5 | // check current debug state flag and change the checkbox accordingly 6 | debugLogCheckbox.checked = localStorage.debug_logging === 'yes'; 7 | 8 | // attach a click event to the debug log preference checkbox 9 | var debugCheckboxClicked = function (e) { 10 | localStorage.debug_logging = e.target.checked ? 'yes' : 'no'; // eslint-disable-line camelcase 11 | }; 12 | debugLogCheckbox.onclick = debugCheckboxClicked; 13 | 14 | var claireGuideCheckbox = document.getElementById('claire_guide'); 15 | 16 | claireGuideCheckbox.checked = localStorage.hide_guide === 'yes'; 17 | 18 | var claireGuideClicked = function (e) { 19 | localStorage.hide_guide = e.target.checked ? 'yes' : 'no'; // eslint-disable-line camelcase 20 | }; 21 | 22 | claireGuideCheckbox.onclick = claireGuideClicked; 23 | } 24 | 25 | module.exports.run = run; 26 | 27 | if (require.main === module) { 28 | var style; // eslint-disable-line no-unused-vars 29 | style = require('purecss/build/pure-min.css'); 30 | style = require('purecss/build/grids-responsive-min.css'); 31 | style = require('./style.css'); 32 | 33 | run(); 34 | } 35 | -------------------------------------------------------------------------------- /source/style.css: -------------------------------------------------------------------------------- 1 | /* Base Rules */ 2 | body { 3 | background: #ebebeb; 4 | color: #333; 5 | min-width: 250px; 6 | } 7 | 8 | ::selection { 9 | background: rgba(255,121,0,0.2); 10 | } 11 | 12 | a { 13 | color: #2f7bbf; 14 | outline: none; 15 | text-decoration: none; 16 | } 17 | 18 | a:focus { 19 | color: #62a1d8; 20 | } 21 | 22 | /* Layout Rules */ 23 | 24 | /* Module Rules */ 25 | .card { 26 | margin-top: 0.5em; 27 | margin-bottom: 0.5em; 28 | margin-right: auto; 29 | margin-left: auto; 30 | background-color: #fff; 31 | padding: 1em; 32 | border: 1px solid #dedede; 33 | width: 85%; 34 | } 35 | 36 | .card-header { 37 | margin: 0; 38 | } 39 | 40 | .card-body { 41 | } 42 | 43 | .card-title { 44 | margin-top: 0; 45 | margin-bottom: 0.5em; 46 | margin-right: auto; 47 | margin-left: auto; 48 | } 49 | 50 | /* Input/Copy Rules */ 51 | .is-monospaced { 52 | font-family: monospace; 53 | } 54 | 55 | button.octicon { 56 | font-size: 0.99em; 57 | } 58 | 59 | .copy-button { 60 | height: 25px!important; 61 | border-radius: 0px 2px 2px 0px!important; 62 | } 63 | 64 | .copy-input { 65 | height: 25px!important; 66 | border-radius: 4px 0px 0px 4px!important; 67 | } 68 | 69 | /* Hack */ 70 | .claire-bg { 71 | background-color: #fff; 72 | } 73 | -------------------------------------------------------------------------------- /source/options.test.js: -------------------------------------------------------------------------------- 1 | const $ = require('jquery'); 2 | const html = ` 3 | 4 | 5 | `; 6 | 7 | test('update localStorage', () => { 8 | global.localStorage = {}; 9 | document.body.innerHTML = html; 10 | const options = require('./options'); 11 | 12 | options.run(); 13 | 14 | expect($('#claire_guide').click().prop('checked')).toBe(true); 15 | expect(localStorage.hide_guide).toBe('yes'); 16 | 17 | expect($('#debug_log_checkbox').click().prop('checked')).toBe(true); 18 | expect(localStorage.debug_logging).toBe('yes'); 19 | 20 | expect($('#claire_guide').click().prop('checked')).toBe(false); 21 | expect(localStorage.hide_guide).toBe('no'); 22 | 23 | expect($('#debug_log_checkbox').click().prop('checked')).toBe(false); 24 | expect(localStorage.debug_logging).toBe('no'); 25 | }); 26 | 27 | test('renders from localStorage', () => { 28 | global.localStorage = { 29 | hide_guide: 'yes', // eslint-disable-line camelcase 30 | debug_logging: 'no' // eslint-disable-line camelcase 31 | }; 32 | document.body.innerHTML = html; 33 | const options = require('./options'); 34 | 35 | options.run(); 36 | 37 | expect($('#claire_guide').prop('checked')).toBe(true); 38 | expect($('#debug_log_checkbox').prop('checked')).toBe(false); 39 | }); 40 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- 1 | # Claire 2 | [![Chrome Web Store](https://img.shields.io/chrome-web-store/v/fgbpcgddpmjmamlibbaobboigaijnmkl.svg?style=flat-square)](https://chrome.google.com/webstore/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl) 3 | [![Firefox Add-ons](https://img.shields.io/amo/v/cloudflare-claire.svg?style=flat-square)](https://addons.mozilla.org/en-US/firefox/addon/cloudflare-claire/) 4 | 5 | Claire is a Google Chrome extension that turns orange if the current page is on the [Cloudflare](https://www.cloudflare.com) network. 6 | Clicking on the icon will show additional information about the page. 7 | 8 | ## Installation 9 | 10 | ### From Chrome Web Store 11 | 12 | Install the pre-packaged version of Claire from the Chrome Web Store 13 | 14 | [![Chrome Web Store](https://developer.chrome.com/webstore/images/ChromeWebStore_BadgeWBorder_v2_206x58.png)](https://chrome.google.com/webstore/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl) 15 | 16 | ### From Firefox Add-ons 17 | 18 | Install the pre-packaged version of Claire from the Firefox Add-ons site 19 | 20 | [![Firefox Add-ons](https://addons.cdn.mozilla.net/static/img/addons-buttons/AMO-button_1.png)](https://addons.mozilla.org/en-US/firefox/addon/cloudflare-claire/) 21 | 22 | ### From source 23 | 24 | To use the extension from source: 25 | 26 | * Clone this repository (`git clone https://github.com/cloudflare/claire.git`) 27 | * In the checked out directory, run `yarn install && yarn run build`. 28 | * Bring up the extensions page (Wrench icon -> Tools -> Extensions) 29 | * If Developer mode is not checked, check it and this will expose a few additional buttons 30 | * Click on the Load unpacked extension button and browse to the "dist" folder in the Claire repo folder 31 | 32 | ## Sharing & Contributing 33 | 34 | You can use this short URL to share Claire https://is.gd/claire 35 | 36 | Fork away and send pull requests 37 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "claire", 3 | "description": "Browser extension for Google Chrome that shows an icon in the address bar (page action) which turns orange when the site you are browsing is served by [CloudFlare](http://www.cloudflare.com).", 4 | "license": "BSD-3-Clause", 5 | "dependencies": {}, 6 | "devDependencies": { 7 | "css-loader": "^0.28.10", 8 | "eslint": "^3.13.1", 9 | "eslint-config-xo-space": "^0.15.0", 10 | "eslint-formatter-pretty": "^1.1.0", 11 | "eslint-plugin-jest": "^21.0.2", 12 | "eslint-plugin-no-use-extend-native": "^0.3.12", 13 | "eslint-plugin-promise": "^3.4.0", 14 | "eslint-plugin-unicorn": "^1.0.0", 15 | "extract-text-webpack-plugin": "^3.0.2", 16 | "file-loader": "^1.1.9", 17 | "jest": "^20.0.4", 18 | "jquery": "^3.3.1", 19 | "octicons": "^4.0.0", 20 | "purecss": "^1.0.0", 21 | "rimraf": "^2.5.4", 22 | "style-loader": "^0.20.2", 23 | "url-loader": "^0.6.2", 24 | "webpack": "^3.0.0" 25 | }, 26 | "scripts": { 27 | "build": "rimraf dist && webpack && cp -R source/{manifest.json,page-action-popup.html,options.html,images} dist/", 28 | "test": "eslint --format=node_modules/eslint-formatter-pretty --ignore-pattern source/airports.js source && jest" 29 | }, 30 | "repository": { 31 | "type": "git", 32 | "url": "git+https://github.com/cloudflare/claire.git" 33 | }, 34 | "bugs": { 35 | "url": "https://github.com/cloudflare/claire/issues" 36 | }, 37 | "homepage": "https://github.com/cloudflare/claire#readme", 38 | "eslintConfig": { 39 | "env": { 40 | "browser": true, 41 | "amd": true, 42 | "webextensions": true, 43 | "jest/globals": true 44 | }, 45 | "plugins": [ 46 | "no-use-extend-native", 47 | "promise", 48 | "unicorn", 49 | "jest" 50 | ], 51 | "extends": [ 52 | "xo-space", 53 | "plugin:jest/recommended" 54 | ] 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /source/claire.js: -------------------------------------------------------------------------------- 1 | // Claire 2 | /* global define */ 3 | define(['./request'], function (Request) { 4 | 'use strict'; 5 | 6 | // a mapping of tab IDs to window.requests 7 | window.requests = {}; 8 | 9 | // listen to all web requests and when request is completed, create a new 10 | // Request object that contains a bunch of information about the request 11 | var processCompletedRequest = function (details) { 12 | var request = new Request(details); 13 | window.requests[details.tabId] = request; 14 | request.logToConsole(); 15 | }; 16 | 17 | var filter = { 18 | urls: [''], 19 | types: ['main_frame'] 20 | }; 21 | 22 | var extraInfoSpec = ['responseHeaders']; 23 | 24 | // start listening to all web window.requests 25 | chrome.webRequest.onCompleted.addListener(processCompletedRequest, filter, extraInfoSpec); 26 | 27 | // when a tab is replaced, usually when a request started in a background tab 28 | // and then the tab is upgraded to a regular tab (becomes visible) 29 | chrome.tabs.onReplaced.addListener(function (addedTabId, removedTabId) { 30 | if (removedTabId in window.requests) { 31 | window.requests[addedTabId] = window.requests[removedTabId]; 32 | delete window.requests[removedTabId]; 33 | } else { 34 | console.log('Could not find an entry in window.requests when replacing ', removedTabId); 35 | } 36 | }); 37 | 38 | chrome.webNavigation.onDOMContentLoaded.addListener(function (details) { 39 | if (details.frameId > 0) { 40 | // we don't care about sub-frame window.requests 41 | return; 42 | } 43 | 44 | if (details.tabId in window.requests) { 45 | var request = window.requests[details.tabId]; 46 | if (!request.details.fromCache) { 47 | request.queryConnectionInfoAndSetIcon(); 48 | } 49 | } 50 | }); 51 | 52 | chrome.runtime.onMessage.addListener(function (csRequest, sender, sendResponse) { 53 | var request = window.requests[sender.tab.id]; 54 | if (request) { 55 | request.setConnectionInfo(csRequest); 56 | } 57 | sendResponse({}); 58 | }); 59 | 60 | // clear request data when tabs are destroyed 61 | chrome.tabs.onRemoved.addListener(function (tabId) { 62 | delete window.requests[tabId]; 63 | }); 64 | }); 65 | 66 | -------------------------------------------------------------------------------- /source/page-action-popup.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // get the current tab's ID and extract request info 3 | // from the extension object 4 | var queryInfo = { 5 | active: true, 6 | windowId: chrome.windows.WINDOW_ID_CURRENT 7 | }; 8 | 9 | if (localStorage.hide_guide === 'yes') { 10 | document.getElementById('claireInfoImage').classList.add('hidden'); 11 | } 12 | 13 | document.addEventListener('click', function (evt) { 14 | var $el = evt.target; 15 | 16 | if ($el.matches('.copy-button')) { 17 | var copyId = $el.dataset.copyId; 18 | var $copyEl = document.getElementById(copyId); 19 | 20 | $copyEl.select(); 21 | document.execCommand('copy'); 22 | 23 | evt.preventDefault(); 24 | evt.stopImmediatePropagation(); 25 | } 26 | }); 27 | 28 | chrome.tabs.query(queryInfo, function (tabs) { 29 | var tabID = tabs[0].id; 30 | // get the extension's window object 31 | var extensionWindow = chrome.extension.getBackgroundPage(); 32 | var request = extensionWindow.requests[tabID]; 33 | 34 | document.getElementById('ip').value = request.getServerIP(); 35 | document.querySelector('#claireInfoImage img').src = request.getPopupPath() + '.png'; 36 | 37 | // show the Ray ID & location 38 | if (request.servedByCloudFlare()) { 39 | document.getElementById('rayID').value = request.getRayID(); 40 | document.getElementById('locationCode').textContent = request.getCloudFlareLocationCode(); 41 | document.getElementById('locationName').textContent = request.getCloudFlareLocationName(); 42 | document.getElementById('traceURL').href = request.getCloudFlareTrace(); 43 | } else { 44 | document.getElementById('ray').classList.add('hidden'); 45 | document.getElementById('loc').classList.add('hidden'); 46 | document.getElementById('actions').classList.add('hidden'); 47 | } 48 | 49 | // show Railgun related info 50 | if (request.servedByRailgun()) { 51 | var railgunMetaData = request.getRailgunMetaData(); 52 | document.getElementById('railgunID').textContent = railgunMetaData.id; 53 | if (!railgunMetaData.normal) { 54 | document.getElementById('railgunCompression').textContent = railgunMetaData.compression; 55 | document.getElementById('railgunTime').textContent = railgunMetaData.time; 56 | } 57 | } else { 58 | document.getElementById('railgun').classList.add('hidden'); 59 | } 60 | }); 61 | 62 | if (require.main === module) { 63 | var style; // eslint-disable-line no-unused-vars 64 | style = require('purecss/build/pure-min.css'); 65 | style = require('purecss/build/grids-responsive-min.css'); 66 | style = require('octicons/build/font/octicons.min.css'); 67 | style = require('./style.css'); 68 | } 69 | -------------------------------------------------------------------------------- /source/page-action-popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Claire 7 | 8 | 9 | 10 |
11 | 12 |
13 |
14 |
15 |
16 |

IP Address

17 |
18 |
19 |
20 | 21 |
22 |
23 | 24 |
25 |
26 |
27 |
28 |
29 |

Ray ID

30 |
31 |
32 |
33 |
34 | 35 |
36 |
37 | 38 |
39 |
40 |
41 |
42 |
43 |
44 |

Location

45 |
46 |
47 |

()

48 |
49 |
50 |
51 |
52 |

Actions

53 |
54 |
55 | Trace 56 |
57 |
58 |
59 |
60 |

Railgun

61 |
62 |
63 |
    64 |
  • Railgun ID:
  • 65 |
  • Compression:
  • 66 |
  • Time:
  • 67 |
68 |
69 |
70 |
71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /source/request.test.js: -------------------------------------------------------------------------------- 1 | const Request = require('./request'); 2 | 3 | test('preprocesses headers', () => { 4 | let details = { 5 | responseHeaders: [ 6 | { 7 | name: 'server', 8 | value: 'cloudflare' 9 | } 10 | ] 11 | }; 12 | 13 | let r = new Request(details); 14 | 15 | expect(r.headers).toMatchObject({ 16 | SERVER: 'cloudflare' 17 | }); 18 | }); 19 | 20 | describe('Railgun', () => { 21 | test('processes Railgun header v1', () => { 22 | let details = { 23 | responseHeaders: [ 24 | { 25 | name: 'cf-railgun', 26 | value: 'normal 96 foobar 9001' 27 | } 28 | ] 29 | }; 30 | 31 | let r = new Request(details); 32 | 33 | expect(r.railgunMetaData).toMatchObject({ 34 | normal: true, 35 | id: 'normal', 36 | version: '9001', 37 | flags: 0x60, 38 | messages: [ 39 | 'Dictionary found in memcache', 40 | 'Restarted broken origin connection' 41 | ] 42 | }); 43 | }); 44 | 45 | test('processes Railgun header v2', () => { 46 | let details = { 47 | responseHeaders: [ 48 | { 49 | name: 'cf-railgun', 50 | value: 'foobar 46 700 96 9001' 51 | } 52 | ] 53 | }; 54 | 55 | let r = new Request(details); 56 | 57 | expect(r.railgunMetaData).toMatchObject({ 58 | normal: false, 59 | id: 'foobar', 60 | version: '9001', 61 | compression: '54%', 62 | time: '700sec', 63 | flags: 0x60, 64 | messages: [ 65 | 'Dictionary found in memcache', 66 | 'Restarted broken origin connection' 67 | ] 68 | }); 69 | }); 70 | 71 | test('determines Railgun', () => { 72 | let detailsRG = { 73 | responseHeaders: [ 74 | { 75 | name: 'cf-railgun', 76 | value: 'normal' 77 | } 78 | ] 79 | }; 80 | let detailsNRG = { 81 | responseHeaders: [] 82 | }; 83 | 84 | let rRG = new Request(detailsRG); 85 | let rNRG = new Request(detailsNRG); 86 | 87 | expect(rRG.servedByRailgun()).toBe(true); 88 | expect(rNRG.servedByRailgun()).toBe(false); 89 | }); 90 | }); 91 | 92 | test('determines Cloudflare-ness', () => { 93 | let detailsCF = { 94 | responseHeaders: [ 95 | { 96 | name: 'server', 97 | value: 'cloudflare-fl' 98 | } 99 | ] 100 | }; 101 | let detailsNCF = { 102 | responseHeaders: [ 103 | { 104 | name: 'server', 105 | value: 'nginx' 106 | } 107 | ] 108 | }; 109 | 110 | let rCF = new Request(detailsCF); 111 | let rNCF = new Request(detailsNCF); 112 | 113 | expect(rCF.servedByCloudFlare()).toBe(true); 114 | expect(rNCF.servedByCloudFlare()).toBe(false); 115 | }); 116 | 117 | test('IPv6', () => { 118 | let detailsV4 = { 119 | responseHeaders: [], 120 | ip: '8.8.8.8' 121 | }; 122 | let detailsV6 = { 123 | responseHeaders: [], 124 | ip: '2001:4860:4860::8888' 125 | }; 126 | 127 | let rV4 = new Request(detailsV4); 128 | let rV6 = new Request(detailsV6); 129 | 130 | expect(rV4.getServerIP()).toEqual('8.8.8.8'); 131 | expect(rV4.isv6IP()).toBe(false); 132 | 133 | expect(rV6.getServerIP()).toEqual('2001:4860:4860::8888'); 134 | expect(rV6.isv6IP()).toBe(true); 135 | }); 136 | 137 | describe('Ray ID', () => { 138 | test('get Ray ID', () => { 139 | let detailsCF = { 140 | responseHeaders: [ 141 | { 142 | name: 'CF-Ray', 143 | value: 'deadbeef-SFO' 144 | } 145 | ] 146 | }; 147 | let detailsNCF = { 148 | responseHeaders: [] 149 | }; 150 | 151 | let rCF = new Request(detailsCF); 152 | let rNCF = new Request(detailsNCF); 153 | 154 | expect(rCF.getRayID()).toBe('deadbeef'); 155 | expect(rNCF.getRayID()).toBeUndefined(); 156 | }); 157 | 158 | test('get location code', () => { 159 | let detailsCF = { 160 | responseHeaders: [ 161 | { 162 | name: 'CF-Ray', 163 | value: 'deadbeef-SFO' 164 | } 165 | ] 166 | }; 167 | let detailsNCF = { 168 | responseHeaders: [] 169 | }; 170 | 171 | let rCF = new Request(detailsCF); 172 | let rNCF = new Request(detailsNCF); 173 | 174 | expect(rCF.getCloudFlareLocationCode()).toBe('SFO'); 175 | expect(rNCF.getCloudFlareLocationCode()).toBeUndefined(); 176 | }); 177 | 178 | test('location data', () => { 179 | let details = { 180 | responseHeaders: [ 181 | { 182 | name: 'cf-ray', 183 | value: 'deadbeef-SFO' 184 | } 185 | ] 186 | }; 187 | 188 | let r = new Request(details); 189 | 190 | expect(r.getCloudFlareLocationData()).toMatchObject({ 191 | latitude: expect.any(String), 192 | longitude: expect.any(String), 193 | city: 'San Francisco', 194 | country: 'United States' 195 | }); 196 | }); 197 | 198 | test('location name', () => { 199 | let details = { 200 | responseHeaders: [ 201 | { 202 | name: 'cf-ray', 203 | value: 'deadbeef-SFO' 204 | } 205 | ] 206 | }; 207 | 208 | let r = new Request(details); 209 | 210 | expect(r.getCloudFlareLocationName()).toBe('San Francisco, United States'); 211 | }); 212 | }); 213 | -------------------------------------------------------------------------------- /source/request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var airports = require('./airports'); 3 | 4 | // the Request object, contains information about a request 5 | var Request = function (details) { 6 | this.details = details; 7 | this.headersRaw = details.responseHeaders; 8 | 9 | // headers will be stored as name: value pairs (all names will be upper case) 10 | this.headers = {}; 11 | 12 | // this status is available in the context of the page, requires message passing 13 | // from the extension to the page 14 | this.hasConnectionInfo = false; 15 | this.connectionType = null; 16 | 17 | this.preProcessHeaders(); 18 | }; 19 | 20 | // convert the headers array into an object and upcase all names 21 | // (warning! will preserve only last of multiple headers with same name) 22 | Request.prototype.preProcessHeaders = function () { 23 | this.headersRaw.forEach(function (header) { 24 | this.headers[header.name.toUpperCase()] = header.value; 25 | }, this); 26 | 27 | if ('CF-RAILGUN' in this.headers) { 28 | this.processRailgunHeader(); 29 | } 30 | }; 31 | 32 | Request.prototype.processRailgunHeader = function () { 33 | var railgunHeader = this.headers['CF-RAILGUN']; 34 | 35 | this.railgunMetaData = {}; 36 | 37 | if (typeof railgunHeader !== 'string') { 38 | return this.railgunMetaData; 39 | } 40 | 41 | // Railgun header can be in one of two formats 42 | // one of them will have the string "normal" 43 | var railgunNormal = railgunHeader.indexOf('normal') !== -1; 44 | 45 | var parts = railgunHeader.split(' '); 46 | 47 | var flagsBitset = 0; 48 | 49 | this.railgunMetaData.normal = railgunNormal; 50 | this.railgunMetaData.id = parts[0]; 51 | if (railgunNormal) { 52 | flagsBitset = parseInt(parts[1], 10); 53 | this.railgunMetaData.version = parts[3]; 54 | } else { 55 | this.railgunMetaData.compression = (100 - parts[1]) + '%'; 56 | this.railgunMetaData.time = parts[2] + 'sec'; 57 | flagsBitset = parseInt(parts[3], 10); 58 | this.railgunMetaData.version = parts[4]; 59 | } 60 | 61 | // decode the flags bitest 62 | var railgunFlags = { 63 | FLAG_DOMAIN_MAP_USED: { 64 | position: 0x01, 65 | message: 'map.file used to change IP' 66 | }, 67 | FLAG_DEFAULT_IP_USED: { 68 | position: 0x02, 69 | message: 'map.file default IP used' 70 | }, 71 | FLAG_HOST_CHANGE: { 72 | position: 0x04, 73 | message: 'Host name change' 74 | }, 75 | FLAG_REUSED_CONNECTION: { 76 | position: 0x08, 77 | message: 'Existing connection reused' 78 | }, 79 | FLAG_HAD_DICTIONARY: { 80 | position: 0x10, 81 | message: 'Railgun sender sent dictionary' 82 | }, 83 | FLAG_WAS_CACHED: { 84 | position: 0x20, 85 | message: 'Dictionary found in memcache' 86 | }, 87 | FLAG_RESTART_CONNECTION: { 88 | position: 0x40, 89 | message: 'Restarted broken origin connection' 90 | } 91 | }; 92 | 93 | var messages = []; 94 | 95 | for (var flagKey in railgunFlags) { 96 | if (Object.prototype.hasOwnProperty.call(railgunFlags, flagKey)) { 97 | var flag = railgunFlags[flagKey]; 98 | if ((flagsBitset & flag.position) !== 0) { 99 | messages.push(flag.message); 100 | } 101 | } 102 | } 103 | 104 | this.railgunMetaData.flags = flagsBitset; 105 | this.railgunMetaData.messages = messages; 106 | }; 107 | 108 | Request.prototype.queryConnectionInfoAndSetIcon = function () { 109 | var tabID = this.details.tabId; 110 | if (this.hasConnectionInfo) { 111 | this.setPageActionIconAndPopup(); 112 | } else { 113 | var csMessageData = { 114 | action: 'check_connection_info' 115 | }; 116 | var csMessageCallback = function (csMsgResponse) { 117 | // stop and return if we don't get a response, happens with background tabs, 118 | // or if the next hop information is unavailable. 119 | if (typeof csMsgResponse === 'undefined') { 120 | return; 121 | } 122 | 123 | var request = window.requests[tabID]; 124 | request.setConnectionInfo(csMsgResponse); 125 | request.setPageActionIconAndPopup(); 126 | }; 127 | 128 | try { 129 | chrome.tabs.sendMessage(this.details.tabId, csMessageData, csMessageCallback); 130 | } catch (err) { 131 | console.log('caught exception when sending message to content script'); 132 | console.log(chrome.extension.lastError()); 133 | console.log(err); 134 | } 135 | } 136 | }; 137 | 138 | // check if the server header matches 'cloudflare-nginx' 139 | Request.prototype.servedByCloudFlare = function () { 140 | return ('SERVER' in this.headers) && (/^cloudflare/i.test(this.headers.SERVER)); 141 | }; 142 | 143 | Request.prototype.servedByRailgun = function () { 144 | return 'CF-RAILGUN' in this.headers; 145 | }; 146 | 147 | Request.prototype.servedOverH2 = function () { 148 | return this.connectionType === 'h2'; 149 | }; 150 | 151 | Request.prototype.ServedFromBrowserCache = function () { 152 | return this.details.fromCache; 153 | }; 154 | 155 | // RAY ID header format: CF-RAY:f694c6892660106-DFW 156 | Request.prototype.getRayID = function () { 157 | let ray = this.headers['CF-RAY']; 158 | 159 | if (ray) { 160 | return ray.split('-')[0]; 161 | } 162 | 163 | return; 164 | }; 165 | 166 | Request.prototype.getCloudFlareLocationCode = function () { 167 | let ray = this.headers['CF-RAY']; 168 | 169 | if (ray) { 170 | return ray.split('-')[1]; 171 | } 172 | 173 | return; 174 | }; 175 | 176 | Request.prototype.getCloudFlareLocationData = function () { 177 | var locationCode = this.getCloudFlareLocationCode(); 178 | return airports[locationCode]; 179 | }; 180 | 181 | Request.prototype.getCloudFlareLocationName = function () { 182 | var airportData = this.getCloudFlareLocationData(); 183 | if (airportData) { 184 | return airportData.city + ', ' + airportData.country; 185 | } 186 | 187 | return this.getCloudFlareLocationCode(); 188 | }; 189 | 190 | Request.prototype.getCloudFlareTrace = function () { 191 | var traceURL = new URL(this.details.url); 192 | traceURL.pathname = '/cdn-cgi/trace'; 193 | return traceURL.toString(); 194 | }; 195 | 196 | Request.prototype.getTabID = function () { 197 | return this.details.tabId; 198 | }; 199 | 200 | Request.prototype.getRequestURL = function () { 201 | return this.details.url; 202 | }; 203 | 204 | Request.prototype.getRailgunMetaData = function () { 205 | return this.railgunMetaData; 206 | }; 207 | 208 | Request.prototype.getServerIP = function () { 209 | return this.details.ip ? this.details.ip : ''; 210 | }; 211 | 212 | Request.prototype.isv6IP = function () { 213 | return this.getServerIP().indexOf(':') !== -1; 214 | }; 215 | 216 | // figure out what the page action should be based on the 217 | // features we detected in this request 218 | Request.prototype.getPageActionPath = function () { 219 | return this.getImagePath('images/claire-3-'); 220 | }; 221 | 222 | Request.prototype.getPopupPath = function () { 223 | return this.getImagePath('images/claire-3-popup-'); 224 | }; 225 | 226 | Request.prototype.getImagePath = function (basePath) { 227 | var iconPathParts = []; 228 | 229 | if (this.servedByCloudFlare()) { 230 | iconPathParts.push('on'); 231 | } else { 232 | iconPathParts.push('off'); 233 | } 234 | 235 | if (this.servedOverH2()) { 236 | iconPathParts.push('h2'); 237 | } 238 | 239 | if (this.isv6IP()) { 240 | iconPathParts.push('ipv6'); 241 | } 242 | 243 | if (this.servedByRailgun()) { 244 | iconPathParts.push('rg'); 245 | } 246 | 247 | return basePath + iconPathParts.join('-'); 248 | }; 249 | 250 | Request.prototype.setConnectionInfo = function (connectionInfo) { 251 | this.hasConnectionInfo = true; 252 | this.connectionType = connectionInfo.type; 253 | }; 254 | 255 | Request.prototype.setPageActionIconAndPopup = function () { 256 | var iconPath = this.getPageActionPath(); 257 | var tabID = this.details.tabId; 258 | chrome.pageAction.setIcon({ 259 | tabId: this.details.tabId, 260 | path: { 261 | 19: iconPath + '.png', 262 | 38: iconPath + '@2x.png' 263 | } 264 | }, function () { 265 | try { 266 | chrome.pageAction.setPopup({ 267 | tabId: tabID, 268 | popup: 'page-action-popup.html' 269 | }); 270 | chrome.pageAction.show(tabID); 271 | } catch (err) { 272 | console.log('Exception on page action show for tab with ID: ', tabID, err); 273 | } 274 | }); 275 | }; 276 | 277 | Request.prototype.logToConsole = function () { 278 | if (localStorage.getItem('debug_logging') !== 'yes') { 279 | return; 280 | } 281 | 282 | console.log('\n'); 283 | console.log(this.details.url, this.details.ip, 'CF - ' + this.servedByCloudFlare()); 284 | console.log('Request - ', this.details); 285 | if (this.servedByCloudFlare()) { 286 | console.log('Ray ID - ', this.getRayID()); 287 | } 288 | if (this.servedByRailgun()) { 289 | var railgunMetaData = this.getRailgunMetaData(); 290 | console.log('Railgun - ', railgunMetaData.id, railgunMetaData.messages.join('; ')); 291 | } 292 | }; 293 | 294 | module.exports = Request; 295 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # Claire (BSD 3-Clause) 2 | 3 | >Copyright (c) 2011-2016, CloudFlare. All rights reserved. 4 | > 5 | >Redistribution and use in source and binary forms, with or without 6 | >modification, are permitted provided that the following conditions are met: 7 | > 8 | >* Redistributions of source code must retain the above copyright notice, this 9 | list of conditions and the following disclaimer. 10 | >* Redistributions in binary form must reproduce the above copyright 11 | notice, this list of conditions and the following disclaimer in the 12 | documentation and/or other materials provided with the distribution. 13 | >* Neither the name of the copyright holder nor the names of its contributors 14 | may be used to endorse or promote products derived from this software without 15 | specific prior written permission. 16 | > 17 | >THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 18 | >ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 19 | >WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 20 | >DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY DIRECT, INDIRECT, 21 | >INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 | >LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 23 | >PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 24 | >LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 25 | >OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 26 | >ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 | 28 | # External Projects 29 | 30 | ## jQuery (MIT) 31 | 32 | >Copyright 2012 jQuery Foundation and other contributors 33 | >http://jquery.com/ 34 | > 35 | >Permission is hereby granted, free of charge, to any person obtaining a copy of 36 | >this software and associated documentation files (the "Software"), to deal in 37 | >the Software without restriction, including without limitation the rights to 38 | >use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 39 | >of the Software, and to permit persons to whom the Software is furnished to do 40 | >so, subject to the following conditions: 41 | > 42 | >The above copyright notice and this permission notice shall be included in all 43 | >copies or substantial portions of the Software. 44 | > 45 | >THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 46 | >IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 47 | >FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 48 | >AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 49 | >LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 50 | >OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 51 | >SOFTWARE. 52 | 53 | ## Require.JS (new BSD or MIT) 54 | 55 | >RequireJS is released under two licenses: new BSD, and MIT. You may pick the 56 | >license that best suits your development needs. The text of both licenses are 57 | >provided below. 58 | > 59 | > 60 | >The "New" BSD License: 61 | >---------------------- 62 | > 63 | >Copyright (c) 2010-2011, The Dojo Foundation 64 | >All rights reserved. 65 | > 66 | >Redistribution and use in source and binary forms, with or without 67 | >modification, are permitted provided that the following conditions are met: 68 | > 69 | > * Redistributions of source code must retain the above copyright notice, this 70 | > list of conditions and the following disclaimer. 71 | > * Redistributions in binary form must reproduce the above copyright notice, 72 | > this list of conditions and the following disclaimer in the documentation 73 | > and/or other materials provided with the distribution. 74 | > * Neither the name of the Dojo Foundation nor the names of its contributors 75 | > may be used to endorse or promote products derived from this software 76 | > without specific prior written permission. 77 | > 78 | >THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 79 | >ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 80 | >WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 81 | >DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 82 | >FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 83 | >DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 84 | >SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 85 | >CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 86 | >OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 87 | >OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 88 | > 89 | > 90 | > 91 | >MIT License 92 | >----------- 93 | > 94 | >Copyright (c) 2010-2011, The Dojo Foundation 95 | > 96 | >Permission is hereby granted, free of charge, to any person obtaining a copy 97 | >of this software and associated documentation files (the "Software"), to deal 98 | >in the Software without restriction, including without limitation the rights 99 | >to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 100 | >copies of the Software, and to permit persons to whom the Software is 101 | >furnished to do so, subject to the following conditions: 102 | > 103 | >The above copyright notice and this permission notice shall be included in 104 | >all copies or substantial portions of the Software. 105 | > 106 | >THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 107 | >IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 108 | >FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 109 | >AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 110 | >LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 111 | >OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 112 | >THE SOFTWARE. 113 | 114 | ## Pure (BSD 3-Clause) 115 | 116 | > Copyright 2014 Yahoo! Inc. All rights reserved. 117 | > 118 | >Redistribution and use in source and binary forms, with or without 119 | >modification, are permitted provided that the following conditions are met: 120 | > 121 | >* Redistributions of source code must retain the above copyright notice, this 122 | list of conditions and the following disclaimer. 123 | >* Redistributions in binary form must reproduce the above copyright 124 | notice, this list of conditions and the following disclaimer in the 125 | documentation and/or other materials provided with the distribution. 126 | >* Neither the name of the Yahoo! Inc. nor the names of its contributors may be 127 | used to endorse or promote products derived from this software without 128 | specific prior written permission. 129 | > 130 | >THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 131 | >ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 132 | >WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 133 | >DISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY DIRECT, INDIRECT, 134 | >INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 135 | >LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 136 | >PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 137 | >LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 138 | >OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 139 | >ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 140 | 141 | ## Normalize.css (MIT) 142 | 143 | >Copyright (c) Nicolas Gallagher and Jonathon Neal 144 | > 145 | >Permission is hereby granted, free of charge, to any person obtaining a copy of 146 | >this software and associated documentation files (the "Software"), to deal in 147 | >the Software without restriction, including without limitation the rights to 148 | >use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 149 | >of the Software, and to permit persons to whom the Software is furnished to do 150 | >so, subject to the following conditions: 151 | > 152 | >The above copyright notice and this permission notice shall be included in all 153 | >copies or substantial portions of the Software. 154 | > 155 | >THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 156 | >IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 157 | >FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 158 | >AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 159 | >LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 160 | >OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 161 | >SOFTWARE. 162 | 163 | ## Octicons 164 | 165 | >(c) 2012-2015 GitHub 166 | > 167 | >When using the GitHub logos, be sure to follow the GitHub logo guidelines 168 | >(https://github.com/logos) 169 | > 170 | >Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL) 171 | >Applies to all font files 172 | > 173 | >Code License: MIT (http://choosealicense.com/licenses/mit/) 174 | >Applies to all other files 175 | -------------------------------------------------------------------------------- /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-dynamic-import@^2.0.0: 14 | version "2.0.2" 15 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 16 | dependencies: 17 | acorn "^4.0.3" 18 | 19 | acorn-globals@^3.1.0: 20 | version "3.1.0" 21 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 22 | dependencies: 23 | acorn "^4.0.4" 24 | 25 | acorn-jsx@^3.0.0: 26 | version "3.0.1" 27 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 28 | dependencies: 29 | acorn "^3.0.4" 30 | 31 | acorn@^3.0.4: 32 | version "3.3.0" 33 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 34 | 35 | acorn@^4.0.3, acorn@^4.0.4: 36 | version "4.0.11" 37 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 38 | 39 | acorn@^5.0.0: 40 | version "5.4.1" 41 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102" 42 | 43 | acorn@^5.0.1: 44 | version "5.0.3" 45 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d" 46 | 47 | ajv-keywords@^1.0.0: 48 | version "1.5.1" 49 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 50 | 51 | ajv-keywords@^3.1.0: 52 | version "3.1.0" 53 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.1.0.tgz#ac2b27939c543e95d2c06e7f7f5c27be4aa543be" 54 | 55 | ajv@^4.7.0, ajv@^4.9.1: 56 | version "4.11.5" 57 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 58 | dependencies: 59 | co "^4.6.0" 60 | json-stable-stringify "^1.0.1" 61 | 62 | ajv@^5.0.0: 63 | version "5.5.2" 64 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 65 | dependencies: 66 | co "^4.6.0" 67 | fast-deep-equal "^1.0.0" 68 | fast-json-stable-stringify "^2.0.0" 69 | json-schema-traverse "^0.3.0" 70 | 71 | ajv@^6.1.0: 72 | version "6.1.1" 73 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.1.1.tgz#978d597fbc2b7d0e5a5c3ddeb149a682f2abfa0e" 74 | dependencies: 75 | fast-deep-equal "^1.0.0" 76 | fast-json-stable-stringify "^2.0.0" 77 | json-schema-traverse "^0.3.0" 78 | 79 | align-text@^0.1.1, align-text@^0.1.3: 80 | version "0.1.4" 81 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 82 | dependencies: 83 | kind-of "^3.0.2" 84 | longest "^1.0.1" 85 | repeat-string "^1.5.2" 86 | 87 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 88 | version "1.0.2" 89 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 90 | 91 | amdefine@>=0.0.4: 92 | version "1.0.1" 93 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 94 | 95 | ansi-escapes@^1.1.0, ansi-escapes@^1.4.0: 96 | version "1.4.0" 97 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 98 | 99 | ansi-regex@^2.0.0, ansi-regex@^2.1.1: 100 | version "2.1.1" 101 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 102 | 103 | ansi-styles@^2.2.1: 104 | version "2.2.1" 105 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 106 | 107 | ansi-styles@^3.0.0, ansi-styles@^3.2.0: 108 | version "3.2.0" 109 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 110 | dependencies: 111 | color-convert "^1.9.0" 112 | 113 | anymatch@^1.3.0: 114 | version "1.3.0" 115 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 116 | dependencies: 117 | arrify "^1.0.0" 118 | micromatch "^2.1.5" 119 | 120 | append-transform@^0.4.0: 121 | version "0.4.0" 122 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 123 | dependencies: 124 | default-require-extensions "^1.0.0" 125 | 126 | aproba@^1.0.3: 127 | version "1.1.1" 128 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 129 | 130 | are-we-there-yet@~1.1.2: 131 | version "1.1.2" 132 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 133 | dependencies: 134 | delegates "^1.0.0" 135 | readable-stream "^2.0.0 || ^1.1.13" 136 | 137 | argparse@^1.0.7: 138 | version "1.0.9" 139 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 140 | dependencies: 141 | sprintf-js "~1.0.2" 142 | 143 | arr-diff@^2.0.0: 144 | version "2.0.0" 145 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 146 | dependencies: 147 | arr-flatten "^1.0.1" 148 | 149 | arr-flatten@^1.0.1: 150 | version "1.0.1" 151 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 152 | 153 | array-equal@^1.0.0: 154 | version "1.0.0" 155 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 156 | 157 | array-union@^1.0.1: 158 | version "1.0.2" 159 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 160 | dependencies: 161 | array-uniq "^1.0.1" 162 | 163 | array-uniq@^1.0.1: 164 | version "1.0.3" 165 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 166 | 167 | array-unique@^0.2.1: 168 | version "0.2.1" 169 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 170 | 171 | arrify@^1.0.0, arrify@^1.0.1: 172 | version "1.0.1" 173 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 174 | 175 | asn1.js@^4.0.0: 176 | version "4.9.1" 177 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 178 | dependencies: 179 | bn.js "^4.0.0" 180 | inherits "^2.0.1" 181 | minimalistic-assert "^1.0.0" 182 | 183 | asn1@~0.2.3: 184 | version "0.2.3" 185 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 186 | 187 | assert-plus@1.0.0, assert-plus@^1.0.0: 188 | version "1.0.0" 189 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 190 | 191 | assert-plus@^0.2.0: 192 | version "0.2.0" 193 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 194 | 195 | assert@^1.1.1: 196 | version "1.4.1" 197 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 198 | dependencies: 199 | util "0.10.3" 200 | 201 | async-each@^1.0.0: 202 | version "1.0.1" 203 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 204 | 205 | async@^1.4.0: 206 | version "1.5.2" 207 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 208 | 209 | async@^2.1.2: 210 | version "2.3.0" 211 | resolved "https://registry.yarnpkg.com/async/-/async-2.3.0.tgz#1013d1051047dd320fe24e494d5c66ecaf6147d9" 212 | dependencies: 213 | lodash "^4.14.0" 214 | 215 | async@^2.1.4: 216 | version "2.5.0" 217 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 218 | dependencies: 219 | lodash "^4.14.0" 220 | 221 | async@^2.4.1: 222 | version "2.6.0" 223 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4" 224 | dependencies: 225 | lodash "^4.14.0" 226 | 227 | asynckit@^0.4.0: 228 | version "0.4.0" 229 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 230 | 231 | autoprefixer@^6.3.1: 232 | version "6.7.7" 233 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" 234 | dependencies: 235 | browserslist "^1.7.6" 236 | caniuse-db "^1.0.30000634" 237 | normalize-range "^0.1.2" 238 | num2fraction "^1.2.2" 239 | postcss "^5.2.16" 240 | postcss-value-parser "^3.2.3" 241 | 242 | aws-sign2@~0.6.0: 243 | version "0.6.0" 244 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 245 | 246 | aws4@^1.2.1: 247 | version "1.6.0" 248 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 249 | 250 | babel-code-frame@^6.16.0: 251 | version "6.22.0" 252 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 253 | dependencies: 254 | chalk "^1.1.0" 255 | esutils "^2.0.2" 256 | js-tokens "^3.0.0" 257 | 258 | babel-code-frame@^6.26.0: 259 | version "6.26.0" 260 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 261 | dependencies: 262 | chalk "^1.1.3" 263 | esutils "^2.0.2" 264 | js-tokens "^3.0.2" 265 | 266 | babel-core@^6.0.0, babel-core@^6.26.0: 267 | version "6.26.0" 268 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 269 | dependencies: 270 | babel-code-frame "^6.26.0" 271 | babel-generator "^6.26.0" 272 | babel-helpers "^6.24.1" 273 | babel-messages "^6.23.0" 274 | babel-register "^6.26.0" 275 | babel-runtime "^6.26.0" 276 | babel-template "^6.26.0" 277 | babel-traverse "^6.26.0" 278 | babel-types "^6.26.0" 279 | babylon "^6.18.0" 280 | convert-source-map "^1.5.0" 281 | debug "^2.6.8" 282 | json5 "^0.5.1" 283 | lodash "^4.17.4" 284 | minimatch "^3.0.4" 285 | path-is-absolute "^1.0.1" 286 | private "^0.1.7" 287 | slash "^1.0.0" 288 | source-map "^0.5.6" 289 | 290 | babel-generator@^6.18.0, babel-generator@^6.26.0: 291 | version "6.26.0" 292 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 293 | dependencies: 294 | babel-messages "^6.23.0" 295 | babel-runtime "^6.26.0" 296 | babel-types "^6.26.0" 297 | detect-indent "^4.0.0" 298 | jsesc "^1.3.0" 299 | lodash "^4.17.4" 300 | source-map "^0.5.6" 301 | trim-right "^1.0.1" 302 | 303 | babel-helpers@^6.24.1: 304 | version "6.24.1" 305 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | babel-template "^6.24.1" 309 | 310 | babel-jest@^20.0.3: 311 | version "20.0.3" 312 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-20.0.3.tgz#e4a03b13dc10389e140fc645d09ffc4ced301671" 313 | dependencies: 314 | babel-core "^6.0.0" 315 | babel-plugin-istanbul "^4.0.0" 316 | babel-preset-jest "^20.0.3" 317 | 318 | babel-messages@^6.23.0: 319 | version "6.23.0" 320 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 321 | dependencies: 322 | babel-runtime "^6.22.0" 323 | 324 | babel-plugin-istanbul@^4.0.0: 325 | version "4.1.4" 326 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz#18dde84bf3ce329fddf3f4103fae921456d8e587" 327 | dependencies: 328 | find-up "^2.1.0" 329 | istanbul-lib-instrument "^1.7.2" 330 | test-exclude "^4.1.1" 331 | 332 | babel-plugin-jest-hoist@^20.0.3: 333 | version "20.0.3" 334 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767" 335 | 336 | babel-preset-jest@^20.0.3: 337 | version "20.0.3" 338 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz#cbacaadecb5d689ca1e1de1360ebfc66862c178a" 339 | dependencies: 340 | babel-plugin-jest-hoist "^20.0.3" 341 | 342 | babel-register@^6.26.0: 343 | version "6.26.0" 344 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 345 | dependencies: 346 | babel-core "^6.26.0" 347 | babel-runtime "^6.26.0" 348 | core-js "^2.5.0" 349 | home-or-tmp "^2.0.0" 350 | lodash "^4.17.4" 351 | mkdirp "^0.5.1" 352 | source-map-support "^0.4.15" 353 | 354 | babel-runtime@^6.22.0, babel-runtime@^6.26.0: 355 | version "6.26.0" 356 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 357 | dependencies: 358 | core-js "^2.4.0" 359 | regenerator-runtime "^0.11.0" 360 | 361 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 362 | version "6.26.0" 363 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 364 | dependencies: 365 | babel-runtime "^6.26.0" 366 | babel-traverse "^6.26.0" 367 | babel-types "^6.26.0" 368 | babylon "^6.18.0" 369 | lodash "^4.17.4" 370 | 371 | babel-traverse@^6.18.0, babel-traverse@^6.26.0: 372 | version "6.26.0" 373 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 374 | dependencies: 375 | babel-code-frame "^6.26.0" 376 | babel-messages "^6.23.0" 377 | babel-runtime "^6.26.0" 378 | babel-types "^6.26.0" 379 | babylon "^6.18.0" 380 | debug "^2.6.8" 381 | globals "^9.18.0" 382 | invariant "^2.2.2" 383 | lodash "^4.17.4" 384 | 385 | babel-types@^6.18.0, babel-types@^6.26.0: 386 | version "6.26.0" 387 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 388 | dependencies: 389 | babel-runtime "^6.26.0" 390 | esutils "^2.0.2" 391 | lodash "^4.17.4" 392 | to-fast-properties "^1.0.3" 393 | 394 | babylon@^6.17.4, babylon@^6.18.0: 395 | version "6.18.0" 396 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 397 | 398 | balanced-match@^0.4.1, balanced-match@^0.4.2: 399 | version "0.4.2" 400 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 401 | 402 | balanced-match@^1.0.0: 403 | version "1.0.0" 404 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 405 | 406 | base64-js@^1.0.2: 407 | version "1.2.0" 408 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 409 | 410 | bcrypt-pbkdf@^1.0.0: 411 | version "1.0.1" 412 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 413 | dependencies: 414 | tweetnacl "^0.14.3" 415 | 416 | big.js@^3.1.3: 417 | version "3.1.3" 418 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 419 | 420 | binary-extensions@^1.0.0: 421 | version "1.8.0" 422 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 423 | 424 | block-stream@*: 425 | version "0.0.9" 426 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 427 | dependencies: 428 | inherits "~2.0.0" 429 | 430 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 431 | version "4.11.6" 432 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" 433 | 434 | boom@2.x.x: 435 | version "2.10.1" 436 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 437 | dependencies: 438 | hoek "2.x.x" 439 | 440 | brace-expansion@^1.0.0: 441 | version "1.1.6" 442 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 443 | dependencies: 444 | balanced-match "^0.4.1" 445 | concat-map "0.0.1" 446 | 447 | brace-expansion@^1.1.7: 448 | version "1.1.8" 449 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 450 | dependencies: 451 | balanced-match "^1.0.0" 452 | concat-map "0.0.1" 453 | 454 | braces@^1.8.2: 455 | version "1.8.5" 456 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 457 | dependencies: 458 | expand-range "^1.8.1" 459 | preserve "^0.2.0" 460 | repeat-element "^1.1.2" 461 | 462 | brorand@^1.0.1: 463 | version "1.1.0" 464 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 465 | 466 | browser-resolve@^1.11.2: 467 | version "1.11.2" 468 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 469 | dependencies: 470 | resolve "1.1.7" 471 | 472 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 473 | version "1.0.6" 474 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 475 | dependencies: 476 | buffer-xor "^1.0.2" 477 | cipher-base "^1.0.0" 478 | create-hash "^1.1.0" 479 | evp_bytestokey "^1.0.0" 480 | inherits "^2.0.1" 481 | 482 | browserify-cipher@^1.0.0: 483 | version "1.0.0" 484 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 485 | dependencies: 486 | browserify-aes "^1.0.4" 487 | browserify-des "^1.0.0" 488 | evp_bytestokey "^1.0.0" 489 | 490 | browserify-des@^1.0.0: 491 | version "1.0.0" 492 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 493 | dependencies: 494 | cipher-base "^1.0.1" 495 | des.js "^1.0.0" 496 | inherits "^2.0.1" 497 | 498 | browserify-rsa@^4.0.0: 499 | version "4.0.1" 500 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 501 | dependencies: 502 | bn.js "^4.1.0" 503 | randombytes "^2.0.1" 504 | 505 | browserify-sign@^4.0.0: 506 | version "4.0.4" 507 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 508 | dependencies: 509 | bn.js "^4.1.1" 510 | browserify-rsa "^4.0.0" 511 | create-hash "^1.1.0" 512 | create-hmac "^1.1.2" 513 | elliptic "^6.0.0" 514 | inherits "^2.0.1" 515 | parse-asn1 "^5.0.0" 516 | 517 | browserify-zlib@^0.1.4: 518 | version "0.1.4" 519 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 520 | dependencies: 521 | pako "~0.2.0" 522 | 523 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: 524 | version "1.7.7" 525 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 526 | dependencies: 527 | caniuse-db "^1.0.30000639" 528 | electron-to-chromium "^1.2.7" 529 | 530 | bser@1.0.2: 531 | version "1.0.2" 532 | resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" 533 | dependencies: 534 | node-int64 "^0.4.0" 535 | 536 | bser@^2.0.0: 537 | version "2.0.0" 538 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 539 | dependencies: 540 | node-int64 "^0.4.0" 541 | 542 | buffer-shims@^1.0.0: 543 | version "1.0.0" 544 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 545 | 546 | buffer-xor@^1.0.2: 547 | version "1.0.3" 548 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 549 | 550 | buffer@^4.3.0: 551 | version "4.9.1" 552 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 553 | dependencies: 554 | base64-js "^1.0.2" 555 | ieee754 "^1.1.4" 556 | isarray "^1.0.0" 557 | 558 | builtin-modules@^1.0.0: 559 | version "1.1.1" 560 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 561 | 562 | builtin-status-codes@^3.0.0: 563 | version "3.0.0" 564 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 565 | 566 | caller-path@^0.1.0: 567 | version "0.1.0" 568 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 569 | dependencies: 570 | callsites "^0.2.0" 571 | 572 | callsites@^0.2.0: 573 | version "0.2.0" 574 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 575 | 576 | callsites@^2.0.0: 577 | version "2.0.0" 578 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 579 | 580 | camelcase@^1.0.2: 581 | version "1.2.1" 582 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 583 | 584 | camelcase@^3.0.0: 585 | version "3.0.0" 586 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 587 | 588 | camelcase@^4.1.0: 589 | version "4.1.0" 590 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 591 | 592 | caniuse-api@^1.5.2: 593 | version "1.6.1" 594 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" 595 | dependencies: 596 | browserslist "^1.3.6" 597 | caniuse-db "^1.0.30000529" 598 | lodash.memoize "^4.1.2" 599 | lodash.uniq "^4.5.0" 600 | 601 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: 602 | version "1.0.30000810" 603 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000810.tgz#bd25830c41efab64339a2e381f49677343c84509" 604 | 605 | caseless@~0.12.0: 606 | version "0.12.0" 607 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 608 | 609 | center-align@^0.1.1: 610 | version "0.1.3" 611 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 612 | dependencies: 613 | align-text "^0.1.3" 614 | lazy-cache "^1.0.3" 615 | 616 | chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: 617 | version "1.1.3" 618 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 619 | dependencies: 620 | ansi-styles "^2.2.1" 621 | escape-string-regexp "^1.0.2" 622 | has-ansi "^2.0.0" 623 | strip-ansi "^3.0.0" 624 | supports-color "^2.0.0" 625 | 626 | chalk@^2.3.1: 627 | version "2.3.1" 628 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796" 629 | dependencies: 630 | ansi-styles "^3.2.0" 631 | escape-string-regexp "^1.0.5" 632 | supports-color "^5.2.0" 633 | 634 | chokidar@^1.7.0: 635 | version "1.7.0" 636 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 637 | dependencies: 638 | anymatch "^1.3.0" 639 | async-each "^1.0.0" 640 | glob-parent "^2.0.0" 641 | inherits "^2.0.1" 642 | is-binary-path "^1.0.0" 643 | is-glob "^2.0.0" 644 | path-is-absolute "^1.0.0" 645 | readdirp "^2.0.0" 646 | optionalDependencies: 647 | fsevents "^1.0.0" 648 | 649 | ci-info@^1.0.0: 650 | version "1.0.0" 651 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" 652 | 653 | cipher-base@^1.0.0, cipher-base@^1.0.1: 654 | version "1.0.3" 655 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" 656 | dependencies: 657 | inherits "^2.0.1" 658 | 659 | circular-json@^0.3.1: 660 | version "0.3.1" 661 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" 662 | 663 | clap@^1.0.9: 664 | version "1.2.3" 665 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51" 666 | dependencies: 667 | chalk "^1.1.3" 668 | 669 | cli-cursor@^1.0.1: 670 | version "1.0.2" 671 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 672 | dependencies: 673 | restore-cursor "^1.0.1" 674 | 675 | cli-width@^2.0.0: 676 | version "2.1.0" 677 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" 678 | 679 | cliui@^2.1.0: 680 | version "2.1.0" 681 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 682 | dependencies: 683 | center-align "^0.1.1" 684 | right-align "^0.1.1" 685 | wordwrap "0.0.2" 686 | 687 | cliui@^3.2.0: 688 | version "3.2.0" 689 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 690 | dependencies: 691 | string-width "^1.0.1" 692 | strip-ansi "^3.0.1" 693 | wrap-ansi "^2.0.0" 694 | 695 | clone@^1.0.2: 696 | version "1.0.3" 697 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.3.tgz#298d7e2231660f40c003c2ed3140decf3f53085f" 698 | 699 | co@^4.6.0: 700 | version "4.6.0" 701 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 702 | 703 | coa@~1.0.1: 704 | version "1.0.4" 705 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" 706 | dependencies: 707 | q "^1.1.2" 708 | 709 | code-point-at@^1.0.0: 710 | version "1.1.0" 711 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 712 | 713 | color-convert@^1.3.0: 714 | version "1.9.1" 715 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 716 | dependencies: 717 | color-name "^1.1.1" 718 | 719 | color-convert@^1.9.0: 720 | version "1.9.0" 721 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 722 | dependencies: 723 | color-name "^1.1.1" 724 | 725 | color-name@^1.0.0, color-name@^1.1.1: 726 | version "1.1.3" 727 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 728 | 729 | color-string@^0.3.0: 730 | version "0.3.0" 731 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 732 | dependencies: 733 | color-name "^1.0.0" 734 | 735 | color@^0.11.0: 736 | version "0.11.4" 737 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 738 | dependencies: 739 | clone "^1.0.2" 740 | color-convert "^1.3.0" 741 | color-string "^0.3.0" 742 | 743 | colormin@^1.0.5: 744 | version "1.1.2" 745 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 746 | dependencies: 747 | color "^0.11.0" 748 | css-color-names "0.0.4" 749 | has "^1.0.1" 750 | 751 | colors@~1.1.2: 752 | version "1.1.2" 753 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 754 | 755 | combined-stream@^1.0.5, combined-stream@~1.0.5: 756 | version "1.0.5" 757 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 758 | dependencies: 759 | delayed-stream "~1.0.0" 760 | 761 | concat-map@0.0.1: 762 | version "0.0.1" 763 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 764 | 765 | concat-stream@^1.5.2: 766 | version "1.6.0" 767 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 768 | dependencies: 769 | inherits "^2.0.3" 770 | readable-stream "^2.2.2" 771 | typedarray "^0.0.6" 772 | 773 | console-browserify@^1.1.0: 774 | version "1.1.0" 775 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 776 | dependencies: 777 | date-now "^0.1.4" 778 | 779 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 780 | version "1.1.0" 781 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 782 | 783 | constants-browserify@^1.0.0: 784 | version "1.0.0" 785 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 786 | 787 | content-type-parser@^1.0.1: 788 | version "1.0.1" 789 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 790 | 791 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 792 | version "1.5.0" 793 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 794 | 795 | core-js@^2.4.0, core-js@^2.5.0: 796 | version "2.5.1" 797 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 798 | 799 | core-util-is@~1.0.0: 800 | version "1.0.2" 801 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 802 | 803 | create-ecdh@^4.0.0: 804 | version "4.0.0" 805 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 806 | dependencies: 807 | bn.js "^4.1.0" 808 | elliptic "^6.0.0" 809 | 810 | create-hash@^1.1.0, create-hash@^1.1.1: 811 | version "1.1.2" 812 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" 813 | dependencies: 814 | cipher-base "^1.0.1" 815 | inherits "^2.0.1" 816 | ripemd160 "^1.0.0" 817 | sha.js "^2.3.6" 818 | 819 | create-hmac@^1.1.0, create-hmac@^1.1.2: 820 | version "1.1.4" 821 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" 822 | dependencies: 823 | create-hash "^1.1.0" 824 | inherits "^2.0.1" 825 | 826 | cross-spawn@^5.0.1: 827 | version "5.1.0" 828 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 829 | dependencies: 830 | lru-cache "^4.0.1" 831 | shebang-command "^1.2.0" 832 | which "^1.2.9" 833 | 834 | cryptiles@2.x.x: 835 | version "2.0.5" 836 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 837 | dependencies: 838 | boom "2.x.x" 839 | 840 | crypto-browserify@^3.11.0: 841 | version "3.11.0" 842 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" 843 | dependencies: 844 | browserify-cipher "^1.0.0" 845 | browserify-sign "^4.0.0" 846 | create-ecdh "^4.0.0" 847 | create-hash "^1.1.0" 848 | create-hmac "^1.1.0" 849 | diffie-hellman "^5.0.0" 850 | inherits "^2.0.1" 851 | pbkdf2 "^3.0.3" 852 | public-encrypt "^4.0.0" 853 | randombytes "^2.0.0" 854 | 855 | css-color-names@0.0.4: 856 | version "0.0.4" 857 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 858 | 859 | css-loader@^0.28.10: 860 | version "0.28.10" 861 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.10.tgz#40282e79230f7bcb4e483efa631d670b735ebf42" 862 | dependencies: 863 | babel-code-frame "^6.26.0" 864 | css-selector-tokenizer "^0.7.0" 865 | cssnano "^3.10.0" 866 | icss-utils "^2.1.0" 867 | loader-utils "^1.0.2" 868 | lodash.camelcase "^4.3.0" 869 | object-assign "^4.1.1" 870 | postcss "^5.0.6" 871 | postcss-modules-extract-imports "^1.2.0" 872 | postcss-modules-local-by-default "^1.2.0" 873 | postcss-modules-scope "^1.1.0" 874 | postcss-modules-values "^1.3.0" 875 | postcss-value-parser "^3.3.0" 876 | source-list-map "^2.0.0" 877 | 878 | css-selector-tokenizer@^0.7.0: 879 | version "0.7.0" 880 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 881 | dependencies: 882 | cssesc "^0.1.0" 883 | fastparse "^1.1.1" 884 | regexpu-core "^1.0.0" 885 | 886 | cssesc@^0.1.0: 887 | version "0.1.0" 888 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 889 | 890 | cssnano@^3.10.0: 891 | version "3.10.0" 892 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 893 | dependencies: 894 | autoprefixer "^6.3.1" 895 | decamelize "^1.1.2" 896 | defined "^1.0.0" 897 | has "^1.0.1" 898 | object-assign "^4.0.1" 899 | postcss "^5.0.14" 900 | postcss-calc "^5.2.0" 901 | postcss-colormin "^2.1.8" 902 | postcss-convert-values "^2.3.4" 903 | postcss-discard-comments "^2.0.4" 904 | postcss-discard-duplicates "^2.0.1" 905 | postcss-discard-empty "^2.0.1" 906 | postcss-discard-overridden "^0.1.1" 907 | postcss-discard-unused "^2.2.1" 908 | postcss-filter-plugins "^2.0.0" 909 | postcss-merge-idents "^2.1.5" 910 | postcss-merge-longhand "^2.0.1" 911 | postcss-merge-rules "^2.0.3" 912 | postcss-minify-font-values "^1.0.2" 913 | postcss-minify-gradients "^1.0.1" 914 | postcss-minify-params "^1.0.4" 915 | postcss-minify-selectors "^2.0.4" 916 | postcss-normalize-charset "^1.1.0" 917 | postcss-normalize-url "^3.0.7" 918 | postcss-ordered-values "^2.1.0" 919 | postcss-reduce-idents "^2.2.2" 920 | postcss-reduce-initial "^1.0.0" 921 | postcss-reduce-transforms "^1.0.3" 922 | postcss-svgo "^2.1.1" 923 | postcss-unique-selectors "^2.0.2" 924 | postcss-value-parser "^3.2.3" 925 | postcss-zindex "^2.0.1" 926 | 927 | csso@~2.3.1: 928 | version "2.3.2" 929 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" 930 | dependencies: 931 | clap "^1.0.9" 932 | source-map "^0.5.3" 933 | 934 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 935 | version "0.3.2" 936 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 937 | 938 | "cssstyle@>= 0.2.37 < 0.3.0": 939 | version "0.2.37" 940 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 941 | dependencies: 942 | cssom "0.3.x" 943 | 944 | d@1: 945 | version "1.0.0" 946 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 947 | dependencies: 948 | es5-ext "^0.10.9" 949 | 950 | dashdash@^1.12.0: 951 | version "1.14.1" 952 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 953 | dependencies: 954 | assert-plus "^1.0.0" 955 | 956 | date-now@^0.1.4: 957 | version "0.1.4" 958 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 959 | 960 | debug@^2.1.1, debug@^2.2.0: 961 | version "2.6.3" 962 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 963 | dependencies: 964 | ms "0.7.2" 965 | 966 | debug@^2.6.3, debug@^2.6.8: 967 | version "2.6.8" 968 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 969 | dependencies: 970 | ms "2.0.0" 971 | 972 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 973 | version "1.2.0" 974 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 975 | 976 | deep-extend@~0.4.0: 977 | version "0.4.1" 978 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 979 | 980 | deep-is@~0.1.3: 981 | version "0.1.3" 982 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 983 | 984 | default-require-extensions@^1.0.0: 985 | version "1.0.0" 986 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 987 | dependencies: 988 | strip-bom "^2.0.0" 989 | 990 | defined@^1.0.0: 991 | version "1.0.0" 992 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 993 | 994 | del@^2.0.2: 995 | version "2.2.2" 996 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 997 | dependencies: 998 | globby "^5.0.0" 999 | is-path-cwd "^1.0.0" 1000 | is-path-in-cwd "^1.0.0" 1001 | object-assign "^4.0.1" 1002 | pify "^2.0.0" 1003 | pinkie-promise "^2.0.0" 1004 | rimraf "^2.2.8" 1005 | 1006 | delayed-stream@~1.0.0: 1007 | version "1.0.0" 1008 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1009 | 1010 | delegates@^1.0.0: 1011 | version "1.0.0" 1012 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1013 | 1014 | des.js@^1.0.0: 1015 | version "1.0.0" 1016 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1017 | dependencies: 1018 | inherits "^2.0.1" 1019 | minimalistic-assert "^1.0.0" 1020 | 1021 | detect-indent@^4.0.0: 1022 | version "4.0.0" 1023 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1024 | dependencies: 1025 | repeating "^2.0.0" 1026 | 1027 | diff@^3.2.0: 1028 | version "3.3.1" 1029 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 1030 | 1031 | diffie-hellman@^5.0.0: 1032 | version "5.0.2" 1033 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1034 | dependencies: 1035 | bn.js "^4.1.0" 1036 | miller-rabin "^4.0.0" 1037 | randombytes "^2.0.0" 1038 | 1039 | doctrine@^2.0.0: 1040 | version "2.0.0" 1041 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1042 | dependencies: 1043 | esutils "^2.0.2" 1044 | isarray "^1.0.0" 1045 | 1046 | domain-browser@^1.1.1: 1047 | version "1.1.7" 1048 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1049 | 1050 | ecc-jsbn@~0.1.1: 1051 | version "0.1.1" 1052 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1053 | dependencies: 1054 | jsbn "~0.1.0" 1055 | 1056 | electron-to-chromium@^1.2.7: 1057 | version "1.3.33" 1058 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.33.tgz#bf00703d62a7c65238136578c352d6c5c042a545" 1059 | 1060 | elliptic@^6.0.0: 1061 | version "6.4.0" 1062 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1063 | dependencies: 1064 | bn.js "^4.4.0" 1065 | brorand "^1.0.1" 1066 | hash.js "^1.0.0" 1067 | hmac-drbg "^1.0.0" 1068 | inherits "^2.0.1" 1069 | minimalistic-assert "^1.0.0" 1070 | minimalistic-crypto-utils "^1.0.0" 1071 | 1072 | emojis-list@^2.0.0: 1073 | version "2.1.0" 1074 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1075 | 1076 | enhanced-resolve@^3.4.0: 1077 | version "3.4.1" 1078 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 1079 | dependencies: 1080 | graceful-fs "^4.1.2" 1081 | memory-fs "^0.4.0" 1082 | object-assign "^4.0.1" 1083 | tapable "^0.2.7" 1084 | 1085 | errno@^0.1.3, errno@^0.1.4: 1086 | version "0.1.4" 1087 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1088 | dependencies: 1089 | prr "~0.0.0" 1090 | 1091 | error-ex@^1.2.0: 1092 | version "1.3.1" 1093 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1094 | dependencies: 1095 | is-arrayish "^0.2.1" 1096 | 1097 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: 1098 | version "0.10.15" 1099 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.15.tgz#c330a5934c1ee21284a7c081a86e5fd937c91ea6" 1100 | dependencies: 1101 | es6-iterator "2" 1102 | es6-symbol "~3.1" 1103 | 1104 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: 1105 | version "2.0.1" 1106 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" 1107 | dependencies: 1108 | d "1" 1109 | es5-ext "^0.10.14" 1110 | es6-symbol "^3.1" 1111 | 1112 | es6-map@^0.1.3: 1113 | version "0.1.5" 1114 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 1115 | dependencies: 1116 | d "1" 1117 | es5-ext "~0.10.14" 1118 | es6-iterator "~2.0.1" 1119 | es6-set "~0.1.5" 1120 | es6-symbol "~3.1.1" 1121 | event-emitter "~0.3.5" 1122 | 1123 | es6-set@~0.1.5: 1124 | version "0.1.5" 1125 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 1126 | dependencies: 1127 | d "1" 1128 | es5-ext "~0.10.14" 1129 | es6-iterator "~2.0.1" 1130 | es6-symbol "3.1.1" 1131 | event-emitter "~0.3.5" 1132 | 1133 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: 1134 | version "3.1.1" 1135 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 1136 | dependencies: 1137 | d "1" 1138 | es5-ext "~0.10.14" 1139 | 1140 | es6-weak-map@^2.0.1: 1141 | version "2.0.2" 1142 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 1143 | dependencies: 1144 | d "1" 1145 | es5-ext "^0.10.14" 1146 | es6-iterator "^2.0.1" 1147 | es6-symbol "^3.1.1" 1148 | 1149 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1150 | version "1.0.5" 1151 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1152 | 1153 | escodegen@^1.6.1: 1154 | version "1.8.1" 1155 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1156 | dependencies: 1157 | esprima "^2.7.1" 1158 | estraverse "^1.9.1" 1159 | esutils "^2.0.2" 1160 | optionator "^0.8.1" 1161 | optionalDependencies: 1162 | source-map "~0.2.0" 1163 | 1164 | escope@^3.6.0: 1165 | version "3.6.0" 1166 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 1167 | dependencies: 1168 | es6-map "^0.1.3" 1169 | es6-weak-map "^2.0.1" 1170 | esrecurse "^4.1.0" 1171 | estraverse "^4.1.1" 1172 | 1173 | eslint-config-xo-space@^0.15.0: 1174 | version "0.15.0" 1175 | resolved "https://registry.yarnpkg.com/eslint-config-xo-space/-/eslint-config-xo-space-0.15.0.tgz#1174a376c159afd03295d5a1ca9c488fb5379cd0" 1176 | dependencies: 1177 | eslint-config-xo "^0.17.0" 1178 | 1179 | eslint-config-xo@^0.17.0: 1180 | version "0.17.0" 1181 | resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.17.0.tgz#1e7d4a86bf49179805c4622e832a7b1beeb4e881" 1182 | 1183 | eslint-formatter-pretty@^1.1.0: 1184 | version "1.1.0" 1185 | resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-1.1.0.tgz#ab4d06da02fed8c13ae9f0dc540a433ef7ed6f5e" 1186 | dependencies: 1187 | ansi-escapes "^1.4.0" 1188 | chalk "^1.1.3" 1189 | log-symbols "^1.0.2" 1190 | plur "^2.1.2" 1191 | string-width "^2.0.0" 1192 | 1193 | eslint-plugin-jest@^21.0.2: 1194 | version "21.0.2" 1195 | resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-21.0.2.tgz#2eba7745844648513889d9d1bbefa3f5e3d05e54" 1196 | 1197 | eslint-plugin-no-use-extend-native@^0.3.12: 1198 | version "0.3.12" 1199 | resolved "https://registry.yarnpkg.com/eslint-plugin-no-use-extend-native/-/eslint-plugin-no-use-extend-native-0.3.12.tgz#3ad9a00c2df23b5d7f7f6be91550985a4ab701ea" 1200 | dependencies: 1201 | is-get-set-prop "^1.0.0" 1202 | is-js-type "^2.0.0" 1203 | is-obj-prop "^1.0.0" 1204 | is-proto-prop "^1.0.0" 1205 | 1206 | eslint-plugin-promise@^3.4.0: 1207 | version "3.5.0" 1208 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.5.0.tgz#78fbb6ffe047201627569e85a6c5373af2a68fca" 1209 | 1210 | eslint-plugin-unicorn@^1.0.0: 1211 | version "1.0.0" 1212 | resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-1.0.0.tgz#b761ad233d34d164cda5c41217571609bd1ac161" 1213 | dependencies: 1214 | lodash.camelcase "^4.1.1" 1215 | lodash.kebabcase "^4.0.1" 1216 | lodash.snakecase "^4.0.1" 1217 | lodash.upperfirst "^4.2.0" 1218 | req-all "^0.1.0" 1219 | 1220 | eslint@^3.13.1: 1221 | version "3.19.0" 1222 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 1223 | dependencies: 1224 | babel-code-frame "^6.16.0" 1225 | chalk "^1.1.3" 1226 | concat-stream "^1.5.2" 1227 | debug "^2.1.1" 1228 | doctrine "^2.0.0" 1229 | escope "^3.6.0" 1230 | espree "^3.4.0" 1231 | esquery "^1.0.0" 1232 | estraverse "^4.2.0" 1233 | esutils "^2.0.2" 1234 | file-entry-cache "^2.0.0" 1235 | glob "^7.0.3" 1236 | globals "^9.14.0" 1237 | ignore "^3.2.0" 1238 | imurmurhash "^0.1.4" 1239 | inquirer "^0.12.0" 1240 | is-my-json-valid "^2.10.0" 1241 | is-resolvable "^1.0.0" 1242 | js-yaml "^3.5.1" 1243 | json-stable-stringify "^1.0.0" 1244 | levn "^0.3.0" 1245 | lodash "^4.0.0" 1246 | mkdirp "^0.5.0" 1247 | natural-compare "^1.4.0" 1248 | optionator "^0.8.2" 1249 | path-is-inside "^1.0.1" 1250 | pluralize "^1.2.1" 1251 | progress "^1.1.8" 1252 | require-uncached "^1.0.2" 1253 | shelljs "^0.7.5" 1254 | strip-bom "^3.0.0" 1255 | strip-json-comments "~2.0.1" 1256 | table "^3.7.8" 1257 | text-table "~0.2.0" 1258 | user-home "^2.0.0" 1259 | 1260 | espree@^3.4.0: 1261 | version "3.4.1" 1262 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.4.1.tgz#28a83ab4aaed71ed8fe0f5efe61b76a05c13c4d2" 1263 | dependencies: 1264 | acorn "^5.0.1" 1265 | acorn-jsx "^3.0.0" 1266 | 1267 | esprima@^2.6.0, esprima@^2.7.1: 1268 | version "2.7.3" 1269 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1270 | 1271 | esprima@^3.1.1: 1272 | version "3.1.3" 1273 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1274 | 1275 | esprima@^4.0.0: 1276 | version "4.0.0" 1277 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1278 | 1279 | esquery@^1.0.0: 1280 | version "1.0.0" 1281 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1282 | dependencies: 1283 | estraverse "^4.0.0" 1284 | 1285 | esrecurse@^4.1.0: 1286 | version "4.1.0" 1287 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" 1288 | dependencies: 1289 | estraverse "~4.1.0" 1290 | object-assign "^4.0.1" 1291 | 1292 | estraverse@^1.9.1: 1293 | version "1.9.3" 1294 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1295 | 1296 | estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: 1297 | version "4.2.0" 1298 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1299 | 1300 | estraverse@~4.1.0: 1301 | version "4.1.1" 1302 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" 1303 | 1304 | esutils@^2.0.2: 1305 | version "2.0.2" 1306 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1307 | 1308 | event-emitter@~0.3.5: 1309 | version "0.3.5" 1310 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 1311 | dependencies: 1312 | d "1" 1313 | es5-ext "~0.10.14" 1314 | 1315 | events@^1.0.0: 1316 | version "1.1.1" 1317 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1318 | 1319 | evp_bytestokey@^1.0.0: 1320 | version "1.0.0" 1321 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" 1322 | dependencies: 1323 | create-hash "^1.1.1" 1324 | 1325 | exec-sh@^0.2.0: 1326 | version "0.2.0" 1327 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.0.tgz#14f75de3f20d286ef933099b2ce50a90359cef10" 1328 | dependencies: 1329 | merge "^1.1.3" 1330 | 1331 | execa@^0.7.0: 1332 | version "0.7.0" 1333 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1334 | dependencies: 1335 | cross-spawn "^5.0.1" 1336 | get-stream "^3.0.0" 1337 | is-stream "^1.1.0" 1338 | npm-run-path "^2.0.0" 1339 | p-finally "^1.0.0" 1340 | signal-exit "^3.0.0" 1341 | strip-eof "^1.0.0" 1342 | 1343 | exit-hook@^1.0.0: 1344 | version "1.1.1" 1345 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 1346 | 1347 | expand-brackets@^0.1.4: 1348 | version "0.1.5" 1349 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1350 | dependencies: 1351 | is-posix-bracket "^0.1.0" 1352 | 1353 | expand-range@^1.8.1: 1354 | version "1.8.2" 1355 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1356 | dependencies: 1357 | fill-range "^2.1.0" 1358 | 1359 | extend@~3.0.0: 1360 | version "3.0.0" 1361 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1362 | 1363 | extglob@^0.3.1: 1364 | version "0.3.2" 1365 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1366 | dependencies: 1367 | is-extglob "^1.0.0" 1368 | 1369 | extract-text-webpack-plugin@^3.0.2: 1370 | version "3.0.2" 1371 | resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz#5f043eaa02f9750a9258b78c0a6e0dc1408fb2f7" 1372 | dependencies: 1373 | async "^2.4.1" 1374 | loader-utils "^1.1.0" 1375 | schema-utils "^0.3.0" 1376 | webpack-sources "^1.0.1" 1377 | 1378 | extsprintf@1.0.2: 1379 | version "1.0.2" 1380 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1381 | 1382 | fast-deep-equal@^1.0.0: 1383 | version "1.0.0" 1384 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1385 | 1386 | fast-json-stable-stringify@^2.0.0: 1387 | version "2.0.0" 1388 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1389 | 1390 | fast-levenshtein@~2.0.4: 1391 | version "2.0.6" 1392 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1393 | 1394 | fastparse@^1.1.1: 1395 | version "1.1.1" 1396 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1397 | 1398 | fb-watchman@^1.8.0: 1399 | version "1.9.2" 1400 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-1.9.2.tgz#a24cf47827f82d38fb59a69ad70b76e3b6ae7383" 1401 | dependencies: 1402 | bser "1.0.2" 1403 | 1404 | fb-watchman@^2.0.0: 1405 | version "2.0.0" 1406 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1407 | dependencies: 1408 | bser "^2.0.0" 1409 | 1410 | figures@^1.3.5: 1411 | version "1.7.0" 1412 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 1413 | dependencies: 1414 | escape-string-regexp "^1.0.5" 1415 | object-assign "^4.1.0" 1416 | 1417 | file-entry-cache@^2.0.0: 1418 | version "2.0.0" 1419 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1420 | dependencies: 1421 | flat-cache "^1.2.1" 1422 | object-assign "^4.0.1" 1423 | 1424 | file-loader@^1.1.9: 1425 | version "1.1.9" 1426 | resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-1.1.9.tgz#cf152aedbcfb3d67038d0845efb7cf11a96e53de" 1427 | dependencies: 1428 | loader-utils "^1.0.2" 1429 | schema-utils "^0.4.5" 1430 | 1431 | filename-regex@^2.0.0: 1432 | version "2.0.0" 1433 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1434 | 1435 | fileset@^2.0.2: 1436 | version "2.0.3" 1437 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1438 | dependencies: 1439 | glob "^7.0.3" 1440 | minimatch "^3.0.3" 1441 | 1442 | fill-range@^2.1.0: 1443 | version "2.2.3" 1444 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1445 | dependencies: 1446 | is-number "^2.1.0" 1447 | isobject "^2.0.0" 1448 | randomatic "^1.1.3" 1449 | repeat-element "^1.1.2" 1450 | repeat-string "^1.5.2" 1451 | 1452 | find-up@^1.0.0: 1453 | version "1.1.2" 1454 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1455 | dependencies: 1456 | path-exists "^2.0.0" 1457 | pinkie-promise "^2.0.0" 1458 | 1459 | find-up@^2.0.0, find-up@^2.1.0: 1460 | version "2.1.0" 1461 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1462 | dependencies: 1463 | locate-path "^2.0.0" 1464 | 1465 | flat-cache@^1.2.1: 1466 | version "1.2.2" 1467 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" 1468 | dependencies: 1469 | circular-json "^0.3.1" 1470 | del "^2.0.2" 1471 | graceful-fs "^4.1.2" 1472 | write "^0.2.1" 1473 | 1474 | flatten@^1.0.2: 1475 | version "1.0.2" 1476 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1477 | 1478 | for-in@^1.0.1: 1479 | version "1.0.2" 1480 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1481 | 1482 | for-own@^0.1.4: 1483 | version "0.1.5" 1484 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1485 | dependencies: 1486 | for-in "^1.0.1" 1487 | 1488 | forever-agent@~0.6.1: 1489 | version "0.6.1" 1490 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1491 | 1492 | form-data@~2.1.1: 1493 | version "2.1.2" 1494 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1495 | dependencies: 1496 | asynckit "^0.4.0" 1497 | combined-stream "^1.0.5" 1498 | mime-types "^2.1.12" 1499 | 1500 | fs.realpath@^1.0.0: 1501 | version "1.0.0" 1502 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1503 | 1504 | fsevents@^1.0.0: 1505 | version "1.1.1" 1506 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1507 | dependencies: 1508 | nan "^2.3.0" 1509 | node-pre-gyp "^0.6.29" 1510 | 1511 | fstream-ignore@^1.0.5: 1512 | version "1.0.5" 1513 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1514 | dependencies: 1515 | fstream "^1.0.0" 1516 | inherits "2" 1517 | minimatch "^3.0.0" 1518 | 1519 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1520 | version "1.0.11" 1521 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1522 | dependencies: 1523 | graceful-fs "^4.1.2" 1524 | inherits "~2.0.0" 1525 | mkdirp ">=0.5 0" 1526 | rimraf "2" 1527 | 1528 | function-bind@^1.0.2: 1529 | version "1.1.1" 1530 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1531 | 1532 | gauge@~2.7.1: 1533 | version "2.7.3" 1534 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1535 | dependencies: 1536 | aproba "^1.0.3" 1537 | console-control-strings "^1.0.0" 1538 | has-unicode "^2.0.0" 1539 | object-assign "^4.1.0" 1540 | signal-exit "^3.0.0" 1541 | string-width "^1.0.1" 1542 | strip-ansi "^3.0.1" 1543 | wide-align "^1.1.0" 1544 | 1545 | generate-function@^2.0.0: 1546 | version "2.0.0" 1547 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 1548 | 1549 | generate-object-property@^1.1.0: 1550 | version "1.2.0" 1551 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1552 | dependencies: 1553 | is-property "^1.0.0" 1554 | 1555 | get-caller-file@^1.0.1: 1556 | version "1.0.2" 1557 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1558 | 1559 | get-set-props@^0.1.0: 1560 | version "0.1.0" 1561 | resolved "https://registry.yarnpkg.com/get-set-props/-/get-set-props-0.1.0.tgz#998475c178445686d0b32246da5df8dbcfbe8ea3" 1562 | 1563 | get-stream@^3.0.0: 1564 | version "3.0.0" 1565 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1566 | 1567 | getpass@^0.1.1: 1568 | version "0.1.6" 1569 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1570 | dependencies: 1571 | assert-plus "^1.0.0" 1572 | 1573 | glob-base@^0.3.0: 1574 | version "0.3.0" 1575 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1576 | dependencies: 1577 | glob-parent "^2.0.0" 1578 | is-glob "^2.0.0" 1579 | 1580 | glob-parent@^2.0.0: 1581 | version "2.0.0" 1582 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1583 | dependencies: 1584 | is-glob "^2.0.0" 1585 | 1586 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 1587 | version "7.1.1" 1588 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1589 | dependencies: 1590 | fs.realpath "^1.0.0" 1591 | inflight "^1.0.4" 1592 | inherits "2" 1593 | minimatch "^3.0.2" 1594 | once "^1.3.0" 1595 | path-is-absolute "^1.0.0" 1596 | 1597 | glob@^7.1.1: 1598 | version "7.1.2" 1599 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1600 | dependencies: 1601 | fs.realpath "^1.0.0" 1602 | inflight "^1.0.4" 1603 | inherits "2" 1604 | minimatch "^3.0.4" 1605 | once "^1.3.0" 1606 | path-is-absolute "^1.0.0" 1607 | 1608 | globals@^9.14.0: 1609 | version "9.17.0" 1610 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1611 | 1612 | globals@^9.18.0: 1613 | version "9.18.0" 1614 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1615 | 1616 | globby@^5.0.0: 1617 | version "5.0.0" 1618 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1619 | dependencies: 1620 | array-union "^1.0.1" 1621 | arrify "^1.0.0" 1622 | glob "^7.0.3" 1623 | object-assign "^4.0.1" 1624 | pify "^2.0.0" 1625 | pinkie-promise "^2.0.0" 1626 | 1627 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1628 | version "4.1.11" 1629 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1630 | 1631 | growly@^1.3.0: 1632 | version "1.3.0" 1633 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1634 | 1635 | handlebars@^4.0.3: 1636 | version "4.0.10" 1637 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1638 | dependencies: 1639 | async "^1.4.0" 1640 | optimist "^0.6.1" 1641 | source-map "^0.4.4" 1642 | optionalDependencies: 1643 | uglify-js "^2.6" 1644 | 1645 | har-schema@^1.0.5: 1646 | version "1.0.5" 1647 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1648 | 1649 | har-validator@~4.2.1: 1650 | version "4.2.1" 1651 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1652 | dependencies: 1653 | ajv "^4.9.1" 1654 | har-schema "^1.0.5" 1655 | 1656 | has-ansi@^2.0.0: 1657 | version "2.0.0" 1658 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1659 | dependencies: 1660 | ansi-regex "^2.0.0" 1661 | 1662 | has-flag@^1.0.0: 1663 | version "1.0.0" 1664 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1665 | 1666 | has-flag@^2.0.0: 1667 | version "2.0.0" 1668 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1669 | 1670 | has-flag@^3.0.0: 1671 | version "3.0.0" 1672 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1673 | 1674 | has-unicode@^2.0.0: 1675 | version "2.0.1" 1676 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1677 | 1678 | has@^1.0.1: 1679 | version "1.0.1" 1680 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1681 | dependencies: 1682 | function-bind "^1.0.2" 1683 | 1684 | hash.js@^1.0.0, hash.js@^1.0.3: 1685 | version "1.0.3" 1686 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" 1687 | dependencies: 1688 | inherits "^2.0.1" 1689 | 1690 | hawk@~3.1.3: 1691 | version "3.1.3" 1692 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1693 | dependencies: 1694 | boom "2.x.x" 1695 | cryptiles "2.x.x" 1696 | hoek "2.x.x" 1697 | sntp "1.x.x" 1698 | 1699 | hmac-drbg@^1.0.0: 1700 | version "1.0.0" 1701 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.0.tgz#3db471f45aae4a994a0688322171f51b8b91bee5" 1702 | dependencies: 1703 | hash.js "^1.0.3" 1704 | minimalistic-assert "^1.0.0" 1705 | minimalistic-crypto-utils "^1.0.1" 1706 | 1707 | hoek@2.x.x: 1708 | version "2.16.3" 1709 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1710 | 1711 | home-or-tmp@^2.0.0: 1712 | version "2.0.0" 1713 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1714 | dependencies: 1715 | os-homedir "^1.0.0" 1716 | os-tmpdir "^1.0.1" 1717 | 1718 | hosted-git-info@^2.1.4: 1719 | version "2.4.1" 1720 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.1.tgz#4b0445e41c004a8bd1337773a4ff790ca40318c8" 1721 | 1722 | html-comment-regex@^1.1.0: 1723 | version "1.1.1" 1724 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 1725 | 1726 | html-encoding-sniffer@^1.0.1: 1727 | version "1.0.1" 1728 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1729 | dependencies: 1730 | whatwg-encoding "^1.0.1" 1731 | 1732 | http-signature@~1.1.0: 1733 | version "1.1.1" 1734 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1735 | dependencies: 1736 | assert-plus "^0.2.0" 1737 | jsprim "^1.2.2" 1738 | sshpk "^1.7.0" 1739 | 1740 | https-browserify@0.0.1: 1741 | version "0.0.1" 1742 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1743 | 1744 | iconv-lite@0.4.13: 1745 | version "0.4.13" 1746 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1747 | 1748 | icss-replace-symbols@^1.1.0: 1749 | version "1.1.0" 1750 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" 1751 | 1752 | icss-utils@^2.1.0: 1753 | version "2.1.0" 1754 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" 1755 | dependencies: 1756 | postcss "^6.0.1" 1757 | 1758 | ieee754@^1.1.4: 1759 | version "1.1.8" 1760 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1761 | 1762 | ignore@^3.2.0: 1763 | version "3.2.6" 1764 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.2.6.tgz#26e8da0644be0bb4cb39516f6c79f0e0f4ffe48c" 1765 | 1766 | imurmurhash@^0.1.4: 1767 | version "0.1.4" 1768 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1769 | 1770 | indexes-of@^1.0.1: 1771 | version "1.0.1" 1772 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1773 | 1774 | indexof@0.0.1: 1775 | version "0.0.1" 1776 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1777 | 1778 | inflight@^1.0.4: 1779 | version "1.0.6" 1780 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1781 | dependencies: 1782 | once "^1.3.0" 1783 | wrappy "1" 1784 | 1785 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: 1786 | version "2.0.3" 1787 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1788 | 1789 | inherits@2.0.1: 1790 | version "2.0.1" 1791 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1792 | 1793 | ini@~1.3.0: 1794 | version "1.3.4" 1795 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1796 | 1797 | inquirer@^0.12.0: 1798 | version "0.12.0" 1799 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1800 | dependencies: 1801 | ansi-escapes "^1.1.0" 1802 | ansi-regex "^2.0.0" 1803 | chalk "^1.0.0" 1804 | cli-cursor "^1.0.1" 1805 | cli-width "^2.0.0" 1806 | figures "^1.3.5" 1807 | lodash "^4.3.0" 1808 | readline2 "^1.0.1" 1809 | run-async "^0.1.0" 1810 | rx-lite "^3.1.2" 1811 | string-width "^1.0.1" 1812 | strip-ansi "^3.0.0" 1813 | through "^2.3.6" 1814 | 1815 | interpret@^1.0.0: 1816 | version "1.0.2" 1817 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.2.tgz#f4f623f0bb7122f15f5717c8e254b8161b5c5b2d" 1818 | 1819 | invariant@^2.2.2: 1820 | version "2.2.2" 1821 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1822 | dependencies: 1823 | loose-envify "^1.0.0" 1824 | 1825 | invert-kv@^1.0.0: 1826 | version "1.0.0" 1827 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1828 | 1829 | irregular-plurals@^1.0.0: 1830 | version "1.2.0" 1831 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.2.0.tgz#38f299834ba8c00c30be9c554e137269752ff3ac" 1832 | 1833 | is-absolute-url@^2.0.0: 1834 | version "2.1.0" 1835 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 1836 | 1837 | is-arrayish@^0.2.1: 1838 | version "0.2.1" 1839 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1840 | 1841 | is-binary-path@^1.0.0: 1842 | version "1.0.1" 1843 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1844 | dependencies: 1845 | binary-extensions "^1.0.0" 1846 | 1847 | is-buffer@^1.0.2: 1848 | version "1.1.5" 1849 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1850 | 1851 | is-builtin-module@^1.0.0: 1852 | version "1.0.0" 1853 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1854 | dependencies: 1855 | builtin-modules "^1.0.0" 1856 | 1857 | is-ci@^1.0.10: 1858 | version "1.0.10" 1859 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1860 | dependencies: 1861 | ci-info "^1.0.0" 1862 | 1863 | is-dotfile@^1.0.0: 1864 | version "1.0.2" 1865 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1866 | 1867 | is-equal-shallow@^0.1.3: 1868 | version "0.1.3" 1869 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1870 | dependencies: 1871 | is-primitive "^2.0.0" 1872 | 1873 | is-extendable@^0.1.1: 1874 | version "0.1.1" 1875 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1876 | 1877 | is-extglob@^1.0.0: 1878 | version "1.0.0" 1879 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1880 | 1881 | is-finite@^1.0.0: 1882 | version "1.0.2" 1883 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1884 | dependencies: 1885 | number-is-nan "^1.0.0" 1886 | 1887 | is-fullwidth-code-point@^1.0.0: 1888 | version "1.0.0" 1889 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1890 | dependencies: 1891 | number-is-nan "^1.0.0" 1892 | 1893 | is-fullwidth-code-point@^2.0.0: 1894 | version "2.0.0" 1895 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1896 | 1897 | is-get-set-prop@^1.0.0: 1898 | version "1.0.0" 1899 | resolved "https://registry.yarnpkg.com/is-get-set-prop/-/is-get-set-prop-1.0.0.tgz#2731877e4d78a6a69edcce6bb9d68b0779e76312" 1900 | dependencies: 1901 | get-set-props "^0.1.0" 1902 | lowercase-keys "^1.0.0" 1903 | 1904 | is-glob@^2.0.0, is-glob@^2.0.1: 1905 | version "2.0.1" 1906 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1907 | dependencies: 1908 | is-extglob "^1.0.0" 1909 | 1910 | is-js-type@^2.0.0: 1911 | version "2.0.0" 1912 | resolved "https://registry.yarnpkg.com/is-js-type/-/is-js-type-2.0.0.tgz#73617006d659b4eb4729bba747d28782df0f7e22" 1913 | dependencies: 1914 | js-types "^1.0.0" 1915 | 1916 | is-my-json-valid@^2.10.0: 1917 | version "2.16.0" 1918 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" 1919 | dependencies: 1920 | generate-function "^2.0.0" 1921 | generate-object-property "^1.1.0" 1922 | jsonpointer "^4.0.0" 1923 | xtend "^4.0.0" 1924 | 1925 | is-number@^2.0.2, is-number@^2.1.0: 1926 | version "2.1.0" 1927 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1928 | dependencies: 1929 | kind-of "^3.0.2" 1930 | 1931 | is-obj-prop@^1.0.0: 1932 | version "1.0.0" 1933 | resolved "https://registry.yarnpkg.com/is-obj-prop/-/is-obj-prop-1.0.0.tgz#b34de79c450b8d7c73ab2cdf67dc875adb85f80e" 1934 | dependencies: 1935 | lowercase-keys "^1.0.0" 1936 | obj-props "^1.0.0" 1937 | 1938 | is-path-cwd@^1.0.0: 1939 | version "1.0.0" 1940 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1941 | 1942 | is-path-in-cwd@^1.0.0: 1943 | version "1.0.0" 1944 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 1945 | dependencies: 1946 | is-path-inside "^1.0.0" 1947 | 1948 | is-path-inside@^1.0.0: 1949 | version "1.0.0" 1950 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 1951 | dependencies: 1952 | path-is-inside "^1.0.1" 1953 | 1954 | is-plain-obj@^1.0.0: 1955 | version "1.1.0" 1956 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1957 | 1958 | is-posix-bracket@^0.1.0: 1959 | version "0.1.1" 1960 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1961 | 1962 | is-primitive@^2.0.0: 1963 | version "2.0.0" 1964 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1965 | 1966 | is-property@^1.0.0: 1967 | version "1.0.2" 1968 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1969 | 1970 | is-proto-prop@^1.0.0: 1971 | version "1.0.0" 1972 | resolved "https://registry.yarnpkg.com/is-proto-prop/-/is-proto-prop-1.0.0.tgz#b3951f95c089924fb5d4fcda6542ab3e83e2b220" 1973 | dependencies: 1974 | lowercase-keys "^1.0.0" 1975 | proto-props "^0.2.0" 1976 | 1977 | is-resolvable@^1.0.0: 1978 | version "1.0.0" 1979 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 1980 | dependencies: 1981 | tryit "^1.0.1" 1982 | 1983 | is-stream@^1.1.0: 1984 | version "1.1.0" 1985 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1986 | 1987 | is-svg@^2.0.0: 1988 | version "2.1.0" 1989 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 1990 | dependencies: 1991 | html-comment-regex "^1.1.0" 1992 | 1993 | is-typedarray@~1.0.0: 1994 | version "1.0.0" 1995 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1996 | 1997 | is-utf8@^0.2.0: 1998 | version "0.2.1" 1999 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2000 | 2001 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2002 | version "1.0.0" 2003 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2004 | 2005 | isexe@^2.0.0: 2006 | version "2.0.0" 2007 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2008 | 2009 | isobject@^2.0.0: 2010 | version "2.1.0" 2011 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2012 | dependencies: 2013 | isarray "1.0.0" 2014 | 2015 | isstream@~0.1.2: 2016 | version "0.1.2" 2017 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2018 | 2019 | istanbul-api@^1.1.1: 2020 | version "1.1.13" 2021 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.1.13.tgz#7197f64413600ebdfec6347a2dc3d4e03f97ed5a" 2022 | dependencies: 2023 | async "^2.1.4" 2024 | fileset "^2.0.2" 2025 | istanbul-lib-coverage "^1.1.1" 2026 | istanbul-lib-hook "^1.0.7" 2027 | istanbul-lib-instrument "^1.7.5" 2028 | istanbul-lib-report "^1.1.1" 2029 | istanbul-lib-source-maps "^1.2.1" 2030 | istanbul-reports "^1.1.2" 2031 | js-yaml "^3.7.0" 2032 | mkdirp "^0.5.1" 2033 | once "^1.4.0" 2034 | 2035 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 2036 | version "1.1.1" 2037 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2038 | 2039 | istanbul-lib-hook@^1.0.7: 2040 | version "1.0.7" 2041 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz#dd6607f03076578fe7d6f2a630cf143b49bacddc" 2042 | dependencies: 2043 | append-transform "^0.4.0" 2044 | 2045 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.2, istanbul-lib-instrument@^1.7.5: 2046 | version "1.7.5" 2047 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.5.tgz#adb596f8f0cb8b95e739206351a38a586af21b1e" 2048 | dependencies: 2049 | babel-generator "^6.18.0" 2050 | babel-template "^6.16.0" 2051 | babel-traverse "^6.18.0" 2052 | babel-types "^6.18.0" 2053 | babylon "^6.17.4" 2054 | istanbul-lib-coverage "^1.1.1" 2055 | semver "^5.3.0" 2056 | 2057 | istanbul-lib-report@^1.1.1: 2058 | version "1.1.1" 2059 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#f0e55f56655ffa34222080b7a0cd4760e1405fc9" 2060 | dependencies: 2061 | istanbul-lib-coverage "^1.1.1" 2062 | mkdirp "^0.5.1" 2063 | path-parse "^1.0.5" 2064 | supports-color "^3.1.2" 2065 | 2066 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.1: 2067 | version "1.2.1" 2068 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz#a6fe1acba8ce08eebc638e572e294d267008aa0c" 2069 | dependencies: 2070 | debug "^2.6.3" 2071 | istanbul-lib-coverage "^1.1.1" 2072 | mkdirp "^0.5.1" 2073 | rimraf "^2.6.1" 2074 | source-map "^0.5.3" 2075 | 2076 | istanbul-reports@^1.1.2: 2077 | version "1.1.2" 2078 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.2.tgz#0fb2e3f6aa9922bd3ce45d05d8ab4d5e8e07bd4f" 2079 | dependencies: 2080 | handlebars "^4.0.3" 2081 | 2082 | jest-changed-files@^20.0.3: 2083 | version "20.0.3" 2084 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-20.0.3.tgz#9394d5cc65c438406149bef1bf4d52b68e03e3f8" 2085 | 2086 | jest-cli@^20.0.4: 2087 | version "20.0.4" 2088 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-20.0.4.tgz#e532b19d88ae5bc6c417e8b0593a6fe954b1dc93" 2089 | dependencies: 2090 | ansi-escapes "^1.4.0" 2091 | callsites "^2.0.0" 2092 | chalk "^1.1.3" 2093 | graceful-fs "^4.1.11" 2094 | is-ci "^1.0.10" 2095 | istanbul-api "^1.1.1" 2096 | istanbul-lib-coverage "^1.0.1" 2097 | istanbul-lib-instrument "^1.4.2" 2098 | istanbul-lib-source-maps "^1.1.0" 2099 | jest-changed-files "^20.0.3" 2100 | jest-config "^20.0.4" 2101 | jest-docblock "^20.0.3" 2102 | jest-environment-jsdom "^20.0.3" 2103 | jest-haste-map "^20.0.4" 2104 | jest-jasmine2 "^20.0.4" 2105 | jest-message-util "^20.0.3" 2106 | jest-regex-util "^20.0.3" 2107 | jest-resolve-dependencies "^20.0.3" 2108 | jest-runtime "^20.0.4" 2109 | jest-snapshot "^20.0.3" 2110 | jest-util "^20.0.3" 2111 | micromatch "^2.3.11" 2112 | node-notifier "^5.0.2" 2113 | pify "^2.3.0" 2114 | slash "^1.0.0" 2115 | string-length "^1.0.1" 2116 | throat "^3.0.0" 2117 | which "^1.2.12" 2118 | worker-farm "^1.3.1" 2119 | yargs "^7.0.2" 2120 | 2121 | jest-config@^20.0.4: 2122 | version "20.0.4" 2123 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-20.0.4.tgz#e37930ab2217c913605eff13e7bd763ec48faeea" 2124 | dependencies: 2125 | chalk "^1.1.3" 2126 | glob "^7.1.1" 2127 | jest-environment-jsdom "^20.0.3" 2128 | jest-environment-node "^20.0.3" 2129 | jest-jasmine2 "^20.0.4" 2130 | jest-matcher-utils "^20.0.3" 2131 | jest-regex-util "^20.0.3" 2132 | jest-resolve "^20.0.4" 2133 | jest-validate "^20.0.3" 2134 | pretty-format "^20.0.3" 2135 | 2136 | jest-diff@^20.0.3: 2137 | version "20.0.3" 2138 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" 2139 | dependencies: 2140 | chalk "^1.1.3" 2141 | diff "^3.2.0" 2142 | jest-matcher-utils "^20.0.3" 2143 | pretty-format "^20.0.3" 2144 | 2145 | jest-docblock@^20.0.3: 2146 | version "20.0.3" 2147 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-20.0.3.tgz#17bea984342cc33d83c50fbe1545ea0efaa44712" 2148 | 2149 | jest-environment-jsdom@^20.0.3: 2150 | version "20.0.3" 2151 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz#048a8ac12ee225f7190417713834bb999787de99" 2152 | dependencies: 2153 | jest-mock "^20.0.3" 2154 | jest-util "^20.0.3" 2155 | jsdom "^9.12.0" 2156 | 2157 | jest-environment-node@^20.0.3: 2158 | version "20.0.3" 2159 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-20.0.3.tgz#d488bc4612af2c246e986e8ae7671a099163d403" 2160 | dependencies: 2161 | jest-mock "^20.0.3" 2162 | jest-util "^20.0.3" 2163 | 2164 | jest-haste-map@^20.0.4: 2165 | version "20.0.5" 2166 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-20.0.5.tgz#abad74efb1a005974a7b6517e11010709cab9112" 2167 | dependencies: 2168 | fb-watchman "^2.0.0" 2169 | graceful-fs "^4.1.11" 2170 | jest-docblock "^20.0.3" 2171 | micromatch "^2.3.11" 2172 | sane "~1.6.0" 2173 | worker-farm "^1.3.1" 2174 | 2175 | jest-jasmine2@^20.0.4: 2176 | version "20.0.4" 2177 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz#fcc5b1411780d911d042902ef1859e852e60d5e1" 2178 | dependencies: 2179 | chalk "^1.1.3" 2180 | graceful-fs "^4.1.11" 2181 | jest-diff "^20.0.3" 2182 | jest-matcher-utils "^20.0.3" 2183 | jest-matchers "^20.0.3" 2184 | jest-message-util "^20.0.3" 2185 | jest-snapshot "^20.0.3" 2186 | once "^1.4.0" 2187 | p-map "^1.1.1" 2188 | 2189 | jest-matcher-utils@^20.0.3: 2190 | version "20.0.3" 2191 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" 2192 | dependencies: 2193 | chalk "^1.1.3" 2194 | pretty-format "^20.0.3" 2195 | 2196 | jest-matchers@^20.0.3: 2197 | version "20.0.3" 2198 | resolved "https://registry.yarnpkg.com/jest-matchers/-/jest-matchers-20.0.3.tgz#ca69db1c32db5a6f707fa5e0401abb55700dfd60" 2199 | dependencies: 2200 | jest-diff "^20.0.3" 2201 | jest-matcher-utils "^20.0.3" 2202 | jest-message-util "^20.0.3" 2203 | jest-regex-util "^20.0.3" 2204 | 2205 | jest-message-util@^20.0.3: 2206 | version "20.0.3" 2207 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" 2208 | dependencies: 2209 | chalk "^1.1.3" 2210 | micromatch "^2.3.11" 2211 | slash "^1.0.0" 2212 | 2213 | jest-mock@^20.0.3: 2214 | version "20.0.3" 2215 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" 2216 | 2217 | jest-regex-util@^20.0.3: 2218 | version "20.0.3" 2219 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-20.0.3.tgz#85bbab5d133e44625b19faf8c6aa5122d085d762" 2220 | 2221 | jest-resolve-dependencies@^20.0.3: 2222 | version "20.0.3" 2223 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz#6e14a7b717af0f2cb3667c549de40af017b1723a" 2224 | dependencies: 2225 | jest-regex-util "^20.0.3" 2226 | 2227 | jest-resolve@^20.0.4: 2228 | version "20.0.4" 2229 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-20.0.4.tgz#9448b3e8b6bafc15479444c6499045b7ffe597a5" 2230 | dependencies: 2231 | browser-resolve "^1.11.2" 2232 | is-builtin-module "^1.0.0" 2233 | resolve "^1.3.2" 2234 | 2235 | jest-runtime@^20.0.4: 2236 | version "20.0.4" 2237 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-20.0.4.tgz#a2c802219c4203f754df1404e490186169d124d8" 2238 | dependencies: 2239 | babel-core "^6.0.0" 2240 | babel-jest "^20.0.3" 2241 | babel-plugin-istanbul "^4.0.0" 2242 | chalk "^1.1.3" 2243 | convert-source-map "^1.4.0" 2244 | graceful-fs "^4.1.11" 2245 | jest-config "^20.0.4" 2246 | jest-haste-map "^20.0.4" 2247 | jest-regex-util "^20.0.3" 2248 | jest-resolve "^20.0.4" 2249 | jest-util "^20.0.3" 2250 | json-stable-stringify "^1.0.1" 2251 | micromatch "^2.3.11" 2252 | strip-bom "3.0.0" 2253 | yargs "^7.0.2" 2254 | 2255 | jest-snapshot@^20.0.3: 2256 | version "20.0.3" 2257 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" 2258 | dependencies: 2259 | chalk "^1.1.3" 2260 | jest-diff "^20.0.3" 2261 | jest-matcher-utils "^20.0.3" 2262 | jest-util "^20.0.3" 2263 | natural-compare "^1.4.0" 2264 | pretty-format "^20.0.3" 2265 | 2266 | jest-util@^20.0.3: 2267 | version "20.0.3" 2268 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" 2269 | dependencies: 2270 | chalk "^1.1.3" 2271 | graceful-fs "^4.1.11" 2272 | jest-message-util "^20.0.3" 2273 | jest-mock "^20.0.3" 2274 | jest-validate "^20.0.3" 2275 | leven "^2.1.0" 2276 | mkdirp "^0.5.1" 2277 | 2278 | jest-validate@^20.0.3: 2279 | version "20.0.3" 2280 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" 2281 | dependencies: 2282 | chalk "^1.1.3" 2283 | jest-matcher-utils "^20.0.3" 2284 | leven "^2.1.0" 2285 | pretty-format "^20.0.3" 2286 | 2287 | jest@^20.0.4: 2288 | version "20.0.4" 2289 | resolved "https://registry.yarnpkg.com/jest/-/jest-20.0.4.tgz#3dd260c2989d6dad678b1e9cc4d91944f6d602ac" 2290 | dependencies: 2291 | jest-cli "^20.0.4" 2292 | 2293 | jodid25519@^1.0.0: 2294 | version "1.0.2" 2295 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2296 | dependencies: 2297 | jsbn "~0.1.0" 2298 | 2299 | jquery@^3.3.1: 2300 | version "3.3.1" 2301 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.3.1.tgz#958ce29e81c9790f31be7792df5d4d95fc57fbca" 2302 | 2303 | js-base64@^2.1.9: 2304 | version "2.4.3" 2305 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.3.tgz#2e545ec2b0f2957f41356510205214e98fad6582" 2306 | 2307 | js-tokens@^3.0.0: 2308 | version "3.0.1" 2309 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2310 | 2311 | js-tokens@^3.0.2: 2312 | version "3.0.2" 2313 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2314 | 2315 | js-types@^1.0.0: 2316 | version "1.0.0" 2317 | resolved "https://registry.yarnpkg.com/js-types/-/js-types-1.0.0.tgz#d242e6494ed572ad3c92809fc8bed7f7687cbf03" 2318 | 2319 | js-yaml@^3.5.1: 2320 | version "3.8.3" 2321 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.3.tgz#33a05ec481c850c8875929166fe1beb61c728766" 2322 | dependencies: 2323 | argparse "^1.0.7" 2324 | esprima "^3.1.1" 2325 | 2326 | js-yaml@^3.7.0: 2327 | version "3.9.1" 2328 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 2329 | dependencies: 2330 | argparse "^1.0.7" 2331 | esprima "^4.0.0" 2332 | 2333 | js-yaml@~3.7.0: 2334 | version "3.7.0" 2335 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 2336 | dependencies: 2337 | argparse "^1.0.7" 2338 | esprima "^2.6.0" 2339 | 2340 | jsbn@~0.1.0: 2341 | version "0.1.1" 2342 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2343 | 2344 | jsdom@^9.12.0: 2345 | version "9.12.0" 2346 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2347 | dependencies: 2348 | abab "^1.0.3" 2349 | acorn "^4.0.4" 2350 | acorn-globals "^3.1.0" 2351 | array-equal "^1.0.0" 2352 | content-type-parser "^1.0.1" 2353 | cssom ">= 0.3.2 < 0.4.0" 2354 | cssstyle ">= 0.2.37 < 0.3.0" 2355 | escodegen "^1.6.1" 2356 | html-encoding-sniffer "^1.0.1" 2357 | nwmatcher ">= 1.3.9 < 2.0.0" 2358 | parse5 "^1.5.1" 2359 | request "^2.79.0" 2360 | sax "^1.2.1" 2361 | symbol-tree "^3.2.1" 2362 | tough-cookie "^2.3.2" 2363 | webidl-conversions "^4.0.0" 2364 | whatwg-encoding "^1.0.1" 2365 | whatwg-url "^4.3.0" 2366 | xml-name-validator "^2.0.1" 2367 | 2368 | jsesc@^1.3.0: 2369 | version "1.3.0" 2370 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2371 | 2372 | jsesc@~0.5.0: 2373 | version "0.5.0" 2374 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2375 | 2376 | json-loader@^0.5.4: 2377 | version "0.5.4" 2378 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" 2379 | 2380 | json-schema-traverse@^0.3.0: 2381 | version "0.3.1" 2382 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2383 | 2384 | json-schema@0.2.3: 2385 | version "0.2.3" 2386 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2387 | 2388 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 2389 | version "1.0.1" 2390 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2391 | dependencies: 2392 | jsonify "~0.0.0" 2393 | 2394 | json-stringify-safe@~5.0.1: 2395 | version "5.0.1" 2396 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2397 | 2398 | json5@^0.5.0, json5@^0.5.1: 2399 | version "0.5.1" 2400 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2401 | 2402 | jsonify@~0.0.0: 2403 | version "0.0.0" 2404 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2405 | 2406 | jsonpointer@^4.0.0: 2407 | version "4.0.1" 2408 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2409 | 2410 | jsprim@^1.2.2: 2411 | version "1.4.0" 2412 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2413 | dependencies: 2414 | assert-plus "1.0.0" 2415 | extsprintf "1.0.2" 2416 | json-schema "0.2.3" 2417 | verror "1.3.6" 2418 | 2419 | kind-of@^3.0.2: 2420 | version "3.1.0" 2421 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2422 | dependencies: 2423 | is-buffer "^1.0.2" 2424 | 2425 | lazy-cache@^1.0.3: 2426 | version "1.0.4" 2427 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2428 | 2429 | lcid@^1.0.0: 2430 | version "1.0.0" 2431 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2432 | dependencies: 2433 | invert-kv "^1.0.0" 2434 | 2435 | leven@^2.1.0: 2436 | version "2.1.0" 2437 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2438 | 2439 | levn@^0.3.0, levn@~0.3.0: 2440 | version "0.3.0" 2441 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2442 | dependencies: 2443 | prelude-ls "~1.1.2" 2444 | type-check "~0.3.2" 2445 | 2446 | load-json-file@^1.0.0: 2447 | version "1.1.0" 2448 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2449 | dependencies: 2450 | graceful-fs "^4.1.2" 2451 | parse-json "^2.2.0" 2452 | pify "^2.0.0" 2453 | pinkie-promise "^2.0.0" 2454 | strip-bom "^2.0.0" 2455 | 2456 | load-json-file@^2.0.0: 2457 | version "2.0.0" 2458 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2459 | dependencies: 2460 | graceful-fs "^4.1.2" 2461 | parse-json "^2.2.0" 2462 | pify "^2.0.0" 2463 | strip-bom "^3.0.0" 2464 | 2465 | loader-runner@^2.3.0: 2466 | version "2.3.0" 2467 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 2468 | 2469 | loader-utils@^1.0.2, loader-utils@^1.1.0: 2470 | version "1.1.0" 2471 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2472 | dependencies: 2473 | big.js "^3.1.3" 2474 | emojis-list "^2.0.0" 2475 | json5 "^0.5.0" 2476 | 2477 | locate-path@^2.0.0: 2478 | version "2.0.0" 2479 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2480 | dependencies: 2481 | p-locate "^2.0.0" 2482 | path-exists "^3.0.0" 2483 | 2484 | lodash.camelcase@^4.1.1, lodash.camelcase@^4.3.0: 2485 | version "4.3.0" 2486 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 2487 | 2488 | lodash.kebabcase@^4.0.1: 2489 | version "4.1.1" 2490 | resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" 2491 | 2492 | lodash.memoize@^4.1.2: 2493 | version "4.1.2" 2494 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2495 | 2496 | lodash.snakecase@^4.0.1: 2497 | version "4.1.1" 2498 | resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" 2499 | 2500 | lodash.uniq@^4.5.0: 2501 | version "4.5.0" 2502 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 2503 | 2504 | lodash.upperfirst@^4.2.0: 2505 | version "4.3.1" 2506 | resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" 2507 | 2508 | lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.3.0: 2509 | version "4.17.4" 2510 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2511 | 2512 | log-symbols@^1.0.2: 2513 | version "1.0.2" 2514 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 2515 | dependencies: 2516 | chalk "^1.0.0" 2517 | 2518 | longest@^1.0.1: 2519 | version "1.0.1" 2520 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2521 | 2522 | loose-envify@^1.0.0: 2523 | version "1.3.1" 2524 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2525 | dependencies: 2526 | js-tokens "^3.0.0" 2527 | 2528 | lowercase-keys@^1.0.0: 2529 | version "1.0.0" 2530 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 2531 | 2532 | lru-cache@^4.0.1: 2533 | version "4.1.1" 2534 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2535 | dependencies: 2536 | pseudomap "^1.0.2" 2537 | yallist "^2.1.2" 2538 | 2539 | macaddress@^0.2.8: 2540 | version "0.2.8" 2541 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 2542 | 2543 | makeerror@1.0.x: 2544 | version "1.0.11" 2545 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2546 | dependencies: 2547 | tmpl "1.0.x" 2548 | 2549 | math-expression-evaluator@^1.2.14: 2550 | version "1.2.17" 2551 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" 2552 | 2553 | mem@^1.1.0: 2554 | version "1.1.0" 2555 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2556 | dependencies: 2557 | mimic-fn "^1.0.0" 2558 | 2559 | memory-fs@^0.4.0, memory-fs@~0.4.1: 2560 | version "0.4.1" 2561 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2562 | dependencies: 2563 | errno "^0.1.3" 2564 | readable-stream "^2.0.1" 2565 | 2566 | merge@^1.1.3: 2567 | version "1.2.0" 2568 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2569 | 2570 | micromatch@^2.1.5, micromatch@^2.3.11: 2571 | version "2.3.11" 2572 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2573 | dependencies: 2574 | arr-diff "^2.0.0" 2575 | array-unique "^0.2.1" 2576 | braces "^1.8.2" 2577 | expand-brackets "^0.1.4" 2578 | extglob "^0.3.1" 2579 | filename-regex "^2.0.0" 2580 | is-extglob "^1.0.0" 2581 | is-glob "^2.0.1" 2582 | kind-of "^3.0.2" 2583 | normalize-path "^2.0.1" 2584 | object.omit "^2.0.0" 2585 | parse-glob "^3.0.4" 2586 | regex-cache "^0.4.2" 2587 | 2588 | miller-rabin@^4.0.0: 2589 | version "4.0.0" 2590 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 2591 | dependencies: 2592 | bn.js "^4.0.0" 2593 | brorand "^1.0.1" 2594 | 2595 | mime-db@~1.27.0: 2596 | version "1.27.0" 2597 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2598 | 2599 | mime-types@^2.1.12, mime-types@~2.1.7: 2600 | version "2.1.15" 2601 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2602 | dependencies: 2603 | mime-db "~1.27.0" 2604 | 2605 | mime@^1.4.1: 2606 | version "1.6.0" 2607 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2608 | 2609 | mimic-fn@^1.0.0: 2610 | version "1.2.0" 2611 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2612 | 2613 | minimalistic-assert@^1.0.0: 2614 | version "1.0.0" 2615 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 2616 | 2617 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 2618 | version "1.0.1" 2619 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 2620 | 2621 | minimatch@^3.0.0, minimatch@^3.0.2: 2622 | version "3.0.3" 2623 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2624 | dependencies: 2625 | brace-expansion "^1.0.0" 2626 | 2627 | minimatch@^3.0.3, minimatch@^3.0.4: 2628 | version "3.0.4" 2629 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2630 | dependencies: 2631 | brace-expansion "^1.1.7" 2632 | 2633 | minimist@0.0.8: 2634 | version "0.0.8" 2635 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2636 | 2637 | minimist@^1.1.1, minimist@^1.2.0: 2638 | version "1.2.0" 2639 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2640 | 2641 | minimist@~0.0.1: 2642 | version "0.0.10" 2643 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2644 | 2645 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 2646 | version "0.5.1" 2647 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2648 | dependencies: 2649 | minimist "0.0.8" 2650 | 2651 | ms@0.7.2: 2652 | version "0.7.2" 2653 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2654 | 2655 | ms@2.0.0: 2656 | version "2.0.0" 2657 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2658 | 2659 | mute-stream@0.0.5: 2660 | version "0.0.5" 2661 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 2662 | 2663 | nan@^2.3.0: 2664 | version "2.5.1" 2665 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2666 | 2667 | natural-compare@^1.4.0: 2668 | version "1.4.0" 2669 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2670 | 2671 | node-int64@^0.4.0: 2672 | version "0.4.0" 2673 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2674 | 2675 | node-libs-browser@^2.0.0: 2676 | version "2.0.0" 2677 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 2678 | dependencies: 2679 | assert "^1.1.1" 2680 | browserify-zlib "^0.1.4" 2681 | buffer "^4.3.0" 2682 | console-browserify "^1.1.0" 2683 | constants-browserify "^1.0.0" 2684 | crypto-browserify "^3.11.0" 2685 | domain-browser "^1.1.1" 2686 | events "^1.0.0" 2687 | https-browserify "0.0.1" 2688 | os-browserify "^0.2.0" 2689 | path-browserify "0.0.0" 2690 | process "^0.11.0" 2691 | punycode "^1.2.4" 2692 | querystring-es3 "^0.2.0" 2693 | readable-stream "^2.0.5" 2694 | stream-browserify "^2.0.1" 2695 | stream-http "^2.3.1" 2696 | string_decoder "^0.10.25" 2697 | timers-browserify "^2.0.2" 2698 | tty-browserify "0.0.0" 2699 | url "^0.11.0" 2700 | util "^0.10.3" 2701 | vm-browserify "0.0.4" 2702 | 2703 | node-notifier@^5.0.2: 2704 | version "5.1.2" 2705 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 2706 | dependencies: 2707 | growly "^1.3.0" 2708 | semver "^5.3.0" 2709 | shellwords "^0.1.0" 2710 | which "^1.2.12" 2711 | 2712 | node-pre-gyp@^0.6.29: 2713 | version "0.6.34" 2714 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2715 | dependencies: 2716 | mkdirp "^0.5.1" 2717 | nopt "^4.0.1" 2718 | npmlog "^4.0.2" 2719 | rc "^1.1.7" 2720 | request "^2.81.0" 2721 | rimraf "^2.6.1" 2722 | semver "^5.3.0" 2723 | tar "^2.2.1" 2724 | tar-pack "^3.4.0" 2725 | 2726 | nopt@^4.0.1: 2727 | version "4.0.1" 2728 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2729 | dependencies: 2730 | abbrev "1" 2731 | osenv "^0.1.4" 2732 | 2733 | normalize-package-data@^2.3.2: 2734 | version "2.3.6" 2735 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.6.tgz#498fa420c96401f787402ba21e600def9f981fff" 2736 | dependencies: 2737 | hosted-git-info "^2.1.4" 2738 | is-builtin-module "^1.0.0" 2739 | semver "2 || 3 || 4 || 5" 2740 | validate-npm-package-license "^3.0.1" 2741 | 2742 | normalize-path@^2.0.1: 2743 | version "2.1.1" 2744 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2745 | dependencies: 2746 | remove-trailing-separator "^1.0.1" 2747 | 2748 | normalize-range@^0.1.2: 2749 | version "0.1.2" 2750 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 2751 | 2752 | normalize-url@^1.4.0: 2753 | version "1.9.1" 2754 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 2755 | dependencies: 2756 | object-assign "^4.0.1" 2757 | prepend-http "^1.0.0" 2758 | query-string "^4.1.0" 2759 | sort-keys "^1.0.0" 2760 | 2761 | npm-run-path@^2.0.0: 2762 | version "2.0.2" 2763 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2764 | dependencies: 2765 | path-key "^2.0.0" 2766 | 2767 | npmlog@^4.0.2: 2768 | version "4.0.2" 2769 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2770 | dependencies: 2771 | are-we-there-yet "~1.1.2" 2772 | console-control-strings "~1.1.0" 2773 | gauge "~2.7.1" 2774 | set-blocking "~2.0.0" 2775 | 2776 | num2fraction@^1.2.2: 2777 | version "1.2.2" 2778 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 2779 | 2780 | number-is-nan@^1.0.0: 2781 | version "1.0.1" 2782 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2783 | 2784 | "nwmatcher@>= 1.3.9 < 2.0.0": 2785 | version "1.4.1" 2786 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.1.tgz#7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f" 2787 | 2788 | oauth-sign@~0.8.1: 2789 | version "0.8.2" 2790 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2791 | 2792 | obj-props@^1.0.0: 2793 | version "1.1.0" 2794 | resolved "https://registry.yarnpkg.com/obj-props/-/obj-props-1.1.0.tgz#626313faa442befd4a44e9a02c3cb6bde937b511" 2795 | 2796 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2797 | version "4.1.1" 2798 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2799 | 2800 | object.omit@^2.0.0: 2801 | version "2.0.1" 2802 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2803 | dependencies: 2804 | for-own "^0.1.4" 2805 | is-extendable "^0.1.1" 2806 | 2807 | octicons@^4.0.0: 2808 | version "4.4.0" 2809 | resolved "https://registry.yarnpkg.com/octicons/-/octicons-4.4.0.tgz#aca3bd32f5dc1d907a8d0de744f78e0c54e19446" 2810 | 2811 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 2812 | version "1.4.0" 2813 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2814 | dependencies: 2815 | wrappy "1" 2816 | 2817 | onetime@^1.0.0: 2818 | version "1.1.0" 2819 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 2820 | 2821 | optimist@^0.6.1: 2822 | version "0.6.1" 2823 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2824 | dependencies: 2825 | minimist "~0.0.1" 2826 | wordwrap "~0.0.2" 2827 | 2828 | optionator@^0.8.1, optionator@^0.8.2: 2829 | version "0.8.2" 2830 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2831 | dependencies: 2832 | deep-is "~0.1.3" 2833 | fast-levenshtein "~2.0.4" 2834 | levn "~0.3.0" 2835 | prelude-ls "~1.1.2" 2836 | type-check "~0.3.2" 2837 | wordwrap "~1.0.0" 2838 | 2839 | os-browserify@^0.2.0: 2840 | version "0.2.1" 2841 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2842 | 2843 | os-homedir@^1.0.0: 2844 | version "1.0.2" 2845 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2846 | 2847 | os-locale@^1.4.0: 2848 | version "1.4.0" 2849 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2850 | dependencies: 2851 | lcid "^1.0.0" 2852 | 2853 | os-locale@^2.0.0: 2854 | version "2.1.0" 2855 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2856 | dependencies: 2857 | execa "^0.7.0" 2858 | lcid "^1.0.0" 2859 | mem "^1.1.0" 2860 | 2861 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2862 | version "1.0.2" 2863 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2864 | 2865 | osenv@^0.1.4: 2866 | version "0.1.4" 2867 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2868 | dependencies: 2869 | os-homedir "^1.0.0" 2870 | os-tmpdir "^1.0.0" 2871 | 2872 | p-finally@^1.0.0: 2873 | version "1.0.0" 2874 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2875 | 2876 | p-limit@^1.1.0: 2877 | version "1.1.0" 2878 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 2879 | 2880 | p-locate@^2.0.0: 2881 | version "2.0.0" 2882 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2883 | dependencies: 2884 | p-limit "^1.1.0" 2885 | 2886 | p-map@^1.1.1: 2887 | version "1.1.1" 2888 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" 2889 | 2890 | pako@~0.2.0: 2891 | version "0.2.9" 2892 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2893 | 2894 | parse-asn1@^5.0.0: 2895 | version "5.1.0" 2896 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2897 | dependencies: 2898 | asn1.js "^4.0.0" 2899 | browserify-aes "^1.0.0" 2900 | create-hash "^1.1.0" 2901 | evp_bytestokey "^1.0.0" 2902 | pbkdf2 "^3.0.3" 2903 | 2904 | parse-glob@^3.0.4: 2905 | version "3.0.4" 2906 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2907 | dependencies: 2908 | glob-base "^0.3.0" 2909 | is-dotfile "^1.0.0" 2910 | is-extglob "^1.0.0" 2911 | is-glob "^2.0.0" 2912 | 2913 | parse-json@^2.2.0: 2914 | version "2.2.0" 2915 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2916 | dependencies: 2917 | error-ex "^1.2.0" 2918 | 2919 | parse5@^1.5.1: 2920 | version "1.5.1" 2921 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2922 | 2923 | path-browserify@0.0.0: 2924 | version "0.0.0" 2925 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2926 | 2927 | path-exists@^2.0.0: 2928 | version "2.1.0" 2929 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2930 | dependencies: 2931 | pinkie-promise "^2.0.0" 2932 | 2933 | path-exists@^3.0.0: 2934 | version "3.0.0" 2935 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2936 | 2937 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2938 | version "1.0.1" 2939 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2940 | 2941 | path-is-inside@^1.0.1: 2942 | version "1.0.2" 2943 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 2944 | 2945 | path-key@^2.0.0: 2946 | version "2.0.1" 2947 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2948 | 2949 | path-parse@^1.0.5: 2950 | version "1.0.5" 2951 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2952 | 2953 | path-type@^1.0.0: 2954 | version "1.1.0" 2955 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2956 | dependencies: 2957 | graceful-fs "^4.1.2" 2958 | pify "^2.0.0" 2959 | pinkie-promise "^2.0.0" 2960 | 2961 | path-type@^2.0.0: 2962 | version "2.0.0" 2963 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 2964 | dependencies: 2965 | pify "^2.0.0" 2966 | 2967 | pbkdf2@^3.0.3: 2968 | version "3.0.9" 2969 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" 2970 | dependencies: 2971 | create-hmac "^1.1.2" 2972 | 2973 | performance-now@^0.2.0: 2974 | version "0.2.0" 2975 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2976 | 2977 | pify@^2.0.0, pify@^2.3.0: 2978 | version "2.3.0" 2979 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2980 | 2981 | pinkie-promise@^2.0.0: 2982 | version "2.0.1" 2983 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2984 | dependencies: 2985 | pinkie "^2.0.0" 2986 | 2987 | pinkie@^2.0.0: 2988 | version "2.0.4" 2989 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2990 | 2991 | plur@^2.1.2: 2992 | version "2.1.2" 2993 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 2994 | dependencies: 2995 | irregular-plurals "^1.0.0" 2996 | 2997 | pluralize@^1.2.1: 2998 | version "1.2.1" 2999 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 3000 | 3001 | postcss-calc@^5.2.0: 3002 | version "5.3.1" 3003 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 3004 | dependencies: 3005 | postcss "^5.0.2" 3006 | postcss-message-helpers "^2.0.0" 3007 | reduce-css-calc "^1.2.6" 3008 | 3009 | postcss-colormin@^2.1.8: 3010 | version "2.2.2" 3011 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 3012 | dependencies: 3013 | colormin "^1.0.5" 3014 | postcss "^5.0.13" 3015 | postcss-value-parser "^3.2.3" 3016 | 3017 | postcss-convert-values@^2.3.4: 3018 | version "2.6.1" 3019 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 3020 | dependencies: 3021 | postcss "^5.0.11" 3022 | postcss-value-parser "^3.1.2" 3023 | 3024 | postcss-discard-comments@^2.0.4: 3025 | version "2.0.4" 3026 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 3027 | dependencies: 3028 | postcss "^5.0.14" 3029 | 3030 | postcss-discard-duplicates@^2.0.1: 3031 | version "2.1.0" 3032 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" 3033 | dependencies: 3034 | postcss "^5.0.4" 3035 | 3036 | postcss-discard-empty@^2.0.1: 3037 | version "2.1.0" 3038 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 3039 | dependencies: 3040 | postcss "^5.0.14" 3041 | 3042 | postcss-discard-overridden@^0.1.1: 3043 | version "0.1.1" 3044 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 3045 | dependencies: 3046 | postcss "^5.0.16" 3047 | 3048 | postcss-discard-unused@^2.2.1: 3049 | version "2.2.3" 3050 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 3051 | dependencies: 3052 | postcss "^5.0.14" 3053 | uniqs "^2.0.0" 3054 | 3055 | postcss-filter-plugins@^2.0.0: 3056 | version "2.0.2" 3057 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 3058 | dependencies: 3059 | postcss "^5.0.4" 3060 | uniqid "^4.0.0" 3061 | 3062 | postcss-merge-idents@^2.1.5: 3063 | version "2.1.7" 3064 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 3065 | dependencies: 3066 | has "^1.0.1" 3067 | postcss "^5.0.10" 3068 | postcss-value-parser "^3.1.1" 3069 | 3070 | postcss-merge-longhand@^2.0.1: 3071 | version "2.0.2" 3072 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 3073 | dependencies: 3074 | postcss "^5.0.4" 3075 | 3076 | postcss-merge-rules@^2.0.3: 3077 | version "2.1.2" 3078 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" 3079 | dependencies: 3080 | browserslist "^1.5.2" 3081 | caniuse-api "^1.5.2" 3082 | postcss "^5.0.4" 3083 | postcss-selector-parser "^2.2.2" 3084 | vendors "^1.0.0" 3085 | 3086 | postcss-message-helpers@^2.0.0: 3087 | version "2.0.0" 3088 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 3089 | 3090 | postcss-minify-font-values@^1.0.2: 3091 | version "1.0.5" 3092 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 3093 | dependencies: 3094 | object-assign "^4.0.1" 3095 | postcss "^5.0.4" 3096 | postcss-value-parser "^3.0.2" 3097 | 3098 | postcss-minify-gradients@^1.0.1: 3099 | version "1.0.5" 3100 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 3101 | dependencies: 3102 | postcss "^5.0.12" 3103 | postcss-value-parser "^3.3.0" 3104 | 3105 | postcss-minify-params@^1.0.4: 3106 | version "1.2.2" 3107 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 3108 | dependencies: 3109 | alphanum-sort "^1.0.1" 3110 | postcss "^5.0.2" 3111 | postcss-value-parser "^3.0.2" 3112 | uniqs "^2.0.0" 3113 | 3114 | postcss-minify-selectors@^2.0.4: 3115 | version "2.1.1" 3116 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 3117 | dependencies: 3118 | alphanum-sort "^1.0.2" 3119 | has "^1.0.1" 3120 | postcss "^5.0.14" 3121 | postcss-selector-parser "^2.0.0" 3122 | 3123 | postcss-modules-extract-imports@^1.2.0: 3124 | version "1.2.0" 3125 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" 3126 | dependencies: 3127 | postcss "^6.0.1" 3128 | 3129 | postcss-modules-local-by-default@^1.2.0: 3130 | version "1.2.0" 3131 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" 3132 | dependencies: 3133 | css-selector-tokenizer "^0.7.0" 3134 | postcss "^6.0.1" 3135 | 3136 | postcss-modules-scope@^1.1.0: 3137 | version "1.1.0" 3138 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" 3139 | dependencies: 3140 | css-selector-tokenizer "^0.7.0" 3141 | postcss "^6.0.1" 3142 | 3143 | postcss-modules-values@^1.3.0: 3144 | version "1.3.0" 3145 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" 3146 | dependencies: 3147 | icss-replace-symbols "^1.1.0" 3148 | postcss "^6.0.1" 3149 | 3150 | postcss-normalize-charset@^1.1.0: 3151 | version "1.1.1" 3152 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 3153 | dependencies: 3154 | postcss "^5.0.5" 3155 | 3156 | postcss-normalize-url@^3.0.7: 3157 | version "3.0.8" 3158 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 3159 | dependencies: 3160 | is-absolute-url "^2.0.0" 3161 | normalize-url "^1.4.0" 3162 | postcss "^5.0.14" 3163 | postcss-value-parser "^3.2.3" 3164 | 3165 | postcss-ordered-values@^2.1.0: 3166 | version "2.2.3" 3167 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 3168 | dependencies: 3169 | postcss "^5.0.4" 3170 | postcss-value-parser "^3.0.1" 3171 | 3172 | postcss-reduce-idents@^2.2.2: 3173 | version "2.4.0" 3174 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 3175 | dependencies: 3176 | postcss "^5.0.4" 3177 | postcss-value-parser "^3.0.2" 3178 | 3179 | postcss-reduce-initial@^1.0.0: 3180 | version "1.0.1" 3181 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 3182 | dependencies: 3183 | postcss "^5.0.4" 3184 | 3185 | postcss-reduce-transforms@^1.0.3: 3186 | version "1.0.4" 3187 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 3188 | dependencies: 3189 | has "^1.0.1" 3190 | postcss "^5.0.8" 3191 | postcss-value-parser "^3.0.1" 3192 | 3193 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 3194 | version "2.2.3" 3195 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" 3196 | dependencies: 3197 | flatten "^1.0.2" 3198 | indexes-of "^1.0.1" 3199 | uniq "^1.0.1" 3200 | 3201 | postcss-svgo@^2.1.1: 3202 | version "2.1.6" 3203 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 3204 | dependencies: 3205 | is-svg "^2.0.0" 3206 | postcss "^5.0.14" 3207 | postcss-value-parser "^3.2.3" 3208 | svgo "^0.7.0" 3209 | 3210 | postcss-unique-selectors@^2.0.2: 3211 | version "2.0.2" 3212 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 3213 | dependencies: 3214 | alphanum-sort "^1.0.1" 3215 | postcss "^5.0.4" 3216 | uniqs "^2.0.0" 3217 | 3218 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: 3219 | version "3.3.0" 3220 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 3221 | 3222 | postcss-zindex@^2.0.1: 3223 | version "2.2.0" 3224 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 3225 | dependencies: 3226 | has "^1.0.1" 3227 | postcss "^5.0.4" 3228 | uniqs "^2.0.0" 3229 | 3230 | postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16: 3231 | version "5.2.18" 3232 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" 3233 | dependencies: 3234 | chalk "^1.1.3" 3235 | js-base64 "^2.1.9" 3236 | source-map "^0.5.6" 3237 | supports-color "^3.2.3" 3238 | 3239 | postcss@^6.0.1: 3240 | version "6.0.19" 3241 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.19.tgz#76a78386f670b9d9494a655bf23ac012effd1555" 3242 | dependencies: 3243 | chalk "^2.3.1" 3244 | source-map "^0.6.1" 3245 | supports-color "^5.2.0" 3246 | 3247 | prelude-ls@~1.1.2: 3248 | version "1.1.2" 3249 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3250 | 3251 | prepend-http@^1.0.0: 3252 | version "1.0.4" 3253 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 3254 | 3255 | preserve@^0.2.0: 3256 | version "0.2.0" 3257 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3258 | 3259 | pretty-format@^20.0.3: 3260 | version "20.0.3" 3261 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" 3262 | dependencies: 3263 | ansi-regex "^2.1.1" 3264 | ansi-styles "^3.0.0" 3265 | 3266 | private@^0.1.7: 3267 | version "0.1.7" 3268 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 3269 | 3270 | process-nextick-args@~1.0.6: 3271 | version "1.0.7" 3272 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3273 | 3274 | process@^0.11.0: 3275 | version "0.11.9" 3276 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 3277 | 3278 | progress@^1.1.8: 3279 | version "1.1.8" 3280 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 3281 | 3282 | proto-props@^0.2.0: 3283 | version "0.2.1" 3284 | resolved "https://registry.yarnpkg.com/proto-props/-/proto-props-0.2.1.tgz#5e01dc2675a0de9abfa76e799dfa334d6f483f4b" 3285 | 3286 | prr@~0.0.0: 3287 | version "0.0.0" 3288 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3289 | 3290 | pseudomap@^1.0.2: 3291 | version "1.0.2" 3292 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3293 | 3294 | public-encrypt@^4.0.0: 3295 | version "4.0.0" 3296 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 3297 | dependencies: 3298 | bn.js "^4.1.0" 3299 | browserify-rsa "^4.0.0" 3300 | create-hash "^1.1.0" 3301 | parse-asn1 "^5.0.0" 3302 | randombytes "^2.0.1" 3303 | 3304 | punycode@1.3.2: 3305 | version "1.3.2" 3306 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 3307 | 3308 | punycode@^1.2.4, punycode@^1.4.1: 3309 | version "1.4.1" 3310 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3311 | 3312 | purecss@^1.0.0: 3313 | version "1.0.0" 3314 | resolved "https://registry.yarnpkg.com/purecss/-/purecss-1.0.0.tgz#3dbcd9e2a7592448a69acb705cce16311bf4b785" 3315 | 3316 | q@^1.1.2: 3317 | version "1.5.1" 3318 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 3319 | 3320 | qs@~6.4.0: 3321 | version "6.4.0" 3322 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3323 | 3324 | query-string@^4.1.0: 3325 | version "4.3.4" 3326 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" 3327 | dependencies: 3328 | object-assign "^4.1.0" 3329 | strict-uri-encode "^1.0.0" 3330 | 3331 | querystring-es3@^0.2.0: 3332 | version "0.2.1" 3333 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 3334 | 3335 | querystring@0.2.0: 3336 | version "0.2.0" 3337 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 3338 | 3339 | randomatic@^1.1.3: 3340 | version "1.1.6" 3341 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 3342 | dependencies: 3343 | is-number "^2.0.2" 3344 | kind-of "^3.0.2" 3345 | 3346 | randombytes@^2.0.0, randombytes@^2.0.1: 3347 | version "2.0.3" 3348 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" 3349 | 3350 | rc@^1.1.7: 3351 | version "1.2.1" 3352 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 3353 | dependencies: 3354 | deep-extend "~0.4.0" 3355 | ini "~1.3.0" 3356 | minimist "^1.2.0" 3357 | strip-json-comments "~2.0.1" 3358 | 3359 | read-pkg-up@^1.0.1: 3360 | version "1.0.1" 3361 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3362 | dependencies: 3363 | find-up "^1.0.0" 3364 | read-pkg "^1.0.0" 3365 | 3366 | read-pkg-up@^2.0.0: 3367 | version "2.0.0" 3368 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3369 | dependencies: 3370 | find-up "^2.0.0" 3371 | read-pkg "^2.0.0" 3372 | 3373 | read-pkg@^1.0.0: 3374 | version "1.1.0" 3375 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3376 | dependencies: 3377 | load-json-file "^1.0.0" 3378 | normalize-package-data "^2.3.2" 3379 | path-type "^1.0.0" 3380 | 3381 | read-pkg@^2.0.0: 3382 | version "2.0.0" 3383 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3384 | dependencies: 3385 | load-json-file "^2.0.0" 3386 | normalize-package-data "^2.3.2" 3387 | path-type "^2.0.0" 3388 | 3389 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6: 3390 | version "2.2.6" 3391 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 3392 | dependencies: 3393 | buffer-shims "^1.0.0" 3394 | core-util-is "~1.0.0" 3395 | inherits "~2.0.1" 3396 | isarray "~1.0.0" 3397 | process-nextick-args "~1.0.6" 3398 | string_decoder "~0.10.x" 3399 | util-deprecate "~1.0.1" 3400 | 3401 | readdirp@^2.0.0: 3402 | version "2.1.0" 3403 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3404 | dependencies: 3405 | graceful-fs "^4.1.2" 3406 | minimatch "^3.0.2" 3407 | readable-stream "^2.0.2" 3408 | set-immediate-shim "^1.0.1" 3409 | 3410 | readline2@^1.0.1: 3411 | version "1.0.1" 3412 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 3413 | dependencies: 3414 | code-point-at "^1.0.0" 3415 | is-fullwidth-code-point "^1.0.0" 3416 | mute-stream "0.0.5" 3417 | 3418 | rechoir@^0.6.2: 3419 | version "0.6.2" 3420 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 3421 | dependencies: 3422 | resolve "^1.1.6" 3423 | 3424 | reduce-css-calc@^1.2.6: 3425 | version "1.3.0" 3426 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 3427 | dependencies: 3428 | balanced-match "^0.4.2" 3429 | math-expression-evaluator "^1.2.14" 3430 | reduce-function-call "^1.0.1" 3431 | 3432 | reduce-function-call@^1.0.1: 3433 | version "1.0.2" 3434 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 3435 | dependencies: 3436 | balanced-match "^0.4.2" 3437 | 3438 | regenerate@^1.2.1: 3439 | version "1.3.3" 3440 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 3441 | 3442 | regenerator-runtime@^0.11.0: 3443 | version "0.11.0" 3444 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 3445 | 3446 | regex-cache@^0.4.2: 3447 | version "0.4.3" 3448 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 3449 | dependencies: 3450 | is-equal-shallow "^0.1.3" 3451 | is-primitive "^2.0.0" 3452 | 3453 | regexpu-core@^1.0.0: 3454 | version "1.0.0" 3455 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 3456 | dependencies: 3457 | regenerate "^1.2.1" 3458 | regjsgen "^0.2.0" 3459 | regjsparser "^0.1.4" 3460 | 3461 | regjsgen@^0.2.0: 3462 | version "0.2.0" 3463 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3464 | 3465 | regjsparser@^0.1.4: 3466 | version "0.1.5" 3467 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3468 | dependencies: 3469 | jsesc "~0.5.0" 3470 | 3471 | remove-trailing-separator@^1.0.1: 3472 | version "1.0.1" 3473 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 3474 | 3475 | repeat-element@^1.1.2: 3476 | version "1.1.2" 3477 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3478 | 3479 | repeat-string@^1.5.2: 3480 | version "1.6.1" 3481 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3482 | 3483 | repeating@^2.0.0: 3484 | version "2.0.1" 3485 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3486 | dependencies: 3487 | is-finite "^1.0.0" 3488 | 3489 | req-all@^0.1.0: 3490 | version "0.1.0" 3491 | resolved "https://registry.yarnpkg.com/req-all/-/req-all-0.1.0.tgz#130051e2ace58a02eacbfc9d448577a736a9273a" 3492 | 3493 | request@^2.79.0, request@^2.81.0: 3494 | version "2.81.0" 3495 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3496 | dependencies: 3497 | aws-sign2 "~0.6.0" 3498 | aws4 "^1.2.1" 3499 | caseless "~0.12.0" 3500 | combined-stream "~1.0.5" 3501 | extend "~3.0.0" 3502 | forever-agent "~0.6.1" 3503 | form-data "~2.1.1" 3504 | har-validator "~4.2.1" 3505 | hawk "~3.1.3" 3506 | http-signature "~1.1.0" 3507 | is-typedarray "~1.0.0" 3508 | isstream "~0.1.2" 3509 | json-stringify-safe "~5.0.1" 3510 | mime-types "~2.1.7" 3511 | oauth-sign "~0.8.1" 3512 | performance-now "^0.2.0" 3513 | qs "~6.4.0" 3514 | safe-buffer "^5.0.1" 3515 | stringstream "~0.0.4" 3516 | tough-cookie "~2.3.0" 3517 | tunnel-agent "^0.6.0" 3518 | uuid "^3.0.0" 3519 | 3520 | require-directory@^2.1.1: 3521 | version "2.1.1" 3522 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3523 | 3524 | require-main-filename@^1.0.1: 3525 | version "1.0.1" 3526 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3527 | 3528 | require-uncached@^1.0.2: 3529 | version "1.0.3" 3530 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3531 | dependencies: 3532 | caller-path "^0.1.0" 3533 | resolve-from "^1.0.0" 3534 | 3535 | resolve-from@^1.0.0: 3536 | version "1.0.1" 3537 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3538 | 3539 | resolve@1.1.7: 3540 | version "1.1.7" 3541 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3542 | 3543 | resolve@^1.1.6: 3544 | version "1.3.2" 3545 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.2.tgz#1f0442c9e0cbb8136e87b9305f932f46c7f28235" 3546 | dependencies: 3547 | path-parse "^1.0.5" 3548 | 3549 | resolve@^1.3.2: 3550 | version "1.4.0" 3551 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 3552 | dependencies: 3553 | path-parse "^1.0.5" 3554 | 3555 | restore-cursor@^1.0.1: 3556 | version "1.0.1" 3557 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 3558 | dependencies: 3559 | exit-hook "^1.0.0" 3560 | onetime "^1.0.0" 3561 | 3562 | right-align@^0.1.1: 3563 | version "0.1.3" 3564 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3565 | dependencies: 3566 | align-text "^0.1.1" 3567 | 3568 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1: 3569 | version "2.6.1" 3570 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3571 | dependencies: 3572 | glob "^7.0.5" 3573 | 3574 | ripemd160@^1.0.0: 3575 | version "1.0.1" 3576 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" 3577 | 3578 | run-async@^0.1.0: 3579 | version "0.1.0" 3580 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 3581 | dependencies: 3582 | once "^1.3.0" 3583 | 3584 | rx-lite@^3.1.2: 3585 | version "3.1.2" 3586 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 3587 | 3588 | safe-buffer@^5.0.1: 3589 | version "5.0.1" 3590 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3591 | 3592 | sane@~1.6.0: 3593 | version "1.6.0" 3594 | resolved "https://registry.yarnpkg.com/sane/-/sane-1.6.0.tgz#9610c452307a135d29c1fdfe2547034180c46775" 3595 | dependencies: 3596 | anymatch "^1.3.0" 3597 | exec-sh "^0.2.0" 3598 | fb-watchman "^1.8.0" 3599 | minimatch "^3.0.2" 3600 | minimist "^1.1.1" 3601 | walker "~1.0.5" 3602 | watch "~0.10.0" 3603 | 3604 | sax@^1.2.1, sax@~1.2.1: 3605 | version "1.2.4" 3606 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3607 | 3608 | schema-utils@^0.3.0: 3609 | version "0.3.0" 3610 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" 3611 | dependencies: 3612 | ajv "^5.0.0" 3613 | 3614 | schema-utils@^0.4.3, schema-utils@^0.4.5: 3615 | version "0.4.5" 3616 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.5.tgz#21836f0608aac17b78f9e3e24daff14a5ca13a3e" 3617 | dependencies: 3618 | ajv "^6.1.0" 3619 | ajv-keywords "^3.1.0" 3620 | 3621 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 3622 | version "5.3.0" 3623 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3624 | 3625 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3626 | version "2.0.0" 3627 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3628 | 3629 | set-immediate-shim@^1.0.1: 3630 | version "1.0.1" 3631 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3632 | 3633 | setimmediate@^1.0.4: 3634 | version "1.0.5" 3635 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3636 | 3637 | sha.js@^2.3.6: 3638 | version "2.4.8" 3639 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 3640 | dependencies: 3641 | inherits "^2.0.1" 3642 | 3643 | shebang-command@^1.2.0: 3644 | version "1.2.0" 3645 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3646 | dependencies: 3647 | shebang-regex "^1.0.0" 3648 | 3649 | shebang-regex@^1.0.0: 3650 | version "1.0.0" 3651 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3652 | 3653 | shelljs@^0.7.5: 3654 | version "0.7.7" 3655 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" 3656 | dependencies: 3657 | glob "^7.0.0" 3658 | interpret "^1.0.0" 3659 | rechoir "^0.6.2" 3660 | 3661 | shellwords@^0.1.0: 3662 | version "0.1.1" 3663 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3664 | 3665 | signal-exit@^3.0.0: 3666 | version "3.0.2" 3667 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3668 | 3669 | slash@^1.0.0: 3670 | version "1.0.0" 3671 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3672 | 3673 | slice-ansi@0.0.4: 3674 | version "0.0.4" 3675 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 3676 | 3677 | sntp@1.x.x: 3678 | version "1.0.9" 3679 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3680 | dependencies: 3681 | hoek "2.x.x" 3682 | 3683 | sort-keys@^1.0.0: 3684 | version "1.1.2" 3685 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 3686 | dependencies: 3687 | is-plain-obj "^1.0.0" 3688 | 3689 | source-list-map@^2.0.0: 3690 | version "2.0.0" 3691 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 3692 | 3693 | source-map-support@^0.4.15: 3694 | version "0.4.17" 3695 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.17.tgz#6f2150553e6375375d0ccb3180502b78c18ba430" 3696 | dependencies: 3697 | source-map "^0.5.6" 3698 | 3699 | source-map@^0.4.4: 3700 | version "0.4.4" 3701 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3702 | dependencies: 3703 | amdefine ">=0.0.4" 3704 | 3705 | source-map@^0.5.3, source-map@~0.5.1: 3706 | version "0.5.6" 3707 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3708 | 3709 | source-map@^0.5.6: 3710 | version "0.5.7" 3711 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3712 | 3713 | source-map@^0.6.1, source-map@~0.6.1: 3714 | version "0.6.1" 3715 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3716 | 3717 | source-map@~0.2.0: 3718 | version "0.2.0" 3719 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3720 | dependencies: 3721 | amdefine ">=0.0.4" 3722 | 3723 | spdx-correct@~1.0.0: 3724 | version "1.0.2" 3725 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3726 | dependencies: 3727 | spdx-license-ids "^1.0.2" 3728 | 3729 | spdx-expression-parse@~1.0.0: 3730 | version "1.0.4" 3731 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3732 | 3733 | spdx-license-ids@^1.0.2: 3734 | version "1.2.2" 3735 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3736 | 3737 | sprintf-js@~1.0.2: 3738 | version "1.0.3" 3739 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3740 | 3741 | sshpk@^1.7.0: 3742 | version "1.11.0" 3743 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 3744 | dependencies: 3745 | asn1 "~0.2.3" 3746 | assert-plus "^1.0.0" 3747 | dashdash "^1.12.0" 3748 | getpass "^0.1.1" 3749 | optionalDependencies: 3750 | bcrypt-pbkdf "^1.0.0" 3751 | ecc-jsbn "~0.1.1" 3752 | jodid25519 "^1.0.0" 3753 | jsbn "~0.1.0" 3754 | tweetnacl "~0.14.0" 3755 | 3756 | stream-browserify@^2.0.1: 3757 | version "2.0.1" 3758 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3759 | dependencies: 3760 | inherits "~2.0.1" 3761 | readable-stream "^2.0.2" 3762 | 3763 | stream-http@^2.3.1: 3764 | version "2.7.0" 3765 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.0.tgz#cec1f4e3b494bc4a81b451808970f8b20b4ed5f6" 3766 | dependencies: 3767 | builtin-status-codes "^3.0.0" 3768 | inherits "^2.0.1" 3769 | readable-stream "^2.2.6" 3770 | to-arraybuffer "^1.0.0" 3771 | xtend "^4.0.0" 3772 | 3773 | strict-uri-encode@^1.0.0: 3774 | version "1.1.0" 3775 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 3776 | 3777 | string-length@^1.0.1: 3778 | version "1.0.1" 3779 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-1.0.1.tgz#56970fb1c38558e9e70b728bf3de269ac45adfac" 3780 | dependencies: 3781 | strip-ansi "^3.0.0" 3782 | 3783 | string-width@^1.0.1, string-width@^1.0.2: 3784 | version "1.0.2" 3785 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3786 | dependencies: 3787 | code-point-at "^1.0.0" 3788 | is-fullwidth-code-point "^1.0.0" 3789 | strip-ansi "^3.0.0" 3790 | 3791 | string-width@^2.0.0: 3792 | version "2.0.0" 3793 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.0.0.tgz#635c5436cc72a6e0c387ceca278d4e2eec52687e" 3794 | dependencies: 3795 | is-fullwidth-code-point "^2.0.0" 3796 | strip-ansi "^3.0.0" 3797 | 3798 | string_decoder@^0.10.25, string_decoder@~0.10.x: 3799 | version "0.10.31" 3800 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3801 | 3802 | stringstream@~0.0.4: 3803 | version "0.0.5" 3804 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3805 | 3806 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3807 | version "3.0.1" 3808 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3809 | dependencies: 3810 | ansi-regex "^2.0.0" 3811 | 3812 | strip-bom@3.0.0, strip-bom@^3.0.0: 3813 | version "3.0.0" 3814 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3815 | 3816 | strip-bom@^2.0.0: 3817 | version "2.0.0" 3818 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3819 | dependencies: 3820 | is-utf8 "^0.2.0" 3821 | 3822 | strip-eof@^1.0.0: 3823 | version "1.0.0" 3824 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3825 | 3826 | strip-json-comments@~2.0.1: 3827 | version "2.0.1" 3828 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3829 | 3830 | style-loader@^0.20.2: 3831 | version "0.20.2" 3832 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.20.2.tgz#851b373c187890331776e9cde359eea9c95ecd00" 3833 | dependencies: 3834 | loader-utils "^1.1.0" 3835 | schema-utils "^0.4.3" 3836 | 3837 | supports-color@^2.0.0: 3838 | version "2.0.0" 3839 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3840 | 3841 | supports-color@^3.1.2, supports-color@^3.2.3: 3842 | version "3.2.3" 3843 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3844 | dependencies: 3845 | has-flag "^1.0.0" 3846 | 3847 | supports-color@^4.2.1: 3848 | version "4.5.0" 3849 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3850 | dependencies: 3851 | has-flag "^2.0.0" 3852 | 3853 | supports-color@^5.2.0: 3854 | version "5.2.0" 3855 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a" 3856 | dependencies: 3857 | has-flag "^3.0.0" 3858 | 3859 | svgo@^0.7.0: 3860 | version "0.7.2" 3861 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 3862 | dependencies: 3863 | coa "~1.0.1" 3864 | colors "~1.1.2" 3865 | csso "~2.3.1" 3866 | js-yaml "~3.7.0" 3867 | mkdirp "~0.5.1" 3868 | sax "~1.2.1" 3869 | whet.extend "~0.9.9" 3870 | 3871 | symbol-tree@^3.2.1: 3872 | version "3.2.2" 3873 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3874 | 3875 | table@^3.7.8: 3876 | version "3.8.3" 3877 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 3878 | dependencies: 3879 | ajv "^4.7.0" 3880 | ajv-keywords "^1.0.0" 3881 | chalk "^1.1.1" 3882 | lodash "^4.0.0" 3883 | slice-ansi "0.0.4" 3884 | string-width "^2.0.0" 3885 | 3886 | tapable@^0.2.7: 3887 | version "0.2.8" 3888 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 3889 | 3890 | tar-pack@^3.4.0: 3891 | version "3.4.0" 3892 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3893 | dependencies: 3894 | debug "^2.2.0" 3895 | fstream "^1.0.10" 3896 | fstream-ignore "^1.0.5" 3897 | once "^1.3.3" 3898 | readable-stream "^2.1.4" 3899 | rimraf "^2.5.1" 3900 | tar "^2.2.1" 3901 | uid-number "^0.0.6" 3902 | 3903 | tar@^2.2.1: 3904 | version "2.2.1" 3905 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3906 | dependencies: 3907 | block-stream "*" 3908 | fstream "^1.0.2" 3909 | inherits "2" 3910 | 3911 | test-exclude@^4.1.1: 3912 | version "4.1.1" 3913 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3914 | dependencies: 3915 | arrify "^1.0.1" 3916 | micromatch "^2.3.11" 3917 | object-assign "^4.1.0" 3918 | read-pkg-up "^1.0.1" 3919 | require-main-filename "^1.0.1" 3920 | 3921 | text-table@~0.2.0: 3922 | version "0.2.0" 3923 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3924 | 3925 | throat@^3.0.0: 3926 | version "3.2.0" 3927 | resolved "https://registry.yarnpkg.com/throat/-/throat-3.2.0.tgz#50cb0670edbc40237b9e347d7e1f88e4620af836" 3928 | 3929 | through@^2.3.6: 3930 | version "2.3.8" 3931 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3932 | 3933 | timers-browserify@^2.0.2: 3934 | version "2.0.2" 3935 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 3936 | dependencies: 3937 | setimmediate "^1.0.4" 3938 | 3939 | tmpl@1.0.x: 3940 | version "1.0.4" 3941 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3942 | 3943 | to-arraybuffer@^1.0.0: 3944 | version "1.0.1" 3945 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3946 | 3947 | to-fast-properties@^1.0.3: 3948 | version "1.0.3" 3949 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3950 | 3951 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3952 | version "2.3.2" 3953 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3954 | dependencies: 3955 | punycode "^1.4.1" 3956 | 3957 | tr46@~0.0.3: 3958 | version "0.0.3" 3959 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3960 | 3961 | trim-right@^1.0.1: 3962 | version "1.0.1" 3963 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3964 | 3965 | tryit@^1.0.1: 3966 | version "1.0.3" 3967 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3968 | 3969 | tty-browserify@0.0.0: 3970 | version "0.0.0" 3971 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3972 | 3973 | tunnel-agent@^0.6.0: 3974 | version "0.6.0" 3975 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3976 | dependencies: 3977 | safe-buffer "^5.0.1" 3978 | 3979 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3980 | version "0.14.5" 3981 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3982 | 3983 | type-check@~0.3.2: 3984 | version "0.3.2" 3985 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3986 | dependencies: 3987 | prelude-ls "~1.1.2" 3988 | 3989 | typedarray@^0.0.6: 3990 | version "0.0.6" 3991 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3992 | 3993 | uglify-js@^2.6, uglify-js@^2.8.29: 3994 | version "2.8.29" 3995 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3996 | dependencies: 3997 | source-map "~0.5.1" 3998 | yargs "~3.10.0" 3999 | optionalDependencies: 4000 | uglify-to-browserify "~1.0.0" 4001 | 4002 | uglify-to-browserify@~1.0.0: 4003 | version "1.0.2" 4004 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 4005 | 4006 | uglifyjs-webpack-plugin@^0.4.6: 4007 | version "0.4.6" 4008 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 4009 | dependencies: 4010 | source-map "^0.5.6" 4011 | uglify-js "^2.8.29" 4012 | webpack-sources "^1.0.1" 4013 | 4014 | uid-number@^0.0.6: 4015 | version "0.0.6" 4016 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4017 | 4018 | uniq@^1.0.1: 4019 | version "1.0.1" 4020 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 4021 | 4022 | uniqid@^4.0.0: 4023 | version "4.1.1" 4024 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 4025 | dependencies: 4026 | macaddress "^0.2.8" 4027 | 4028 | uniqs@^2.0.0: 4029 | version "2.0.0" 4030 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 4031 | 4032 | url-loader@^0.6.2: 4033 | version "0.6.2" 4034 | resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.6.2.tgz#a007a7109620e9d988d14bce677a1decb9a993f7" 4035 | dependencies: 4036 | loader-utils "^1.0.2" 4037 | mime "^1.4.1" 4038 | schema-utils "^0.3.0" 4039 | 4040 | url@^0.11.0: 4041 | version "0.11.0" 4042 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 4043 | dependencies: 4044 | punycode "1.3.2" 4045 | querystring "0.2.0" 4046 | 4047 | user-home@^2.0.0: 4048 | version "2.0.0" 4049 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 4050 | dependencies: 4051 | os-homedir "^1.0.0" 4052 | 4053 | util-deprecate@~1.0.1: 4054 | version "1.0.2" 4055 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4056 | 4057 | util@0.10.3, util@^0.10.3: 4058 | version "0.10.3" 4059 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 4060 | dependencies: 4061 | inherits "2.0.1" 4062 | 4063 | uuid@^3.0.0: 4064 | version "3.0.1" 4065 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 4066 | 4067 | validate-npm-package-license@^3.0.1: 4068 | version "3.0.1" 4069 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4070 | dependencies: 4071 | spdx-correct "~1.0.0" 4072 | spdx-expression-parse "~1.0.0" 4073 | 4074 | vendors@^1.0.0: 4075 | version "1.0.1" 4076 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 4077 | 4078 | verror@1.3.6: 4079 | version "1.3.6" 4080 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 4081 | dependencies: 4082 | extsprintf "1.0.2" 4083 | 4084 | vm-browserify@0.0.4: 4085 | version "0.0.4" 4086 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 4087 | dependencies: 4088 | indexof "0.0.1" 4089 | 4090 | walker@~1.0.5: 4091 | version "1.0.7" 4092 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4093 | dependencies: 4094 | makeerror "1.0.x" 4095 | 4096 | watch@~0.10.0: 4097 | version "0.10.0" 4098 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.10.0.tgz#77798b2da0f9910d595f1ace5b0c2258521f21dc" 4099 | 4100 | watchpack@^1.4.0: 4101 | version "1.4.0" 4102 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 4103 | dependencies: 4104 | async "^2.1.2" 4105 | chokidar "^1.7.0" 4106 | graceful-fs "^4.1.2" 4107 | 4108 | webidl-conversions@^3.0.0: 4109 | version "3.0.1" 4110 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 4111 | 4112 | webidl-conversions@^4.0.0: 4113 | version "4.0.2" 4114 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 4115 | 4116 | webpack-sources@^1.0.1: 4117 | version "1.1.0" 4118 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.1.0.tgz#a101ebae59d6507354d71d8013950a3a8b7a5a54" 4119 | dependencies: 4120 | source-list-map "^2.0.0" 4121 | source-map "~0.6.1" 4122 | 4123 | webpack@^3.0.0: 4124 | version "3.11.0" 4125 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.11.0.tgz#77da451b1d7b4b117adaf41a1a93b5742f24d894" 4126 | dependencies: 4127 | acorn "^5.0.0" 4128 | acorn-dynamic-import "^2.0.0" 4129 | ajv "^6.1.0" 4130 | ajv-keywords "^3.1.0" 4131 | async "^2.1.2" 4132 | enhanced-resolve "^3.4.0" 4133 | escope "^3.6.0" 4134 | interpret "^1.0.0" 4135 | json-loader "^0.5.4" 4136 | json5 "^0.5.1" 4137 | loader-runner "^2.3.0" 4138 | loader-utils "^1.1.0" 4139 | memory-fs "~0.4.1" 4140 | mkdirp "~0.5.0" 4141 | node-libs-browser "^2.0.0" 4142 | source-map "^0.5.3" 4143 | supports-color "^4.2.1" 4144 | tapable "^0.2.7" 4145 | uglifyjs-webpack-plugin "^0.4.6" 4146 | watchpack "^1.4.0" 4147 | webpack-sources "^1.0.1" 4148 | yargs "^8.0.2" 4149 | 4150 | whatwg-encoding@^1.0.1: 4151 | version "1.0.1" 4152 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 4153 | dependencies: 4154 | iconv-lite "0.4.13" 4155 | 4156 | whatwg-url@^4.3.0: 4157 | version "4.8.0" 4158 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 4159 | dependencies: 4160 | tr46 "~0.0.3" 4161 | webidl-conversions "^3.0.0" 4162 | 4163 | whet.extend@~0.9.9: 4164 | version "0.9.9" 4165 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 4166 | 4167 | which-module@^1.0.0: 4168 | version "1.0.0" 4169 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 4170 | 4171 | which-module@^2.0.0: 4172 | version "2.0.0" 4173 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4174 | 4175 | which@^1.2.12, which@^1.2.9: 4176 | version "1.3.0" 4177 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4178 | dependencies: 4179 | isexe "^2.0.0" 4180 | 4181 | wide-align@^1.1.0: 4182 | version "1.1.0" 4183 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 4184 | dependencies: 4185 | string-width "^1.0.1" 4186 | 4187 | window-size@0.1.0: 4188 | version "0.1.0" 4189 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4190 | 4191 | wordwrap@0.0.2: 4192 | version "0.0.2" 4193 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4194 | 4195 | wordwrap@~0.0.2: 4196 | version "0.0.3" 4197 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4198 | 4199 | wordwrap@~1.0.0: 4200 | version "1.0.0" 4201 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4202 | 4203 | worker-farm@^1.3.1: 4204 | version "1.5.0" 4205 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 4206 | dependencies: 4207 | errno "^0.1.4" 4208 | xtend "^4.0.1" 4209 | 4210 | wrap-ansi@^2.0.0: 4211 | version "2.1.0" 4212 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4213 | dependencies: 4214 | string-width "^1.0.1" 4215 | strip-ansi "^3.0.1" 4216 | 4217 | wrappy@1: 4218 | version "1.0.2" 4219 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4220 | 4221 | write@^0.2.1: 4222 | version "0.2.1" 4223 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4224 | dependencies: 4225 | mkdirp "^0.5.1" 4226 | 4227 | xml-name-validator@^2.0.1: 4228 | version "2.0.1" 4229 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 4230 | 4231 | xtend@^4.0.0, xtend@^4.0.1: 4232 | version "4.0.1" 4233 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4234 | 4235 | y18n@^3.2.1: 4236 | version "3.2.1" 4237 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4238 | 4239 | yallist@^2.1.2: 4240 | version "2.1.2" 4241 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4242 | 4243 | yargs-parser@^5.0.0: 4244 | version "5.0.0" 4245 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" 4246 | dependencies: 4247 | camelcase "^3.0.0" 4248 | 4249 | yargs-parser@^7.0.0: 4250 | version "7.0.0" 4251 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4252 | dependencies: 4253 | camelcase "^4.1.0" 4254 | 4255 | yargs@^7.0.2: 4256 | version "7.1.0" 4257 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" 4258 | dependencies: 4259 | camelcase "^3.0.0" 4260 | cliui "^3.2.0" 4261 | decamelize "^1.1.1" 4262 | get-caller-file "^1.0.1" 4263 | os-locale "^1.4.0" 4264 | read-pkg-up "^1.0.1" 4265 | require-directory "^2.1.1" 4266 | require-main-filename "^1.0.1" 4267 | set-blocking "^2.0.0" 4268 | string-width "^1.0.2" 4269 | which-module "^1.0.0" 4270 | y18n "^3.2.1" 4271 | yargs-parser "^5.0.0" 4272 | 4273 | yargs@^8.0.2: 4274 | version "8.0.2" 4275 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 4276 | dependencies: 4277 | camelcase "^4.1.0" 4278 | cliui "^3.2.0" 4279 | decamelize "^1.1.1" 4280 | get-caller-file "^1.0.1" 4281 | os-locale "^2.0.0" 4282 | read-pkg-up "^2.0.0" 4283 | require-directory "^2.1.1" 4284 | require-main-filename "^1.0.1" 4285 | set-blocking "^2.0.0" 4286 | string-width "^2.0.0" 4287 | which-module "^2.0.0" 4288 | y18n "^3.2.1" 4289 | yargs-parser "^7.0.0" 4290 | 4291 | yargs@~3.10.0: 4292 | version "3.10.0" 4293 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4294 | dependencies: 4295 | camelcase "^1.0.2" 4296 | cliui "^2.1.0" 4297 | decamelize "^1.0.0" 4298 | window-size "0.1.0" 4299 | --------------------------------------------------------------------------------