From 7d083c498f2053d97a4f9d852979911f1c87ac3d Mon Sep 17 00:00:00 2001 From: Shawn Napora <17864647+shawnnapora@users.noreply.github.com> Date: Thu, 8 Aug 2019 13:07:40 -0400 Subject: [PATCH] Update to labeler v2 (#4) * labeler v2 * update docs --- .github/main.workflow | 14 - CODE_OF_CONDUCT.md | 76 - CONTRIBUTING.md | 33 - Dockerfile | 20 - LICENSE.md => LICENSE | 13 +- README.md | 68 +- THIRD_PARTY_NOTICE.md | 1325 ------ __tests__/main.test.ts | 4 + action.yml | 12 + docs/contributors.md | 22 + entrypoint.js | 103 - jest.config.js | 11 + package-lock.json | 5984 ++++++++++++++++++++++++-- package.json | 53 +- src/main.ts | 146 + toolkit/actions-core-0.0.0.tgz | Bin 0 -> 3889 bytes toolkit/actions-exec-0.0.0.tgz | Bin 0 -> 11281 bytes toolkit/actions-github-0.0.0.tgz | Bin 0 -> 3106 bytes toolkit/actions-io-0.0.0.tgz | Bin 0 -> 8628 bytes toolkit/actions-tool-cache-0.0.0.tgz | Bin 0 -> 118459 bytes tsconfig.json | 63 + 21 files changed, 5873 insertions(+), 2074 deletions(-) delete mode 100644 .github/main.workflow delete mode 100644 CODE_OF_CONDUCT.md delete mode 100644 CONTRIBUTING.md delete mode 100644 Dockerfile rename LICENSE.md => LICENSE (85%) delete mode 100644 THIRD_PARTY_NOTICE.md create mode 100644 __tests__/main.test.ts create mode 100644 action.yml create mode 100644 docs/contributors.md delete mode 100644 entrypoint.js create mode 100644 jest.config.js create mode 100644 src/main.ts create mode 100644 toolkit/actions-core-0.0.0.tgz create mode 100644 toolkit/actions-exec-0.0.0.tgz create mode 100644 toolkit/actions-github-0.0.0.tgz create mode 100644 toolkit/actions-io-0.0.0.tgz create mode 100644 toolkit/actions-tool-cache-0.0.0.tgz create mode 100644 tsconfig.json diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index 0dedb65..0000000 --- a/.github/main.workflow +++ /dev/null @@ -1,14 +0,0 @@ -workflow "Lint JavaScript" { - on = "push" - resolves = ["Lint", "Formatting"] -} - -action "Lint" { - uses = "actions/npm@v2.0.0" - runs = "npx eslint --no-eslintrc --env es6 --parser-options ecmaVersion:2018 entrypoint.js" -} - -action "Formatting" { - uses = "actions/npm@v2.0.0" - runs = "npx prettier -c --no-semi --no-bracket-spacing --single-quote entrypoint.js" -} \ No newline at end of file diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index 2ba83bd..0000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,76 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -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, sex characteristics, gender identity and expression, -level of experience, education, socio-economic status, nationality, personal -appearance, race, religion, or sexual identity and orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -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. - -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. - -## Scope - -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. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at [INSERT EMAIL ADDRESS]. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and 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. - -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. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index fc43298..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,33 +0,0 @@ -## Contributing - -[fork]: https://github.com/actions/labeler/fork -[pr]: https://github.com/actions/labeler/compare -[code-of-conduct]: https://github.com/actions/labeler/blob/master/CODE_OF_CONDUCT.md - -Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great. - -Contributions to this project are [released](https://help.github.com/articles/github-terms-of-service/#6-contributions-under-repository-license) to the public under the [project's open source license](LICENSE.md). - -Please note that this project is released with a [Contributor Code of Conduct][code-of-conduct]. By participating in this project you agree to abide by its terms. - -## Submitting a pull request - -0. [Fork][fork] and clone the repository -0. Configure and install the dependencies: `script/bootstrap` -0. Make sure the tests pass on your machine: `rake` -0. Create a new branch: `git checkout -b my-branch-name` -0. Make your change, add tests, and make sure the tests still pass -0. Push to your fork and [submit a pull request][pr] -0. Pat your self on the back and wait for your pull request to be reviewed and merged. - -Here are a few things you can do that will increase the likelihood of your pull request being accepted: - -- Write tests. -- Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests. -- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html). - -## Resources - -- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/) -- [Using Pull Requests](https://help.github.com/articles/about-pull-requests/) -- [GitHub Help](https://help.github.com) diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 2938cef..0000000 --- a/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -FROM node:slim - -LABEL "name"="labeler" -LABEL "maintainer"="GitHub Actions " -LABEL "version"="1.0.0" - -LABEL "com.github.actions.name"="PR Labeller" -LABEL "com.github.actions.description"="An action that labels pull requests according to changed files" -LABEL "com.github.actions.icon"="tag" -LABEL "com.github.actions.color"="orange" - -COPY *.md / - -COPY package*.json ./ - -RUN npm ci - -COPY entrypoint.js /entrypoint.js - -ENTRYPOINT ["node", "/entrypoint.js"] diff --git a/LICENSE.md b/LICENSE similarity index 85% rename from LICENSE.md rename to LICENSE index 331b241..a426ef2 100644 --- a/LICENSE.md +++ b/LICENSE @@ -1,6 +1,7 @@ -MIT License -Copyright (c) 2019 GitHub +The MIT License (MIT) + +Copyright (c) 2018 GitHub, Inc. and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -9,13 +10,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index 12792e9..2dd5001 100644 --- a/README.md +++ b/README.md @@ -1,50 +1,32 @@ -# Pull Request Labeller +# Pull Request Labeler -This action labels pull requests by comparing their changed files to a configuration file in the repository. +Pull request labeler triages PRs based on the paths that are modified in the PR. -For example, a configuration file at `.github/triage.yml` may look like this: +To use, create a `.github/labeler.yml` file with a list of labels and [minimatch](https://github.com/isaacs/minimatch) +globs to match to apply the label. -```yaml -design: - - src/frontend/**/*.css - - src/frontend/**/*.png - -server: - - src/server/**/* +Example: ``` +label1: +- example1/**/* -And the action would be used like this: - -```workflow -workflow "Apply PR labels" { - on = "pull_request" - resolves = "Apply labels" -} - -action "On sync" { - uses = "actions/bin/filter@master" - args = "action synchronize" -} +label2: example2/* -action "Apply labels" { - uses = "actions/labeller@v1.0.0" - needs = "On sync" - env = {LABEL_SPEC_FILE=".github/triage.yml"} - secrets = ["GITHUB_TOKEN"] -} +label3: +- example3/* +- example3/**/*.yml +``` +Then create a workflow: +``` +name: "Pull Request Labeler" +on: +- pull-request + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" ``` - -Now, whenever a user pushes to a pull request, this action will determine whether any changed files in that pull request match the specification file (note: this action uses [minimatch](https://github.com/isaacs/minimatch) to determine matches). If there are matches, the action will apply the appropriate labels to the pull request. - -## Contributing - -Check out [this doc](CONTRIBUTING.md). - -## License - -This action is released under the [MIT license](LICENSE.md). -Container images built with this project include third party materials. See [THIRD_PARTY_NOTICE.md](THIRD_PARTY_NOTICE.md) for details. - -## Current Status - -This action is in active development. diff --git a/THIRD_PARTY_NOTICE.md b/THIRD_PARTY_NOTICE.md deleted file mode 100644 index dbfa78a..0000000 --- a/THIRD_PARTY_NOTICE.md +++ /dev/null @@ -1,1325 +0,0 @@ -# Third Party Notices and Information - -Container images built with this project include third party materials; see below for license and other copyright information. - -Certain open source code is available in container images, or online as noted below, or you may send a request for source code including identification of the container, the open source component name, and version number, to: `opensource@github.com`. - -Notwithstanding any other terms, you may reverse engineer this software to the extent required to debug changes to any libraries licensed under the GNU Lesser General Public License for your own use. - -## Debian packages - -License and other copyright information for each package is included in the image at `/usr/share/doc/{package}/copyright`. - -Source for each package is available at `https://packages.debian.org/source/{package}`. - -## Node modules - -License and other copyright information for each module is included in the image under `node_modules/{module}`. - -More information for each package can be found at `https://www.npmjs.com/package/{package}` - -## Node - -``` -Node.js is licensed for use as follows: - -""" -Copyright Node.js contributors. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - -This license applies to parts of Node.js originating from the -https://github.com/joyent/node repository: - -""" -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - -The Node.js license applies to all parts of Node.js that are not externally -maintained libraries. - -The externally maintained libraries used by Node.js are: - -- Acorn, located at deps/acorn, is licensed as follows: - """ - Copyright (C) 2012-2018 by various contributors (see AUTHORS) - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - """ - -- c-ares, located at deps/cares, is licensed as follows: - """ - Copyright (c) 2007 - 2016, Daniel Stenberg with many contributors, see AUTHORS - file. - - Copyright 1998 by the Massachusetts Institute of Technology. - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, provided that - the above copyright notice appear in all copies and that both that copyright - notice and this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior permission. - M.I.T. makes no representations about the suitability of this software for any - purpose. It is provided "as is" without express or implied warranty. - """ - -- HTTP Parser, located at deps/http_parser, is licensed as follows: - """ - Copyright Joyent, Inc. and other Node contributors. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - """ - -- ICU, located at deps/icu-small, is licensed as follows: - """ - COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) - - Copyright © 1991-2018 Unicode, Inc. All rights reserved. - Distributed under the Terms of Use in http://www.unicode.org/copyright.html. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of the Unicode data files and any associated documentation - (the "Data Files") or Unicode software and any associated documentation - (the "Software") to deal in the Data Files or Software - without restriction, including without limitation the rights to use, - copy, modify, merge, publish, distribute, and/or sell copies of - the Data Files or Software, and to permit persons to whom the Data Files - or Software are furnished to do so, provided that either - (a) this copyright and permission notice appear with all copies - of the Data Files or Software, or - (b) this copyright and permission notice appear in associated - Documentation. - - THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF - ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE - WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT OF THIRD PARTY RIGHTS. - IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS - NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL - DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, - DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER - TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THE DATA FILES OR SOFTWARE. - - Except as contained in this notice, the name of a copyright holder - shall not be used in advertising or otherwise to promote the sale, - use or other dealings in these Data Files or Software without prior - written authorization of the copyright holder. - - --------------------- - - Third-Party Software Licenses - - This section contains third-party software notices and/or additional - terms for licensed third-party software components included within ICU - libraries. - - 1. ICU License - ICU 1.8.1 to ICU 57.1 - - COPYRIGHT AND PERMISSION NOTICE - - Copyright (c) 1995-2016 International Business Machines Corporation and others - All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, and/or sell copies of the Software, and to permit persons - to whom the Software is furnished to do so, provided that the above - copyright notice(s) and this permission notice appear in all copies of - the Software and that both the above copyright notice(s) and this - permission notice appear in supporting documentation. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT - OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR - HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY - SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER - RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF - CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - Except as contained in this notice, the name of a copyright holder - shall not be used in advertising or otherwise to promote the sale, use - or other dealings in this Software without prior written authorization - of the copyright holder. - - All trademarks and registered trademarks mentioned herein are the - property of their respective owners. - - 2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt) - - # The Google Chrome software developed by Google is licensed under - # the BSD license. Other software included in this distribution is - # provided under other licenses, as set forth below. - # - # The BSD License - # http://opensource.org/licenses/bsd-license.php - # Copyright (C) 2006-2008, Google Inc. - # - # All rights reserved. - # - # Redistribution and use in source and binary forms, with or without - # modification, are permitted provided that the following conditions are met: - # - # Redistributions of source code must retain the above copyright notice, - # this list of conditions and the following disclaimer. - # Redistributions in binary form must reproduce the above - # copyright notice, this list of conditions and the following - # disclaimer in the documentation and/or other materials provided with - # the distribution. - # Neither the name of Google Inc. nor the names of its - # contributors may be used to endorse or promote products derived from - # this software without specific prior written permission. - # - # - # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - # - # - # The word list in cjdict.txt are generated by combining three word lists - # listed below with further processing for compound word breaking. The - # frequency is generated with an iterative training against Google web - # corpora. - # - # * Libtabe (Chinese) - # - https://sourceforge.net/project/?group_id=1519 - # - Its license terms and conditions are shown below. - # - # * IPADIC (Japanese) - # - http://chasen.aist-nara.ac.jp/chasen/distribution.html - # - Its license terms and conditions are shown below. - # - # ---------COPYING.libtabe ---- BEGIN-------------------- - # - # /* - # * Copyright (c) 1999 TaBE Project. - # * Copyright (c) 1999 Pai-Hsiang Hsiao. - # * All rights reserved. - # * - # * Redistribution and use in source and binary forms, with or without - # * modification, are permitted provided that the following conditions - # * are met: - # * - # * . Redistributions of source code must retain the above copyright - # * notice, this list of conditions and the following disclaimer. - # * . Redistributions in binary form must reproduce the above copyright - # * notice, this list of conditions and the following disclaimer in - # * the documentation and/or other materials provided with the - # * distribution. - # * . Neither the name of the TaBE Project nor the names of its - # * contributors may be used to endorse or promote products derived - # * from this software without specific prior written permission. - # * - # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - # * OF THE POSSIBILITY OF SUCH DAMAGE. - # */ - # - # /* - # * Copyright (c) 1999 Computer Systems and Communication Lab, - # * Institute of Information Science, Academia - # * Sinica. All rights reserved. - # * - # * Redistribution and use in source and binary forms, with or without - # * modification, are permitted provided that the following conditions - # * are met: - # * - # * . Redistributions of source code must retain the above copyright - # * notice, this list of conditions and the following disclaimer. - # * . Redistributions in binary form must reproduce the above copyright - # * notice, this list of conditions and the following disclaimer in - # * the documentation and/or other materials provided with the - # * distribution. - # * . Neither the name of the Computer Systems and Communication Lab - # * nor the names of its contributors may be used to endorse or - # * promote products derived from this software without specific - # * prior written permission. - # * - # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - # * OF THE POSSIBILITY OF SUCH DAMAGE. - # */ - # - # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, - # University of Illinois - # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 - # - # ---------------COPYING.libtabe-----END-------------------------------- - # - # - # ---------------COPYING.ipadic-----BEGIN------------------------------- - # - # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science - # and Technology. All Rights Reserved. - # - # Use, reproduction, and distribution of this software is permitted. - # Any copy of this software, whether in its original form or modified, - # must include both the above copyright notice and the following - # paragraphs. - # - # Nara Institute of Science and Technology (NAIST), - # the copyright holders, disclaims all warranties with regard to this - # software, including all implied warranties of merchantability and - # fitness, in no event shall NAIST be liable for - # any special, indirect or consequential damages or any damages - # whatsoever resulting from loss of use, data or profits, whether in an - # action of contract, negligence or other tortuous action, arising out - # of or in connection with the use or performance of this software. - # - # A large portion of the dictionary entries - # originate from ICOT Free Software. The following conditions for ICOT - # Free Software applies to the current dictionary as well. - # - # Each User may also freely distribute the Program, whether in its - # original form or modified, to any third party or parties, PROVIDED - # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear - # on, or be attached to, the Program, which is distributed substantially - # in the same form as set out herein and that such intended - # distribution, if actually made, will neither violate or otherwise - # contravene any of the laws and regulations of the countries having - # jurisdiction over the User or the intended distribution itself. - # - # NO WARRANTY - # - # The program was produced on an experimental basis in the course of the - # research and development conducted during the project and is provided - # to users as so produced on an experimental basis. Accordingly, the - # program is provided without any warranty whatsoever, whether express, - # implied, statutory or otherwise. The term "warranty" used herein - # includes, but is not limited to, any warranty of the quality, - # performance, merchantability and fitness for a particular purpose of - # the program and the nonexistence of any infringement or violation of - # any right of any third party. - # - # Each user of the program will agree and understand, and be deemed to - # have agreed and understood, that there is no warranty whatsoever for - # the program and, accordingly, the entire risk arising from or - # otherwise connected with the program is assumed by the user. - # - # Therefore, neither ICOT, the copyright holder, or any other - # organization that participated in or was otherwise related to the - # development of the program and their respective officials, directors, - # officers and other employees shall be held liable for any and all - # damages, including, without limitation, general, special, incidental - # and consequential damages, arising out of or otherwise in connection - # with the use or inability to use the program or any product, material - # or result produced or otherwise obtained by using the program, - # regardless of whether they have been advised of, or otherwise had - # knowledge of, the possibility of such damages at any time during the - # project or thereafter. Each user will be deemed to have agreed to the - # foregoing by his or her commencement of use of the program. The term - # "use" as used herein includes, but is not limited to, the use, - # modification, copying and distribution of the program and the - # production of secondary products from the program. - # - # In the case where the program, whether in its original form or - # modified, was distributed or delivered to or received by a user from - # any person, organization or entity other than ICOT, unless it makes or - # grants independently of ICOT any specific warranty to the user in - # writing, such person, organization or entity, will also be exempted - # from and not be held liable to the user for any such damages as noted - # above as far as the program is concerned. - # - # ---------------COPYING.ipadic-----END---------------------------------- - - 3. Lao Word Break Dictionary Data (laodict.txt) - - # Copyright (c) 2013 International Business Machines Corporation - # and others. All Rights Reserved. - # - # Project: http://code.google.com/p/lao-dictionary/ - # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt - # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt - # (copied below) - # - # This file is derived from the above dictionary, with slight - # modifications. - # ---------------------------------------------------------------------- - # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. - # All rights reserved. - # - # Redistribution and use in source and binary forms, with or without - # modification, - # are permitted provided that the following conditions are met: - # - # - # Redistributions of source code must retain the above copyright notice, this - # list of conditions and the following disclaimer. Redistributions in - # binary form must reproduce the above copyright notice, this list of - # conditions and the following disclaimer in the documentation and/or - # other materials provided with the distribution. - # - # - # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - # OF THE POSSIBILITY OF SUCH DAMAGE. - # -------------------------------------------------------------------------- - - 4. Burmese Word Break Dictionary Data (burmesedict.txt) - - # Copyright (c) 2014 International Business Machines Corporation - # and others. All Rights Reserved. - # - # This list is part of a project hosted at: - # github.com/kanyawtech/myanmar-karen-word-lists - # - # -------------------------------------------------------------------------- - # Copyright (c) 2013, LeRoy Benjamin Sharon - # All rights reserved. - # - # Redistribution and use in source and binary forms, with or without - # modification, are permitted provided that the following conditions - # are met: Redistributions of source code must retain the above - # copyright notice, this list of conditions and the following - # disclaimer. Redistributions in binary form must reproduce the - # above copyright notice, this list of conditions and the following - # disclaimer in the documentation and/or other materials provided - # with the distribution. - # - # Neither the name Myanmar Karen Word Lists, nor the names of its - # contributors may be used to endorse or promote products derived - # from this software without specific prior written permission. - # - # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS - # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - # SUCH DAMAGE. - # -------------------------------------------------------------------------- - - 5. Time Zone Database - - ICU uses the public domain data and code derived from Time Zone - Database for its time zone support. The ownership of the TZ database - is explained in BCP 175: Procedure for Maintaining the Time Zone - Database section 7. - - # 7. Database Ownership - # - # The TZ database itself is not an IETF Contribution or an IETF - # document. Rather it is a pre-existing and regularly updated work - # that is in the public domain, and is intended to remain in the - # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do - # not apply to the TZ Database or contributions that individuals make - # to it. Should any claims be made and substantiated against the TZ - # Database, the organization that is providing the IANA - # Considerations defined in this RFC, under the memorandum of - # understanding with the IETF, currently ICANN, may act in accordance - # with all competent court orders. No ownership claims will be made - # by ICANN or the IETF Trust on the database or the code. Any person - # making a contribution to the database or code waives all rights to - # future claims in that contribution or in the TZ Database. - - 6. Google double-conversion - - Copyright 2006-2011, the V8 project authors. All rights reserved. - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - """ - -- libuv, located at deps/uv, is licensed as follows: - """ - libuv is licensed for use as follows: - - ==== - Copyright (c) 2015-present libuv project contributors. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - ==== - - This license applies to parts of libuv originating from the - https://github.com/joyent/libuv repository: - - ==== - - Copyright Joyent, Inc. and other Node contributors. All rights reserved. - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - - ==== - - This license applies to all parts of libuv that are not externally - maintained libraries. - - The externally maintained libraries used by libuv are: - - - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. - - - inet_pton and inet_ntop implementations, contained in src/inet.c, are - copyright the Internet Systems Consortium, Inc., and licensed under the ISC - license. - - - stdint-msvc2008.h (from msinttypes), copyright Alexander Chemeris. Three - clause BSD license. - - - pthread-fixes.c, copyright Google Inc. and Sony Mobile Communications AB. - Three clause BSD license. - - - android-ifaddrs.h, android-ifaddrs.c, copyright Berkeley Software Design - Inc, Kenneth MacKay and Emergya (Cloud4all, FP7/2007-2013, grant agreement - n° 289016). Three clause BSD license. - """ - -- OpenSSL, located at deps/openssl, is licensed as follows: - """ - Copyright (c) 1998-2018 The OpenSSL Project. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - - 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - - 5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - - THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - ==================================================================== - - This product includes cryptographic software written by Eric Young - (eay@cryptsoft.com). This product includes software written by Tim - Hudson (tjh@cryptsoft.com). - """ - -- Punycode.js, located at lib/punycode.js, is licensed as follows: - """ - Copyright Mathias Bynens - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - """ - -- V8, located at deps/v8, is licensed as follows: - """ - This license applies to all parts of V8 that are not externally - maintained libraries. The externally maintained libraries used by V8 - are: - - - PCRE test suite, located in - test/mjsunit/third_party/regexp-pcre/regexp-pcre.js. This is based on the - test suite from PCRE-7.3, which is copyrighted by the University - of Cambridge and Google, Inc. The copyright notice and license - are embedded in regexp-pcre.js. - - - Layout tests, located in test/mjsunit/third_party/object-keys. These are - based on layout tests from webkit.org which are copyrighted by - Apple Computer, Inc. and released under a 3-clause BSD license. - - - Strongtalk assembler, the basis of the files assembler-arm-inl.h, - assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h, - assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h, - assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h, - assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h. - This code is copyrighted by Sun Microsystems Inc. and released - under a 3-clause BSD license. - - - Valgrind client API header, located at third_party/valgrind/valgrind.h - This is release under the BSD license. - - - antlr4 parser generator Cpp library located in third_party/antlr4 - This is release under the BSD license. - - These libraries have their own licenses; we recommend you read them, - as their terms may differ from the terms below. - - Further license information can be found in LICENSE files located in - sub-directories. - - Copyright 2014, the V8 project authors. All rights reserved. - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - """ - -- zlib, located at deps/zlib, is licensed as follows: - """ - zlib.h -- interface of the 'zlib' general purpose compression library - version 1.2.11, January 15th, 2017 - - Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Jean-loup Gailly Mark Adler - jloup@gzip.org madler@alumni.caltech.edu - """ - -- npm, located at deps/npm, is licensed as follows: - """ - The npm application - Copyright (c) npm, Inc. and Contributors - Licensed on the terms of The Artistic License 2.0 - - Node package dependencies of the npm application - Copyright (c) their respective copyright owners - Licensed on their respective license terms - - The npm public registry at https://registry.npmjs.org - and the npm website at https://www.npmjs.com - Operated by npm, Inc. - Use governed by terms published on https://www.npmjs.com - - "Node.js" - Trademark Joyent, Inc., https://joyent.com - Neither npm nor npm, Inc. are affiliated with Joyent, Inc. - - The Node.js application - Project of Node Foundation, https://nodejs.org - - The npm Logo - Copyright (c) Mathias Pettersson and Brian Hammond - - "Gubblebum Blocky" typeface - Copyright (c) Tjarda Koster, https://jelloween.deviantart.com - Used with permission - - -------- - - The Artistic License 2.0 - - Copyright (c) 2000-2006, The Perl Foundation. - - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - This license establishes the terms under which a given free software - Package may be copied, modified, distributed, and/or redistributed. - The intent is that the Copyright Holder maintains some artistic - control over the development of that Package while still keeping the - Package available as open source and free software. - - You are always permitted to make arrangements wholly outside of this - license directly with the Copyright Holder of a given Package. If the - terms of this license do not permit the full use that you propose to - make of the Package, you should contact the Copyright Holder and seek - a different licensing arrangement. - - Definitions - - "Copyright Holder" means the individual(s) or organization(s) - named in the copyright notice for the entire Package. - - "Contributor" means any party that has contributed code or other - material to the Package, in accordance with the Copyright Holder's - procedures. - - "You" and "your" means any person who would like to copy, - distribute, or modify the Package. - - "Package" means the collection of files distributed by the - Copyright Holder, and derivatives of that collection and/or of - those files. A given Package may consist of either the Standard - Version, or a Modified Version. - - "Distribute" means providing a copy of the Package or making it - accessible to anyone else, or in the case of a company or - organization, to others outside of your company or organization. - - "Distributor Fee" means any fee that you charge for Distributing - this Package or providing support for this Package to another - party. It does not mean licensing fees. - - "Standard Version" refers to the Package if it has not been - modified, or has been modified only in ways explicitly requested - by the Copyright Holder. - - "Modified Version" means the Package, if it has been changed, and - such changes were not explicitly requested by the Copyright - Holder. - - "Original License" means this Artistic License as Distributed with - the Standard Version of the Package, in its current version or as - it may be modified by The Perl Foundation in the future. - - "Source" form means the source code, documentation source, and - configuration files for the Package. - - "Compiled" form means the compiled bytecode, object code, binary, - or any other form resulting from mechanical transformation or - translation of the Source form. - - Permission for Use and Modification Without Distribution - - (1) You are permitted to use the Standard Version and create and use - Modified Versions for any purpose without restriction, provided that - you do not Distribute the Modified Version. - - Permissions for Redistribution of the Standard Version - - (2) You may Distribute verbatim copies of the Source form of the - Standard Version of this Package in any medium without restriction, - either gratis or for a Distributor Fee, provided that you duplicate - all of the original copyright notices and associated disclaimers. At - your discretion, such verbatim copies may or may not include a - Compiled form of the Package. - - (3) You may apply any bug fixes, portability changes, and other - modifications made available from the Copyright Holder. The resulting - Package will still be considered the Standard Version, and as such - will be subject to the Original License. - - Distribution of Modified Versions of the Package as Source - - (4) You may Distribute your Modified Version as Source (either gratis - or for a Distributor Fee, and with or without a Compiled form of the - Modified Version) provided that you clearly document how it differs - from the Standard Version, including, but not limited to, documenting - any non-standard features, executables, or modules, and provided that - you do at least ONE of the following: - - (a) make the Modified Version available to the Copyright Holder - of the Standard Version, under the Original License, so that the - Copyright Holder may include your modifications in the Standard - Version. - - (b) ensure that installation of your Modified Version does not - prevent the user installing or running the Standard Version. In - addition, the Modified Version must bear a name that is different - from the name of the Standard Version. - - (c) allow anyone who receives a copy of the Modified Version to - make the Source form of the Modified Version available to others - under - - (i) the Original License or - - (ii) a license that permits the licensee to freely copy, - modify and redistribute the Modified Version using the same - licensing terms that apply to the copy that the licensee - received, and requires that the Source form of the Modified - Version, and of any works derived from it, be made freely - available in that license fees are prohibited but Distributor - Fees are allowed. - - Distribution of Compiled Forms of the Standard Version - or Modified Versions without the Source - - (5) You may Distribute Compiled forms of the Standard Version without - the Source, provided that you include complete instructions on how to - get the Source of the Standard Version. Such instructions must be - valid at the time of your distribution. If these instructions, at any - time while you are carrying out such distribution, become invalid, you - must provide new instructions on demand or cease further distribution. - If you provide valid instructions or cease distribution within thirty - days after you become aware that the instructions are invalid, then - you do not forfeit any of your rights under this license. - - (6) You may Distribute a Modified Version in Compiled form without - the Source, provided that you comply with Section 4 with respect to - the Source of the Modified Version. - - Aggregating or Linking the Package - - (7) You may aggregate the Package (either the Standard Version or - Modified Version) with other packages and Distribute the resulting - aggregation provided that you do not charge a licensing fee for the - Package. Distributor Fees are permitted, and licensing fees for other - components in the aggregation are permitted. The terms of this license - apply to the use and Distribution of the Standard or Modified Versions - as included in the aggregation. - - (8) You are permitted to link Modified and Standard Versions with - other works, to embed the Package in a larger work of your own, or to - build stand-alone binary or bytecode versions of applications that - include the Package, and Distribute the result without restriction, - provided the result does not expose a direct interface to the Package. - - Items That are Not Considered Part of a Modified Version - - (9) Works (including, but not limited to, modules and scripts) that - merely extend or make use of the Package, do not, by themselves, cause - the Package to be a Modified Version. In addition, such works are not - considered parts of the Package itself, and are not subject to the - terms of this license. - - General Provisions - - (10) Any use, modification, and distribution of the Standard or - Modified Versions is governed by this Artistic License. By using, - modifying or distributing the Package, you accept this license. Do not - use, modify, or distribute the Package, if you do not accept this - license. - - (11) If your Modified Version has been derived from a Modified - Version made by someone other than you, you are nevertheless required - to ensure that your Modified Version complies with the requirements of - this license. - - (12) This license does not grant you the right to use any trademark, - service mark, tradename, or logo of the Copyright Holder. - - (13) This license includes the non-exclusive, worldwide, - free-of-charge patent license to make, have made, use, offer to sell, - sell, import and otherwise transfer the Package with respect to any - patent claims licensable by the Copyright Holder that are necessarily - infringed by the Package. If you institute patent litigation - (including a cross-claim or counterclaim) against any party alleging - that the Package constitutes direct or contributory patent - infringement, then this Artistic License to you shall terminate on the - date that such litigation is filed. - - (14) Disclaimer of Warranty: - THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS - IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED - WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR - NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL - LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL - DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -------- - """ - -- GYP, located at tools/gyp, is licensed as follows: - """ - Copyright (c) 2009 Google Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - """ - -- inspector_protocol, located at tools/inspector_protocol, is licensed as follows: - """ - // Copyright 2016 The Chromium Authors. All rights reserved. - // - // Redistribution and use in source and binary forms, with or without - // modification, are permitted provided that the following conditions are - // met: - // - // * Redistributions of source code must retain the above copyright - // notice, this list of conditions and the following disclaimer. - // * Redistributions in binary form must reproduce the above - // copyright notice, this list of conditions and the following disclaimer - // in the documentation and/or other materials provided with the - // distribution. - // * Neither the name of Google Inc. nor the names of its - // contributors may be used to endorse or promote products derived from - // this software without specific prior written permission. - // - // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - """ - -- jinja2, located at tools/jinja2, is licensed as follows: - """ - Copyright (c) 2009 by the Jinja Team, see AUTHORS for more details. - - Some rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - * The names of the contributors may not be used to endorse or - promote products derived from this software without specific - prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - """ - -- markupsafe, located at tools/markupsafe, is licensed as follows: - """ - Copyright (c) 2010 by Armin Ronacher and contributors. See AUTHORS - for more details. - - Some rights reserved. - - Redistribution and use in source and binary forms of the software as well - as documentation, with or without modification, are permitted provided - that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - * The names of the contributors may not be used to endorse or - promote products derived from this software without specific - prior written permission. - - THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT - NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. - """ - -- cpplint.py, located at tools/cpplint.py, is licensed as follows: - """ - Copyright (c) 2009 Google Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - """ - -- ESLint, located at tools/node_modules/eslint, is licensed as follows: - """ - Copyright JS Foundation and other contributors, https://js.foundation - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - """ - -- babel-eslint, located at tools/node_modules/babel-eslint, is licensed as follows: - """ - Copyright (c) 2014-2016 Sebastian McKenzie - - MIT License - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - """ - -- gtest, located at deps/gtest, is licensed as follows: - """ - Copyright 2008, Google Inc. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - """ - -- nghttp2, located at deps/nghttp2, is licensed as follows: - """ - The MIT License - - Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa - Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - """ - -- node-inspect, located at deps/node-inspect, is licensed as follows: - """ - Copyright Node.js contributors. All rights reserved. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to - deal in the Software without restriction, including without limitation the - rights to use, copy, modify, merge, publish, distribute, sublicense, and/or - sell copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS - IN THE SOFTWARE. - """ -``` diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts new file mode 100644 index 0000000..7df9bad --- /dev/null +++ b/__tests__/main.test.ts @@ -0,0 +1,4 @@ +describe('TODO - Add a test suite', () => { + it('TODO - Add a test', async () => { + }); +}); diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..819e661 --- /dev/null +++ b/action.yml @@ -0,0 +1,12 @@ +name: 'Pull Request Triager' +description: 'Label pull requests by files altered' +author: 'GitHub' +inputs: + repo-token: + description: 'The GITHUB_TOKEN secret' + configuration-path: + description: 'The path for the label configurations' + default: '.github/labeler.yml' +runs: + using: 'node12' + main: 'lib/main.js' diff --git a/docs/contributors.md b/docs/contributors.md new file mode 100644 index 0000000..fece2ea --- /dev/null +++ b/docs/contributors.md @@ -0,0 +1,22 @@ +# Contributors + +### Checkin + +- Do checkin source (src) +- Do checkin build output (lib) +- Do checkin runtime node_modules +- Do not checkin devDependency node_modules (husky can help see below) + +### devDependencies + +In order to handle correctly checking in node_modules without devDependencies, we run [Husky](https://github.com/typicode/husky) before each commit. +This step ensures that formatting and checkin rules are followed and that devDependencies are excluded. To make sure Husky runs correctly, please use the following workflow: + +``` +npm install # installs all devDependencies including Husky +git add abc.ext # Add the files you've changed. This should include files in src, lib, and node_modules (see above) +git commit -m "Informative commit message" # Commit. This will run Husky +``` + +During the commit step, Husky will take care of formatting all files with [Prettier](https://github.com/prettier/prettier) as well as pruning out devDependencies using `npm prune --production`. +It will also make sure these changes are appropriately included in your commit (no further work is needed) \ No newline at end of file diff --git a/entrypoint.js b/entrypoint.js deleted file mode 100644 index f19c9de..0000000 --- a/entrypoint.js +++ /dev/null @@ -1,103 +0,0 @@ -const {Toolkit} = require('actions-toolkit') -const fs = require('fs') -const minimatch = require('minimatch') -const yaml = require('js-yaml') - -const tools = new Toolkit() - -main().catch(err => { - tools.log.fatal(err) - tools.exit.failure() -}) - -async function main() { - const specFile = readSpecFile() - const changedFiles = await getChangedFiles() - - for (const label in specFile) { - let globs - - if (typeof specFile[label] === 'string') { - globs = [specFile[label]] - } else if (Array.isArray(specFile[label])) { - globs = specFile[label] - } else { - throw new Error('Spec file values must be strings or arrays of strings') - } - - for (const glob of globs) { - for (const changedFile of changedFiles) { - if (minimatch(changedFile, glob)) { - await tools.github.issues.addLabels( - tools.context.issue({labels: [label]}) - ) - } - } - } - } -} - -async function getChangedFiles(changedFiles = [], cursor = null) { - const [nextCursor, paths] = await queryChangedFiles(cursor) - - if (paths.length < 100) { - return changedFiles.concat(paths) - } - - return getChangedFiles(changedFiles.concat(paths), nextCursor) -} - -async function queryChangedFiles(cursor) { - const result = await tools.github.graphql( - ` - query($owner: String!, $repo: String!, $number: Int!, $cursor: String) { - repository(owner: $owner, name: $repo) { - pullRequest(number: $number) { - files(first: 100, after: $cursor) { - edges { - cursor - } - - nodes { - path - } - } - } - } - } - `, - tools.context.issue({cursor}) - ) - - const nextCursor = result.repository.pullRequest.files.edges.cursor - const paths = result.repository.pullRequest.files.nodes.map(node => node.path) - return [nextCursor, paths] -} - -function readSpecFile() { - const specFilePath = process.env.LABEL_SPEC_FILE - - let specFile - - try { - specFile = yaml.safeLoad(fs.readFileSync(specFilePath)) - } catch (err) { - if (err.code === 'ERR_INVALID_ARG_TYPE') { - tools.log.error('You must provide a LABEL_SPEC_FILE environment variable') - } - - if (err.code === 'ENOENT') { - tools.log.error( - `Expected a configuration file at "${specFilePath}", but no file was found` - ) - } - - if (err.name === 'YAMLException') { - tools.log.error('Configuration file is not valid YAML') - } - - throw err - } - - return specFile -} diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..563d4cc --- /dev/null +++ b/jest.config.js @@ -0,0 +1,11 @@ +module.exports = { + clearMocks: true, + moduleFileExtensions: ['js', 'ts'], + testEnvironment: 'node', + testMatch: ['**/*.test.ts'], + testRunner: 'jest-circus/runner', + transform: { + '^.+\\.ts$': 'ts-jest' + }, + verbose: true +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index ff9109d..c428d86 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,591 +1,5572 @@ { - "name": "action-labeller", - "requires": true, + "name": "node12-template-action", + "version": "0.0.0", "lockfileVersion": 1, + "requires": true, "dependencies": { - "@octokit/endpoint": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-3.2.3.tgz", - "integrity": "sha512-yUPCt4vMIOclox13CUxzuKiPJIFo46b/6GhUnUTw5QySczN1L0DtSxgmIZrZV4SAb9EyAqrceoyrWoYVnfF2AA==", + "@actions/core": { + "version": "file:toolkit/actions-core-0.0.0.tgz", + "integrity": "sha512-P+mC79gXC2yvyU0+RDctxKUI1Q3tNruB+aSmFI47j2H0DylxtDEgycW9WXwt/zCY62lfwfvBoGKpuJRvFHDqpw==" + }, + "@actions/exec": { + "version": "file:toolkit/actions-exec-0.0.0.tgz", + "integrity": "sha512-HHObusC4p1RElxIlrrN0sY/cweBYl+jKm3J/XWHPQZMipgJXB/dkVhUfl4KqH3Vim7oM2KjCGSfn+vTYrqVH3A==" + }, + "@actions/github": { + "version": "file:toolkit/actions-github-0.0.0.tgz", + "integrity": "sha512-CByX5VIagC5BqGwsHD9Qt5MfN+H6GDC9qQl+MIUipaHTc89sUG/vAY/xQDS9vxuuRwrxbdERwKO3dR6U1BSziw==", "requires": { - "deepmerge": "3.2.0", - "is-plain-object": "^2.0.4", - "universal-user-agent": "^2.0.1", - "url-template": "^2.0.8" + "@octokit/graphql": "^2.0.1", + "@octokit/rest": "^16.15.0" } }, - "@octokit/graphql": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-2.0.2.tgz", - "integrity": "sha512-q3h3WWpGKkizPChhysKhy1uGdyjTsS7THTweIap3EWG5e3FQufXy1m7UPgKV3VpXHYZuBbX+k0paD213igiLuw==", + "@actions/io": { + "version": "file:toolkit/actions-io-0.0.0.tgz", + "integrity": "sha512-BZqiiacJkzERkYIMUQWrujLZWSFHEA6bD/LzR7QSDHpx32+PPk7NaUNmt8CG+y+OlYPc/ZZGaY3368K1ppfptA==" + }, + "@actions/tool-cache": { + "version": "file:toolkit/actions-tool-cache-0.0.0.tgz", + "integrity": "sha512-CCJjXKGfqR34oo1mgKpUk63g3fcoIq+aNJBZ7b73aWGot0ddju2cefJrKjhEun4FI7gYsLYg+ayAUnbFwkGd4Q==", "requires": { - "@octokit/request": "^2.4.0", - "universal-user-agent": "^2.0.3" + "@actions/core": "^0.0.0", + "@actions/exec": "^0.0.0", + "@actions/io": "^0.0.0", + "semver": "^6.1.0", + "typed-rest-client": "^1.4.0", + "uuid": "^3.3.2" } }, - "@octokit/request": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-2.4.2.tgz", - "integrity": "sha512-lxVlYYvwGbKSHXfbPk5vxEA8w4zHOH1wobado4a9EfsyD3Cbhuhus1w0Ye9Ro0eMubGO8kNy5d+xNFisM3Tvaw==", + "@babel/code-frame": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", + "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "dev": true, "requires": { - "@octokit/endpoint": "^3.2.0", - "deprecation": "^1.0.1", - "is-plain-object": "^2.0.4", - "node-fetch": "^2.3.0", - "once": "^1.4.0", - "universal-user-agent": "^2.0.1" + "@babel/highlight": "^7.0.0" } }, - "@octokit/rest": { - "version": "16.20.0", - "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-16.20.0.tgz", - "integrity": "sha512-tN5j64P6QymlMzKo94DG1LRNHCwMnLg5poZlVhsCfkHhEWKpofZ1qBDr2/0w6qDLav4EA1XXMmZdNpvGhc9BDQ==", + "@babel/core": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.5.5.tgz", + "integrity": "sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg==", + "dev": true, "requires": { - "@octokit/request": "2.4.2", - "before-after-hook": "^1.4.0", - "btoa-lite": "^1.0.0", - "deprecation": "^1.0.1", - "lodash.get": "^4.4.2", - "lodash.set": "^4.3.2", - "lodash.uniq": "^4.5.0", - "octokit-pagination-methods": "^1.1.0", - "once": "^1.4.0", - "universal-user-agent": "^2.0.0", - "url-template": "^2.0.8" + "@babel/code-frame": "^7.5.5", + "@babel/generator": "^7.5.5", + "@babel/helpers": "^7.5.5", + "@babel/parser": "^7.5.5", + "@babel/template": "^7.4.4", + "@babel/traverse": "^7.5.5", + "@babel/types": "^7.5.5", + "convert-source-map": "^1.1.0", + "debug": "^4.1.0", + "json5": "^2.1.0", + "lodash": "^4.17.13", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } } }, - "actions-toolkit": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/actions-toolkit/-/actions-toolkit-1.6.0.tgz", - "integrity": "sha512-6B44K5T0cshYLjtx7QQLj69XEL+5HgjYbnfcjMXsvsEDyMc0lHiYrRr+1kQDBXPmHapqrXxaYOWt8sMGJIbsLw==", + "@babel/generator": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz", + "integrity": "sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==", + "dev": true, "requires": { - "@octokit/graphql": "^2.0.1", - "@octokit/rest": "^16.15.0", - "execa": "^1.0.0", - "flat-cache": "^2.0.1", - "js-yaml": "^3.12.1", - "minimist": "^1.2.0", - "signale": "^1.3.0" + "@babel/types": "^7.5.5", + "jsesc": "^2.5.1", + "lodash": "^4.17.13", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } } }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "@babel/helper-function-name": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", + "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", + "dev": true, "requires": { - "color-convert": "^1.9.0" + "@babel/helper-get-function-arity": "^7.0.0", + "@babel/template": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "@babel/helper-get-function-arity": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", + "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", + "dev": true, "requires": { - "sprintf-js": "~1.0.2" + "@babel/types": "^7.0.0" } }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "@babel/helper-plugin-utils": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", + "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", + "dev": true }, - "before-after-hook": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-1.4.0.tgz", - "integrity": "sha512-l5r9ir56nda3qu14nAXIlyq1MmUSs0meCIaFAh8HwkFwP1F8eToOuS3ah2VAHHcY04jaYD7FpJC5JTXHYRbkzg==" + "@babel/helper-split-export-declaration": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", + "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", + "dev": true, + "requires": { + "@babel/types": "^7.4.4" + } }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "@babel/helpers": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.5.5.tgz", + "integrity": "sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g==", + "dev": true, "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "@babel/template": "^7.4.4", + "@babel/traverse": "^7.5.5", + "@babel/types": "^7.5.5" } }, - "btoa-lite": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz", - "integrity": "sha1-M3dm2hWAEhD92VbCLpxokaudAzc=" + "@babel/highlight": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", + "integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", + "dev": true, + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" + } }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "@babel/parser": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz", + "integrity": "sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==", + "dev": true + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", + "integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", + "dev": true, "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "@babel/helper-plugin-utils": "^7.0.0" } }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "@babel/template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", + "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", + "dev": true, "requires": { - "color-name": "1.1.3" + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.4.4", + "@babel/types": "^7.4.4" } }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "@babel/traverse": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz", + "integrity": "sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.5.5", + "@babel/generator": "^7.5.5", + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-split-export-declaration": "^7.4.4", + "@babel/parser": "^7.5.5", + "@babel/types": "^7.5.5", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.13" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "@babel/types": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", + "integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "dev": true, + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.17.13", + "to-fast-properties": "^2.0.0" + } }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "@cnakazawa/watch": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz", + "integrity": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==", + "dev": true, "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" } }, - "deepmerge": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-3.2.0.tgz", - "integrity": "sha512-6+LuZGU7QCNUnAJyX8cIrlzoEgggTM6B7mm+znKOX4t5ltluT9KLjN6g61ECMS0LTsLW7yDpNoxhix5FZcrIow==" + "@jest/console": { + "version": "24.7.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.7.1.tgz", + "integrity": "sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg==", + "dev": true, + "requires": { + "@jest/source-map": "^24.3.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "dependencies": { + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + } + } }, - "deprecation": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-1.0.1.tgz", - "integrity": "sha512-ccVHpE72+tcIKaGMql33x5MAjKQIZrk+3x2GbJ7TeraUCZWHoT+KSZpoC+JQFsUBlSTXUrBaGiF0j6zVTepPLg==" + "@jest/core": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.8.0.tgz", + "integrity": "sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.8.0", + "jest-config": "^24.8.0", + "jest-haste-map": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-resolve-dependencies": "^24.8.0", + "jest-runner": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "jest-watcher": "^24.8.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "strip-ansi": "^5.0.0" + } }, - "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "@jest/environment": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.8.0.tgz", + "integrity": "sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw==", + "dev": true, "requires": { - "once": "^1.4.0" + "@jest/fake-timers": "^24.8.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "jest-mock": "^24.8.0" } }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "@jest/fake-timers": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.8.0.tgz", + "integrity": "sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw==", + "dev": true, "requires": { - "is-arrayish": "^0.2.1" + "@jest/types": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-mock": "^24.8.0" } }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "@jest/reporters": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.8.0.tgz", + "integrity": "sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw==", + "dev": true, + "requires": { + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.1.1", + "jest-haste-map": "^24.8.0", + "jest-resolve": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-util": "^24.8.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.2.1", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + }, + "dependencies": { + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + } + } }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + "@jest/source-map": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.3.0.tgz", + "integrity": "sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + } + } }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "@jest/test-result": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.8.0.tgz", + "integrity": "sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng==", + "dev": true, "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "@jest/console": "^24.7.1", + "@jest/types": "^24.8.0", + "@types/istanbul-lib-coverage": "^2.0.0" + } + }, + "@jest/test-sequencer": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz", + "integrity": "sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg==", + "dev": true, + "requires": { + "@jest/test-result": "^24.8.0", + "jest-haste-map": "^24.8.0", + "jest-runner": "^24.8.0", + "jest-runtime": "^24.8.0" + } + }, + "@jest/transform": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.8.0.tgz", + "integrity": "sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.8.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-util": "^24.8.0", + "micromatch": "^3.1.10", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" }, "dependencies": { - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + } + } + }, + "@jest/types": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.8.0.tgz", + "integrity": "sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^12.0.9" + } + }, + "@octokit/endpoint": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.3.2.tgz", + "integrity": "sha512-gRjteEM9I6f4D8vtwU2iGUTn9RX/AJ0SVXiqBUEuYEWVGGAVjSXdT0oNmghH5lvQNWs8mwt6ZaultuG6yXivNw==", + "requires": { + "deepmerge": "4.0.0", + "is-plain-object": "^3.0.0", + "universal-user-agent": "^3.0.0", + "url-template": "^2.0.8" + }, + "dependencies": { + "universal-user-agent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-3.0.0.tgz", + "integrity": "sha512-T3siHThqoj5X0benA5H0qcDnrKGXzU8TKoX15x/tQHw1hQBvIEBHjxQ2klizYsqBOO/Q+WuxoQUihadeeqDnoA==", "requires": { - "pump": "^3.0.0" + "os-name": "^3.0.0" } } } }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "@octokit/graphql": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-2.1.3.tgz", + "integrity": "sha512-XoXJqL2ondwdnMIW3wtqJWEwcBfKk37jO/rYkoxNPEVeLBDGsGO1TCWggrAlq3keGt/O+C/7VepXnukUxwt5vA==", "requires": { - "escape-string-regexp": "^1.0.5" + "@octokit/request": "^5.0.0", + "universal-user-agent": "^2.0.3" } }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "@octokit/request": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.0.2.tgz", + "integrity": "sha512-z1BQr43g4kOL4ZrIVBMHwi68Yg9VbkRUyuAgqCp1rU3vbYa69+2gIld/+gHclw15bJWQnhqqyEb7h5a5EqgZ0A==", + "requires": { + "@octokit/endpoint": "^5.1.0", + "@octokit/request-error": "^1.0.1", + "deprecation": "^2.0.0", + "is-plain-object": "^3.0.0", + "node-fetch": "^2.3.0", + "once": "^1.4.0", + "universal-user-agent": "^3.0.0" + }, + "dependencies": { + "universal-user-agent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-3.0.0.tgz", + "integrity": "sha512-T3siHThqoj5X0benA5H0qcDnrKGXzU8TKoX15x/tQHw1hQBvIEBHjxQ2klizYsqBOO/Q+WuxoQUihadeeqDnoA==", + "requires": { + "os-name": "^3.0.0" + } + } + } + }, + "@octokit/request-error": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.0.4.tgz", + "integrity": "sha512-L4JaJDXn8SGT+5G0uX79rZLv0MNJmfGa4vb4vy1NnpjSnWDLJRy6m90udGwvMmavwsStgbv2QNkPzzTCMmL+ig==", + "requires": { + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "@octokit/rest": { + "version": "16.28.7", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.7.tgz", + "integrity": "sha512-cznFSLEhh22XD3XeqJw51OLSfyL2fcFKUO+v2Ep9MTAFfFLS1cK1Zwd1yEgQJmJoDnj4/vv3+fGGZweG+xsbIA==", + "requires": { + "@octokit/request": "^5.0.0", + "@octokit/request-error": "^1.0.2", + "atob-lite": "^2.0.0", + "before-after-hook": "^2.0.0", + "btoa-lite": "^1.0.0", + "deprecation": "^2.0.0", + "lodash.get": "^4.4.2", + "lodash.set": "^4.3.2", + "lodash.uniq": "^4.5.0", + "octokit-pagination-methods": "^1.1.0", + "once": "^1.4.0", + "universal-user-agent": "^3.0.0", + "url-template": "^2.0.8" + }, + "dependencies": { + "universal-user-agent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-3.0.0.tgz", + "integrity": "sha512-T3siHThqoj5X0benA5H0qcDnrKGXzU8TKoX15x/tQHw1hQBvIEBHjxQ2klizYsqBOO/Q+WuxoQUihadeeqDnoA==", + "requires": { + "os-name": "^3.0.0" + } + } + } + }, + "@types/babel__core": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.2.tgz", + "integrity": "sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.0.2.tgz", + "integrity": "sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz", + "integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==", + "dev": true, "requires": { - "locate-path": "^2.0.0" + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "flat-cache": { + "@types/babel__traverse": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.7.tgz", + "integrity": "sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/istanbul-lib-coverage": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz", + "integrity": "sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz", + "integrity": "sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==", + "dev": true, "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" + "@types/istanbul-lib-coverage": "*" } }, - "flatted": { + "@types/istanbul-reports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz", + "integrity": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "24.0.16", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-24.0.16.tgz", + "integrity": "sha512-JrAiyV+PPGKZzw6uxbI761cHZ0G7QMOHXPhtSpcl08rZH6CswXaaejckn3goFKmF7M3nzEoJ0lwYCbqLMmjziQ==", + "dev": true, + "requires": { + "@types/jest-diff": "*" + } + }, + "@types/jest-diff": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jest-diff/-/jest-diff-20.0.1.tgz", + "integrity": "sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA==", + "dev": true + }, + "@types/js-yaml": { + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-3.12.1.tgz", + "integrity": "sha512-SGGAhXLHDx+PK4YLNcNGa6goPf9XRWQNAUUbffkwVGGXIxmDKWyGGL4inzq2sPmExu431Ekb9aEMn9BkPqEYFA==", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "dev": true + }, + "@types/node": { + "version": "12.6.9", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.6.9.tgz", + "integrity": "sha512-+YB9FtyxXGyD54p8rXwWaN1EWEyar5L58GlGWgtH2I9rGmLGBQcw63+0jw+ujqVavNuO47S1ByAjm9zdHMnskw==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", + "dev": true + }, + "@types/semver": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-6.0.1.tgz", + "integrity": "sha512-ffCdcrEE5h8DqVxinQjo+2d1q+FV5z7iNtPofw3JsrltSoSVlOGaW0rY8XxtO9XukdTn8TaCGWmk2VFGhI70mg==", + "dev": true + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "dev": true + }, + "@types/yargs": { + "version": "12.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz", + "integrity": "sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==", + "dev": true + }, + "abab": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.0.tgz", - "integrity": "sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg==" + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz", + "integrity": "sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w==", + "dev": true }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "acorn": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", + "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==", + "dev": true }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" + "acorn-globals": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.2.tgz", + "integrity": "sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ==", + "dev": true, + "requires": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "dependencies": { + "acorn": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.2.1.tgz", + "integrity": "sha512-JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q==", + "dev": true + } + } }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "acorn-walk": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "dev": true + }, + "ajv": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true }, - "inflight": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "atob-lite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz", + "integrity": "sha1-D+9a1G8b16hQLGVyfwNn1e5D1pY=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "aws4": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", + "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==", + "dev": true + }, + "babel-jest": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.8.0.tgz", + "integrity": "sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw==", + "dev": true, + "requires": { + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.6.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "dependencies": { + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + } + } + }, + "babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + } + }, + "babel-plugin-jest-hoist": { + "version": "24.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz", + "integrity": "sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w==", + "dev": true, + "requires": { + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-jest": { + "version": "24.6.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz", + "integrity": "sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw==", + "dev": true, + "requires": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.6.0" + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "before-after-hook": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz", + "integrity": "sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "browser-process-hrtime": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz", + "integrity": "sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==", + "dev": true + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dev": true, + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", + "dev": true + } + } + }, + "bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, + "bser": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.0.tgz", + "integrity": "sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg==", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, + "btoa-lite": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz", + "integrity": "sha1-M3dm2hWAEhD92VbCLpxokaudAzc=" + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dev": true, + "requires": { + "callsites": "^2.0.0" + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dev": true, + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "requires": { + "rsvp": "^4.8.4" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "cliui": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", + "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", + "dev": true, + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", + "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", + "dev": true, + "optional": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "convert-source-map": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", + "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==" + } + } + }, + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "cssstyle": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", + "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", + "dev": true, + "requires": { + "cssom": "0.3.x" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "dependencies": { + "whatwg-url": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.0.0.tgz", + "integrity": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "deepmerge": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.0.0.tgz", + "integrity": "sha512-YZ1rOP5+kHor4hMAH+HRQnBQHg+wvS1un1hAOuIcxcBy0hzcUf6Jg2a1w65kpoOUnurOfZbERwjI1TfZxNjcww==" + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + }, + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", + "dev": true + }, + "diff-sequences": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.3.0.tgz", + "integrity": "sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==", + "dev": true + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "dev": true, + "requires": { + "webidl-conversions": "^4.0.2" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "end-of-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", + "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "requires": { + "once": "^1.4.0" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", + "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.0", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "is-callable": "^1.1.4", + "is-regex": "^1.0.4", + "object-keys": "^1.0.12" + } + }, + "es-to-primitive": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", + "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "escodegen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.11.1.tgz", + "integrity": "sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw==", + "dev": true, + "requires": { + "esprima": "^3.1.3", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "exec-sh": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.2.tgz", + "integrity": "sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==", + "dev": true + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "expect": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.8.0.tgz", + "integrity": "sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-regex-util": "^24.3.0" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fb-watchman": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz", + "integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=", + "dev": true, + "requires": { + "bser": "^2.0.0" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", + "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", + "dev": true, + "optional": true, + "requires": { + "nan": "^2.12.1", + "node-pre-gyp": "^0.12.0" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "aproba": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + }, + "are-we-there-yet": { + "version": "1.1.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "balanced-match": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "chownr": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "optional": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "optional": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "debug": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ms": "^2.1.1" + } + }, + "deep-extend": { + "version": "0.6.0", + "bundled": true, + "dev": true, + "optional": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "detect-libc": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "fs-minipass": { + "version": "1.2.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minipass": "^2.2.1" + } + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "glob": { + "version": "7.1.3", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "iconv-lite": { + "version": "0.4.24", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ignore-walk": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "ini": { + "version": "1.3.5", + "bundled": true, + "dev": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "0.0.8", + "bundled": true, + "dev": true, + "optional": true + }, + "minipass": { + "version": "2.3.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + }, + "minizlib": { + "version": "1.2.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minipass": "^2.2.1" + } + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "needle": { + "version": "2.3.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "debug": "^4.1.0", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + } + }, + "node-pre-gyp": { + "version": "0.12.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "detect-libc": "^1.0.2", + "mkdirp": "^0.5.1", + "needle": "^2.2.1", + "nopt": "^4.0.1", + "npm-packlist": "^1.1.6", + "npmlog": "^4.0.2", + "rc": "^1.2.7", + "rimraf": "^2.6.1", + "semver": "^5.3.0", + "tar": "^4" + } + }, + "nopt": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "npm-bundled": { + "version": "1.0.6", + "bundled": true, + "dev": true, + "optional": true + }, + "npm-packlist": { + "version": "1.4.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1" + } + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "wrappy": "1" + } + }, + "os-homedir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "osenv": { + "version": "0.1.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "process-nextick-args": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "rc": { + "version": "1.2.8", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "rimraf": { + "version": "2.6.3", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.1.2", + "bundled": true, + "dev": true, + "optional": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true, + "dev": true, + "optional": true + }, + "sax": { + "version": "1.2.4", + "bundled": true, + "dev": true, + "optional": true + }, + "semver": { + "version": "5.7.0", + "bundled": true, + "dev": true, + "optional": true + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "tar": { + "version": "4.4.8", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "chownr": "^1.1.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.3.4", + "minizlib": "^1.1.1", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.2", + "yallist": "^3.0.2" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "wide-align": { + "version": "1.1.3", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "string-width": "^1.0.2 || 2" + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "yallist": { + "version": "3.0.3", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "get-stdin": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-7.0.0.tgz", + "integrity": "sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==", + "dev": true + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "graceful-fs": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", + "dev": true + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true + }, + "handlebars": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz", + "integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==", + "dev": true, + "requires": { + "neo-async": "^2.6.0", + "optimist": "^0.6.1", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4" + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "har-validator": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "dev": true, + "requires": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hosted-git-info": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", + "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==", + "dev": true + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "dev": true, + "requires": { + "whatwg-encoding": "^1.0.1" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "husky": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/husky/-/husky-2.7.0.tgz", + "integrity": "sha512-LIi8zzT6PyFpcYKdvWRCn/8X+6SuG2TgYYMrM6ckEYhlp44UcEduVymZGIZNLiwOUjrEud+78w/AsAiqJA/kRg==", + "dev": true, + "requires": { + "cosmiconfig": "^5.2.0", + "execa": "^1.0.0", + "find-up": "^3.0.0", + "get-stdin": "^7.0.0", + "is-ci": "^2.0.0", + "pkg-dir": "^4.1.0", + "please-upgrade-node": "^3.1.1", + "read-pkg": "^5.1.1", + "run-node": "^1.0.0", + "slash": "^3.0.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "requires": { + "loose-envify": "^1.0.0" + } + }, + "invert-kv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", + "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", + "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", + "dev": true + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "dev": true + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-plain-object": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz", + "integrity": "sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==", + "requires": { + "isobject": "^4.0.0" + } + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "dev": true, + "requires": { + "has": "^1.0.1" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + }, + "is-symbol": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", + "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", + "dev": true, + "requires": { + "has-symbols": "^1.0.0" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz", + "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dev": true, + "requires": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + } + }, + "istanbul-lib-report": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", + "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "istanbul-reports": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.6.tgz", + "integrity": "sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA==", + "dev": true, + "requires": { + "handlebars": "^4.1.2" + } + }, + "jest": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-24.8.0.tgz", + "integrity": "sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg==", + "dev": true, + "requires": { + "import-local": "^2.0.0", + "jest-cli": "^24.8.0" + }, + "dependencies": { + "jest-cli": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.8.0.tgz", + "integrity": "sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA==", + "dev": true, + "requires": { + "@jest/core": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^12.0.2" + } + } + } + }, + "jest-changed-files": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.8.0.tgz", + "integrity": "sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + } + }, + "jest-circus": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-24.8.0.tgz", + "integrity": "sha512-2QASG3QuDdk0SMP2O73D8u3/lc/A/E2G7q23v5WhbUR+hCGzWZXwRMKif18f11dSLfL1wcrMbwE4IorvV0DRVw==", + "dev": true, + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.8.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "pretty-format": "^24.8.0", + "stack-utils": "^1.0.1", + "throat": "^4.0.0" + } + }, + "jest-config": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.8.0.tgz", + "integrity": "sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.8.0", + "@jest/types": "^24.8.0", + "babel-jest": "^24.8.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.8.0", + "jest-environment-node": "^24.8.0", + "jest-get-type": "^24.8.0", + "jest-jasmine2": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.8.0", + "realpath-native": "^1.1.0" + } + }, + "jest-diff": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.8.0.tgz", + "integrity": "sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g==", + "dev": true, + "requires": { + "chalk": "^2.0.1", + "diff-sequences": "^24.3.0", + "jest-get-type": "^24.8.0", + "pretty-format": "^24.8.0" + } + }, + "jest-docblock": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.3.0.tgz", + "integrity": "sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg==", + "dev": true, + "requires": { + "detect-newline": "^2.1.0" + } + }, + "jest-each": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.8.0.tgz", + "integrity": "sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.8.0", + "jest-util": "^24.8.0", + "pretty-format": "^24.8.0" + } + }, + "jest-environment-jsdom": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz", + "integrity": "sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ==", + "dev": true, + "requires": { + "@jest/environment": "^24.8.0", + "@jest/fake-timers": "^24.8.0", + "@jest/types": "^24.8.0", + "jest-mock": "^24.8.0", + "jest-util": "^24.8.0", + "jsdom": "^11.5.1" + } + }, + "jest-environment-node": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.8.0.tgz", + "integrity": "sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q==", + "dev": true, + "requires": { + "@jest/environment": "^24.8.0", + "@jest/fake-timers": "^24.8.0", + "@jest/types": "^24.8.0", + "jest-mock": "^24.8.0", + "jest-util": "^24.8.0" + } + }, + "jest-get-type": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.8.0.tgz", + "integrity": "sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ==", + "dev": true + }, + "jest-haste-map": { + "version": "24.8.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.8.1.tgz", + "integrity": "sha512-SwaxMGVdAZk3ernAx2Uv2sorA7jm3Kx+lR0grp6rMmnY06Kn/urtKx1LPN2mGTea4fCT38impYT28FfcLUhX0g==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "fsevents": "^1.2.7", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.4.0", + "jest-util": "^24.8.0", + "jest-worker": "^24.6.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz", + "integrity": "sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong==", + "dev": true, + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.8.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "pretty-format": "^24.8.0", + "throat": "^4.0.0" + } + }, + "jest-leak-detector": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz", + "integrity": "sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g==", + "dev": true, + "requires": { + "pretty-format": "^24.8.0" + } + }, + "jest-matcher-utils": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz", + "integrity": "sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw==", + "dev": true, + "requires": { + "chalk": "^2.0.1", + "jest-diff": "^24.8.0", + "jest-get-type": "^24.8.0", + "pretty-format": "^24.8.0" + } + }, + "jest-message-util": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.8.0.tgz", + "integrity": "sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "dependencies": { + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + } + } + }, + "jest-mock": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.8.0.tgz", + "integrity": "sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0" + } + }, + "jest-pnp-resolver": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz", + "integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==", + "dev": true + }, + "jest-regex-util": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.3.0.tgz", + "integrity": "sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg==", + "dev": true + }, + "jest-resolve": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.8.0.tgz", + "integrity": "sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + } + }, + "jest-resolve-dependencies": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz", + "integrity": "sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.8.0" + } + }, + "jest-runner": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.8.0.tgz", + "integrity": "sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.8.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.8.0", + "jest-jasmine2": "^24.8.0", + "jest-leak-detector": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-resolve": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-util": "^24.8.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + } + }, + "jest-runtime": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.8.0.tgz", + "integrity": "sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.8.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/yargs": "^12.0.2", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.8.0", + "jest-haste-map": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-mock": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^12.0.2" + }, + "dependencies": { + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + } + } + }, + "jest-serializer": { + "version": "24.4.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.4.0.tgz", + "integrity": "sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q==", + "dev": true + }, + "jest-snapshot": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.8.0.tgz", + "integrity": "sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "expect": "^24.8.0", + "jest-diff": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-resolve": "^24.8.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.8.0", + "semver": "^5.5.0" + }, + "dependencies": { + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true + } + } + }, + "jest-util": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.8.0.tgz", + "integrity": "sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA==", + "dev": true, + "requires": { + "@jest/console": "^24.7.1", + "@jest/fake-timers": "^24.8.0", + "@jest/source-map": "^24.3.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + } + } + }, + "jest-validate": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.8.0.tgz", + "integrity": "sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0", + "camelcase": "^5.0.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.8.0", + "leven": "^2.1.0", + "pretty-format": "^24.8.0" + } + }, + "jest-watcher": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.8.0.tgz", + "integrity": "sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw==", + "dev": true, + "requires": { + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/yargs": "^12.0.9", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.8.0", + "string-length": "^2.0.0" + } + }, + "jest-worker": { + "version": "24.6.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.6.0.tgz", + "integrity": "sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ==", + "dev": true, + "requires": { + "merge-stream": "^1.0.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "jsdom": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", + "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "dev": true, + "requires": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json5": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz", + "integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "lcid": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", + "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", + "dev": true, + "requires": { + "invert-kv": "^2.0.0" + } + }, + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "dev": true + }, + "leven": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", + "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "dev": true + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", + "dev": true + }, + "lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + }, + "lodash.set": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz", + "integrity": "sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "macos-release": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.3.0.tgz", + "integrity": "sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA==" + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true + } + } + }, + "make-error": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.5.tgz", + "integrity": "sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==", + "dev": true + }, + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "dev": true, + "requires": { + "tmpl": "1.0.x" + } + }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "requires": { + "p-defer": "^1.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "mem": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "dev": true, + "requires": { + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" + } + }, + "merge-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", + "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", + "dev": true, + "requires": { + "readable-stream": "^2.0.1" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "mime-db": { + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", + "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==", + "dev": true + }, + "mime-types": { + "version": "2.1.24", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", + "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", + "dev": true, + "requires": { + "mime-db": "1.40.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "nan": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", + "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", + "dev": true, + "optional": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "neo-async": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", + "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "node-fetch": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", + "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==" + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "dev": true + }, + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "dev": true + }, + "node-notifier": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.0.tgz", + "integrity": "sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ==", + "dev": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + }, + "dependencies": { + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true + } + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true + } + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "requires": { + "path-key": "^2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "nwsapi": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.4.tgz", + "integrity": "sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw==", + "dev": true + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "object.getownpropertydescriptors": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", + "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.5.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "octokit-pagination-methods": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz", + "integrity": "sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + } + } + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.4", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "wordwrap": "~1.0.0" + }, + "dependencies": { + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true + } + } + }, + "os-locale": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", + "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "lcid": "^2.0.0", + "mem": "^4.0.0" + } + }, + "os-name": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz", + "integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==", + "requires": { + "macos-release": "^2.2.0", + "windows-release": "^3.1.0" + } + }, + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "dev": true + }, + "p-each-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", + "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", + "dev": true, + "requires": { + "p-reduce": "^1.0.0" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + }, + "p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "dev": true + }, + "p-limit": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", + "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "dev": true + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + }, + "path-parse": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "dev": true, + "requires": { + "node-modules-regexp": "^1.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } + } + }, + "please-upgrade-node": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz", + "integrity": "sha512-KY1uHnQ2NlQHqIJQpnh/i54rKkuxCEBx+voJIS/Mvb+L2iYd2NMotwduhKTMjfC1uKoX3VXOxLjIYG66dfJTVQ==", + "dev": true, + "requires": { + "semver-compare": "^1.0.0" + } + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", + "dev": true + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "prettier": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.18.2.tgz", + "integrity": "sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==", + "dev": true + }, + "pretty-format": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.8.0.tgz", + "integrity": "sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==", + "dev": true, + "requires": { + "@jest/types": "^24.8.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "prompts": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.1.0.tgz", + "integrity": "sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg==", + "dev": true, + "requires": { + "kleur": "^3.0.2", + "sisteransi": "^1.0.0" + } + }, + "psl": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.3.0.tgz", + "integrity": "sha512-avHdspHO+9rQTLbv1RO+MPYeP/SzsCoxofjVnHanETfQhTJrmB0HlDoW+EiN/R+C0BZ+gERab9NY0lPN2TxNag==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + }, + "react-is": { + "version": "16.8.6", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", + "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==", + "dev": true + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "parse-json": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", + "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1", + "lines-and-columns": "^1.1.6" + } + } + } + }, + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "dev": true, + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "dependencies": { + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + } + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "dev": true, + "requires": { + "util.promisify": "^1.0.0" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "request": { + "version": "2.88.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", + "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.0", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.4.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "tough-cookie": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "dev": true, + "requires": { + "psl": "^1.1.24", + "punycode": "^1.4.1" + } + } + } + }, + "request-promise-core": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz", + "integrity": "sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==", + "dev": true, + "requires": { + "lodash": "^4.17.11" + } + }, + "request-promise-native": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.7.tgz", + "integrity": "sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w==", + "dev": true, + "requires": { + "request-promise-core": "1.1.2", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "resolve": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", + "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true + }, + "run-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/run-node/-/run-node-1.0.0.tgz", + "integrity": "sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A==", + "dev": true + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dev": true, + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" + }, + "sisteransi": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.2.tgz", + "integrity": "sha512-ZcYcZcT69nSLAR2oLN2JwNmLkJEKGooFMCdvOkFrToUt/WfcRWqhIg4P4KwY4dmLbuyXIx4o4YmPsvMRJYJd/w==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", + "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", + "dev": true, + "requires": { + "atob": "^2.1.1", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true + }, + "spdx-correct": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", + "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", + "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", + "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", + "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dev": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stack-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz", + "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==", + "dev": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "dev": true + }, + "string-length": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", + "dev": true, + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "requires": { - "once": "^1.3.0", - "wrappy": "1" + "has-flag": "^3.0.0" } }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "dev": true, "requires": { - "isobject": "^3.0.1" + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" } }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=", + "dev": true }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "dev": true }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true }, - "js-yaml": { - "version": "3.13.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.0.tgz", - "integrity": "sha512-pZZoSxcCYco+DIKBTimr67J6Hy+EYGZDY/HCWC+iAEA9h1ByhMXAIVUXMcMFpOCxQ/xjXmPI2MkDL5HRm5eFrQ==", + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" } }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" } }, - "lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" - }, - "lodash.set": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz", - "integrity": "sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=" - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" - }, - "macos-release": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.1.0.tgz", - "integrity": "sha512-8TCbwvN1mfNxbBv0yBtfyIFMo3m1QsNbKHv7PYIp/abRBKVQBXN7ecu3aeGGgT18VC/Tf397LBDGZF9KBGJFFw==" + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dev": true, "requires": { - "brace-expansion": "^1.1.7" + "punycode": "^2.1.0" } }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "dev": true }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "ts-jest": { + "version": "24.0.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-24.0.2.tgz", + "integrity": "sha512-h6ZCZiA1EQgjczxq+uGLXQlNgeg02WWJBbeT8j6nyIBRQdglqbvzDoHahTEIiS6Eor6x8mK6PfZ7brQ9Q6tzHw==", + "dev": true, "requires": { - "minimist": "0.0.8" + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "json5": "2.x", + "make-error": "1.x", + "mkdirp": "0.x", + "resolve": "1.x", + "semver": "^5.5", + "yargs-parser": "10.x" }, "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true + }, + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true + }, + "yargs-parser": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", + "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "dev": true, + "requires": { + "camelcase": "^4.1.0" + } } } }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + "tunnel": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.4.tgz", + "integrity": "sha1-LTeFoVjBdMmhbcLARuxfxfF0IhM=" }, - "node-fetch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz", - "integrity": "sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA==" + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, "requires": { - "path-key": "^2.0.0" + "prelude-ls": "~1.1.2" } }, - "octokit-pagination-methods": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz", - "integrity": "sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==" + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "typed-rest-client": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.5.0.tgz", + "integrity": "sha512-DVZRlmsfnTjp6ZJaatcdyvvwYwbWvR4YDNFDqb+qdTxpvaVP99YCpBkA8rxsLtAPjBVoDe4fNsnMIdZTiPuKWg==", "requires": { - "wrappy": "1" + "tunnel": "0.0.4", + "underscore": "1.8.3" } }, - "os-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/os-name/-/os-name-3.0.0.tgz", - "integrity": "sha512-7c74tib2FsdFbQ3W+qj8Tyd1R3Z6tuVRNNxXjJcZ4NgjIEQU9N/prVMqcW29XZPXGACqaXN3jq58/6hoaoXH6g==", + "typescript": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.5.3.tgz", + "integrity": "sha512-ACzBtm/PhXBDId6a6sDJfroT2pOWt/oOnk4/dElG5G33ZL776N3Y6/6bKZJBFpd+b05F3Ct9qDjMeJmRWtE2/g==", + "dev": true + }, + "uglify-js": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz", + "integrity": "sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==", + "dev": true, + "optional": true, "requires": { - "macos-release": "^2.0.0", - "windows-release": "^3.1.0" + "commander": "~2.20.0", + "source-map": "~0.6.1" } }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + "underscore": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", + "integrity": "sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI=" }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, "requires": { - "p-try": "^1.0.0" + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" } }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "universal-user-agent": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-2.1.0.tgz", + "integrity": "sha512-8itiX7G05Tu3mGDTdNY2fB4KJ8MgZLS54RdG6PkkfwMAavrXu1mV/lls/GABx9O3Rw4PnTtasxrvbMQoBYY92Q==", "requires": { - "p-limit": "^1.1.0" + "os-name": "^3.0.0" } }, - "p-try": { + "unset-value": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + } + } }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "dev": true, "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "punycode": "^2.1.0" } }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "url-template": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", + "integrity": "sha1-/FZaPMy/93MMd19WQflVV5FDnyE=" }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true }, - "pkg-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", - "integrity": "sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=", + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dev": true, "requires": { - "find-up": "^2.0.0", - "load-json-file": "^4.0.0" + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" } }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "uuid": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", + "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, "requires": { - "glob": "^7.1.3" + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" } }, - "semver": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", - "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==" - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "w3c-hr-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz", + "integrity": "sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=", + "dev": true, "requires": { - "shebang-regex": "^1.0.0" + "browser-process-hrtime": "^0.1.2" } }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" - }, - "signale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", - "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", + "walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "dev": true, "requires": { - "chalk": "^2.3.2", - "figures": "^2.0.0", - "pkg-conf": "^2.1.0" + "makeerror": "1.0.x" } }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, "requires": { - "has-flag": "^3.0.0" + "iconv-lite": "0.4.24" } }, - "universal-user-agent": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-2.0.3.tgz", - "integrity": "sha512-eRHEHhChCBHrZsA4WEhdgiOKgdvgrMIHwnwnqD0r5C6AO8kwKcG7qSku3iXdhvHL3YvsS9ZkSGN8h/hIpoFC8g==", + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "dev": true, "requires": { - "os-name": "^3.0.0" + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" } }, - "url-template": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", - "integrity": "sha1-/FZaPMy/93MMd19WQflVV5FDnyE=" - }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", @@ -594,26 +5575,69 @@ "isexe": "^2.0.0" } }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, "windows-release": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.1.0.tgz", - "integrity": "sha512-hBb7m7acFgQPQc222uEQTmdcGLeBmQLNLFIh0rDk3CwFOBrfjefLzEfEfmpMq8Af/n/GnFf3eYf203FY1PmudA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.2.0.tgz", + "integrity": "sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA==", + "requires": { + "execa": "^1.0.0" + } + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, "requires": { - "execa": "^0.10.0" + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" }, "dependencies": { - "execa": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", - "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==", + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" } } } @@ -623,12 +5647,74 @@ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, - "write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "ws": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", + "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, + "yargs": { + "version": "12.0.5", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", + "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "dev": true, + "requires": { + "cliui": "^4.0.0", + "decamelize": "^1.2.0", + "find-up": "^3.0.0", + "get-caller-file": "^1.0.1", + "os-locale": "^3.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1 || ^4.0.0", + "yargs-parser": "^11.1.1" + }, + "dependencies": { + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + } + } + }, + "yargs-parser": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", + "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", + "dev": true, "requires": { - "mkdirp": "^0.5.1" + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" } } } diff --git a/package.json b/package.json index 8a06c5a..7eb58fc 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,54 @@ { - "name": "action-labeller", + "name": "labeler", + "version": "2.0.0", "private": true, + "description": "Labels pull requests by files altered", + "main": "lib/main.js", + "scripts": { + "build": "tsc", + "format": "prettier --write **/*.ts", + "format-check": "prettier --check **/*.ts", + "test": "jest" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/actions/labeler.git" + }, + "keywords": [ + "actions", + "node", + "setup" + ], + "author": "GitHub", "license": "MIT", - "main": "index.js", "dependencies": { - "actions-toolkit": "^1.6.0", - "js-yaml": "^3.13.0", - "minimatch": "^3.0.4" + "@actions/core": "file:toolkit/actions-core-0.0.0.tgz", + "@actions/exec": "file:toolkit/actions-exec-0.0.0.tgz", + "@actions/github": "file:toolkit/actions-github-0.0.0.tgz", + "@actions/io": "file:toolkit/actions-io-0.0.0.tgz", + "@actions/tool-cache": "file:toolkit/actions-tool-cache-0.0.0.tgz", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "semver": "^6.1.1" + }, + "devDependencies": { + "@types/jest": "^24.0.13", + "@types/node": "^12.0.4", + "@types/semver": "^6.0.0", + "@types/minimatch": "^3.0.0", + "@types/js-yaml": "^3.12.1", + "husky": "^2.3.0", + "jest": "^24.8.0", + "jest-circus": "^24.7.1", + "prettier": "^1.17.1", + "ts-jest": "^24.0.2", + "typescript": "^3.5.1" + }, + "husky": { + "skipCI": true, + "hooks": { + "pre-commit": "npm run build && npm run format", + "post-commit": "npm prune --production && git add node_modules/* && git commit -m \"Husky commit correct node modules\"" + } } } diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..acc9cea --- /dev/null +++ b/src/main.ts @@ -0,0 +1,146 @@ +import * as core from '@actions/core'; +import * as github from '@actions/github'; +import * as yaml from 'js-yaml'; +import {Minimatch} from 'minimatch'; + +async function run() { + try { + const token = core.getInput('repo-token', {required: true}); + const configPath = core.getInput('configuration-path', {required: true}); + + const prNumber = getPrNumber(); + if (!prNumber) { + console.log('Could not get pull request number from context, exiting'); + return; + } + + const client = new github.GitHub(token); + + core.debug(`fetching changed files for pr #${prNumber}`); + const changedFiles: string[] = await getChangedFiles(client, prNumber); + const labelGlobs: Map = await getLabelGlobs( + client, + configPath + ); + + const labels: string[] = []; + for (const [label, globs] of labelGlobs.entries()) { + core.debug(`processing ${label}`); + if (checkGlobs(changedFiles, globs)) { + labels.push(label); + } + } + + if (labels.length > 0) { + await addLabels(client, prNumber, labels); + } + } catch (error) { + core.error(error); + core.setFailed(error.message); + } +} + +function getPrNumber(): number | undefined { + const pullRequest = github.context.payload.pull_request; + if (!pullRequest) { + return undefined; + } + + return pullRequest.number; +} + +async function getChangedFiles( + client: github.GitHub, + prNumber: number +): Promise { + const listFilesResponse = await client.pulls.listFiles({ + owner: github.context.repo.owner, + repo: github.context.repo.repo, + pull_number: prNumber + }); + + const changedFiles = listFilesResponse.data.map(f => f.filename); + + core.debug('found changed files:'); + for (const file of changedFiles) { + core.debug(' ' + file); + } + + return changedFiles; +} + +async function getLabelGlobs( + client: github.GitHub, + configurationPath: string +): Promise> { + const configurationContent: string = await fetchContent( + client, + configurationPath + ); + + // loads (hopefully) a `{[label:string]: string | string[]}`, but is `any`: + const configObject: any = yaml.safeLoad(configurationContent); + + // transform `any` => `Map` or throw if yaml is malformed: + return getLabelGlobMapFromObject(configObject); +} + +async function fetchContent( + client: github.GitHub, + repoPath: string +): Promise { + const response = await client.repos.getContents({ + owner: github.context.repo.owner, + repo: github.context.repo.repo, + path: repoPath + }); + + return Buffer.from(response.data.content, 'base64').toString(); +} + +function getLabelGlobMapFromObject(configObject: any): Map { + const labelGlobs: Map = new Map(); + for (const label in configObject) { + if (typeof configObject[label] === 'string') { + labelGlobs.set(label, [configObject[label]]); + } else if (configObject[label] instanceof Array) { + labelGlobs.set(label, configObject[label]); + } else { + throw Error( + `found unexpected type for label ${label} (should be string or array of globs)` + ); + } + } + + return labelGlobs; +} + +function checkGlobs(changedFiles: string[], globs: string[]): boolean { + for (const glob of globs) { + core.debug(` checking pattern ${glob}`); + const matcher = new Minimatch(glob); + for (const changedFile of changedFiles) { + core.debug(` - ${changedFile}`); + if (matcher.match(changedFile)) { + core.debug(` ${changedFile} matches`); + return true; + } + } + } + return false; +} + +async function addLabels( + client: github.GitHub, + prNumber: number, + labels: string[] +) { + await client.issues.addLabels({ + owner: github.context.repo.owner, + repo: github.context.repo.repo, + issue_number: prNumber, + labels: labels + }); +} + +run(); diff --git a/toolkit/actions-core-0.0.0.tgz b/toolkit/actions-core-0.0.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..2baac7a990273eb665eeca7982d360e65b76e4a7 GIT binary patch literal 3889 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 literal 0 HcmV?d00001 diff --git a/toolkit/actions-exec-0.0.0.tgz b/toolkit/actions-exec-0.0.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..21d71442ee585f63604c19d99cf289f6704893b7 GIT binary patch literal 11281 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 H0M-BiBsl+d literal 0 HcmV?d00001 diff --git a/toolkit/actions-github-0.0.0.tgz b/toolkit/actions-github-0.0.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..4113d11b5a0d930900e3913e58670ec8e44676c4 GIT binary patch literal 3106 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 literal 0 HcmV?d00001 diff --git a/toolkit/actions-io-0.0.0.tgz b/toolkit/actions-io-0.0.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..fdd27e2c07d96170498c3e3382b2ae08c9fefab1 GIT binary patch literal 8628 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 Gr~m-^5wFDn literal 0 HcmV?d00001 diff --git a/toolkit/actions-tool-cache-0.0.0.tgz b/toolkit/actions-tool-cache-0.0.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..771820e237610aff6a26b0f670dfc1b788ff5574 GIT binary patch literal 118459 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�zKm%I~73ds_ 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

3?0 zhZi|qZl^ebc8K=Y)e5ykLY=9J3$^j1BBtw9cD^p_)NJlKr5$&Kh%++qGHC1|CVhR> zy+>-jh&%(_tT51K0?8#MfN$lc{rUBj+QZpDD@c zBMMxZ&M_H+KM%-1um(tmUWKhe0xX@r&EWIx^EwzxH@ zqnmW!_3+I*KQ``v`K}%$UW$8OD$30on6?$->^$D0dv8pT_C&r9#no#qJhu!|*D8qL z!{24Zr8xxUC+9|^ALX#HB}eKxG%`M{+c~rRB{5U@NVX6GBJOFEzC^NX-tXv~uN2$=T8@1q<>dZ?HkS#s%-4 zK52PFP-`*c6a_fmUhe%$XSW0~Yvrsw0I0{n9U z{+TSf$4?)ROCw%fCmAof&_v;KdfZa|%9aAjv$EMC(HR$>l^0$JQ~mN5simdaC51Fg zL}uRP5UJDf%@IHFE8d4lYu72-({*n#e?iEa8L-AG<7lH{OG2~e)bMTT?0CUkhm)Ps z=}TXoJR3`7bMtI}1Dzswam($h^nT_ zg(NHLA)23cjzf5&b^MXlL*e&R;j@#ok5>YNU(RJNI)tB&gF_L4VoTY1IO}f!8YuhqL(#yGlqOH#GeC`hf`UbGjX3j}q06+Mft%DGUHl>qI8X;35gFFKaK3 zPrt{3ul8_)A_ndK|4aYOaX4{8_O^oIw3)C!TtM ztL~(J0%8H#NZWnF5|0Bl0kr96UkDE%3Gw5be16)Cj+u_B2hM7@f*EUpxmc9%GA2z38y6QRAxi~{e$hIZMTPa@9OQ}jP z1edV4l~hV|AU`|(nBsB2U{D+T{0IPT1-=?sWRP8b#*@V28<$_gt7X(Jg$eTDO72ka zY1Fcl$+-DZ7f&8-Ub6Ftylz~PfF8zSrpvFBZe$BP>vpA*HOTw?sVIWz{S9L9!^FAs zsta=G)`<7&yUSSvR?WV`Hor{kO8!g-N$Q?4HFkk`wuwFG{CVnRl7;Aaxpv6o1!7A3& zP9Kov)$I6u!L+IB);@eLh8|&S(%f8s5^K)e_O4WBo80iHjX6?>~=yqkf{FBV7ypdc{-b#q{50{_Q>`2BSF zxZGi-Q#Jm#{I~_(sFsf>yUeNP!YemA#KMXNkeN5tLx7DeKaJ1?rBC(AK4;M3i7h|A zHDuk5AtwT0V1D(kgcB(~L4HRIFl$BKo=%QELw(}ugA9M-j6*NC84@gJ8jOb~425EU zzqZz)U&I+42N>qs>5eDhf33mS@q!_$C?@m7_%R>$A=~FC;-^2#lNj01;MK(kf!|Nd zJuv?T1;olxpd_zc*^+S3X!%j-#H)}?_(r$m)Q@_VmKfAimVrzxwKXxa4!pyOF>AUU zyX$4p{5W9M{r-A%q4{509|Iflhw10X>{dXKa3&8}XP-kK4trS*0Zg zoIDcb#{9Em{96Zl!2UG;&){ z?8I;ZXnMl(b+<04CsPPq64fNWe0{k-|A0e15iYanOixsQ5IVT4KAuRg->g7;Ce#&G zhq^APcN{$N4+v6CS-OEOw#=b}<Fy=2cZ&3-Y9rs@yqP{z7Xtk-5NE)4c4Ip7b=p8&rRL6>5Ck z3qj~?q-dZvL1GT%*WJs*^C517el&-%Y>h1SQ>HFji)7m;=}4K(p{HPD$$*twrp?iw z8>4mbkCDrN?8q9r6*%rd_RN6puo%8_AJjYBux(hld4z8&bMT|b*;-_#{$lSzJ~B_M z8~?&&0osEfT?7)jki=yn!&t(F#5ngLy-QZ21?D)HtQu|U*eDOV7>=F}4zJ*qYGY~F zL6KL%Kn&T5=XlA0MR*lu2`J(;d2x1h+({a`Q%2ZQzGxGDs}E6sI{U}x(fg(GYd2zi zClI-Wy`Xv|@ve?(uH*JrwvgX!?BsfMT)@0^90zw+VC}%>6b8U3TrCvWkU4beEp$CJ zyDUV}NyCGC)?sg`E?x{`)?kE8E(@{ekS3C1Rea*}V{Tn8!3(l=ViO;Z(`jZ7ND_^2 zNo=)r2PByLr2Kr^x-GRql-DPrTbQKOJ3&~I*g+2xsPB@;yG(}UPFcb>lRS=kSpqRY zmYUoyS@OGlvQ%y>mKNBGZIzW6l-o-%C=rcJrXnhz2A1yc$ze(F?d_PmN|*7+=`)ly9vntwgCBpO``-!u7l z?@}#H^wp=+KObE@c%H%FVEGCC_w=VyaW}p}UHHpzFF)s5ef;*Pn>Xi!Lu=o=z&iI$_8vT&=-kYIw0Q8nP4jPNWhsTi*rz0WFf~*5K)J z;B@_<+po=!OBk1vlRJ(fivkkJlir|(PAJjmE1^?4#C249h90}3=4=AuL~pNw@3ZuW z)HFLcTM55heV+98}4Jr-RG;RdNcx*9@@ zp+C9}!d3|PLKsf&kB%J<&%@z8giUGv(M=F8IHNzhG!5b*Y=v+mgzF#-L--Jc8_w>J zW{iMz=k!MxK-dal3xwfwAwPucWPp$FGy9`Bew@FBEAICd4}$MA;!=ne=sKp2M5(hl{`fcOr;2f~d#{n7OhZi8?mghwIV0ipe7 zNDpD!E&Wk>6x0X8X%KF_71Bf4v=-_M;n-gTUMB-S5LQ9h^gDQu&wqyaQy}~cv@e7k z?}u_nLpwn@4Z?K~1AY+N{|V_K+yLP=2sb_n?L7wYc&0xpoeJfc8oxJ2-ofJj~;?B?Ev6$ zI;1}cctAMq3#dPYO%U$I@M|dV3`qA4z=g00!u4k$Jp!H(-gKltdK5zYw*co%cz+b& zK)4aY^%zE>-OfUKi$>Q$xGgyv9eXywJ1H7n4dJ>`(Wrb5;8_E6x(s+gxE8`awbAG{ z2#;PFjTW5;&sRY_gd3eO7el!2>S#1?9KdOTcnCK_xC6ok*TB4v&jH9c9`ZxD6v7Qb zC=Wt=C>q@Z;Q|N`LD&Rg+5~_PVbui2A4YRNVOTj|GPGtG&OB*&+FHZ#42*{=NK1Df zi%!zb=ZVux(gdEq>J=E9n81`#ZW?>3dE|<;)zZu}ECye7qFvUH@{O?gR0rfD`)QMt)(H&xk83yMukt049s zqsdZYl1oivAz!g6t$gHc)3gPqqWLC!v8ie{q&RAtc9p5%EavB`2XmbYe@%`~lJ_$<@XB*jRX0TW13EJ~^vne06&;Tzk? zBe}vPSD40@n=)*sH0rOfA>Fnk$D*{XTWZQka+=aG{v_xp`P*aBOpLEFWmNI>6Ci#X z#QzNAt4tX+5RbGm1LCV7z8E(&&N1aB8w{qjGU^V>cNM%}ee_uL)Hr$zLi|k-U#p8p zcsE1*4v1f7AiVODD-1?aMWnI&5x?(`MOR6zU2n$vtwDO~NSS5It1+5nh_F$^l#NWf zRR3%nsg?gVz*zur^zLAl$$&Sru%sDSe}I1o=ETpWnDJDqjwfh@q>VTmsfF zH-oHjXjFd;y&zru3F41Jd_Je^jwGKcO-E19!uzo&_eamypCmQ7%{+$5lD8Lz` z!@m;y3^x*w>5uvhG5D9M_?N2qUuLRG3IYD53Ft~~$Ik(td}@F60gRZ3?U)oaVhWcj z4e9tK;8zd9`zKP^IM>sE(mJD{{F0H$HyYHZ@{vhpKytv6n~9Sbk8IREIZbl%XivB}06!Y02=*4lxy`jS#cRP-@x+ z;STujf$v@@5mGG?sRSg&$SVU}r)&gAu2le?nquTpz(pJQ&wBng=`JG&X5&Q`#}x^g zmgxXsndR_vDF?vl8|TUEU=Sa&_eU>25q`A8kerkZC0qd|IH)9uxqjGSGj-N5NK;M? zz|!jY$=9e8T-hJJMdc?+*9wM$??(eavMlV6c3^}Z-(P7&vP)WMO2ctE8Fd7B|5z-) zuSg(gR00OcA0#F+;>~`q(6Fo*9k0&XWG92ODjPDn~%VBp(jt%^*r_L3l~4Olh09 zIDkJSui>&E&Z9MuzjbMUbTj8OnjDgJvo3$d$a3ug@A11C@?|*sqh}jLyC+>|#KGvH zze)3r$ZjgBtFRxQK+UzjKe{Sy5c<*h<2(@8k{T0s1CuWh-bwH)@9O^O{MddiO#rXT zR7FF6P zEXxNnPrGj3`4RC0U39HF4kQWtVKnHp8zKH0#BUb%Um5ma9Y_~Z#>#Ej5o&*zLi)68 z`lFxm`tW(fj`PMmka7zQ0|h5+@9QAnCVzkQp27N08~=6yvp%tSWK-LFJHX4hwm+&r z1RCQ%M*JZDXL0dALc9#|m+IoNKBGZbUjXrs#@45l%Yn(K#MEcDT7D(u+Y7pTg$^Fh zt1gHidwqZO%Gh~4@jSIO`8=#=xhbzSUJNWvRDE6!@~!PqPR6SK=-<@-Oxhq4AReE? z`}Oet52=IDx5l?-!+1%qNE(E1CHV*K3DiSsOrQ&Q0R3=0bo`^iG`57uhx#AV6?OJU zw+xdK%QrFnKRx-MsR{8Rf+GD7;BERve{|yU>1mc}?a1UANv3rp71R2W^C2w8n99L8 zb@BvEI~&q^d0H2QAPS6}2Vprp^M1gk-5MakrrY|X{jv1J^@xW?BrVd@4+v1Vm^Oj{ zy=g=pgfMH4SO(z&cwWMv0n8ony&vFa+|eIBJ@o|Ws4BTPabP0tb3Eyn!+rGwq;q#;!gi9IkLn=a;m|WMM`{ zn6?zH5u^!Mw2g-(iw0zf*1Ca!2Ca&vr~rGZHaMx)W`mG!i_)cux}=%brk&DseEaV1 zcjS8~(n{L|MNvI~`tk0*@4NrseRq%g&iz?;X~oLs*%Rzc>*1XBsBNC{{V&DOQ2a^f zxI5`F%>4eBoe{iFbjw6nRrwai$(-)qUFMnBdpryJt)4|vg-i5Vrq2qotx^_igzFTZ zCJEt)@?7}t$1;_4u-AsbgKakUW_ZG!Y(Ms={{h`Xp0e}MSOzS7%?e~{?O1ew?S zC~}gJ6^_m8%j^tqHfJ5$R-%0i>(&w4=X|Zy{mq%gB>L>*;ta8<9oBBM!`58-{Y9%sc3sS~PPXDSv7e{@%u=hbx!iy6 zqS$VV%@DS*m}ohDBTGX6gp9e-g_tvhtt=*~BPPLRuDNXO5q*!Q#V_Zq>+|g)^&%}P za$VI5^X4I<5B@{W+PT9~zr!WwJ3AjLqLq2~@%iy8$uq9xtZ`kg58a-?Sm#&mwvh^HyF}%CiVApzO87Jt z@fj-Pw@E2^n(yB6sqOb}`%Kw=?)z!DH+7bvMEfv1_({rtW+`X&v-;d#WF8mtrwXvs zsiu~@i<&MGTWPWyP9 zcAYIc+=MyA?c5V2&;MM``T~pS&9`4yzWv&`og2GE4fhm@xI!|XCLzyId00IkBL3`i z&@1+G$Mw#<9g6cUuK$UC;W_M=__!r=itXKObWHB+L|6X3oORJDcYy5MlXB-kq%*QJf zU-j=f>kX$pRm#r%K`HZ2ECj{uJF(~4XgYLNvi*EdHTBnj=B%%8Zs#7RdOkp+4sQ@O zSgGId8SL}~JNdzSyC>5^W9>w-qpjOL0bcLRl<)G3IjeQ^b3S(d`Z>=;yC>e^$&hk) zje3H|OEkk7&%_Z=yxWs$CAuME3{==-`gn)%^WW>pzIiEU?JH$>+WVL6>VGV5$5Qj& zUVQ3zRPyuNin$bCrf11ecL#_*LDjeAH|UQ zfv9h8qi>xQ)k;EJk#h^>%!HGHc7Yb<87jssedgRFEOH)VsTG6}eSy9lWihk`AZ8M~ z-36jE`53okYnFMp*ok-nGYri0%&9W^Hcm076#Yez+zB~)77^z_F@$hZa$Ht&*1w>N zxLb*!jSMyVj5{KWan@y{;6l?1i@V#UO8p!9(oGR5M0BeJ_bIj2A5kI-_R+nxnONIz zS)X>UYq#+8=Ya~xhMVovpCtM~gJr$qr04rAQgD;@UDjdPElf|nPJHDDEbD`1rRS0U zr419w9dn5jwU&a~V{@y^7DJn>$Cap#{5lZ*eNCHdvaIJf*Hi5@>z*(DHVEfmB(M38 zE$d&IzVC3JQ=GNg0eoARKY@35m3h4E9jmZcFn{^_{~=9VYO(llD{STKDms5x485i3 z929mBv(HYDykM7QjcvQS{S+^8%t!Z_~${^qr>lC8^6lKl8lOT5o8mG>1r ztQY)uh)%rZscw6Uq+ZGED`qeJg7{a6|B<{M(8cV4!|a?=ngPrXto;MBw|XrrSn54C zd++v`cw^mCFuU~=Y|G4EQPYCS_Q_F_6AxJIDmVUqGhI=5FUjA3QhJusAIq0#Z0B}8 z`K}%1;#}b(r5m?e)`KklwtP7{^W`|o-lwy1dx;A26qV!(73FDm&Kukqspaj7G8zOE zB==of;o-j*p!lE?&)TDb;s+_-)UIaFbcy$B&52@zgv-B+Qp15uXLF06(wr|24wiA2{RZ5g%9L7nHE}k~17o!WWeA zD#A@K3;dQ+o+X5*k-qSZ06 z|9=a-2kFxYF9NG^5)}l_0+)c*|08e$I179f^41aV`Z3xQI1ki*f^^^o;40AjI?4}R z1g-&_e=6`RvRx5g0eXKX@EN3M5MD)i0pY6uMSB8gflEMR9pwiu0M~(CZ=j!m%RukX zi;u&y7f>Fg&jHtgO>aUTaQ;oFoNK{f{tM&}JP%w3djHSKH;C{Ia24p!IqBjEXMrog z+83O3hY+r^P;OwKLKjAO8tF^GYE7h10Ox^|FBEULau@Una0a*rY}N&4fy=;ZH}V0_ z1Ix?62h0MOf!=KbGr&b)`F3ZyB%VUKn~{DVxUA6MFWYTLaXF77y$R{lz(rtnxxiq# zlkXegn^oeUMf^JA{nvmWID3tg{w2__Ailan;Ll~b5PskHp&t<5hj13*dEjb=Q+`z? z#v^bVxLE0=TUWxRp4WUL{bk_FCb$e-1TFyQfHS}cfS(1P2WEhAVA!{bHF^{Bxe@gR zHUqOKARqV_zzlF@NZ@yY3&0uRG%yJ40yY7?z$)OHlnY!2E&}I(Gr$Wcu3o>nlOp}^ zfPV{|0sa**3!DbVfkEIPFaYcZHUs@Y1NcY4_W;X*I&f`hlYaRXpX!rNxyBK+FHi%n zbqo9<@cZ4x%hT3}`T-4K6>umlFbYg4;d4rO3U3wAzhRk zVI2i~1L2z_!Q1@!AFO$21aCcC&u`IFK7)DCfOV)r>f`OC0=AP{*+w6C8O>CuqCVgZ z-slgHG#+Re3x)k7{{8-gjp2O_dq+mYe)C{srB_}jr_|B>1os$An z36UcIFWMd$rnH0^4KYHNQ6#1L;!*L(Hy)!e{J*w+W0XXcG46KKXHE={B|?+t@I*LK z2nqh-P$Ch!Q*g-dcZ?DlV`X`f6ke{-WMovtYQB+Vk{4^3w?Wi)XZWx4Ful%Hr0k6* z-HF#L^r|{#_jT^D@ek-uG!*(WCH#j9e@b^^?I!%}{lm{l*Gqo6zDXQJf#rHvt~sBN zYN8D!zg+($%7vM&k1iX(T(>$kvG(QpuXUnaKjovgU#}+CGRZI3FNvB`eqF)inphiU zSgwx}gIe+O%jXVFw5jBm>$OC=UaRdV>z{&LX+KE&MdJIF{M7zCqwp`>?8GXCzDmJA zQ}~x|cH*p4&1|Uud4+%aPn`IjN1Q#Tmghc&U)pODuTkjL`hQMy&c7h|Bv#+!q&F1) zhZO!yM0en$ZYRB({}&a0V^VkEWhFzk{hrXoU3xMbX`e1;^`i9U3NC2k4nD~*?boHZ z$bSXpm;B4%U*3dYKL4!nuYi9A`~k)DhoSKQhbH=7@=LqW|DfQP|L`EkhsjLXHPmz$Ba8do(l^4sn+qhm2Zwp%$a%G-P!X z?@(<&zky)S&Wc}wcOaA)H&b6Gxu#Rn<7>LEdvm@eWb$+ouznwkGoJFNhGq2b3!ltB8 zbYO&e!yXM$qcVX-@?||0GQyFuF_SwG77ZDr4mCofiC8jen4!^vudvwUWNfO?bxdff z8b^F4YZ@A0d+WrtWckLNVlLO}F^mdb#~eqJBB~Qy`|7Sb3=A*Jz-S8$x3mT746nUQ zAYp$UACqi6*LEfi7I6CFOk*vY1ry+GHxsJOUmvjtlRLzBWBLOVt?lZ4;4bSR_dY~!2-ZNC2Wx8bD%mt@#dwhefvY?2>?(pwf|B;OoQR!fgH{~qB+Qge zeKUc1pNe^}>9*P{85PDcAB{4eYJ#p2WfWSl=qkaQ!kFT|{l%S?ygRsm!Bgx4$v&py zPDf~h6>7kEm{@+XZ#0yi!d-@HfepU6P+~~vPv&$o!n{Y4Nao6rYZ5*@*mCm`qtMQ1 zWnk91W3SUjq0Kc5%jdIRyJ~a6e*-)Ve z%}fMpcz112OaDN}VD~^Nq3o~>u=*?Qiw=l=n=WWg{1_yYjm&>h17 literal 0 HcmV?d00001 diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..960dc9f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,63 @@ +{ + "compilerOptions": { + /* Basic Options */ + // "incremental": true, /* Enable incremental compilation */ + "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ + "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ + // "allowJs": true, /* Allow javascript files to be compiled. */ + // "checkJs": true, /* Report errors in .js files. */ + // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ + // "declaration": true, /* Generates corresponding '.d.ts' file. */ + // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ + // "sourceMap": true, /* Generates corresponding '.map' file. */ + // "outFile": "./", /* Concatenate and emit output to single file. */ + "outDir": "./lib", /* Redirect output structure to the directory. */ + "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ + // "composite": true, /* Enable project compilation */ + // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ + // "removeComments": true, /* Do not emit comments to output. */ + // "noEmit": true, /* Do not emit outputs. */ + // "importHelpers": true, /* Import emit helpers from 'tslib'. */ + // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ + // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ + + /* Strict Type-Checking Options */ + "strict": true, /* Enable all strict type-checking options. */ + "noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */ + // "strictNullChecks": true, /* Enable strict null checks. */ + // "strictFunctionTypes": true, /* Enable strict checking of function types. */ + // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ + // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ + // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ + // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ + + /* Additional Checks */ + // "noUnusedLocals": true, /* Report errors on unused locals. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + + /* Module Resolution Options */ + // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ + // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ + // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ + // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ + // "typeRoots": [], /* List of folders to include type definitions from. */ + // "types": [], /* Type declaration files to be included in compilation. */ + // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ + "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + + /* Source Map Options */ + // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ + // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ + + /* Experimental Options */ + // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ + // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ + }, + "exclude": ["node_modules", "**/*.test.ts"] +}