├── .babelrc ├── .github └── main.workflow ├── .gitignore ├── .npmignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── assets ├── after-passive.png ├── before-passive.png └── code_coverage_20161112.png ├── contributing.json ├── package.json ├── src ├── checkSupport.js ├── checkSupport.test.js ├── constants.js ├── index.js └── index.test.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } -------------------------------------------------------------------------------- /.github/main.workflow: -------------------------------------------------------------------------------- 1 | workflow "build and test" { 2 | on = "push" 3 | resolves = ["build", "cover"] 4 | } 5 | 6 | action "install" { 7 | uses = "actions/npm@master" 8 | args = "install" 9 | } 10 | 11 | action "build" { 12 | needs = "install" 13 | uses = "actions/npm@master" 14 | args = "run build" 15 | } 16 | 17 | action "cover" { 18 | needs = "install" 19 | uses = "actions/npm@master" 20 | args = "run cover" 21 | } 22 | 23 | action "report-coverage" { 24 | needs = "install" 25 | uses = "actions/npm@master" 26 | args = "run report-coverage" 27 | } 28 | 29 | action "upload-coverage" { 30 | needs = "install" 31 | uses = "actions/npm@master" 32 | args = "run codecov" 33 | } 34 | 35 | workflow "publish on release" { 36 | on = "release" 37 | resolves = ["publish"] 38 | } 39 | 40 | action "publish" { 41 | needs = "build" 42 | uses = "actions/npm@master" 43 | args = "publish" 44 | secrets = ["NPM_AUTH_TOKEN"] 45 | } 46 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea 3 | 4 | node_modules 5 | dist 6 | test_dist 7 | 8 | .DS_Store 9 | npm-debug.log 10 | index.js 11 | 12 | coverage 13 | .nyc_output -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Ignore folders 2 | src/ 3 | test/ 4 | node_modules/ 5 | dist/ 6 | assets/ 7 | coverage/ 8 | .nyc_output 9 | .github 10 | 11 | # Ignore files 12 | CODE_OF_CONDUCT.md 13 | contributing.json 14 | 15 | # Ignore build and environment specific files 16 | yarn.lock 17 | webpack.config.js 18 | .gitignore 19 | .babelrc 20 | .npmignore 21 | .travis.yml 22 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "6.6" 4 | 5 | cache: 6 | directories: 7 | - node_modules 8 | 9 | install: 10 | - npm install 11 | 12 | script: 13 | - npm run cover 14 | - npm run report-coverage 15 | 16 | after_success: 17 | - npm run codecov -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at adisinghrajput@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Aditya Pratap Singh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # add-eventlistener-with-options 2 | A utility function to check if [EventTarget.addEventListener](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener) supports adding `passive` (or `capture`, `once`) event options. 3 | 4 | [![NPM](https://nodei.co/npm/add-eventlistener-with-options.png)](https://npmjs.org/package/add-eventlistener-with-options) 5 | 6 | ## Build status 7 | [![Build Status](https://travis-ci.org/addityasingh/add-eventlistener-with-options.svg?branch=master)](https://travis-ci.org/addityasingh/add-eventlistener-with-options) 8 | [![coverage](https://codecov.io/github/addityasingh/add-eventlistener-with-options/coverage.svg?precision=0)](https://codecov.io/github/addityasingh/add-eventlistener-with-options) 9 | 10 | ## npm status 11 | [![downloads](https://img.shields.io/npm/dt/add-eventlistener-with-options.svg)](https://npmjs.org/package/add-eventlistener-with-options?cacheSeconds=3600) 12 | [![version](https://img.shields.io/npm/v/add-eventlistener-with-options.svg)](https://npmjs.org/package/add-eventlistener-with-options?cacheSeconds=3600) 13 | 14 | # Story behind Passive event listeners 15 | 16 | Passive event listeners are a new feature [in the DOM spec](https://dom.spec.whatwg.org/#dom-eventlisteneroptions-passive) that enable developers to opt-in to better scroll performance by eliminating the need for scrolling to block on touch and wheel event listeners. Developers can annotate touch and wheel listeners with `{passive: true}` to indicate that they will never invoke `preventDefault`. This feature [shipped in Chrome 51](https://www.chromestatus.com/features/5745543795965952), [Firefox 49](https://bugzilla.mozilla.org/show_bug.cgi?id=1266066) and [landed in WebKit](https://bugs.webkit.org/show_bug.cgi?id=158601). 17 | 18 | 19 | ### The problem 20 | 21 | Smooth scrolling performance is essential to a good experience on the web, especially on touch-based devices. 22 | All modern browsers have a threaded scrolling feature to permit scrolling to run smoothly even when expensive 23 | JavaScript is running, but this optimization is partially defeated by the need to wait for the results of 24 | any `touchstart` and `touchmove` handlers, which may prevent the scroll entirely by calling [`preventDefault()`](http://www.w3.org/TR/touch-events/#the-touchstart-event) on the event. While there are particular scenarios where an author may indeed want to prevent scrolling, analysis indicates that the majority of touch event handlers on the web never actually 25 | call `preventDefault()`, so browsers often block scrolling unneccesarily. For instance, in Chrome for Android 80% of the touch events that block scrolling never actually prevent it. 10% of these events add more than 100ms of delay to the start of scrolling, and a catastrophic delay of at least 500ms occurs in 1% of scrolls. 26 | 27 | ### Solution: the 'passive' option 28 | 29 | Now that we have an extensible syntax for specifying options at event handler registration time, we can add a new `passive` option which declares up-front that the listener will never call `preventDefault()` on the event. If it does, the user agent will just ignore the request (ideally generating at least a console warning). 30 | 31 | Now rather than having to block scrolling whenever there are any touch or wheel listener, the browser only needs to do this when there are *non-passive* listeners (see [TouchEvents spec](http://w3c.github.io/touch-events/#cancelability)). `passive` listeners are free of performance side-effects. 32 | 33 | This package provides a smooth fallback implementation to use the `{ passive: true }` option in newer browsers, while falling back to `false` value in older ones. 34 | Additionally, you could also use the method to use the `capture` and `once` options. 35 | 36 | # Syntax 37 | ```javascript 38 | addEventListenerWithOptions(target, 39 | eventName, 40 | listener, 41 | options, 42 | optionName); 43 | ``` 44 | 45 | - `target`: The [EventTarget](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget) element to use as the target of the event 46 | - `eventName`: Name of the event to be handled using the event listener. E.g. `touchstart`, `touchend` 47 | - `listener`: The event listener callback to be called on the event 48 | - `options`: Additional options 49 | - `optionName`: Defaults to `passive`. Use [`once`, `capture`] to override. 50 | 51 | # Installation 52 | Use it with `npm` as 53 | 54 | ``` 55 | npm install add-event-listener-with-options 56 | ``` 57 | 58 | # Example 59 | - To add the `passive` event listeners as default 60 | 61 | ## ES6 syntax 62 | ```javascript 63 | import addEventListenerWithOptions from 'add-eventlistener-with-options'; 64 | 65 | addEventListenerWithOptions(window, 'touchstart', () => { 66 | // Execute callback code 67 | }); 68 | ``` 69 | 70 | - The default option is `passive`, but you can even add `capture` or `once` options by passing them as the last parameter 71 | 72 | ```javascript 73 | addEventListenerWithOptions(window, 'touchstart', () => { 74 | // Execute callback code 75 | }, {}, 'capture'); 76 | ``` 77 | 78 | # Performance test 79 | There is a video showing the comparison of performance on [CNN website](https://www.cnn.com) here 80 | 81 | 82 | ![demo video](https://cloud.githubusercontent.com/assets/39191/16223871/cab9f508-379f-11e6-8154-1d0a005ad071.png) 83 | 84 | 85 | Additionally, I tested the change with below code and the Devtools Timline data ***before*** and ***after*** the change are shown below for a sample **Redux** application. The number of frames in green (< 16ms) is increased after adding the `passive` option as compared below: 86 | 87 | ### Before 88 | 89 | 90 | ```javascript 91 | window.addEventListener('touchstart', (e) => { 92 | console.log('e.defaultPrevented', e.defaultPrevented); // will be false 93 | for (let i =0; i< 100; i++) { 94 | console.log(`i ${i}`); 95 | e.preventDefault(); // prevents the scroll because the event handler is not passive 96 | } 97 | 98 | console.log('e.defaultPrevented', e.defaultPrevented); // true 99 | }); 100 | ``` 101 | 102 | ![Before Passive ](https://raw.githubusercontent.com/addityasingh/add-eventlistener-with-options/master/assets/before-passive.png) 103 | 104 | ### After 105 | 106 | ```javascript 107 | addEventListenerWithOptions(window, 'touchstart', (e) => { 108 | console.log('e.defaultPrevented', e.defaultPrevented); // will be false 109 | for (let i =0; i< 100; i++) { 110 | console.log(`i ${i}`); 111 | e.preventDefault(); // does nothing since the listener is passive 112 | } 113 | 114 | console.log('e.defaultPrevented', e.defaultPrevented); // still false 115 | }); 116 | ``` 117 | 118 | ![After Passive ](https://raw.githubusercontent.com/addityasingh/add-eventlistener-with-options/master/assets/after-passive.png) 119 | 120 | 121 | # Reference and Credits 122 | Most of the sources for implementing this comes from the [Web Platform Incubator Community Group](https://www.w3.org/blog/2015/07/wicg/) suggestion on [EventListenerOptions](https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md) 123 | 124 | -------------------------------------------------------------------------------- /assets/after-passive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addityasingh/add-eventlistener-with-options/92ad402f6a5c3601f8fc9901aa268a13e11e347a/assets/after-passive.png -------------------------------------------------------------------------------- /assets/before-passive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addityasingh/add-eventlistener-with-options/92ad402f6a5c3601f8fc9901aa268a13e11e347a/assets/before-passive.png -------------------------------------------------------------------------------- /assets/code_coverage_20161112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/addityasingh/add-eventlistener-with-options/92ad402f6a5c3601f8fc9901aa268a13e11e347a/assets/code_coverage_20161112.png -------------------------------------------------------------------------------- /contributing.json: -------------------------------------------------------------------------------- 1 | // https://gitmagic.io/rules 2 | { 3 | "commit": { 4 | "subject_cannot_be_empty": true, 5 | "subject_must_be_longer_than": 4, 6 | "subject_must_be_shorter_than": 101, 7 | "subject_lines_must_be_shorter_than": 51, 8 | "subject_must_be_single_line": true, 9 | "subject_must_be_in_tense": "imperative", 10 | "subject_must_start_with_case": "lower", 11 | "subject_must_not_end_with_dot": true, 12 | 13 | "body_lines_must_be_shorter_than": 73 14 | }, 15 | "pull_request": { 16 | "subject_cannot_be_empty": true, 17 | "subject_must_be_longer_than": 4, 18 | "subject_must_be_shorter_than": 101, 19 | "subject_must_be_in_tense": "imperative", 20 | "subject_must_start_with_case": "upper", 21 | "subject_must_not_end_with_dot": true, 22 | 23 | "body_cannot_be_empty": true, 24 | "body_must_include_verification_steps": true, 25 | "body_must_include_screenshot": ["html", "css"] 26 | }, 27 | "issue": { 28 | "subject_cannot_be_empty": true, 29 | "subject_must_be_longer_than": 4, 30 | "subject_must_be_shorter_than": 101, 31 | "subject_must_be_in_tense": "imperative", 32 | "subject_must_start_with_case": "upper", 33 | "subject_must_not_end_with_dot": true, 34 | 35 | "body_cannot_be_empty": true, 36 | "body_must_include_reproduction_steps": ["bug"], 37 | 38 | "label_must_be_set": true 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "add-eventlistener-with-options", 3 | "version": "1.25.5", 4 | "description": "A utility function to check if EventTarget.addEventListener supports adding passive events", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "mocha src/**/*.js --compilers js:babel-register", 8 | "test:watch": "npm t -- -w", 9 | "report-coverage": "nyc report --reporter=lcov", 10 | "codecov": "cat coverage/*/lcov.info | codecov", 11 | "cover": "nyc npm t", 12 | "prebuild": "rimraf dist", 13 | "build": "babel --out-dir dist src --ignore *.test.js && webpack", 14 | "prepublish": "npm run build" 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "git+https://github.com/addityasingh/add-eventlistener-with-options.git" 19 | }, 20 | "keywords": [ 21 | "event", 22 | "passive" 23 | ], 24 | "author": "Aditya Pratap Singh ", 25 | "license": "ISC", 26 | "bugs": { 27 | "url": "https://github.com/addityasingh/add-eventlistener-with-options/issues" 28 | }, 29 | "homepage": "https://github.com/addityasingh/add-eventlistener-with-options#readme", 30 | "dependencies": {}, 31 | "devDependencies": { 32 | "babel": "^6.5.2", 33 | "babel-cli": "^6.16.0", 34 | "babel-core": "^6.17.0", 35 | "babel-loader": "^6.2.5", 36 | "babel-preset-es2015": "^6.16.0", 37 | "babel-preset-stage-0": "^6.16.0", 38 | "babel-register": "^6.18.0", 39 | "chai": "3.5.0", 40 | "codecov": "3.7.1", 41 | "core-js": "2.4.1", 42 | "jsdom": "9.8.0", 43 | "mocha": "3.1.2", 44 | "mocha-jsdom": "1.1.0", 45 | "nyc": "10.0.0", 46 | "rimraf": "2.5.4", 47 | "sinon": "7.3.2", 48 | "webpack": "1.13.2" 49 | }, 50 | "nyc": { 51 | "exclude": [ 52 | "**/*.test.js", 53 | "dist", 54 | "src/index.js" 55 | ] 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/checkSupport.js: -------------------------------------------------------------------------------- 1 | import { 2 | PASSIVE, 3 | CAPTURE, 4 | ONCE 5 | } from './constants'; 6 | 7 | const OptionsMap = { 8 | [PASSIVE]: false, 9 | [CAPTURE]: false, 10 | [ONCE]: false 11 | } 12 | 13 | const getOptionsMap = () => { 14 | Object.keys(OptionsMap).forEach((k, i) => { 15 | OptionsMap[k] = checkSupportForProperty(k); 16 | }); 17 | 18 | return OptionsMap; 19 | }; 20 | 21 | function checkSupportForProperty (property) { 22 | if (!!OptionsMap[property]) { 23 | return OptionsMap[property]; 24 | } 25 | 26 | try { 27 | const opts = Object.defineProperty({}, property, { 28 | get: function() { 29 | OptionsMap[property] = true; 30 | } 31 | }); 32 | window.addEventListener("test", null, opts); 33 | window.removeListener("test", null); 34 | } catch (e) {} 35 | 36 | return OptionsMap[property]; 37 | } 38 | 39 | export const SupportMap = getOptionsMap(); -------------------------------------------------------------------------------- /src/checkSupport.test.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | import jsdom from 'mocha-jsdom'; 3 | import { SupportMap } from './checkSupport'; 4 | import { PASSIVE, CAPTURE, ONCE } from './constants'; 5 | 6 | describe(`${PASSIVE.toUpperCase()}`, () => { 7 | jsdom(); 8 | 9 | it('should not be available and false in old browsers', () => { 10 | expect(SupportMap[PASSIVE]).to.equal(false); 11 | }); 12 | }); 13 | 14 | describe(`${CAPTURE.toUpperCase()}`, () => { 15 | jsdom(); 16 | 17 | it('should not be available and false in old browsers', () => { 18 | expect(SupportMap[CAPTURE]).to.equal(false); 19 | }); 20 | }); 21 | 22 | describe(`${ONCE.toUpperCase()}`, () => { 23 | jsdom(); 24 | 25 | it('should not be available and false in old browsers', () => { 26 | expect(SupportMap[ONCE]).to.equal(false); 27 | }); 28 | }); 29 | 30 | -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | export const PASSIVE = 'passive'; 2 | export const CAPTURE = 'capture'; 3 | export const ONCE = 'once'; -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import { 2 | SupportMap 3 | } from './checkSupport'; 4 | 5 | 6 | /** 7 | * Add event listener with additional options 8 | * @param {EventTarget} target - The EventTarget element 9 | * @param {string} name - The name of the event 10 | * @param {function} listener - The event listener callback 11 | * @param {object} options - The options explicitly passed from caller 12 | * @param {string} optionName - The additioanl option to add to the event listener 13 | */ 14 | export default function addEventListenerWithOptions ( 15 | target, 16 | name, 17 | listener, 18 | options, 19 | optionName = 'passive') { 20 | if (target.addEventListener !== undefined) { 21 | const listenerOptions = SupportMap[optionName] 22 | ? Object.assign({}, options, { [optionName]: true }) 23 | : options; 24 | target.addEventListener(name, listener, listenerOptions); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | import jsdom from 'mocha-jsdom'; 3 | import sinon from 'sinon'; 4 | import addEventListenerWithOptions from "./index"; 5 | 6 | describe("addEventListenerWithOptions", () => { 7 | jsdom(); 8 | 9 | it("should be able to attach event listener successfully", () => { 10 | const target = document.createElement("button"); 11 | target.id = "target-id"; 12 | target.textContent = "Hello World!"; 13 | const mockListener = sinon.spy(); 14 | addEventListenerWithOptions(target, "click", mockListener); 15 | const evt = document.createEvent("HTMLEvents"); 16 | evt.initEvent("click", false, true); 17 | target.dispatchEvent(evt) 18 | 19 | expect(mockListener.callCount).to.equal(1); 20 | }); 21 | }); -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = { 4 | entry: './src/index.js', 5 | output: { 6 | path: path.join(__dirname), 7 | filename: 'index.js', 8 | libraryTarget: 'umd', 9 | library: 'add-eventlistener-with-options' 10 | }, 11 | module: { 12 | loaders: [ 13 | { 14 | test: /\.js/, 15 | loader: 'babel?sourceMap=true' 16 | } 17 | ] 18 | } 19 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@sinonjs/commons@^1", "@sinonjs/commons@^1.0.2", "@sinonjs/commons@^1.4.0": 6 | version "1.4.0" 7 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.4.0.tgz#7b3ec2d96af481d7a0321252e7b1c94724ec5a78" 8 | integrity sha512-9jHK3YF/8HtJ9wCAbG+j8cD0i0+ATS9A7gXFqS36TblLPNy6rEEc+SB0imo91eCboGaBYGV/MT1/br/J+EE7Tw== 9 | dependencies: 10 | type-detect "4.0.8" 11 | 12 | "@sinonjs/formatio@^3.1.0", "@sinonjs/formatio@^3.2.1": 13 | version "3.2.1" 14 | resolved "https://registry.yarnpkg.com/@sinonjs/formatio/-/formatio-3.2.1.tgz#52310f2f9bcbc67bdac18c94ad4901b95fde267e" 15 | integrity sha512-tsHvOB24rvyvV2+zKMmPkZ7dXX6LSLKZ7aOtXY6Edklp0uRcgGpOsQTTGTcWViFyx4uhWc6GV8QdnALbIbIdeQ== 16 | dependencies: 17 | "@sinonjs/commons" "^1" 18 | "@sinonjs/samsam" "^3.1.0" 19 | 20 | "@sinonjs/samsam@^3.1.0", "@sinonjs/samsam@^3.3.1": 21 | version "3.3.1" 22 | resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-3.3.1.tgz#e88c53fbd9d91ad9f0f2b0140c16c7c107fe0d07" 23 | integrity sha512-wRSfmyd81swH0hA1bxJZJ57xr22kC07a1N4zuIL47yTS04bDk6AoCkczcqHEjcRPmJ+FruGJ9WBQiJwMtIElFw== 24 | dependencies: 25 | "@sinonjs/commons" "^1.0.2" 26 | array-from "^2.1.1" 27 | lodash "^4.17.11" 28 | 29 | "@sinonjs/text-encoding@^0.7.1": 30 | version "0.7.1" 31 | resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz#8da5c6530915653f3a1f38fd5f101d8c3f8079c5" 32 | integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ== 33 | 34 | "@tootallnate/once@1": 35 | version "1.0.0" 36 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.0.0.tgz#9c13c2574c92d4503b005feca8f2e16cc1611506" 37 | integrity sha512-KYyTT/T6ALPkIRd2Ge080X/BsXvy9O0hcWTtMWkPvwAwF99+vn6Dv4GzrFT/Nn1LePr+FFDbRXXlqmsy9lw2zA== 38 | 39 | Base64@~0.2.0: 40 | version "0.2.1" 41 | resolved "https://registry.yarnpkg.com/Base64/-/Base64-0.2.1.tgz#ba3a4230708e186705065e66babdd4c35cf60028" 42 | 43 | abab@^1.0.0: 44 | version "1.0.3" 45 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 46 | 47 | abbrev@1: 48 | version "1.0.9" 49 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" 50 | 51 | acorn-globals@^1.0.4: 52 | version "1.0.9" 53 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" 54 | dependencies: 55 | acorn "^2.1.0" 56 | 57 | acorn@^2.1.0, acorn@^2.4.0: 58 | version "2.7.0" 59 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" 60 | 61 | acorn@^3.0.0: 62 | version "3.3.0" 63 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 64 | 65 | agent-base@5: 66 | version "5.1.1" 67 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" 68 | integrity sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g== 69 | 70 | agent-base@6: 71 | version "6.0.0" 72 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.0.tgz#5d0101f19bbfaed39980b22ae866de153b93f09a" 73 | integrity sha512-j1Q7cSCqN+AwrmDd+pzgqc0/NpC655x2bUf5ZjRIO77DcNBFmh+OgRNzF6OKdCC9RSCb19fGd99+bhXFdkRNqw== 74 | dependencies: 75 | debug "4" 76 | 77 | align-text@^0.1.1, align-text@^0.1.3: 78 | version "0.1.4" 79 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 80 | dependencies: 81 | kind-of "^3.0.2" 82 | longest "^1.0.1" 83 | repeat-string "^1.5.2" 84 | 85 | amdefine@>=0.0.4: 86 | version "1.0.0" 87 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.0.tgz#fd17474700cb5cc9c2b709f0be9d23ce3c198c33" 88 | 89 | ansi-regex@^2.0.0: 90 | version "2.0.0" 91 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" 92 | 93 | ansi-styles@^2.2.1: 94 | version "2.2.1" 95 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 96 | 97 | anymatch@^1.3.0: 98 | version "1.3.0" 99 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 100 | dependencies: 101 | arrify "^1.0.0" 102 | micromatch "^2.1.5" 103 | 104 | append-transform@^0.4.0: 105 | version "0.4.0" 106 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 107 | integrity sha1-126/jKlNJ24keja61EpLdKthGZE= 108 | dependencies: 109 | default-require-extensions "^1.0.0" 110 | 111 | aproba@^1.0.3: 112 | version "1.0.4" 113 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" 114 | 115 | archy@^1.0.0: 116 | version "1.0.0" 117 | resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" 118 | integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= 119 | 120 | are-we-there-yet@~1.1.2: 121 | version "1.1.2" 122 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 123 | dependencies: 124 | delegates "^1.0.0" 125 | readable-stream "^2.0.0 || ^1.1.13" 126 | 127 | argparse@^1.0.7: 128 | version "1.0.10" 129 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 130 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 131 | dependencies: 132 | sprintf-js "~1.0.2" 133 | 134 | argv@0.0.2: 135 | version "0.0.2" 136 | resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" 137 | integrity sha1-7L0W+JSbFXGDcRsb2jNPN4QBhas= 138 | 139 | arr-diff@^2.0.0: 140 | version "2.0.0" 141 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 142 | dependencies: 143 | arr-flatten "^1.0.1" 144 | 145 | arr-flatten@^1.0.1: 146 | version "1.0.1" 147 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 148 | 149 | array-equal@^1.0.0: 150 | version "1.0.0" 151 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 152 | 153 | array-from@^2.1.1: 154 | version "2.1.1" 155 | resolved "https://registry.yarnpkg.com/array-from/-/array-from-2.1.1.tgz#cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195" 156 | integrity sha1-z+nYwmYoudxa7MYqn12PHzUsEZU= 157 | 158 | array-unique@^0.2.1: 159 | version "0.2.1" 160 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 161 | 162 | arrify@^1.0.0, arrify@^1.0.1: 163 | version "1.0.1" 164 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 165 | 166 | asn1@~0.2.3: 167 | version "0.2.4" 168 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 169 | integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 170 | dependencies: 171 | safer-buffer "~2.1.0" 172 | 173 | assert-plus@^0.2.0: 174 | version "0.2.0" 175 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 176 | 177 | assert-plus@^1.0.0: 178 | version "1.0.0" 179 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 180 | integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= 181 | 182 | assert@^1.1.1: 183 | version "1.4.1" 184 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 185 | dependencies: 186 | util "0.10.3" 187 | 188 | assertion-error@^1.0.1: 189 | version "1.0.2" 190 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 191 | 192 | async-each@^1.0.0: 193 | version "1.0.1" 194 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 195 | 196 | async@^0.9.0: 197 | version "0.9.2" 198 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 199 | 200 | async@^1.3.0: 201 | version "1.5.2" 202 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 203 | 204 | async@~0.2.6: 205 | version "0.2.10" 206 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 207 | 208 | asynckit@^0.4.0: 209 | version "0.4.0" 210 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 211 | 212 | aws-sign2@~0.6.0: 213 | version "0.6.0" 214 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 215 | 216 | aws4@^1.2.1: 217 | version "1.5.0" 218 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" 219 | 220 | babel: 221 | version "6.5.2" 222 | resolved "https://registry.yarnpkg.com/babel/-/babel-6.5.2.tgz#59140607438270920047ff56f02b2d8630c2d129" 223 | 224 | babel-cli@^6.16.0: 225 | version "6.18.0" 226 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186" 227 | dependencies: 228 | babel-core "^6.18.0" 229 | babel-polyfill "^6.16.0" 230 | babel-register "^6.18.0" 231 | babel-runtime "^6.9.0" 232 | commander "^2.8.1" 233 | convert-source-map "^1.1.0" 234 | fs-readdir-recursive "^1.0.0" 235 | glob "^5.0.5" 236 | lodash "^4.2.0" 237 | output-file-sync "^1.1.0" 238 | path-is-absolute "^1.0.0" 239 | slash "^1.0.0" 240 | source-map "^0.5.0" 241 | v8flags "^2.0.10" 242 | optionalDependencies: 243 | chokidar "^1.0.0" 244 | 245 | babel-code-frame@^6.16.0: 246 | version "6.16.0" 247 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" 248 | dependencies: 249 | chalk "^1.1.0" 250 | esutils "^2.0.2" 251 | js-tokens "^2.0.0" 252 | 253 | babel-core, babel-core@^6.16.0: 254 | version "6.17.0" 255 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.17.0.tgz#6c4576447df479e241e58c807e4bc7da4db7f425" 256 | dependencies: 257 | babel-code-frame "^6.16.0" 258 | babel-generator "^6.17.0" 259 | babel-helpers "^6.16.0" 260 | babel-messages "^6.8.0" 261 | babel-register "^6.16.0" 262 | babel-runtime "^6.9.1" 263 | babel-template "^6.16.0" 264 | babel-traverse "^6.16.0" 265 | babel-types "^6.16.0" 266 | babylon "^6.11.0" 267 | convert-source-map "^1.1.0" 268 | debug "^2.1.1" 269 | json5 "^0.4.0" 270 | lodash "^4.2.0" 271 | minimatch "^3.0.2" 272 | path-exists "^1.0.0" 273 | path-is-absolute "^1.0.0" 274 | private "^0.1.6" 275 | shebang-regex "^1.0.0" 276 | slash "^1.0.0" 277 | source-map "^0.5.0" 278 | 279 | babel-core@^6.18.0: 280 | version "6.18.2" 281 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.18.2.tgz#d8bb14dd6986fa4f3566a26ceda3964fa0e04e5b" 282 | dependencies: 283 | babel-code-frame "^6.16.0" 284 | babel-generator "^6.18.0" 285 | babel-helpers "^6.16.0" 286 | babel-messages "^6.8.0" 287 | babel-register "^6.18.0" 288 | babel-runtime "^6.9.1" 289 | babel-template "^6.16.0" 290 | babel-traverse "^6.18.0" 291 | babel-types "^6.18.0" 292 | babylon "^6.11.0" 293 | convert-source-map "^1.1.0" 294 | debug "^2.1.1" 295 | json5 "^0.5.0" 296 | lodash "^4.2.0" 297 | minimatch "^3.0.2" 298 | path-is-absolute "^1.0.0" 299 | private "^0.1.6" 300 | slash "^1.0.0" 301 | source-map "^0.5.0" 302 | 303 | babel-generator@^6.17.0: 304 | version "6.17.0" 305 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.17.0.tgz#b894e3808beef7800f2550635bfe024b6226cf33" 306 | dependencies: 307 | babel-messages "^6.8.0" 308 | babel-runtime "^6.9.0" 309 | babel-types "^6.16.0" 310 | detect-indent "^3.0.1" 311 | jsesc "^1.3.0" 312 | lodash "^4.2.0" 313 | source-map "^0.5.0" 314 | 315 | babel-generator@^6.18.0: 316 | version "6.18.0" 317 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.18.0.tgz#e4f104cb3063996d9850556a45aae4a022060a07" 318 | dependencies: 319 | babel-messages "^6.8.0" 320 | babel-runtime "^6.9.0" 321 | babel-types "^6.18.0" 322 | detect-indent "^4.0.0" 323 | jsesc "^1.3.0" 324 | lodash "^4.2.0" 325 | source-map "^0.5.0" 326 | 327 | babel-helper-bindify-decorators@^6.8.0: 328 | version "6.8.0" 329 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.8.0.tgz#b34805a30b1433cc0042f7054f88a7133c144909" 330 | dependencies: 331 | babel-runtime "^6.0.0" 332 | babel-traverse "^6.8.0" 333 | babel-types "^6.8.0" 334 | 335 | babel-helper-builder-binary-assignment-operator-visitor@^6.8.0: 336 | version "6.15.0" 337 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.15.0.tgz#39e9ee143f797b642262e4646c681c32089ef1ab" 338 | dependencies: 339 | babel-helper-explode-assignable-expression "^6.8.0" 340 | babel-runtime "^6.0.0" 341 | babel-types "^6.15.0" 342 | 343 | babel-helper-call-delegate@^6.8.0: 344 | version "6.8.0" 345 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.8.0.tgz#9d283e7486779b6b0481864a11b371ea5c01fa64" 346 | dependencies: 347 | babel-helper-hoist-variables "^6.8.0" 348 | babel-runtime "^6.0.0" 349 | babel-traverse "^6.8.0" 350 | babel-types "^6.8.0" 351 | 352 | babel-helper-define-map@^6.8.0, babel-helper-define-map@^6.9.0: 353 | version "6.9.0" 354 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.9.0.tgz#6629f9b2a7e58e18e8379a57d1e6fbb2969902fb" 355 | dependencies: 356 | babel-helper-function-name "^6.8.0" 357 | babel-runtime "^6.9.0" 358 | babel-types "^6.9.0" 359 | lodash "^4.2.0" 360 | 361 | babel-helper-explode-assignable-expression@^6.8.0: 362 | version "6.8.0" 363 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.8.0.tgz#9b3525e05b761c3b88919d730a28bad1967e6556" 364 | dependencies: 365 | babel-runtime "^6.0.0" 366 | babel-traverse "^6.8.0" 367 | babel-types "^6.8.0" 368 | 369 | babel-helper-explode-class@^6.8.0: 370 | version "6.8.0" 371 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.8.0.tgz#196a228cc69ea57308695e4ebd1a36cf3f8eca3d" 372 | dependencies: 373 | babel-helper-bindify-decorators "^6.8.0" 374 | babel-runtime "^6.0.0" 375 | babel-traverse "^6.8.0" 376 | babel-types "^6.8.0" 377 | 378 | babel-helper-function-name@^6.8.0: 379 | version "6.8.0" 380 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.8.0.tgz#a0336ba14526a075cdf502fc52d3fe84b12f7a34" 381 | dependencies: 382 | babel-helper-get-function-arity "^6.8.0" 383 | babel-runtime "^6.0.0" 384 | babel-template "^6.8.0" 385 | babel-traverse "^6.8.0" 386 | babel-types "^6.8.0" 387 | 388 | babel-helper-get-function-arity@^6.8.0: 389 | version "6.8.0" 390 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.8.0.tgz#88276c24bd251cdf6f61b6f89f745f486ced92af" 391 | dependencies: 392 | babel-runtime "^6.0.0" 393 | babel-types "^6.8.0" 394 | 395 | babel-helper-hoist-variables@^6.8.0: 396 | version "6.8.0" 397 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.8.0.tgz#8b0766dc026ea9ea423bc2b34e665a4da7373aaf" 398 | dependencies: 399 | babel-runtime "^6.0.0" 400 | babel-types "^6.8.0" 401 | 402 | babel-helper-optimise-call-expression@^6.8.0: 403 | version "6.8.0" 404 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.8.0.tgz#4175628e9c89fc36174904f27070f29d38567f06" 405 | dependencies: 406 | babel-runtime "^6.0.0" 407 | babel-types "^6.8.0" 408 | 409 | babel-helper-regex@^6.8.0: 410 | version "6.9.0" 411 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.9.0.tgz#c74265fde180ff9a16735fee05e63cadb9e0b057" 412 | dependencies: 413 | babel-runtime "^6.9.0" 414 | babel-types "^6.9.0" 415 | lodash "^4.2.0" 416 | 417 | babel-helper-remap-async-to-generator@^6.16.0, babel-helper-remap-async-to-generator@^6.16.2: 418 | version "6.16.2" 419 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.16.2.tgz#24315bde8326c60022dc053cce84cfe38d724b82" 420 | dependencies: 421 | babel-helper-function-name "^6.8.0" 422 | babel-runtime "^6.0.0" 423 | babel-template "^6.16.0" 424 | babel-traverse "^6.16.0" 425 | babel-types "^6.16.0" 426 | 427 | babel-helper-replace-supers@^6.14.0, babel-helper-replace-supers@^6.8.0: 428 | version "6.16.0" 429 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.16.0.tgz#21c97623cc7e430855753f252740122626a39e6b" 430 | dependencies: 431 | babel-helper-optimise-call-expression "^6.8.0" 432 | babel-messages "^6.8.0" 433 | babel-runtime "^6.0.0" 434 | babel-template "^6.16.0" 435 | babel-traverse "^6.16.0" 436 | babel-types "^6.16.0" 437 | 438 | babel-helpers@^6.16.0: 439 | version "6.16.0" 440 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" 441 | dependencies: 442 | babel-runtime "^6.0.0" 443 | babel-template "^6.16.0" 444 | 445 | babel-loader: 446 | version "6.2.5" 447 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.2.5.tgz#576d548520689a5e6b70c65b85d76af1ffedd005" 448 | dependencies: 449 | loader-utils "^0.2.11" 450 | mkdirp "^0.5.1" 451 | object-assign "^4.0.1" 452 | 453 | babel-messages@^6.8.0: 454 | version "6.8.0" 455 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" 456 | dependencies: 457 | babel-runtime "^6.0.0" 458 | 459 | babel-plugin-check-es2015-constants@^6.3.13: 460 | version "6.8.0" 461 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" 462 | dependencies: 463 | babel-runtime "^6.0.0" 464 | 465 | babel-plugin-syntax-async-functions@^6.8.0: 466 | version "6.13.0" 467 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 468 | 469 | babel-plugin-syntax-async-generators@^6.5.0: 470 | version "6.13.0" 471 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 472 | 473 | babel-plugin-syntax-class-constructor-call@^6.8.0: 474 | version "6.13.0" 475 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.13.0.tgz#96fb2e9f177dca22824065de4392f2fe3486b765" 476 | 477 | babel-plugin-syntax-class-properties@^6.8.0: 478 | version "6.13.0" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 480 | 481 | babel-plugin-syntax-decorators@^6.13.0: 482 | version "6.13.0" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 484 | 485 | babel-plugin-syntax-do-expressions@^6.8.0: 486 | version "6.13.0" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 488 | 489 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 490 | version "6.13.0" 491 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 492 | 493 | babel-plugin-syntax-export-extensions@^6.8.0: 494 | version "6.13.0" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 496 | 497 | babel-plugin-syntax-function-bind@^6.8.0: 498 | version "6.13.0" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 500 | 501 | babel-plugin-syntax-object-rest-spread@^6.8.0: 502 | version "6.13.0" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 504 | 505 | babel-plugin-syntax-trailing-function-commas@^6.3.13: 506 | version "6.13.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.13.0.tgz#2b84b7d53dd744f94ff1fad7669406274b23f541" 508 | 509 | babel-plugin-transform-async-generator-functions@^6.17.0: 510 | version "6.17.0" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.17.0.tgz#d0b5a2b2f0940f2b245fa20a00519ed7bc6cae54" 512 | dependencies: 513 | babel-helper-remap-async-to-generator "^6.16.2" 514 | babel-plugin-syntax-async-generators "^6.5.0" 515 | babel-runtime "^6.0.0" 516 | 517 | babel-plugin-transform-async-to-generator@^6.16.0: 518 | version "6.16.0" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz#19ec36cb1486b59f9f468adfa42ce13908ca2999" 520 | dependencies: 521 | babel-helper-remap-async-to-generator "^6.16.0" 522 | babel-plugin-syntax-async-functions "^6.8.0" 523 | babel-runtime "^6.0.0" 524 | 525 | babel-plugin-transform-class-constructor-call@^6.3.13: 526 | version "6.8.0" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.8.0.tgz#6e740bc80f16d295fa598d92518666020a906192" 528 | dependencies: 529 | babel-plugin-syntax-class-constructor-call "^6.8.0" 530 | babel-runtime "^6.0.0" 531 | babel-template "^6.8.0" 532 | 533 | babel-plugin-transform-class-properties@^6.16.0: 534 | version "6.16.0" 535 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.16.0.tgz#969bca24d34e401d214f36b8af5c1346859bc904" 536 | dependencies: 537 | babel-helper-function-name "^6.8.0" 538 | babel-plugin-syntax-class-properties "^6.8.0" 539 | babel-runtime "^6.9.1" 540 | 541 | babel-plugin-transform-decorators@^6.13.0: 542 | version "6.13.0" 543 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.13.0.tgz#82d65c1470ae83e2d13eebecb0a1c2476d62da9d" 544 | dependencies: 545 | babel-helper-define-map "^6.8.0" 546 | babel-helper-explode-class "^6.8.0" 547 | babel-plugin-syntax-decorators "^6.13.0" 548 | babel-runtime "^6.0.0" 549 | babel-template "^6.8.0" 550 | babel-types "^6.13.0" 551 | 552 | babel-plugin-transform-do-expressions@^6.3.13: 553 | version "6.8.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.8.0.tgz#fda692af339835cc255bb7544efb8f7c1306c273" 555 | dependencies: 556 | babel-plugin-syntax-do-expressions "^6.8.0" 557 | babel-runtime "^6.0.0" 558 | 559 | babel-plugin-transform-es2015-arrow-functions@^6.3.13: 560 | version "6.8.0" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" 562 | dependencies: 563 | babel-runtime "^6.0.0" 564 | 565 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: 566 | version "6.8.0" 567 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" 568 | dependencies: 569 | babel-runtime "^6.0.0" 570 | 571 | babel-plugin-transform-es2015-block-scoping@^6.14.0: 572 | version "6.15.0" 573 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.15.0.tgz#5b443ca142be8d1db6a8c2ae42f51958b66b70f6" 574 | dependencies: 575 | babel-runtime "^6.9.0" 576 | babel-template "^6.15.0" 577 | babel-traverse "^6.15.0" 578 | babel-types "^6.15.0" 579 | lodash "^4.2.0" 580 | 581 | babel-plugin-transform-es2015-classes@^6.14.0: 582 | version "6.14.0" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.14.0.tgz#87d5149ee91fb475922409f9af5b2ba5d1e39287" 584 | dependencies: 585 | babel-helper-define-map "^6.9.0" 586 | babel-helper-function-name "^6.8.0" 587 | babel-helper-optimise-call-expression "^6.8.0" 588 | babel-helper-replace-supers "^6.14.0" 589 | babel-messages "^6.8.0" 590 | babel-runtime "^6.9.0" 591 | babel-template "^6.14.0" 592 | babel-traverse "^6.14.0" 593 | babel-types "^6.14.0" 594 | 595 | babel-plugin-transform-es2015-computed-properties@^6.3.13: 596 | version "6.8.0" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" 598 | dependencies: 599 | babel-helper-define-map "^6.8.0" 600 | babel-runtime "^6.0.0" 601 | babel-template "^6.8.0" 602 | 603 | babel-plugin-transform-es2015-destructuring@^6.16.0: 604 | version "6.16.0" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.16.0.tgz#050fe0866f5d53b36062ee10cdf5bfe64f929627" 606 | dependencies: 607 | babel-runtime "^6.9.0" 608 | 609 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0: 610 | version "6.8.0" 611 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" 612 | dependencies: 613 | babel-runtime "^6.0.0" 614 | babel-types "^6.8.0" 615 | 616 | babel-plugin-transform-es2015-for-of@^6.6.0: 617 | version "6.8.0" 618 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.8.0.tgz#82eda139ba4270dda135c3ec1b1f2813fa62f23c" 619 | dependencies: 620 | babel-runtime "^6.0.0" 621 | 622 | babel-plugin-transform-es2015-function-name@^6.9.0: 623 | version "6.9.0" 624 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" 625 | dependencies: 626 | babel-helper-function-name "^6.8.0" 627 | babel-runtime "^6.9.0" 628 | babel-types "^6.9.0" 629 | 630 | babel-plugin-transform-es2015-literals@^6.3.13: 631 | version "6.8.0" 632 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" 633 | dependencies: 634 | babel-runtime "^6.0.0" 635 | 636 | babel-plugin-transform-es2015-modules-amd@^6.8.0: 637 | version "6.8.0" 638 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.8.0.tgz#25d954aa0bf04031fc46d2a8e6230bb1abbde4a3" 639 | dependencies: 640 | babel-plugin-transform-es2015-modules-commonjs "^6.8.0" 641 | babel-runtime "^6.0.0" 642 | babel-template "^6.8.0" 643 | 644 | babel-plugin-transform-es2015-modules-commonjs@^6.16.0, babel-plugin-transform-es2015-modules-commonjs@^6.8.0: 645 | version "6.16.0" 646 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.16.0.tgz#0a34b447bc88ad1a70988b6d199cca6d0b96c892" 647 | dependencies: 648 | babel-plugin-transform-strict-mode "^6.8.0" 649 | babel-runtime "^6.0.0" 650 | babel-template "^6.16.0" 651 | babel-types "^6.16.0" 652 | 653 | babel-plugin-transform-es2015-modules-systemjs@^6.14.0: 654 | version "6.14.0" 655 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.14.0.tgz#c519b5c73e32388e679c9b1edf41b2fc23dc3303" 656 | dependencies: 657 | babel-helper-hoist-variables "^6.8.0" 658 | babel-runtime "^6.11.6" 659 | babel-template "^6.14.0" 660 | 661 | babel-plugin-transform-es2015-modules-umd@^6.12.0: 662 | version "6.12.0" 663 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.12.0.tgz#5d73559eb49266775ed281c40be88a421bd371a3" 664 | dependencies: 665 | babel-plugin-transform-es2015-modules-amd "^6.8.0" 666 | babel-runtime "^6.0.0" 667 | babel-template "^6.8.0" 668 | 669 | babel-plugin-transform-es2015-object-super@^6.3.13: 670 | version "6.8.0" 671 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" 672 | dependencies: 673 | babel-helper-replace-supers "^6.8.0" 674 | babel-runtime "^6.0.0" 675 | 676 | babel-plugin-transform-es2015-parameters@^6.16.0: 677 | version "6.17.0" 678 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.17.0.tgz#e06d30cef897f46adb4734707bbe128a0d427d58" 679 | dependencies: 680 | babel-helper-call-delegate "^6.8.0" 681 | babel-helper-get-function-arity "^6.8.0" 682 | babel-runtime "^6.9.0" 683 | babel-template "^6.16.0" 684 | babel-traverse "^6.16.0" 685 | babel-types "^6.16.0" 686 | 687 | babel-plugin-transform-es2015-shorthand-properties@^6.3.13: 688 | version "6.8.0" 689 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.8.0.tgz#f0a4c5fd471630acf333c2d99c3d677bf0952149" 690 | dependencies: 691 | babel-runtime "^6.0.0" 692 | babel-types "^6.8.0" 693 | 694 | babel-plugin-transform-es2015-spread@^6.3.13: 695 | version "6.8.0" 696 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" 697 | dependencies: 698 | babel-runtime "^6.0.0" 699 | 700 | babel-plugin-transform-es2015-sticky-regex@^6.3.13: 701 | version "6.8.0" 702 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" 703 | dependencies: 704 | babel-helper-regex "^6.8.0" 705 | babel-runtime "^6.0.0" 706 | babel-types "^6.8.0" 707 | 708 | babel-plugin-transform-es2015-template-literals@^6.6.0: 709 | version "6.8.0" 710 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" 711 | dependencies: 712 | babel-runtime "^6.0.0" 713 | 714 | babel-plugin-transform-es2015-typeof-symbol@^6.6.0: 715 | version "6.8.0" 716 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.8.0.tgz#84c29eb1219372480955a020fef7a65c44f30533" 717 | dependencies: 718 | babel-runtime "^6.0.0" 719 | 720 | babel-plugin-transform-es2015-unicode-regex@^6.3.13: 721 | version "6.11.0" 722 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" 723 | dependencies: 724 | babel-helper-regex "^6.8.0" 725 | babel-runtime "^6.0.0" 726 | regexpu-core "^2.0.0" 727 | 728 | babel-plugin-transform-exponentiation-operator@^6.3.13: 729 | version "6.8.0" 730 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.8.0.tgz#db25742e9339eade676ca9acec46f955599a68a4" 731 | dependencies: 732 | babel-helper-builder-binary-assignment-operator-visitor "^6.8.0" 733 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 734 | babel-runtime "^6.0.0" 735 | 736 | babel-plugin-transform-export-extensions@^6.3.13: 737 | version "6.8.0" 738 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.8.0.tgz#fa80ff655b636549431bfd38f6b817bd82e47f5b" 739 | dependencies: 740 | babel-plugin-syntax-export-extensions "^6.8.0" 741 | babel-runtime "^6.0.0" 742 | 743 | babel-plugin-transform-function-bind@^6.3.13: 744 | version "6.8.0" 745 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.8.0.tgz#e7f334ce69f50d28fe850a822eaaab9fa4f4d821" 746 | dependencies: 747 | babel-plugin-syntax-function-bind "^6.8.0" 748 | babel-runtime "^6.0.0" 749 | 750 | babel-plugin-transform-object-rest-spread@^6.16.0: 751 | version "6.16.0" 752 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.16.0.tgz#db441d56fffc1999052fdebe2e2f25ebd28e36a9" 753 | dependencies: 754 | babel-plugin-syntax-object-rest-spread "^6.8.0" 755 | babel-runtime "^6.0.0" 756 | 757 | babel-plugin-transform-regenerator@^6.16.0: 758 | version "6.16.1" 759 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.16.1.tgz#a75de6b048a14154aae14b0122756c5bed392f59" 760 | dependencies: 761 | babel-runtime "^6.9.0" 762 | babel-types "^6.16.0" 763 | private "~0.1.5" 764 | 765 | babel-plugin-transform-strict-mode@^6.8.0: 766 | version "6.11.3" 767 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.11.3.tgz#183741325126bc7ec9cf4c0fc257d3e7ca5afd40" 768 | dependencies: 769 | babel-runtime "^6.0.0" 770 | babel-types "^6.8.0" 771 | 772 | babel-polyfill@^6.16.0: 773 | version "6.16.0" 774 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.16.0.tgz#2d45021df87e26a374b6d4d1a9c65964d17f2422" 775 | dependencies: 776 | babel-runtime "^6.9.1" 777 | core-js "^2.4.0" 778 | regenerator-runtime "^0.9.5" 779 | 780 | babel-preset-es2015: 781 | version "6.16.0" 782 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.16.0.tgz#59acecd1efbebaf48f89404840f2fe78c4d2ad5c" 783 | dependencies: 784 | babel-plugin-check-es2015-constants "^6.3.13" 785 | babel-plugin-transform-es2015-arrow-functions "^6.3.13" 786 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" 787 | babel-plugin-transform-es2015-block-scoping "^6.14.0" 788 | babel-plugin-transform-es2015-classes "^6.14.0" 789 | babel-plugin-transform-es2015-computed-properties "^6.3.13" 790 | babel-plugin-transform-es2015-destructuring "^6.16.0" 791 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0" 792 | babel-plugin-transform-es2015-for-of "^6.6.0" 793 | babel-plugin-transform-es2015-function-name "^6.9.0" 794 | babel-plugin-transform-es2015-literals "^6.3.13" 795 | babel-plugin-transform-es2015-modules-amd "^6.8.0" 796 | babel-plugin-transform-es2015-modules-commonjs "^6.16.0" 797 | babel-plugin-transform-es2015-modules-systemjs "^6.14.0" 798 | babel-plugin-transform-es2015-modules-umd "^6.12.0" 799 | babel-plugin-transform-es2015-object-super "^6.3.13" 800 | babel-plugin-transform-es2015-parameters "^6.16.0" 801 | babel-plugin-transform-es2015-shorthand-properties "^6.3.13" 802 | babel-plugin-transform-es2015-spread "^6.3.13" 803 | babel-plugin-transform-es2015-sticky-regex "^6.3.13" 804 | babel-plugin-transform-es2015-template-literals "^6.6.0" 805 | babel-plugin-transform-es2015-typeof-symbol "^6.6.0" 806 | babel-plugin-transform-es2015-unicode-regex "^6.3.13" 807 | babel-plugin-transform-regenerator "^6.16.0" 808 | 809 | babel-preset-stage-0: 810 | version "6.16.0" 811 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.16.0.tgz#f5a263c420532fd57491f1a7315b3036e428f823" 812 | dependencies: 813 | babel-plugin-transform-do-expressions "^6.3.13" 814 | babel-plugin-transform-function-bind "^6.3.13" 815 | babel-preset-stage-1 "^6.16.0" 816 | 817 | babel-preset-stage-1@^6.16.0: 818 | version "6.16.0" 819 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.16.0.tgz#9d31fbbdae7b17c549fd3ac93e3cf6902695e479" 820 | dependencies: 821 | babel-plugin-transform-class-constructor-call "^6.3.13" 822 | babel-plugin-transform-export-extensions "^6.3.13" 823 | babel-preset-stage-2 "^6.16.0" 824 | 825 | babel-preset-stage-2@^6.16.0: 826 | version "6.17.0" 827 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.17.0.tgz#dc4f84582781353cef36c41247eae5e36c4cae0d" 828 | dependencies: 829 | babel-plugin-transform-class-properties "^6.16.0" 830 | babel-plugin-transform-decorators "^6.13.0" 831 | babel-preset-stage-3 "^6.17.0" 832 | 833 | babel-preset-stage-3@^6.17.0: 834 | version "6.17.0" 835 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.17.0.tgz#b6638e46db6e91e3f889013d8ce143917c685e39" 836 | dependencies: 837 | babel-plugin-syntax-trailing-function-commas "^6.3.13" 838 | babel-plugin-transform-async-generator-functions "^6.17.0" 839 | babel-plugin-transform-async-to-generator "^6.16.0" 840 | babel-plugin-transform-exponentiation-operator "^6.3.13" 841 | babel-plugin-transform-object-rest-spread "^6.16.0" 842 | 843 | babel-register@^6.16.0: 844 | version "6.16.3" 845 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.16.3.tgz#7b0c0ca7bfdeb9188ba4c27e5fcb7599a497c624" 846 | dependencies: 847 | babel-core "^6.16.0" 848 | babel-runtime "^6.11.6" 849 | core-js "^2.4.0" 850 | home-or-tmp "^1.0.0" 851 | lodash "^4.2.0" 852 | mkdirp "^0.5.1" 853 | path-exists "^1.0.0" 854 | source-map-support "^0.4.2" 855 | 856 | babel-register@^6.18.0: 857 | version "6.18.0" 858 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" 859 | dependencies: 860 | babel-core "^6.18.0" 861 | babel-runtime "^6.11.6" 862 | core-js "^2.4.0" 863 | home-or-tmp "^2.0.0" 864 | lodash "^4.2.0" 865 | mkdirp "^0.5.1" 866 | source-map-support "^0.4.2" 867 | 868 | babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.9.0, babel-runtime@^6.9.1: 869 | version "6.11.6" 870 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.11.6.tgz#6db707fef2d49c49bfa3cb64efdb436b518b8222" 871 | dependencies: 872 | core-js "^2.4.0" 873 | regenerator-runtime "^0.9.5" 874 | 875 | babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: 876 | version "6.16.0" 877 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" 878 | dependencies: 879 | babel-runtime "^6.9.0" 880 | babel-traverse "^6.16.0" 881 | babel-types "^6.16.0" 882 | babylon "^6.11.0" 883 | lodash "^4.2.0" 884 | 885 | babel-traverse@^6.14.0, babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.8.0: 886 | version "6.16.0" 887 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.16.0.tgz#fba85ae1fd4d107de9ce003149cc57f53bef0c4f" 888 | dependencies: 889 | babel-code-frame "^6.16.0" 890 | babel-messages "^6.8.0" 891 | babel-runtime "^6.9.0" 892 | babel-types "^6.16.0" 893 | babylon "^6.11.0" 894 | debug "^2.2.0" 895 | globals "^8.3.0" 896 | invariant "^2.2.0" 897 | lodash "^4.2.0" 898 | 899 | babel-traverse@^6.18.0: 900 | version "6.18.0" 901 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.18.0.tgz#5aeaa980baed2a07c8c47329cd90c3b90c80f05e" 902 | dependencies: 903 | babel-code-frame "^6.16.0" 904 | babel-messages "^6.8.0" 905 | babel-runtime "^6.9.0" 906 | babel-types "^6.18.0" 907 | babylon "^6.11.0" 908 | debug "^2.2.0" 909 | globals "^9.0.0" 910 | invariant "^2.2.0" 911 | lodash "^4.2.0" 912 | 913 | babel-types@^6.13.0, babel-types@^6.14.0, babel-types@^6.15.0, babel-types@^6.16.0, babel-types@^6.8.0, babel-types@^6.9.0: 914 | version "6.16.0" 915 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.16.0.tgz#71cca1dbe5337766225c5c193071e8ebcbcffcfe" 916 | dependencies: 917 | babel-runtime "^6.9.1" 918 | esutils "^2.0.2" 919 | lodash "^4.2.0" 920 | to-fast-properties "^1.0.1" 921 | 922 | babel-types@^6.18.0: 923 | version "6.18.0" 924 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.18.0.tgz#1f7d5a73474c59eb9151b2417bbff4e4fce7c3f8" 925 | dependencies: 926 | babel-runtime "^6.9.1" 927 | esutils "^2.0.2" 928 | lodash "^4.2.0" 929 | to-fast-properties "^1.0.1" 930 | 931 | babylon@^6.11.0: 932 | version "6.12.0" 933 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.12.0.tgz#953e6202e58062f7f5041fc8037e4bd4e17140a9" 934 | 935 | babylon@^6.18.0: 936 | version "6.18.0" 937 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 938 | integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== 939 | 940 | balanced-match@^1.0.0: 941 | version "1.0.2" 942 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 943 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 944 | 945 | base64-js@^1.0.2: 946 | version "1.2.0" 947 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 948 | 949 | bcrypt-pbkdf@^1.0.0: 950 | version "1.0.2" 951 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 952 | integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 953 | dependencies: 954 | tweetnacl "^0.14.3" 955 | 956 | big.js@^3.1.3: 957 | version "3.1.3" 958 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 959 | 960 | binary-extensions@^1.0.0: 961 | version "1.7.0" 962 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" 963 | 964 | bl@~1.1.2: 965 | version "1.1.2" 966 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.1.2.tgz#fdca871a99713aa00d19e3bbba41c44787a65398" 967 | dependencies: 968 | readable-stream "~2.0.5" 969 | 970 | block-stream@*: 971 | version "0.0.9" 972 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 973 | integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= 974 | dependencies: 975 | inherits "~2.0.0" 976 | 977 | boom@2.x.x: 978 | version "2.10.1" 979 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 980 | dependencies: 981 | hoek "2.x.x" 982 | 983 | brace-expansion@^1.0.0, brace-expansion@^1.1.7: 984 | version "1.1.11" 985 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 986 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 987 | dependencies: 988 | balanced-match "^1.0.0" 989 | concat-map "0.0.1" 990 | 991 | braces@^1.8.2: 992 | version "1.8.5" 993 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 994 | dependencies: 995 | expand-range "^1.8.1" 996 | preserve "^0.2.0" 997 | repeat-element "^1.1.2" 998 | 999 | browser-stdout@1.3.0: 1000 | version "1.3.0" 1001 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 1002 | 1003 | browserify-zlib@~0.1.4: 1004 | version "0.1.4" 1005 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 1006 | dependencies: 1007 | pako "~0.2.0" 1008 | 1009 | buffer-shims@^1.0.0: 1010 | version "1.0.0" 1011 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 1012 | 1013 | buffer@^4.9.0: 1014 | version "4.9.1" 1015 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 1016 | dependencies: 1017 | base64-js "^1.0.2" 1018 | ieee754 "^1.1.4" 1019 | isarray "^1.0.0" 1020 | 1021 | caching-transform@^1.0.0: 1022 | version "1.0.1" 1023 | resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-1.0.1.tgz#6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1" 1024 | integrity sha1-bb2y8g+Nj7znnz6U6dF0Lc31wKE= 1025 | dependencies: 1026 | md5-hex "^1.2.0" 1027 | mkdirp "^0.5.1" 1028 | write-file-atomic "^1.1.4" 1029 | 1030 | camelcase@^1.0.2: 1031 | version "1.2.1" 1032 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 1033 | 1034 | camelcase@^3.0.0: 1035 | version "3.0.0" 1036 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 1037 | integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= 1038 | 1039 | caseless@~0.11.0: 1040 | version "0.11.0" 1041 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" 1042 | 1043 | center-align@^0.1.1: 1044 | version "0.1.3" 1045 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 1046 | dependencies: 1047 | align-text "^0.1.3" 1048 | lazy-cache "^1.0.3" 1049 | 1050 | chai@3.5.0: 1051 | version "3.5.0" 1052 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 1053 | integrity sha1-TQJjewZ/6Vi9v906QOxW/vc3Mkc= 1054 | dependencies: 1055 | assertion-error "^1.0.1" 1056 | deep-eql "^0.1.3" 1057 | type-detect "^1.0.0" 1058 | 1059 | chalk@^1.1.0, chalk@^1.1.1: 1060 | version "1.1.3" 1061 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 1062 | dependencies: 1063 | ansi-styles "^2.2.1" 1064 | escape-string-regexp "^1.0.2" 1065 | has-ansi "^2.0.0" 1066 | strip-ansi "^3.0.0" 1067 | supports-color "^2.0.0" 1068 | 1069 | chokidar@^1.0.0: 1070 | version "1.6.1" 1071 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 1072 | dependencies: 1073 | anymatch "^1.3.0" 1074 | async-each "^1.0.0" 1075 | glob-parent "^2.0.0" 1076 | inherits "^2.0.1" 1077 | is-binary-path "^1.0.0" 1078 | is-glob "^2.0.0" 1079 | path-is-absolute "^1.0.0" 1080 | readdirp "^2.0.0" 1081 | optionalDependencies: 1082 | fsevents "^1.0.0" 1083 | 1084 | cliui@^2.1.0: 1085 | version "2.1.0" 1086 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 1087 | dependencies: 1088 | center-align "^0.1.1" 1089 | right-align "^0.1.1" 1090 | wordwrap "0.0.2" 1091 | 1092 | cliui@^3.2.0: 1093 | version "3.2.0" 1094 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 1095 | integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= 1096 | dependencies: 1097 | string-width "^1.0.1" 1098 | strip-ansi "^3.0.1" 1099 | wrap-ansi "^2.0.0" 1100 | 1101 | clone@^1.0.2: 1102 | version "1.0.2" 1103 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 1104 | 1105 | code-point-at@^1.0.0: 1106 | version "1.0.1" 1107 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.0.1.tgz#1104cd34f9b5b45d3eba88f1babc1924e1ce35fb" 1108 | dependencies: 1109 | number-is-nan "^1.0.0" 1110 | 1111 | codecov@3.7.1: 1112 | version "3.7.1" 1113 | resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.7.1.tgz#434cb8d55f18ef01672e5739d3d266696bebc202" 1114 | integrity sha512-JHWxyPTkMLLJn9SmKJnwAnvY09kg2Os2+Ux+GG7LwZ9g8gzDDISpIN5wAsH1UBaafA/yGcd3KofMaorE8qd6Lw== 1115 | dependencies: 1116 | argv "0.0.2" 1117 | ignore-walk "3.0.3" 1118 | js-yaml "3.13.1" 1119 | teeny-request "6.0.1" 1120 | urlgrey "0.4.4" 1121 | 1122 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1123 | version "1.0.5" 1124 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1125 | dependencies: 1126 | delayed-stream "~1.0.0" 1127 | 1128 | commander@2.9.0, commander@^2.8.1, commander@^2.9.0: 1129 | version "2.9.0" 1130 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1131 | dependencies: 1132 | graceful-readlink ">= 1.0.0" 1133 | 1134 | commondir@^1.0.1: 1135 | version "1.0.1" 1136 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1137 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= 1138 | 1139 | concat-map@0.0.1: 1140 | version "0.0.1" 1141 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1142 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1143 | 1144 | console-browserify@^1.1.0: 1145 | version "1.1.0" 1146 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1147 | dependencies: 1148 | date-now "^0.1.4" 1149 | 1150 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1151 | version "1.1.0" 1152 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1153 | 1154 | constants-browserify@0.0.1: 1155 | version "0.0.1" 1156 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-0.0.1.tgz#92577db527ba6c4cf0a4568d84bc031f441e21f2" 1157 | 1158 | content-type-parser@^1.0.1: 1159 | version "1.0.1" 1160 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1161 | 1162 | convert-source-map@^1.1.0: 1163 | version "1.3.0" 1164 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" 1165 | 1166 | convert-source-map@^1.3.0: 1167 | version "1.6.0" 1168 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" 1169 | integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== 1170 | dependencies: 1171 | safe-buffer "~5.1.1" 1172 | 1173 | core-js@2.4.1, core-js@^2.4.0: 1174 | version "2.4.1" 1175 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1176 | 1177 | core-util-is@~1.0.0: 1178 | version "1.0.2" 1179 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1180 | 1181 | cross-spawn@^4: 1182 | version "4.0.2" 1183 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 1184 | integrity sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE= 1185 | dependencies: 1186 | lru-cache "^4.0.1" 1187 | which "^1.2.9" 1188 | 1189 | cryptiles@2.x.x: 1190 | version "2.0.5" 1191 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1192 | dependencies: 1193 | boom "2.x.x" 1194 | 1195 | crypto-browserify@~3.2.6: 1196 | version "3.2.8" 1197 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.2.8.tgz#b9b11dbe6d9651dd882a01e6cc467df718ecf189" 1198 | dependencies: 1199 | pbkdf2-compat "2.0.1" 1200 | ripemd160 "0.2.0" 1201 | sha.js "2.2.6" 1202 | 1203 | cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": 1204 | version "0.3.1" 1205 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.1.tgz#c9e37ef2490e64f6d1baa10fda852257082c25d3" 1206 | 1207 | "cssstyle@>= 0.2.36 < 0.3.0": 1208 | version "0.2.37" 1209 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1210 | dependencies: 1211 | cssom "0.3.x" 1212 | 1213 | dashdash@^1.12.0: 1214 | version "1.14.1" 1215 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1216 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 1217 | dependencies: 1218 | assert-plus "^1.0.0" 1219 | 1220 | date-now@^0.1.4: 1221 | version "0.1.4" 1222 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1223 | 1224 | debug-log@^1.0.1: 1225 | version "1.0.1" 1226 | resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" 1227 | integrity sha1-IwdjLUwEOCuN+KMvcLiVBG1SdF8= 1228 | 1229 | debug@2.2.0, debug@^2.1.1, debug@^2.2.0, debug@~2.2.0: 1230 | version "2.2.0" 1231 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1232 | dependencies: 1233 | ms "0.7.1" 1234 | 1235 | debug@4: 1236 | version "4.1.1" 1237 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 1238 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 1239 | dependencies: 1240 | ms "^2.1.1" 1241 | 1242 | debug@^3.1.0: 1243 | version "3.2.6" 1244 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 1245 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 1246 | dependencies: 1247 | ms "^2.1.1" 1248 | 1249 | decamelize@^1.0.0, decamelize@^1.1.1: 1250 | version "1.2.0" 1251 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1252 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 1253 | 1254 | deep-eql@^0.1.3: 1255 | version "0.1.3" 1256 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1257 | dependencies: 1258 | type-detect "0.1.1" 1259 | 1260 | deep-extend@~0.4.0: 1261 | version "0.4.1" 1262 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1263 | 1264 | deep-is@~0.1.3: 1265 | version "0.1.3" 1266 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1267 | 1268 | default-require-extensions@^1.0.0: 1269 | version "1.0.0" 1270 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1271 | integrity sha1-836hXT4T/9m0N9M+GnW1+5eHTLg= 1272 | dependencies: 1273 | strip-bom "^2.0.0" 1274 | 1275 | delayed-stream@~1.0.0: 1276 | version "1.0.0" 1277 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1278 | 1279 | delegates@^1.0.0: 1280 | version "1.0.0" 1281 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1282 | 1283 | detect-indent@^3.0.1: 1284 | version "3.0.1" 1285 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" 1286 | dependencies: 1287 | get-stdin "^4.0.1" 1288 | minimist "^1.1.0" 1289 | repeating "^1.1.0" 1290 | 1291 | detect-indent@^4.0.0: 1292 | version "4.0.0" 1293 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1294 | dependencies: 1295 | repeating "^2.0.0" 1296 | 1297 | diff@1.4.0: 1298 | version "1.4.0" 1299 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1300 | 1301 | diff@^3.5.0: 1302 | version "3.5.0" 1303 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1304 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 1305 | 1306 | domain-browser@^1.1.1: 1307 | version "1.1.7" 1308 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1309 | 1310 | ecc-jsbn@~0.1.1: 1311 | version "0.1.2" 1312 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1313 | integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 1314 | dependencies: 1315 | jsbn "~0.1.0" 1316 | safer-buffer "^2.1.0" 1317 | 1318 | emojis-list@^2.0.0: 1319 | version "2.1.0" 1320 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1321 | 1322 | enhanced-resolve@~0.9.0: 1323 | version "0.9.1" 1324 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e" 1325 | dependencies: 1326 | graceful-fs "^4.1.2" 1327 | memory-fs "^0.2.0" 1328 | tapable "^0.1.8" 1329 | 1330 | errno@^0.1.3: 1331 | version "0.1.4" 1332 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1333 | dependencies: 1334 | prr "~0.0.0" 1335 | 1336 | error-ex@^1.2.0: 1337 | version "1.3.2" 1338 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1339 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1340 | dependencies: 1341 | is-arrayish "^0.2.1" 1342 | 1343 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 1344 | version "1.0.5" 1345 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1346 | 1347 | escodegen@^1.6.1: 1348 | version "1.8.1" 1349 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1350 | dependencies: 1351 | esprima "^2.7.1" 1352 | estraverse "^1.9.1" 1353 | esutils "^2.0.2" 1354 | optionator "^0.8.1" 1355 | optionalDependencies: 1356 | source-map "~0.2.0" 1357 | 1358 | esprima@^2.7.1: 1359 | version "2.7.3" 1360 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1361 | 1362 | esprima@^4.0.0: 1363 | version "4.0.1" 1364 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1365 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1366 | 1367 | estraverse@^1.9.1: 1368 | version "1.9.3" 1369 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1370 | 1371 | esutils@^2.0.2: 1372 | version "2.0.2" 1373 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1374 | 1375 | events@^1.0.0: 1376 | version "1.1.1" 1377 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1378 | 1379 | expand-brackets@^0.1.4: 1380 | version "0.1.5" 1381 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1382 | dependencies: 1383 | is-posix-bracket "^0.1.0" 1384 | 1385 | expand-range@^1.8.1: 1386 | version "1.8.2" 1387 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1388 | dependencies: 1389 | fill-range "^2.1.0" 1390 | 1391 | extend@~3.0.0: 1392 | version "3.0.2" 1393 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1394 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 1395 | 1396 | extglob@^0.3.1: 1397 | version "0.3.2" 1398 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1399 | dependencies: 1400 | is-extglob "^1.0.0" 1401 | 1402 | extsprintf@1.0.2: 1403 | version "1.0.2" 1404 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1405 | 1406 | fast-levenshtein@~2.0.4: 1407 | version "2.0.5" 1408 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" 1409 | 1410 | filename-regex@^2.0.0: 1411 | version "2.0.0" 1412 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1413 | 1414 | fill-range@^2.1.0: 1415 | version "2.2.3" 1416 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1417 | dependencies: 1418 | is-number "^2.1.0" 1419 | isobject "^2.0.0" 1420 | randomatic "^1.1.3" 1421 | repeat-element "^1.1.2" 1422 | repeat-string "^1.5.2" 1423 | 1424 | find-cache-dir@^0.1.1: 1425 | version "0.1.1" 1426 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1427 | integrity sha1-yN765XyKUqinhPnjHFfHQumToLk= 1428 | dependencies: 1429 | commondir "^1.0.1" 1430 | mkdirp "^0.5.1" 1431 | pkg-dir "^1.0.0" 1432 | 1433 | find-up@^1.0.0, find-up@^1.1.2: 1434 | version "1.1.2" 1435 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1436 | integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= 1437 | dependencies: 1438 | path-exists "^2.0.0" 1439 | pinkie-promise "^2.0.0" 1440 | 1441 | for-in@^0.1.5: 1442 | version "0.1.6" 1443 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" 1444 | 1445 | for-own@^0.1.3: 1446 | version "0.1.4" 1447 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" 1448 | dependencies: 1449 | for-in "^0.1.5" 1450 | 1451 | foreground-child@^1.5.3, foreground-child@^1.5.6: 1452 | version "1.5.6" 1453 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-1.5.6.tgz#4fd71ad2dfde96789b980a5c0a295937cb2f5ce9" 1454 | integrity sha1-T9ca0t/elnibmApcCilZN8svXOk= 1455 | dependencies: 1456 | cross-spawn "^4" 1457 | signal-exit "^3.0.0" 1458 | 1459 | forever-agent@~0.6.1: 1460 | version "0.6.1" 1461 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1462 | 1463 | form-data@~2.0.0: 1464 | version "2.0.0" 1465 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.0.0.tgz#6f0aebadcc5da16c13e1ecc11137d85f9b883b25" 1466 | dependencies: 1467 | asynckit "^0.4.0" 1468 | combined-stream "^1.0.5" 1469 | mime-types "^2.1.11" 1470 | 1471 | form-data@~2.1.1: 1472 | version "2.1.2" 1473 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1474 | dependencies: 1475 | asynckit "^0.4.0" 1476 | combined-stream "^1.0.5" 1477 | mime-types "^2.1.12" 1478 | 1479 | fs-readdir-recursive@^1.0.0: 1480 | version "1.0.0" 1481 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1482 | 1483 | fs.realpath@^1.0.0: 1484 | version "1.0.0" 1485 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1486 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1487 | 1488 | fsevents@^1.0.0: 1489 | version "1.0.14" 1490 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.14.tgz#558e8cc38643d8ef40fe45158486d0d25758eee4" 1491 | dependencies: 1492 | nan "^2.3.0" 1493 | node-pre-gyp "^0.6.29" 1494 | 1495 | fstream-ignore@~1.0.5: 1496 | version "1.0.5" 1497 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1498 | dependencies: 1499 | fstream "^1.0.0" 1500 | inherits "2" 1501 | minimatch "^3.0.0" 1502 | 1503 | fstream@^1.0.0, fstream@^1.0.12, fstream@~1.0.10: 1504 | version "1.0.12" 1505 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 1506 | integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== 1507 | dependencies: 1508 | graceful-fs "^4.1.2" 1509 | inherits "~2.0.0" 1510 | mkdirp ">=0.5 0" 1511 | rimraf "2" 1512 | 1513 | gauge@~2.6.0: 1514 | version "2.6.0" 1515 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" 1516 | dependencies: 1517 | aproba "^1.0.3" 1518 | console-control-strings "^1.0.0" 1519 | has-color "^0.1.7" 1520 | has-unicode "^2.0.0" 1521 | object-assign "^4.1.0" 1522 | signal-exit "^3.0.0" 1523 | string-width "^1.0.1" 1524 | strip-ansi "^3.0.1" 1525 | wide-align "^1.1.0" 1526 | 1527 | generate-function@^2.0.0: 1528 | version "2.3.1" 1529 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f" 1530 | integrity sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ== 1531 | dependencies: 1532 | is-property "^1.0.2" 1533 | 1534 | generate-object-property@^1.1.0: 1535 | version "1.2.0" 1536 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 1537 | integrity sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA= 1538 | dependencies: 1539 | is-property "^1.0.0" 1540 | 1541 | get-caller-file@^1.0.1: 1542 | version "1.0.3" 1543 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1544 | integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 1545 | 1546 | get-stdin@^4.0.1: 1547 | version "4.0.1" 1548 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 1549 | 1550 | getpass@^0.1.1: 1551 | version "0.1.7" 1552 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1553 | integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 1554 | dependencies: 1555 | assert-plus "^1.0.0" 1556 | 1557 | glob-base@^0.3.0: 1558 | version "0.3.0" 1559 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1560 | dependencies: 1561 | glob-parent "^2.0.0" 1562 | is-glob "^2.0.0" 1563 | 1564 | glob-parent@^2.0.0: 1565 | version "2.0.0" 1566 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1567 | dependencies: 1568 | is-glob "^2.0.0" 1569 | 1570 | glob@7.0.5: 1571 | version "7.0.5" 1572 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.5.tgz#b4202a69099bbb4d292a7c1b95b6682b67ebdc95" 1573 | dependencies: 1574 | fs.realpath "^1.0.0" 1575 | inflight "^1.0.4" 1576 | inherits "2" 1577 | minimatch "^3.0.2" 1578 | once "^1.3.0" 1579 | path-is-absolute "^1.0.0" 1580 | 1581 | glob@^5.0.5: 1582 | version "5.0.15" 1583 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 1584 | dependencies: 1585 | inflight "^1.0.4" 1586 | inherits "2" 1587 | minimatch "2 || 3" 1588 | once "^1.3.0" 1589 | path-is-absolute "^1.0.0" 1590 | 1591 | glob@^7.0.5: 1592 | version "7.1.1" 1593 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1594 | dependencies: 1595 | fs.realpath "^1.0.0" 1596 | inflight "^1.0.4" 1597 | inherits "2" 1598 | minimatch "^3.0.2" 1599 | once "^1.3.0" 1600 | path-is-absolute "^1.0.0" 1601 | 1602 | glob@^7.0.6, glob@^7.1.3: 1603 | version "7.1.4" 1604 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1605 | integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== 1606 | dependencies: 1607 | fs.realpath "^1.0.0" 1608 | inflight "^1.0.4" 1609 | inherits "2" 1610 | minimatch "^3.0.4" 1611 | once "^1.3.0" 1612 | path-is-absolute "^1.0.0" 1613 | 1614 | globals@^8.3.0: 1615 | version "8.18.0" 1616 | resolved "https://registry.yarnpkg.com/globals/-/globals-8.18.0.tgz#93d4a62bdcac38cfafafc47d6b034768cb0ffcb4" 1617 | 1618 | globals@^9.0.0: 1619 | version "9.12.0" 1620 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.12.0.tgz#992ce90828c3a55fa8f16fada177adb64664cf9d" 1621 | 1622 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1623 | version "4.2.2" 1624 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" 1625 | integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q== 1626 | 1627 | "graceful-readlink@>= 1.0.0": 1628 | version "1.0.1" 1629 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1630 | 1631 | growl@1.9.2: 1632 | version "1.9.2" 1633 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1634 | 1635 | handlebars@^4.0.3: 1636 | version "4.7.7" 1637 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 1638 | integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== 1639 | dependencies: 1640 | minimist "^1.2.5" 1641 | neo-async "^2.6.0" 1642 | source-map "^0.6.1" 1643 | wordwrap "^1.0.0" 1644 | optionalDependencies: 1645 | uglify-js "^3.1.4" 1646 | 1647 | har-validator@~2.0.6: 1648 | version "2.0.6" 1649 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" 1650 | dependencies: 1651 | chalk "^1.1.1" 1652 | commander "^2.9.0" 1653 | is-my-json-valid "^2.12.4" 1654 | pinkie-promise "^2.0.0" 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-color@^0.1.7: 1663 | version "0.1.7" 1664 | resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" 1665 | 1666 | has-flag@^1.0.0: 1667 | version "1.0.0" 1668 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 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 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1674 | 1675 | has-unicode@^2.0.0: 1676 | version "2.0.1" 1677 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1678 | 1679 | hawk@~3.1.3: 1680 | version "3.1.3" 1681 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1682 | dependencies: 1683 | boom "2.x.x" 1684 | cryptiles "2.x.x" 1685 | hoek "2.x.x" 1686 | sntp "1.x.x" 1687 | 1688 | hoek@2.x.x: 1689 | version "2.16.3" 1690 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1691 | 1692 | home-or-tmp@^1.0.0: 1693 | version "1.0.0" 1694 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-1.0.0.tgz#4b9f1e40800c3e50c6c27f781676afcce71f3985" 1695 | dependencies: 1696 | os-tmpdir "^1.0.1" 1697 | user-home "^1.1.1" 1698 | 1699 | home-or-tmp@^2.0.0: 1700 | version "2.0.0" 1701 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1702 | dependencies: 1703 | os-homedir "^1.0.0" 1704 | os-tmpdir "^1.0.1" 1705 | 1706 | hosted-git-info@^2.1.4: 1707 | version "2.8.9" 1708 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1709 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1710 | 1711 | html-encoding-sniffer@^1.0.1: 1712 | version "1.0.1" 1713 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1714 | dependencies: 1715 | whatwg-encoding "^1.0.1" 1716 | 1717 | http-browserify@^1.3.2: 1718 | version "1.7.0" 1719 | resolved "https://registry.yarnpkg.com/http-browserify/-/http-browserify-1.7.0.tgz#33795ade72df88acfbfd36773cefeda764735b20" 1720 | dependencies: 1721 | Base64 "~0.2.0" 1722 | inherits "~2.0.1" 1723 | 1724 | http-proxy-agent@^4.0.0: 1725 | version "4.0.1" 1726 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1727 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1728 | dependencies: 1729 | "@tootallnate/once" "1" 1730 | agent-base "6" 1731 | debug "4" 1732 | 1733 | http-signature@~1.1.0: 1734 | version "1.1.1" 1735 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1736 | dependencies: 1737 | assert-plus "^0.2.0" 1738 | jsprim "^1.2.2" 1739 | sshpk "^1.7.0" 1740 | 1741 | https-browserify@0.0.0: 1742 | version "0.0.0" 1743 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.0.tgz#b3ffdfe734b2a3d4a9efd58e8654c91fce86eafd" 1744 | 1745 | https-proxy-agent@^4.0.0: 1746 | version "4.0.0" 1747 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz#702b71fb5520a132a66de1f67541d9e62154d82b" 1748 | integrity sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg== 1749 | dependencies: 1750 | agent-base "5" 1751 | debug "4" 1752 | 1753 | iconv-lite@0.4.13, iconv-lite@^0.4.13: 1754 | version "0.4.13" 1755 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1756 | 1757 | ieee754@^1.1.4: 1758 | version "1.1.8" 1759 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1760 | 1761 | ignore-walk@3.0.3: 1762 | version "3.0.3" 1763 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" 1764 | integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== 1765 | dependencies: 1766 | minimatch "^3.0.4" 1767 | 1768 | imurmurhash@^0.1.4: 1769 | version "0.1.4" 1770 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1771 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1772 | 1773 | indexof@0.0.1: 1774 | version "0.0.1" 1775 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1776 | 1777 | inflight@^1.0.4: 1778 | version "1.0.6" 1779 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1780 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1781 | dependencies: 1782 | once "^1.3.0" 1783 | wrappy "1" 1784 | 1785 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1786 | version "2.0.4" 1787 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1788 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1789 | 1790 | inherits@2.0.1: 1791 | version "2.0.1" 1792 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1793 | 1794 | ini@~1.3.0: 1795 | version "1.3.7" 1796 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1797 | integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ== 1798 | 1799 | interpret@^0.6.4: 1800 | version "0.6.6" 1801 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" 1802 | 1803 | invariant@^2.2.0: 1804 | version "2.2.1" 1805 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.1.tgz#b097010547668c7e337028ebe816ebe36c8a8d54" 1806 | dependencies: 1807 | loose-envify "^1.0.0" 1808 | 1809 | invert-kv@^1.0.0: 1810 | version "1.0.0" 1811 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1812 | integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= 1813 | 1814 | is-arrayish@^0.2.1: 1815 | version "0.2.1" 1816 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1817 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1818 | 1819 | is-binary-path@^1.0.0: 1820 | version "1.0.1" 1821 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1822 | dependencies: 1823 | binary-extensions "^1.0.0" 1824 | 1825 | is-buffer@^1.0.2: 1826 | version "1.1.4" 1827 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" 1828 | 1829 | is-dotfile@^1.0.0: 1830 | version "1.0.2" 1831 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1832 | 1833 | is-equal-shallow@^0.1.3: 1834 | version "0.1.3" 1835 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1836 | dependencies: 1837 | is-primitive "^2.0.0" 1838 | 1839 | is-extendable@^0.1.1: 1840 | version "0.1.1" 1841 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1842 | 1843 | is-extglob@^1.0.0: 1844 | version "1.0.0" 1845 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1846 | 1847 | is-finite@^1.0.0: 1848 | version "1.0.2" 1849 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1850 | dependencies: 1851 | number-is-nan "^1.0.0" 1852 | 1853 | is-fullwidth-code-point@^1.0.0: 1854 | version "1.0.0" 1855 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1856 | dependencies: 1857 | number-is-nan "^1.0.0" 1858 | 1859 | is-glob@^2.0.0, is-glob@^2.0.1: 1860 | version "2.0.1" 1861 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1862 | dependencies: 1863 | is-extglob "^1.0.0" 1864 | 1865 | is-my-ip-valid@^1.0.0: 1866 | version "1.0.0" 1867 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" 1868 | integrity sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ== 1869 | 1870 | is-my-json-valid@^2.12.4: 1871 | version "2.20.0" 1872 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz#1345a6fca3e8daefc10d0fa77067f54cedafd59a" 1873 | integrity sha512-XTHBZSIIxNsIsZXg7XB5l8z/OBFosl1Wao4tXLpeC7eKU4Vm/kdop2azkPqULwnfGQjmeDIyey9g7afMMtdWAA== 1874 | dependencies: 1875 | generate-function "^2.0.0" 1876 | generate-object-property "^1.1.0" 1877 | is-my-ip-valid "^1.0.0" 1878 | jsonpointer "^4.0.0" 1879 | xtend "^4.0.0" 1880 | 1881 | is-number@^2.0.2, is-number@^2.1.0: 1882 | version "2.1.0" 1883 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1884 | dependencies: 1885 | kind-of "^3.0.2" 1886 | 1887 | is-posix-bracket@^0.1.0: 1888 | version "0.1.1" 1889 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1890 | 1891 | is-primitive@^2.0.0: 1892 | version "2.0.0" 1893 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1894 | 1895 | is-property@^1.0.0, is-property@^1.0.2: 1896 | version "1.0.2" 1897 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1898 | integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ= 1899 | 1900 | is-typedarray@~1.0.0: 1901 | version "1.0.0" 1902 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1903 | 1904 | is-utf8@^0.2.0: 1905 | version "0.2.1" 1906 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1907 | integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= 1908 | 1909 | isarray@0.0.1: 1910 | version "0.0.1" 1911 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1912 | 1913 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1914 | version "1.0.0" 1915 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1916 | 1917 | isexe@^2.0.0: 1918 | version "2.0.0" 1919 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1920 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1921 | 1922 | isobject@^2.0.0: 1923 | version "2.1.0" 1924 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1925 | dependencies: 1926 | isarray "1.0.0" 1927 | 1928 | isstream@~0.1.2: 1929 | version "0.1.2" 1930 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1931 | 1932 | istanbul-lib-coverage@^1.0.0, istanbul-lib-coverage@^1.2.1: 1933 | version "1.2.1" 1934 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0" 1935 | integrity sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ== 1936 | 1937 | istanbul-lib-hook@^1.0.0-alpha.4: 1938 | version "1.2.2" 1939 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86" 1940 | integrity sha512-/Jmq7Y1VeHnZEQ3TL10VHyb564mn6VrQXHchON9Jf/AEcmQ3ZIiyD1BVzNOKTZf/G3gE+kiGK6SmpF9y3qGPLw== 1941 | dependencies: 1942 | append-transform "^0.4.0" 1943 | 1944 | istanbul-lib-instrument@^1.3.0: 1945 | version "1.10.2" 1946 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca" 1947 | integrity sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A== 1948 | dependencies: 1949 | babel-generator "^6.18.0" 1950 | babel-template "^6.16.0" 1951 | babel-traverse "^6.18.0" 1952 | babel-types "^6.18.0" 1953 | babylon "^6.18.0" 1954 | istanbul-lib-coverage "^1.2.1" 1955 | semver "^5.3.0" 1956 | 1957 | istanbul-lib-report@^1.0.0-alpha.3: 1958 | version "1.1.5" 1959 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c" 1960 | integrity sha512-UsYfRMoi6QO/doUshYNqcKJqVmFe9w51GZz8BS3WB0lYxAllQYklka2wP9+dGZeHYaWIdcXUx8JGdbqaoXRXzw== 1961 | dependencies: 1962 | istanbul-lib-coverage "^1.2.1" 1963 | mkdirp "^0.5.1" 1964 | path-parse "^1.0.5" 1965 | supports-color "^3.1.2" 1966 | 1967 | istanbul-lib-source-maps@^1.1.0: 1968 | version "1.2.6" 1969 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f" 1970 | integrity sha512-TtbsY5GIHgbMsMiRw35YBHGpZ1DVFEO19vxxeiDMYaeOFOCzfnYVxvl6pOUIZR4dtPhAGpSMup8OyF8ubsaqEg== 1971 | dependencies: 1972 | debug "^3.1.0" 1973 | istanbul-lib-coverage "^1.2.1" 1974 | mkdirp "^0.5.1" 1975 | rimraf "^2.6.1" 1976 | source-map "^0.5.3" 1977 | 1978 | istanbul-reports@^1.0.0: 1979 | version "1.5.1" 1980 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a" 1981 | integrity sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw== 1982 | dependencies: 1983 | handlebars "^4.0.3" 1984 | 1985 | js-tokens@^1.0.1: 1986 | version "1.0.3" 1987 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-1.0.3.tgz#14e56eb68c8f1a92c43d59f5014ec29dc20f2ae1" 1988 | 1989 | js-tokens@^2.0.0: 1990 | version "2.0.0" 1991 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" 1992 | 1993 | js-yaml@3.13.1: 1994 | version "3.13.1" 1995 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1996 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 1997 | dependencies: 1998 | argparse "^1.0.7" 1999 | esprima "^4.0.0" 2000 | 2001 | jsbn@~0.1.0: 2002 | version "0.1.1" 2003 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2004 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 2005 | 2006 | jsdom@9.8.0: 2007 | version "9.8.0" 2008 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.8.0.tgz#8766594cf994549d8a809cf6dca0246aceef9305" 2009 | integrity sha1-h2ZZTPmUVJ2KgJz23KAkas7vkwU= 2010 | dependencies: 2011 | abab "^1.0.0" 2012 | acorn "^2.4.0" 2013 | acorn-globals "^1.0.4" 2014 | array-equal "^1.0.0" 2015 | content-type-parser "^1.0.1" 2016 | cssom ">= 0.3.0 < 0.4.0" 2017 | cssstyle ">= 0.2.36 < 0.3.0" 2018 | escodegen "^1.6.1" 2019 | html-encoding-sniffer "^1.0.1" 2020 | iconv-lite "^0.4.13" 2021 | nwmatcher ">= 1.3.7 < 2.0.0" 2022 | parse5 "^1.5.1" 2023 | request "^2.55.0" 2024 | sax "^1.1.4" 2025 | symbol-tree ">= 3.1.0 < 4.0.0" 2026 | tough-cookie "^2.3.1" 2027 | webidl-conversions "^3.0.1" 2028 | whatwg-encoding "^1.0.1" 2029 | whatwg-url "^3.0.0" 2030 | xml-name-validator ">= 2.0.1 < 3.0.0" 2031 | 2032 | jsesc@^1.3.0: 2033 | version "1.3.0" 2034 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2035 | 2036 | jsesc@~0.5.0: 2037 | version "0.5.0" 2038 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2039 | 2040 | json-schema@0.2.3: 2041 | version "0.2.3" 2042 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2043 | 2044 | json-stringify-safe@~5.0.1: 2045 | version "5.0.1" 2046 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2047 | 2048 | json3@3.3.2: 2049 | version "3.3.2" 2050 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2051 | 2052 | json5@^0.4.0: 2053 | version "0.4.0" 2054 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" 2055 | 2056 | json5@^0.5.0: 2057 | version "0.5.0" 2058 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.0.tgz#9b20715b026cbe3778fd769edccd822d8332a5b2" 2059 | 2060 | jsonpointer@^4.0.0: 2061 | version "4.0.1" 2062 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 2063 | integrity sha1-T9kss04OnbPInIYi7PUfm5eMbLk= 2064 | 2065 | jsprim@^1.2.2: 2066 | version "1.3.1" 2067 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" 2068 | dependencies: 2069 | extsprintf "1.0.2" 2070 | json-schema "0.2.3" 2071 | verror "1.3.6" 2072 | 2073 | just-extend@^4.0.2: 2074 | version "4.0.2" 2075 | resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.0.2.tgz#f3f47f7dfca0f989c55410a7ebc8854b07108afc" 2076 | integrity sha512-FrLwOgm+iXrPV+5zDU6Jqu4gCRXbWEQg2O3SKONsWE4w7AXFRkryS53bpWdaL9cNol+AmR3AEYz6kn+o0fCPnw== 2077 | 2078 | kind-of@^3.0.2: 2079 | version "3.0.4" 2080 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" 2081 | dependencies: 2082 | is-buffer "^1.0.2" 2083 | 2084 | lazy-cache@^1.0.3: 2085 | version "1.0.4" 2086 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2087 | 2088 | lcid@^1.0.0: 2089 | version "1.0.0" 2090 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2091 | integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= 2092 | dependencies: 2093 | invert-kv "^1.0.0" 2094 | 2095 | levn@~0.3.0: 2096 | version "0.3.0" 2097 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2098 | dependencies: 2099 | prelude-ls "~1.1.2" 2100 | type-check "~0.3.2" 2101 | 2102 | load-json-file@^1.0.0: 2103 | version "1.1.0" 2104 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2105 | integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= 2106 | dependencies: 2107 | graceful-fs "^4.1.2" 2108 | parse-json "^2.2.0" 2109 | pify "^2.0.0" 2110 | pinkie-promise "^2.0.0" 2111 | strip-bom "^2.0.0" 2112 | 2113 | loader-utils@^0.2.11: 2114 | version "0.2.16" 2115 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.16.tgz#f08632066ed8282835dff88dfb52704765adee6d" 2116 | dependencies: 2117 | big.js "^3.1.3" 2118 | emojis-list "^2.0.0" 2119 | json5 "^0.5.0" 2120 | object-assign "^4.0.1" 2121 | 2122 | lodash._baseassign@^3.0.0: 2123 | version "3.2.0" 2124 | resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 2125 | dependencies: 2126 | lodash._basecopy "^3.0.0" 2127 | lodash.keys "^3.0.0" 2128 | 2129 | lodash._basecopy@^3.0.0: 2130 | version "3.0.1" 2131 | resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 2132 | 2133 | lodash._basecreate@^3.0.0: 2134 | version "3.0.3" 2135 | resolved "https://registry.yarnpkg.com/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 2136 | 2137 | lodash._getnative@^3.0.0: 2138 | version "3.9.1" 2139 | resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2140 | 2141 | lodash._isiterateecall@^3.0.0: 2142 | version "3.0.9" 2143 | resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 2144 | 2145 | lodash.create@3.1.1: 2146 | version "3.1.1" 2147 | resolved "https://registry.yarnpkg.com/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 2148 | dependencies: 2149 | lodash._baseassign "^3.0.0" 2150 | lodash._basecreate "^3.0.0" 2151 | lodash._isiterateecall "^3.0.0" 2152 | 2153 | lodash.isarguments@^3.0.0: 2154 | version "3.1.0" 2155 | resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 2156 | 2157 | lodash.isarray@^3.0.0: 2158 | version "3.0.4" 2159 | resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 2160 | 2161 | lodash.keys@^3.0.0: 2162 | version "3.1.2" 2163 | resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 2164 | dependencies: 2165 | lodash._getnative "^3.0.0" 2166 | lodash.isarguments "^3.0.0" 2167 | lodash.isarray "^3.0.0" 2168 | 2169 | lodash@^4.17.11, lodash@^4.2.0: 2170 | version "4.17.21" 2171 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2172 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 2173 | 2174 | lolex@^2.3.2: 2175 | version "2.7.5" 2176 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-2.7.5.tgz#113001d56bfc7e02d56e36291cc5c413d1aa0733" 2177 | integrity sha512-l9x0+1offnKKIzYVjyXU2SiwhXDLekRzKyhnbyldPHvC7BvLPVpdNUNR2KeMAiCN2D/kLNttZgQD5WjSxuBx3Q== 2178 | 2179 | lolex@^4.0.1: 2180 | version "4.0.1" 2181 | resolved "https://registry.yarnpkg.com/lolex/-/lolex-4.0.1.tgz#4a99c2251579d693c6a083446dae0e5c3844d3fa" 2182 | integrity sha512-UHuOBZ5jjsKuzbB/gRNNW8Vg8f00Emgskdq2kvZxgBJCS0aqquAuXai/SkWORlKeZEiNQWZjFZOqIUcH9LqKCw== 2183 | 2184 | longest@^1.0.1: 2185 | version "1.0.1" 2186 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2187 | 2188 | loose-envify@^1.0.0: 2189 | version "1.2.0" 2190 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.2.0.tgz#69a65aad3de542cf4ee0f4fe74e8e33c709ccb0f" 2191 | dependencies: 2192 | js-tokens "^1.0.1" 2193 | 2194 | lru-cache@^4.0.1: 2195 | version "4.1.5" 2196 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 2197 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 2198 | dependencies: 2199 | pseudomap "^1.0.2" 2200 | yallist "^2.1.2" 2201 | 2202 | md5-hex@^1.2.0: 2203 | version "1.3.0" 2204 | resolved "https://registry.yarnpkg.com/md5-hex/-/md5-hex-1.3.0.tgz#d2c4afe983c4370662179b8cad145219135046c4" 2205 | integrity sha1-0sSv6YPENwZiF5uMrRRSGRNQRsQ= 2206 | dependencies: 2207 | md5-o-matic "^0.1.1" 2208 | 2209 | md5-o-matic@^0.1.1: 2210 | version "0.1.1" 2211 | resolved "https://registry.yarnpkg.com/md5-o-matic/-/md5-o-matic-0.1.1.tgz#822bccd65e117c514fab176b25945d54100a03c3" 2212 | integrity sha1-givM1l4RfFFPqxdrJZRdVBAKA8M= 2213 | 2214 | memory-fs@^0.2.0: 2215 | version "0.2.0" 2216 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" 2217 | 2218 | memory-fs@~0.3.0: 2219 | version "0.3.0" 2220 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20" 2221 | dependencies: 2222 | errno "^0.1.3" 2223 | readable-stream "^2.0.1" 2224 | 2225 | merge-source-map@^1.0.2: 2226 | version "1.1.0" 2227 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" 2228 | integrity sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw== 2229 | dependencies: 2230 | source-map "^0.6.1" 2231 | 2232 | micromatch@^2.1.5, micromatch@^2.3.11: 2233 | version "2.3.11" 2234 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2235 | dependencies: 2236 | arr-diff "^2.0.0" 2237 | array-unique "^0.2.1" 2238 | braces "^1.8.2" 2239 | expand-brackets "^0.1.4" 2240 | extglob "^0.3.1" 2241 | filename-regex "^2.0.0" 2242 | is-extglob "^1.0.0" 2243 | is-glob "^2.0.1" 2244 | kind-of "^3.0.2" 2245 | normalize-path "^2.0.1" 2246 | object.omit "^2.0.0" 2247 | parse-glob "^3.0.4" 2248 | regex-cache "^0.4.2" 2249 | 2250 | mime-db@~1.24.0: 2251 | version "1.24.0" 2252 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c" 2253 | 2254 | mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.7: 2255 | version "2.1.12" 2256 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729" 2257 | dependencies: 2258 | mime-db "~1.24.0" 2259 | 2260 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: 2261 | version "3.0.3" 2262 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2263 | dependencies: 2264 | brace-expansion "^1.0.0" 2265 | 2266 | minimatch@^3.0.4: 2267 | version "3.0.4" 2268 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2269 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2270 | dependencies: 2271 | brace-expansion "^1.1.7" 2272 | 2273 | minimist@0.0.8: 2274 | version "0.0.8" 2275 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2276 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 2277 | 2278 | minimist@^1.1.0, minimist@^1.2.0, minimist@^1.2.5: 2279 | version "1.2.5" 2280 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2281 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2282 | 2283 | minimist@~0.0.1: 2284 | version "0.0.10" 2285 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2286 | integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= 2287 | 2288 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: 2289 | version "0.5.1" 2290 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2291 | dependencies: 2292 | minimist "0.0.8" 2293 | 2294 | mocha-jsdom@1.1.0: 2295 | version "1.1.0" 2296 | resolved "https://registry.yarnpkg.com/mocha-jsdom/-/mocha-jsdom-1.1.0.tgz#e1576fbd0601cc89d358a213a0e5585d1b7c7a01" 2297 | integrity sha1-4VdvvQYBzInTWKIToOVYXRt8egE= 2298 | 2299 | mocha@3.1.2: 2300 | version "3.1.2" 2301 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.1.2.tgz#51f93b432bf7e1b175ffc22883ccd0be32dba6b5" 2302 | integrity sha1-Ufk7Qyv34bF1/8Iog8zQvjLbprU= 2303 | dependencies: 2304 | browser-stdout "1.3.0" 2305 | commander "2.9.0" 2306 | debug "2.2.0" 2307 | diff "1.4.0" 2308 | escape-string-regexp "1.0.5" 2309 | glob "7.0.5" 2310 | growl "1.9.2" 2311 | json3 "3.3.2" 2312 | lodash.create "3.1.1" 2313 | mkdirp "0.5.1" 2314 | supports-color "3.1.2" 2315 | 2316 | ms@0.7.1: 2317 | version "0.7.1" 2318 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2319 | 2320 | ms@^2.1.1: 2321 | version "2.1.1" 2322 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2323 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 2324 | 2325 | nan@^2.3.0: 2326 | version "2.4.0" 2327 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" 2328 | 2329 | neo-async@^2.6.0: 2330 | version "2.6.2" 2331 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 2332 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 2333 | 2334 | nise@^1.4.10: 2335 | version "1.4.10" 2336 | resolved "https://registry.yarnpkg.com/nise/-/nise-1.4.10.tgz#ae46a09a26436fae91a38a60919356ae6db143b6" 2337 | integrity sha512-sa0RRbj53dovjc7wombHmVli9ZihXbXCQ2uH3TNm03DyvOSIQbxg+pbqDKrk2oxMK1rtLGVlKxcB9rrc6X5YjA== 2338 | dependencies: 2339 | "@sinonjs/formatio" "^3.1.0" 2340 | "@sinonjs/text-encoding" "^0.7.1" 2341 | just-extend "^4.0.2" 2342 | lolex "^2.3.2" 2343 | path-to-regexp "^1.7.0" 2344 | 2345 | node-fetch@^2.2.0: 2346 | version "2.6.7" 2347 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 2348 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 2349 | dependencies: 2350 | whatwg-url "^5.0.0" 2351 | 2352 | node-libs-browser@^0.6.0: 2353 | version "0.6.0" 2354 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.6.0.tgz#244806d44d319e048bc8607b5cc4eaf9a29d2e3c" 2355 | dependencies: 2356 | assert "^1.1.1" 2357 | browserify-zlib "~0.1.4" 2358 | buffer "^4.9.0" 2359 | console-browserify "^1.1.0" 2360 | constants-browserify "0.0.1" 2361 | crypto-browserify "~3.2.6" 2362 | domain-browser "^1.1.1" 2363 | events "^1.0.0" 2364 | http-browserify "^1.3.2" 2365 | https-browserify "0.0.0" 2366 | os-browserify "~0.1.2" 2367 | path-browserify "0.0.0" 2368 | process "^0.11.0" 2369 | punycode "^1.2.4" 2370 | querystring-es3 "~0.2.0" 2371 | readable-stream "^1.1.13" 2372 | stream-browserify "^1.0.0" 2373 | string_decoder "~0.10.25" 2374 | timers-browserify "^1.0.1" 2375 | tty-browserify "0.0.0" 2376 | url "~0.10.1" 2377 | util "~0.10.3" 2378 | vm-browserify "0.0.4" 2379 | 2380 | node-pre-gyp@^0.6.29: 2381 | version "0.6.30" 2382 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.30.tgz#64d3073a6f573003717ccfe30c89023297babba1" 2383 | dependencies: 2384 | mkdirp "~0.5.0" 2385 | nopt "~3.0.1" 2386 | npmlog "4.x" 2387 | rc "~1.1.0" 2388 | request "2.x" 2389 | rimraf "~2.5.0" 2390 | semver "~5.3.0" 2391 | tar "~2.2.0" 2392 | tar-pack "~3.1.0" 2393 | 2394 | node-uuid@~1.4.7: 2395 | version "1.4.7" 2396 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" 2397 | 2398 | nopt@~3.0.1: 2399 | version "3.0.6" 2400 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 2401 | dependencies: 2402 | abbrev "1" 2403 | 2404 | normalize-package-data@^2.3.2: 2405 | version "2.5.0" 2406 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 2407 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 2408 | dependencies: 2409 | hosted-git-info "^2.1.4" 2410 | resolve "^1.10.0" 2411 | semver "2 || 3 || 4 || 5" 2412 | validate-npm-package-license "^3.0.1" 2413 | 2414 | normalize-path@^2.0.1: 2415 | version "2.0.1" 2416 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" 2417 | 2418 | npmlog@4.x: 2419 | version "4.0.0" 2420 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f" 2421 | dependencies: 2422 | are-we-there-yet "~1.1.2" 2423 | console-control-strings "~1.1.0" 2424 | gauge "~2.6.0" 2425 | set-blocking "~2.0.0" 2426 | 2427 | number-is-nan@^1.0.0: 2428 | version "1.0.1" 2429 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2430 | 2431 | "nwmatcher@>= 1.3.7 < 2.0.0": 2432 | version "1.3.9" 2433 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2434 | 2435 | nyc@10.0.0: 2436 | version "10.0.0" 2437 | resolved "https://registry.yarnpkg.com/nyc/-/nyc-10.0.0.tgz#95bd4a2c3487f33e1e78f213c6d5a53d88074ce6" 2438 | integrity sha1-lb1KLDSH8z4eePITxtWlPYgHTOY= 2439 | dependencies: 2440 | archy "^1.0.0" 2441 | arrify "^1.0.1" 2442 | caching-transform "^1.0.0" 2443 | convert-source-map "^1.3.0" 2444 | debug-log "^1.0.1" 2445 | default-require-extensions "^1.0.0" 2446 | find-cache-dir "^0.1.1" 2447 | find-up "^1.1.2" 2448 | foreground-child "^1.5.3" 2449 | glob "^7.0.6" 2450 | istanbul-lib-coverage "^1.0.0" 2451 | istanbul-lib-hook "^1.0.0-alpha.4" 2452 | istanbul-lib-instrument "^1.3.0" 2453 | istanbul-lib-report "^1.0.0-alpha.3" 2454 | istanbul-lib-source-maps "^1.1.0" 2455 | istanbul-reports "^1.0.0" 2456 | md5-hex "^1.2.0" 2457 | merge-source-map "^1.0.2" 2458 | micromatch "^2.3.11" 2459 | mkdirp "^0.5.0" 2460 | resolve-from "^2.0.0" 2461 | rimraf "^2.5.4" 2462 | signal-exit "^3.0.1" 2463 | spawn-wrap "^1.2.4" 2464 | test-exclude "^3.3.0" 2465 | yargs "^6.4.0" 2466 | yargs-parser "^4.0.2" 2467 | 2468 | oauth-sign@~0.8.1: 2469 | version "0.8.2" 2470 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2471 | 2472 | object-assign@^4.0.1, object-assign@^4.1.0: 2473 | version "4.1.0" 2474 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" 2475 | 2476 | object.omit@^2.0.0: 2477 | version "2.0.0" 2478 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.0.tgz#868597333d54e60662940bb458605dd6ae12fe94" 2479 | dependencies: 2480 | for-own "^0.1.3" 2481 | is-extendable "^0.1.1" 2482 | 2483 | once@^1.3.0: 2484 | version "1.4.0" 2485 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2486 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2487 | dependencies: 2488 | wrappy "1" 2489 | 2490 | once@~1.3.3: 2491 | version "1.3.3" 2492 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" 2493 | dependencies: 2494 | wrappy "1" 2495 | 2496 | optimist@~0.6.0: 2497 | version "0.6.1" 2498 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2499 | integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= 2500 | dependencies: 2501 | minimist "~0.0.1" 2502 | wordwrap "~0.0.2" 2503 | 2504 | optionator@^0.8.1: 2505 | version "0.8.2" 2506 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2507 | dependencies: 2508 | deep-is "~0.1.3" 2509 | fast-levenshtein "~2.0.4" 2510 | levn "~0.3.0" 2511 | prelude-ls "~1.1.2" 2512 | type-check "~0.3.2" 2513 | wordwrap "~1.0.0" 2514 | 2515 | os-browserify@~0.1.2: 2516 | version "0.1.2" 2517 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54" 2518 | 2519 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2520 | version "1.0.2" 2521 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2522 | 2523 | os-locale@^1.4.0: 2524 | version "1.4.0" 2525 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2526 | integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= 2527 | dependencies: 2528 | lcid "^1.0.0" 2529 | 2530 | os-tmpdir@^1.0.1: 2531 | version "1.0.2" 2532 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2533 | 2534 | output-file-sync@^1.1.0: 2535 | version "1.1.2" 2536 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2537 | dependencies: 2538 | graceful-fs "^4.1.4" 2539 | mkdirp "^0.5.1" 2540 | object-assign "^4.1.0" 2541 | 2542 | pako@~0.2.0: 2543 | version "0.2.9" 2544 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2545 | 2546 | parse-glob@^3.0.4: 2547 | version "3.0.4" 2548 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2549 | dependencies: 2550 | glob-base "^0.3.0" 2551 | is-dotfile "^1.0.0" 2552 | is-extglob "^1.0.0" 2553 | is-glob "^2.0.0" 2554 | 2555 | parse-json@^2.2.0: 2556 | version "2.2.0" 2557 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2558 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 2559 | dependencies: 2560 | error-ex "^1.2.0" 2561 | 2562 | parse5@^1.5.1: 2563 | version "1.5.1" 2564 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2565 | 2566 | path-browserify@0.0.0: 2567 | version "0.0.0" 2568 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2569 | 2570 | path-exists@^1.0.0: 2571 | version "1.0.0" 2572 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" 2573 | 2574 | path-exists@^2.0.0: 2575 | version "2.1.0" 2576 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2577 | integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= 2578 | dependencies: 2579 | pinkie-promise "^2.0.0" 2580 | 2581 | path-is-absolute@^1.0.0: 2582 | version "1.0.1" 2583 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2584 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2585 | 2586 | path-parse@^1.0.5, path-parse@^1.0.6: 2587 | version "1.0.7" 2588 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2589 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2590 | 2591 | path-to-regexp@^1.7.0: 2592 | version "1.7.0" 2593 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" 2594 | integrity sha1-Wf3g9DW62suhA6hOnTvGTpa5k30= 2595 | dependencies: 2596 | isarray "0.0.1" 2597 | 2598 | path-type@^1.0.0: 2599 | version "1.1.0" 2600 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2601 | integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= 2602 | dependencies: 2603 | graceful-fs "^4.1.2" 2604 | pify "^2.0.0" 2605 | pinkie-promise "^2.0.0" 2606 | 2607 | pbkdf2-compat@2.0.1: 2608 | version "2.0.1" 2609 | resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288" 2610 | 2611 | pify@^2.0.0: 2612 | version "2.3.0" 2613 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2614 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 2615 | 2616 | pinkie-promise@^2.0.0: 2617 | version "2.0.1" 2618 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2619 | dependencies: 2620 | pinkie "^2.0.0" 2621 | 2622 | pinkie@^2.0.0: 2623 | version "2.0.4" 2624 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2625 | 2626 | pkg-dir@^1.0.0: 2627 | version "1.0.0" 2628 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2629 | integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q= 2630 | dependencies: 2631 | find-up "^1.0.0" 2632 | 2633 | prelude-ls@~1.1.2: 2634 | version "1.1.2" 2635 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2636 | 2637 | preserve@^0.2.0: 2638 | version "0.2.0" 2639 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2640 | 2641 | private@^0.1.6, private@~0.1.5: 2642 | version "0.1.6" 2643 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" 2644 | 2645 | process-nextick-args@~1.0.6: 2646 | version "1.0.7" 2647 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2648 | 2649 | process@^0.11.0, process@~0.11.0: 2650 | version "0.11.9" 2651 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 2652 | 2653 | prr@~0.0.0: 2654 | version "0.0.0" 2655 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2656 | 2657 | pseudomap@^1.0.2: 2658 | version "1.0.2" 2659 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2660 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 2661 | 2662 | punycode@1.3.2: 2663 | version "1.3.2" 2664 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2665 | 2666 | punycode@^1.2.4, punycode@^1.4.1: 2667 | version "1.4.1" 2668 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2669 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 2670 | 2671 | qs@~6.2.0: 2672 | version "6.2.3" 2673 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.3.tgz#1cfcb25c10a9b2b483053ff39f5dfc9233908cfe" 2674 | integrity sha1-HPyyXBCpsrSDBT/zn138kjOQjP4= 2675 | 2676 | qs@~6.3.0: 2677 | version "6.3.0" 2678 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" 2679 | 2680 | querystring-es3@~0.2.0: 2681 | version "0.2.1" 2682 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2683 | 2684 | querystring@0.2.0: 2685 | version "0.2.0" 2686 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2687 | 2688 | randomatic@^1.1.3: 2689 | version "1.1.5" 2690 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b" 2691 | dependencies: 2692 | is-number "^2.0.2" 2693 | kind-of "^3.0.2" 2694 | 2695 | rc@~1.1.0: 2696 | version "1.1.6" 2697 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" 2698 | dependencies: 2699 | deep-extend "~0.4.0" 2700 | ini "~1.3.0" 2701 | minimist "^1.2.0" 2702 | strip-json-comments "~1.0.4" 2703 | 2704 | read-pkg-up@^1.0.1: 2705 | version "1.0.1" 2706 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2707 | integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= 2708 | dependencies: 2709 | find-up "^1.0.0" 2710 | read-pkg "^1.0.0" 2711 | 2712 | read-pkg@^1.0.0: 2713 | version "1.1.0" 2714 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2715 | integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= 2716 | dependencies: 2717 | load-json-file "^1.0.0" 2718 | normalize-package-data "^2.3.2" 2719 | path-type "^1.0.0" 2720 | 2721 | readable-stream@^1.0.27-1, readable-stream@^1.1.13: 2722 | version "1.1.14" 2723 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" 2724 | dependencies: 2725 | core-util-is "~1.0.0" 2726 | inherits "~2.0.1" 2727 | isarray "0.0.1" 2728 | string_decoder "~0.10.x" 2729 | 2730 | "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@~2.1.4: 2731 | version "2.1.5" 2732 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" 2733 | dependencies: 2734 | buffer-shims "^1.0.0" 2735 | core-util-is "~1.0.0" 2736 | inherits "~2.0.1" 2737 | isarray "~1.0.0" 2738 | process-nextick-args "~1.0.6" 2739 | string_decoder "~0.10.x" 2740 | util-deprecate "~1.0.1" 2741 | 2742 | readable-stream@~2.0.5: 2743 | version "2.0.6" 2744 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" 2745 | dependencies: 2746 | core-util-is "~1.0.0" 2747 | inherits "~2.0.1" 2748 | isarray "~1.0.0" 2749 | process-nextick-args "~1.0.6" 2750 | string_decoder "~0.10.x" 2751 | util-deprecate "~1.0.1" 2752 | 2753 | readdirp@^2.0.0: 2754 | version "2.1.0" 2755 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2756 | dependencies: 2757 | graceful-fs "^4.1.2" 2758 | minimatch "^3.0.2" 2759 | readable-stream "^2.0.2" 2760 | set-immediate-shim "^1.0.1" 2761 | 2762 | regenerate@^1.2.1: 2763 | version "1.3.1" 2764 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.1.tgz#0300203a5d2fdcf89116dce84275d011f5903f33" 2765 | 2766 | regenerator-runtime@^0.9.5: 2767 | version "0.9.5" 2768 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.5.tgz#403d6d40a4bdff9c330dd9392dcbb2d9a8bba1fc" 2769 | 2770 | regex-cache@^0.4.2: 2771 | version "0.4.3" 2772 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2773 | dependencies: 2774 | is-equal-shallow "^0.1.3" 2775 | is-primitive "^2.0.0" 2776 | 2777 | regexpu-core@^2.0.0: 2778 | version "2.0.0" 2779 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2780 | dependencies: 2781 | regenerate "^1.2.1" 2782 | regjsgen "^0.2.0" 2783 | regjsparser "^0.1.4" 2784 | 2785 | regjsgen@^0.2.0: 2786 | version "0.2.0" 2787 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2788 | 2789 | regjsparser@^0.1.4: 2790 | version "0.1.5" 2791 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2792 | dependencies: 2793 | jsesc "~0.5.0" 2794 | 2795 | repeat-element@^1.1.2: 2796 | version "1.1.2" 2797 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2798 | 2799 | repeat-string@^1.5.2: 2800 | version "1.5.4" 2801 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.5.4.tgz#64ec0c91e0f4b475f90d5b643651e3e6e5b6c2d5" 2802 | 2803 | repeating@^1.1.0: 2804 | version "1.1.3" 2805 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" 2806 | dependencies: 2807 | is-finite "^1.0.0" 2808 | 2809 | repeating@^2.0.0: 2810 | version "2.0.1" 2811 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2812 | dependencies: 2813 | is-finite "^1.0.0" 2814 | 2815 | request@2.x: 2816 | version "2.75.0" 2817 | resolved "https://registry.yarnpkg.com/request/-/request-2.75.0.tgz#d2b8268a286da13eaa5d01adf5d18cc90f657d93" 2818 | dependencies: 2819 | aws-sign2 "~0.6.0" 2820 | aws4 "^1.2.1" 2821 | bl "~1.1.2" 2822 | caseless "~0.11.0" 2823 | combined-stream "~1.0.5" 2824 | extend "~3.0.0" 2825 | forever-agent "~0.6.1" 2826 | form-data "~2.0.0" 2827 | har-validator "~2.0.6" 2828 | hawk "~3.1.3" 2829 | http-signature "~1.1.0" 2830 | is-typedarray "~1.0.0" 2831 | isstream "~0.1.2" 2832 | json-stringify-safe "~5.0.1" 2833 | mime-types "~2.1.7" 2834 | node-uuid "~1.4.7" 2835 | oauth-sign "~0.8.1" 2836 | qs "~6.2.0" 2837 | stringstream "~0.0.4" 2838 | tough-cookie "~2.3.0" 2839 | tunnel-agent "~0.4.1" 2840 | 2841 | request@^2.55.0: 2842 | version "2.78.0" 2843 | resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc" 2844 | dependencies: 2845 | aws-sign2 "~0.6.0" 2846 | aws4 "^1.2.1" 2847 | caseless "~0.11.0" 2848 | combined-stream "~1.0.5" 2849 | extend "~3.0.0" 2850 | forever-agent "~0.6.1" 2851 | form-data "~2.1.1" 2852 | har-validator "~2.0.6" 2853 | hawk "~3.1.3" 2854 | http-signature "~1.1.0" 2855 | is-typedarray "~1.0.0" 2856 | isstream "~0.1.2" 2857 | json-stringify-safe "~5.0.1" 2858 | mime-types "~2.1.7" 2859 | node-uuid "~1.4.7" 2860 | oauth-sign "~0.8.1" 2861 | qs "~6.3.0" 2862 | stringstream "~0.0.4" 2863 | tough-cookie "~2.3.0" 2864 | tunnel-agent "~0.4.1" 2865 | 2866 | require-directory@^2.1.1: 2867 | version "2.1.1" 2868 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2869 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2870 | 2871 | require-main-filename@^1.0.1: 2872 | version "1.0.1" 2873 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2874 | integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= 2875 | 2876 | resolve-from@^2.0.0: 2877 | version "2.0.0" 2878 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 2879 | integrity sha1-lICrIOlP+h2egKgEx+oUdhGWa1c= 2880 | 2881 | resolve@^1.10.0: 2882 | version "1.10.1" 2883 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.1.tgz#664842ac960795bbe758221cdccda61fb64b5f18" 2884 | integrity sha512-KuIe4mf++td/eFb6wkaPbMDnP6kObCaEtIDuHOUED6MNUo4K670KZUHuuvYPZDxNF0WVLw49n06M2m2dXphEzA== 2885 | dependencies: 2886 | path-parse "^1.0.6" 2887 | 2888 | right-align@^0.1.1: 2889 | version "0.1.3" 2890 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2891 | dependencies: 2892 | align-text "^0.1.1" 2893 | 2894 | rimraf@2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: 2895 | version "2.7.0" 2896 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.0.tgz#eb43198c5e2fb83b9323abee63bd87836f9a7c85" 2897 | integrity sha512-4Liqw7ccABzsWV5BzeZeGRSq7KWIgQYzOcmRDEwSX4WAawlQpcAFXZ1Kid72XYrjSnK5yxOS6Gez/iGusYE/Pw== 2898 | dependencies: 2899 | glob "^7.1.3" 2900 | 2901 | rimraf@2.5.4, rimraf@~2.5.0, rimraf@~2.5.1: 2902 | version "2.5.4" 2903 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" 2904 | dependencies: 2905 | glob "^7.0.5" 2906 | 2907 | ripemd160@0.2.0: 2908 | version "0.2.0" 2909 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce" 2910 | 2911 | safe-buffer@~5.1.1: 2912 | version "5.1.2" 2913 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2914 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2915 | 2916 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2917 | version "2.1.2" 2918 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2919 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2920 | 2921 | sax@^1.1.4: 2922 | version "1.2.1" 2923 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" 2924 | 2925 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2926 | version "5.7.0" 2927 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 2928 | integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== 2929 | 2930 | semver@~5.3.0: 2931 | version "5.3.0" 2932 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2933 | 2934 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2935 | version "2.0.0" 2936 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2937 | 2938 | set-immediate-shim@^1.0.1: 2939 | version "1.0.1" 2940 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2941 | 2942 | sha.js@2.2.6: 2943 | version "2.2.6" 2944 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba" 2945 | 2946 | shebang-regex@^1.0.0: 2947 | version "1.0.0" 2948 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2949 | 2950 | signal-exit@^3.0.0: 2951 | version "3.0.1" 2952 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" 2953 | 2954 | signal-exit@^3.0.1, signal-exit@^3.0.2: 2955 | version "3.0.2" 2956 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2957 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 2958 | 2959 | sinon@7.3.2: 2960 | version "7.3.2" 2961 | resolved "https://registry.yarnpkg.com/sinon/-/sinon-7.3.2.tgz#82dba3a6d85f6d2181e1eca2c10d8657c2161f28" 2962 | integrity sha512-thErC1z64BeyGiPvF8aoSg0LEnptSaWE7YhdWWbWXgelOyThent7uKOnnEh9zBxDbKixtr5dEko+ws1sZMuFMA== 2963 | dependencies: 2964 | "@sinonjs/commons" "^1.4.0" 2965 | "@sinonjs/formatio" "^3.2.1" 2966 | "@sinonjs/samsam" "^3.3.1" 2967 | diff "^3.5.0" 2968 | lolex "^4.0.1" 2969 | nise "^1.4.10" 2970 | supports-color "^5.5.0" 2971 | 2972 | slash@^1.0.0: 2973 | version "1.0.0" 2974 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2975 | 2976 | slide@^1.1.5: 2977 | version "1.1.6" 2978 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2979 | integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc= 2980 | 2981 | sntp@1.x.x: 2982 | version "1.0.9" 2983 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2984 | dependencies: 2985 | hoek "2.x.x" 2986 | 2987 | source-list-map@~0.1.0: 2988 | version "0.1.6" 2989 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.6.tgz#e1e6f94f0b40c4d28dcf8f5b8766e0e45636877f" 2990 | 2991 | source-map-support@^0.4.2: 2992 | version "0.4.5" 2993 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.5.tgz#4438df4219e1b3c7feb674614b4c67f9722db1e4" 2994 | dependencies: 2995 | source-map "^0.5.3" 2996 | 2997 | source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1: 2998 | version "0.5.6" 2999 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3000 | 3001 | source-map@^0.6.1: 3002 | version "0.6.1" 3003 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3004 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3005 | 3006 | source-map@~0.2.0: 3007 | version "0.2.0" 3008 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3009 | dependencies: 3010 | amdefine ">=0.0.4" 3011 | 3012 | source-map@~0.4.1: 3013 | version "0.4.4" 3014 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3015 | dependencies: 3016 | amdefine ">=0.0.4" 3017 | 3018 | spawn-wrap@^1.2.4: 3019 | version "1.4.2" 3020 | resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-1.4.2.tgz#cff58e73a8224617b6561abdc32586ea0c82248c" 3021 | integrity sha512-vMwR3OmmDhnxCVxM8M+xO/FtIp6Ju/mNaDfCMMW7FDcLRTPFWUswec4LXJHTJE2hwTI9O0YBfygu4DalFl7Ylg== 3022 | dependencies: 3023 | foreground-child "^1.5.6" 3024 | mkdirp "^0.5.0" 3025 | os-homedir "^1.0.1" 3026 | rimraf "^2.6.2" 3027 | signal-exit "^3.0.2" 3028 | which "^1.3.0" 3029 | 3030 | spdx-correct@^3.0.0: 3031 | version "3.1.0" 3032 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" 3033 | integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== 3034 | dependencies: 3035 | spdx-expression-parse "^3.0.0" 3036 | spdx-license-ids "^3.0.0" 3037 | 3038 | spdx-exceptions@^2.1.0: 3039 | version "2.2.0" 3040 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" 3041 | integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== 3042 | 3043 | spdx-expression-parse@^3.0.0: 3044 | version "3.0.0" 3045 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3046 | integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== 3047 | dependencies: 3048 | spdx-exceptions "^2.1.0" 3049 | spdx-license-ids "^3.0.0" 3050 | 3051 | spdx-license-ids@^3.0.0: 3052 | version "3.0.4" 3053 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" 3054 | integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA== 3055 | 3056 | sprintf-js@~1.0.2: 3057 | version "1.0.3" 3058 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3059 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3060 | 3061 | sshpk@^1.7.0: 3062 | version "1.16.1" 3063 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 3064 | integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== 3065 | dependencies: 3066 | asn1 "~0.2.3" 3067 | assert-plus "^1.0.0" 3068 | bcrypt-pbkdf "^1.0.0" 3069 | dashdash "^1.12.0" 3070 | ecc-jsbn "~0.1.1" 3071 | getpass "^0.1.1" 3072 | jsbn "~0.1.0" 3073 | safer-buffer "^2.0.2" 3074 | tweetnacl "~0.14.0" 3075 | 3076 | stream-browserify@^1.0.0: 3077 | version "1.0.0" 3078 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-1.0.0.tgz#bf9b4abfb42b274d751479e44e0ff2656b6f1193" 3079 | dependencies: 3080 | inherits "~2.0.1" 3081 | readable-stream "^1.0.27-1" 3082 | 3083 | stream-events@^1.0.5: 3084 | version "1.0.5" 3085 | resolved "https://registry.yarnpkg.com/stream-events/-/stream-events-1.0.5.tgz#bbc898ec4df33a4902d892333d47da9bf1c406d5" 3086 | integrity sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg== 3087 | dependencies: 3088 | stubs "^3.0.0" 3089 | 3090 | string-width@^1.0.1, string-width@^1.0.2: 3091 | version "1.0.2" 3092 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3093 | dependencies: 3094 | code-point-at "^1.0.0" 3095 | is-fullwidth-code-point "^1.0.0" 3096 | strip-ansi "^3.0.0" 3097 | 3098 | string_decoder@~0.10.25, string_decoder@~0.10.x: 3099 | version "0.10.31" 3100 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3101 | 3102 | stringstream@~0.0.4: 3103 | version "0.0.6" 3104 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 3105 | integrity sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA== 3106 | 3107 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3108 | version "3.0.1" 3109 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3110 | dependencies: 3111 | ansi-regex "^2.0.0" 3112 | 3113 | strip-bom@^2.0.0: 3114 | version "2.0.0" 3115 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3116 | integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= 3117 | dependencies: 3118 | is-utf8 "^0.2.0" 3119 | 3120 | strip-json-comments@~1.0.4: 3121 | version "1.0.4" 3122 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" 3123 | 3124 | stubs@^3.0.0: 3125 | version "3.0.0" 3126 | resolved "https://registry.yarnpkg.com/stubs/-/stubs-3.0.0.tgz#e8d2ba1fa9c90570303c030b6900f7d5f89abe5b" 3127 | integrity sha1-6NK6H6nJBXAwPAMLaQD31fiavls= 3128 | 3129 | supports-color@3.1.2, supports-color@^3.1.0: 3130 | version "3.1.2" 3131 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 3132 | dependencies: 3133 | has-flag "^1.0.0" 3134 | 3135 | supports-color@^2.0.0: 3136 | version "2.0.0" 3137 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3138 | 3139 | supports-color@^3.1.2: 3140 | version "3.2.3" 3141 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3142 | integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= 3143 | dependencies: 3144 | has-flag "^1.0.0" 3145 | 3146 | supports-color@^5.5.0: 3147 | version "5.5.0" 3148 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3149 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3150 | dependencies: 3151 | has-flag "^3.0.0" 3152 | 3153 | "symbol-tree@>= 3.1.0 < 4.0.0": 3154 | version "3.1.4" 3155 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.1.4.tgz#02b279348d337debc39694c5c95f882d448a312a" 3156 | 3157 | tapable@^0.1.8, tapable@~0.1.8: 3158 | version "0.1.10" 3159 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4" 3160 | 3161 | tar-pack@~3.1.0: 3162 | version "3.1.4" 3163 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.1.4.tgz#bc8cf9a22f5832739f12f3910dac1eb97b49708c" 3164 | dependencies: 3165 | debug "~2.2.0" 3166 | fstream "~1.0.10" 3167 | fstream-ignore "~1.0.5" 3168 | once "~1.3.3" 3169 | readable-stream "~2.1.4" 3170 | rimraf "~2.5.1" 3171 | tar "~2.2.1" 3172 | uid-number "~0.0.6" 3173 | 3174 | tar@~2.2.0, tar@~2.2.1: 3175 | version "2.2.2" 3176 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 3177 | integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA== 3178 | dependencies: 3179 | block-stream "*" 3180 | fstream "^1.0.12" 3181 | inherits "2" 3182 | 3183 | teeny-request@6.0.1: 3184 | version "6.0.1" 3185 | resolved "https://registry.yarnpkg.com/teeny-request/-/teeny-request-6.0.1.tgz#9b1f512cef152945827ba7e34f62523a4ce2c5b0" 3186 | integrity sha512-TAK0c9a00ELOqLrZ49cFxvPVogMUFaWY8dUsQc/0CuQPGF+BOxOQzXfE413BAk2kLomwNplvdtMpeaeGWmoc2g== 3187 | dependencies: 3188 | http-proxy-agent "^4.0.0" 3189 | https-proxy-agent "^4.0.0" 3190 | node-fetch "^2.2.0" 3191 | stream-events "^1.0.5" 3192 | uuid "^3.3.2" 3193 | 3194 | test-exclude@^3.3.0: 3195 | version "3.3.0" 3196 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-3.3.0.tgz#7a17ca1239988c98367b0621456dbb7d4bc38977" 3197 | integrity sha1-ehfKEjmYjJg2ewYhRW27fUvDiXc= 3198 | dependencies: 3199 | arrify "^1.0.1" 3200 | micromatch "^2.3.11" 3201 | object-assign "^4.1.0" 3202 | read-pkg-up "^1.0.1" 3203 | require-main-filename "^1.0.1" 3204 | 3205 | timers-browserify@^1.0.1: 3206 | version "1.4.2" 3207 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" 3208 | dependencies: 3209 | process "~0.11.0" 3210 | 3211 | to-fast-properties@^1.0.1: 3212 | version "1.0.2" 3213 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3214 | 3215 | tough-cookie@^2.3.1, tough-cookie@~2.3.0: 3216 | version "2.3.4" 3217 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3218 | integrity sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA== 3219 | dependencies: 3220 | punycode "^1.4.1" 3221 | 3222 | tr46@~0.0.3: 3223 | version "0.0.3" 3224 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3225 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 3226 | 3227 | tty-browserify@0.0.0: 3228 | version "0.0.0" 3229 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3230 | 3231 | tunnel-agent@~0.4.1: 3232 | version "0.4.3" 3233 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" 3234 | 3235 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3236 | version "0.14.5" 3237 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3238 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 3239 | 3240 | type-check@~0.3.2: 3241 | version "0.3.2" 3242 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3243 | dependencies: 3244 | prelude-ls "~1.1.2" 3245 | 3246 | type-detect@0.1.1: 3247 | version "0.1.1" 3248 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3249 | 3250 | type-detect@4.0.8: 3251 | version "4.0.8" 3252 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 3253 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 3254 | 3255 | type-detect@^1.0.0: 3256 | version "1.0.0" 3257 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3258 | 3259 | uglify-js@^3.1.4: 3260 | version "3.13.5" 3261 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.5.tgz#5d71d6dbba64cf441f32929b1efce7365bb4f113" 3262 | integrity sha512-xtB8yEqIkn7zmOyS2zUNBsYCBRhDkvlNxMMY2smuJ/qA8NCHeQvKCF3i9Z4k8FJH4+PJvZRtMrPynfZ75+CSZw== 3263 | 3264 | uglify-js@~2.6.0: 3265 | version "2.6.4" 3266 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.6.4.tgz#65ea2fb3059c9394692f15fed87c2b36c16b9adf" 3267 | dependencies: 3268 | async "~0.2.6" 3269 | source-map "~0.5.1" 3270 | uglify-to-browserify "~1.0.0" 3271 | yargs "~3.10.0" 3272 | 3273 | uglify-to-browserify@~1.0.0: 3274 | version "1.0.2" 3275 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3276 | 3277 | uid-number@~0.0.6: 3278 | version "0.0.6" 3279 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3280 | 3281 | url@~0.10.1: 3282 | version "0.10.3" 3283 | resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" 3284 | dependencies: 3285 | punycode "1.3.2" 3286 | querystring "0.2.0" 3287 | 3288 | urlgrey@0.4.4: 3289 | version "0.4.4" 3290 | resolved "https://registry.yarnpkg.com/urlgrey/-/urlgrey-0.4.4.tgz#892fe95960805e85519f1cd4389f2cb4cbb7652f" 3291 | integrity sha1-iS/pWWCAXoVRnxzUOJ8stMu3ZS8= 3292 | 3293 | user-home@^1.1.1: 3294 | version "1.1.1" 3295 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 3296 | 3297 | util-deprecate@~1.0.1: 3298 | version "1.0.2" 3299 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3300 | 3301 | util@0.10.3, util@~0.10.3: 3302 | version "0.10.3" 3303 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3304 | dependencies: 3305 | inherits "2.0.1" 3306 | 3307 | uuid@^3.3.2: 3308 | version "3.3.2" 3309 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 3310 | integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== 3311 | 3312 | v8flags@^2.0.10: 3313 | version "2.0.11" 3314 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881" 3315 | dependencies: 3316 | user-home "^1.1.1" 3317 | 3318 | validate-npm-package-license@^3.0.1: 3319 | version "3.0.4" 3320 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 3321 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 3322 | dependencies: 3323 | spdx-correct "^3.0.0" 3324 | spdx-expression-parse "^3.0.0" 3325 | 3326 | verror@1.3.6: 3327 | version "1.3.6" 3328 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3329 | dependencies: 3330 | extsprintf "1.0.2" 3331 | 3332 | vm-browserify@0.0.4: 3333 | version "0.0.4" 3334 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3335 | dependencies: 3336 | indexof "0.0.1" 3337 | 3338 | watchpack@^0.2.1: 3339 | version "0.2.9" 3340 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b" 3341 | dependencies: 3342 | async "^0.9.0" 3343 | chokidar "^1.0.0" 3344 | graceful-fs "^4.1.2" 3345 | 3346 | webidl-conversions@^3.0.0, webidl-conversions@^3.0.1: 3347 | version "3.0.1" 3348 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3349 | integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= 3350 | 3351 | webpack: 3352 | version "1.13.2" 3353 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.13.2.tgz#f11a96f458eb752970a86abe746c0704fabafaf3" 3354 | dependencies: 3355 | acorn "^3.0.0" 3356 | async "^1.3.0" 3357 | clone "^1.0.2" 3358 | enhanced-resolve "~0.9.0" 3359 | interpret "^0.6.4" 3360 | loader-utils "^0.2.11" 3361 | memory-fs "~0.3.0" 3362 | mkdirp "~0.5.0" 3363 | node-libs-browser "^0.6.0" 3364 | optimist "~0.6.0" 3365 | supports-color "^3.1.0" 3366 | tapable "~0.1.8" 3367 | uglify-js "~2.6.0" 3368 | watchpack "^0.2.1" 3369 | webpack-core "~0.6.0" 3370 | 3371 | webpack-core@~0.6.0: 3372 | version "0.6.8" 3373 | resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.8.tgz#edf9135de00a6a3c26dd0f14b208af0aa4af8d0a" 3374 | dependencies: 3375 | source-list-map "~0.1.0" 3376 | source-map "~0.4.1" 3377 | 3378 | whatwg-encoding@^1.0.1: 3379 | version "1.0.1" 3380 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3381 | dependencies: 3382 | iconv-lite "0.4.13" 3383 | 3384 | whatwg-url@^3.0.0: 3385 | version "3.0.0" 3386 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-3.0.0.tgz#b9033c50c7ce763e91d78777ce825a6d7f56dac5" 3387 | dependencies: 3388 | tr46 "~0.0.3" 3389 | webidl-conversions "^3.0.0" 3390 | 3391 | whatwg-url@^5.0.0: 3392 | version "5.0.0" 3393 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 3394 | integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= 3395 | dependencies: 3396 | tr46 "~0.0.3" 3397 | webidl-conversions "^3.0.0" 3398 | 3399 | which-module@^1.0.0: 3400 | version "1.0.0" 3401 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 3402 | integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= 3403 | 3404 | which@^1.2.9, which@^1.3.0: 3405 | version "1.3.1" 3406 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 3407 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3408 | dependencies: 3409 | isexe "^2.0.0" 3410 | 3411 | wide-align@^1.1.0: 3412 | version "1.1.0" 3413 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3414 | dependencies: 3415 | string-width "^1.0.1" 3416 | 3417 | window-size@0.1.0: 3418 | version "0.1.0" 3419 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3420 | 3421 | wordwrap@0.0.2: 3422 | version "0.0.2" 3423 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3424 | 3425 | wordwrap@^1.0.0, wordwrap@~1.0.0: 3426 | version "1.0.0" 3427 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3428 | 3429 | wordwrap@~0.0.2: 3430 | version "0.0.3" 3431 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3432 | integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= 3433 | 3434 | wrap-ansi@^2.0.0: 3435 | version "2.1.0" 3436 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3437 | integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= 3438 | dependencies: 3439 | string-width "^1.0.1" 3440 | strip-ansi "^3.0.1" 3441 | 3442 | wrappy@1: 3443 | version "1.0.2" 3444 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3445 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3446 | 3447 | write-file-atomic@^1.1.4: 3448 | version "1.3.4" 3449 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 3450 | integrity sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8= 3451 | dependencies: 3452 | graceful-fs "^4.1.11" 3453 | imurmurhash "^0.1.4" 3454 | slide "^1.1.5" 3455 | 3456 | "xml-name-validator@>= 2.0.1 < 3.0.0": 3457 | version "2.0.1" 3458 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3459 | 3460 | xtend@^4.0.0: 3461 | version "4.0.2" 3462 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 3463 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 3464 | 3465 | y18n@^3.2.1: 3466 | version "3.2.2" 3467 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" 3468 | integrity sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ== 3469 | 3470 | yallist@^2.1.2: 3471 | version "2.1.2" 3472 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3473 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 3474 | 3475 | yargs-parser@^4.0.2, yargs-parser@^4.2.0: 3476 | version "4.2.1" 3477 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 3478 | integrity sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw= 3479 | dependencies: 3480 | camelcase "^3.0.0" 3481 | 3482 | yargs@^6.4.0: 3483 | version "6.6.0" 3484 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 3485 | integrity sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg= 3486 | dependencies: 3487 | camelcase "^3.0.0" 3488 | cliui "^3.2.0" 3489 | decamelize "^1.1.1" 3490 | get-caller-file "^1.0.1" 3491 | os-locale "^1.4.0" 3492 | read-pkg-up "^1.0.1" 3493 | require-directory "^2.1.1" 3494 | require-main-filename "^1.0.1" 3495 | set-blocking "^2.0.0" 3496 | string-width "^1.0.2" 3497 | which-module "^1.0.0" 3498 | y18n "^3.2.1" 3499 | yargs-parser "^4.2.0" 3500 | 3501 | yargs@~3.10.0: 3502 | version "3.10.0" 3503 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3504 | dependencies: 3505 | camelcase "^1.0.2" 3506 | cliui "^2.1.0" 3507 | decamelize "^1.0.0" 3508 | window-size "0.1.0" 3509 | --------------------------------------------------------------------------------