pax_global_header00006660000000000000000000000064141246766070014527gustar00rootroot0000000000000052 comment=51909b72a85ba5c5ed796eafed570a6beb4fa520 cmd-shim--zkochan-cmd-shim-5.2.1/000077500000000000000000000000001412467660700164445ustar00rootroot00000000000000cmd-shim--zkochan-cmd-shim-5.2.1/.editorconfig000066400000000000000000000002561412467660700211240ustar00rootroot00000000000000root = true [*] insert_final_newline = true charset = utf-8 trim_trailing_whitespace = true end_of_line = lf [*.{ts,js,json,yml,yaml}] indent_style = space indent_size = 2 cmd-shim--zkochan-cmd-shim-5.2.1/.gitignore000066400000000000000000000002501412467660700204310ustar00rootroot00000000000000lib-cov *.seed *.log *.csv *.dat *.out *.pid *.gz pids logs results npm-debug.log node_modules index.d.ts index.d.ts.map index.js index.js.map tsconfig.tsbuildinfo cmd-shim--zkochan-cmd-shim-5.2.1/.npmrc000066400000000000000000000001301412467660700175560ustar00rootroot00000000000000save-exact = false tag-version-prefix = @zkochan/cmd-shim/ message = chore(release): %s cmd-shim--zkochan-cmd-shim-5.2.1/.travis.yml000066400000000000000000000002321412467660700205520ustar00rootroot00000000000000language: node_js node_js: - '10' - '12' - '14' before_install: - curl -L https://unpkg.com/@pnpm/self-installer | node install: - pnpm install cmd-shim--zkochan-cmd-shim-5.2.1/LICENSE000066400000000000000000000024361412467660700174560ustar00rootroot00000000000000Copyright (c) Isaac Z. Schlueter ("Author") All rights reserved. The BSD License 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. THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. cmd-shim--zkochan-cmd-shim-5.2.1/README.md000066400000000000000000000036531412467660700177320ustar00rootroot00000000000000# @zkochan/cmd-shim > Used in pnpm for command line application support [![Build Status](https://img.shields.io/travis/pnpm/cmd-shim/master.svg)](https://travis-ci.org/pnpm/cmd-shim) [![Build Status on Windows](https://img.shields.io/appveyor/ci/zkochan/cmd-shim-8ah3a/master.svg)](https://ci.appveyor.com/project/zkochan/cmd-shim-8ah3a/branch/master) [![npm version](https://img.shields.io/npm/v/@zkochan/cmd-shim.svg)](https://www.npmjs.com/package/@zkochan/cmd-shim) The cmd-shim used in [pnpm](https://github.com/rstacruz/pnpm) to create executable scripts. ## Installation ```sh npm install --save @zkochan/cmd-shim ``` ## API ### `cmdShim(src, to, opts?): Promise` Create a cmd shim at `to` for the command line program at `from`. e.g. ```javascript const cmdShim = require('@zkochan/cmd-shim') cmdShim(__dirname + '/cli.js', '/usr/bin/command-name') .catch(err => console.error(err)) ``` ### `cmdShim.ifExists(src, to, opts?): Promise` The same as above, but will just continue if the file does not exist. #### Arguments: - `opts.preserveSymlinks` - _Boolean_ - if true, `--preserve-symlinks` is added to the options passed to NodeJS. - `opts.nodePath` - _String_ - sets the [NODE_PATH](https://nodejs.org/api/cli.html#cli_node_path_path) env variable. - `opts.nodeExecPath` - _String_ - sets the path to the Node.js executable. - `opts.createCmdFile` - _Boolean_ - is `true` on Windows by default. If true, creates a cmd file. - `opts.createPwshFile` - _Boolean_ - is `true` by default. If true, creates a powershell file. - `opts.progArgs` - String - optional arguments that will be prepend to any CLI arguments ```javascript const cmdShim = require('@zkochan/cmd-shim') cmdShim(__dirname + '/cli.js', '/usr/bin/command-name', { preserveSymlinks: true }) .catch(err => console.error(err)) ``` ## License [BSD-2-Clause](./LICENSE) © [Zoltan Kochan](http://kochan.io) cmd-shim--zkochan-cmd-shim-5.2.1/appveyor.yml000066400000000000000000000005501412467660700210340ustar00rootroot00000000000000environment: matrix: - nodejs_version: '10' - nodejs_version: '12' - nodejs_version: '14' install: - ps: Install-Product node $env:nodejs_version - curl -L https://unpkg.com/@pnpm/self-installer | node - pnpm install matrix: fast_finish: true build: 'off' version: '{build}' test_script: - node --version - npm --version - npm test cmd-shim--zkochan-cmd-shim-5.2.1/package.json000066400000000000000000000025561412467660700207420ustar00rootroot00000000000000{ "name": "@zkochan/cmd-shim", "version": "5.2.1", "description": "Used in pnpm for command line application support", "author": { "name": "Zoltan Kochan", "email": "zoltan.kochan@gmail.com", "url": "http://kochan.io" }, "scripts": { "clean": "tsc --build --clean", "build": "tsc --build --verbose --listEmittedFiles", "pretest:unit": "tsc --build test --verbose --listEmittedFiles", "test:unit": "jest", "test": "pnpm run build && standard && pnpm run test:unit && mos test", "md": "mos", "prepublishOnly": "pnpm run build" }, "files": [ "index.d.ts", "index.d.ts.map", "index.js", "index.js.map" ], "repository": { "type": "git", "url": "https://github.com/pnpm/cmd-shim.git" }, "license": "BSD-2-Clause", "dependencies": { "cmd-extension": "^1.0.1", "is-windows": "^1.0.2" }, "devDependencies": { "@types/is-windows": "^1.0.0", "@types/jest": "^26.0.20", "@types/node": "^14.14.20", "jest": "^26.6.3", "memfs": "^3.2.0", "mock-fs": "^4.13.0", "mos": "^1.3.1", "mos-plugin-readme": "^1.0.4", "standard": "^14.3.4", "typescript": "^4.1.3" }, "engines": { "node": ">=10.13" }, "mos": { "plugins": [ "readme" ] }, "standard": { "env": { "jest": true } }, "jest": { "testEnvironment": "node" } } cmd-shim--zkochan-cmd-shim-5.2.1/pnpm-lock.yaml000066400000000000000000005700051412467660700212370ustar00rootroot00000000000000lockfileVersion: 5.3 specifiers: '@types/is-windows': ^1.0.0 '@types/jest': ^26.0.20 '@types/node': ^14.14.20 cmd-extension: ^1.0.1 is-windows: ^1.0.2 jest: ^26.6.3 memfs: ^3.2.0 mock-fs: ^4.13.0 mos: ^1.3.1 mos-plugin-readme: ^1.0.4 standard: ^14.3.4 typescript: ^4.1.3 dependencies: cmd-extension: 1.0.1 is-windows: 1.0.2 devDependencies: '@types/is-windows': 1.0.0 '@types/jest': 26.0.20 '@types/node': 14.14.20 jest: 26.6.3 memfs: 3.2.0 mock-fs: 4.13.0 mos: 1.3.1 mos-plugin-readme: 1.0.4 standard: 14.3.4 typescript: 4.1.3 packages: /@babel/code-frame/7.12.11: resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} dependencies: '@babel/highlight': 7.10.4 dev: true /@babel/core/7.12.10: resolution: {integrity: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.12.11 '@babel/generator': 7.12.11 '@babel/helper-module-transforms': 7.12.1 '@babel/helpers': 7.12.5 '@babel/parser': 7.12.11 '@babel/template': 7.12.7 '@babel/traverse': 7.12.12 '@babel/types': 7.12.12 convert-source-map: 1.7.0 debug: 4.3.1 gensync: 1.0.0-beta.2 json5: 2.1.3 lodash: 4.17.20 semver: 5.7.1 source-map: 0.5.7 transitivePeerDependencies: - supports-color dev: true /@babel/generator/7.12.11: resolution: {integrity: sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==} dependencies: '@babel/types': 7.12.12 jsesc: 2.5.2 source-map: 0.5.7 dev: true /@babel/helper-function-name/7.12.11: resolution: {integrity: sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==} dependencies: '@babel/helper-get-function-arity': 7.12.10 '@babel/template': 7.12.7 '@babel/types': 7.12.12 dev: true /@babel/helper-get-function-arity/7.12.10: resolution: {integrity: sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==} dependencies: '@babel/types': 7.12.12 dev: true /@babel/helper-member-expression-to-functions/7.12.7: resolution: {integrity: sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==} dependencies: '@babel/types': 7.12.12 dev: true /@babel/helper-module-imports/7.12.5: resolution: {integrity: sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==} dependencies: '@babel/types': 7.12.12 dev: true /@babel/helper-module-transforms/7.12.1: resolution: {integrity: sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==} dependencies: '@babel/helper-module-imports': 7.12.5 '@babel/helper-replace-supers': 7.12.11 '@babel/helper-simple-access': 7.12.1 '@babel/helper-split-export-declaration': 7.12.11 '@babel/helper-validator-identifier': 7.12.11 '@babel/template': 7.12.7 '@babel/traverse': 7.12.12 '@babel/types': 7.12.12 lodash: 4.17.20 transitivePeerDependencies: - supports-color dev: true /@babel/helper-optimise-call-expression/7.12.10: resolution: {integrity: sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==} dependencies: '@babel/types': 7.12.12 dev: true /@babel/helper-plugin-utils/7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: true /@babel/helper-replace-supers/7.12.11: resolution: {integrity: sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==} dependencies: '@babel/helper-member-expression-to-functions': 7.12.7 '@babel/helper-optimise-call-expression': 7.12.10 '@babel/traverse': 7.12.12 '@babel/types': 7.12.12 transitivePeerDependencies: - supports-color dev: true /@babel/helper-simple-access/7.12.1: resolution: {integrity: sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==} dependencies: '@babel/types': 7.12.12 dev: true /@babel/helper-split-export-declaration/7.12.11: resolution: {integrity: sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==} dependencies: '@babel/types': 7.12.12 dev: true /@babel/helper-validator-identifier/7.12.11: resolution: {integrity: sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==} dev: true /@babel/helpers/7.12.5: resolution: {integrity: sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==} dependencies: '@babel/template': 7.12.7 '@babel/traverse': 7.12.12 '@babel/types': 7.12.12 transitivePeerDependencies: - supports-color dev: true /@babel/highlight/7.10.4: resolution: {integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==} dependencies: '@babel/helper-validator-identifier': 7.12.11 chalk: 2.4.2 js-tokens: 4.0.0 dev: true /@babel/parser/7.12.11: resolution: {integrity: sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==} engines: {node: '>=6.0.0'} hasBin: true dev: true /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.10: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.10: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-class-properties/7.12.1_@babel+core@7.12.10: resolution: {integrity: sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.10: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.10: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.10: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.10: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.10: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.10: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.10: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.10: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.12.10: resolution: {integrity: sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.10 '@babel/helper-plugin-utils': 7.10.4 dev: true /@babel/template/7.12.7: resolution: {integrity: sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==} dependencies: '@babel/code-frame': 7.12.11 '@babel/parser': 7.12.11 '@babel/types': 7.12.12 dev: true /@babel/traverse/7.12.12: resolution: {integrity: sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==} dependencies: '@babel/code-frame': 7.12.11 '@babel/generator': 7.12.11 '@babel/helper-function-name': 7.12.11 '@babel/helper-split-export-declaration': 7.12.11 '@babel/parser': 7.12.11 '@babel/types': 7.12.12 debug: 4.3.1 globals: 11.12.0 lodash: 4.17.20 transitivePeerDependencies: - supports-color dev: true /@babel/types/7.12.12: resolution: {integrity: sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==} dependencies: '@babel/helper-validator-identifier': 7.12.11 lodash: 4.17.20 to-fast-properties: 2.0.0 dev: true /@bcoe/v8-coverage/0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true /@cnakazawa/watch/1.0.4: resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} engines: {node: '>=0.1.95'} hasBin: true dependencies: exec-sh: 0.3.4 minimist: 1.2.5 dev: true /@istanbuljs/load-nyc-config/1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} dependencies: camelcase: 5.3.1 find-up: 4.1.0 get-package-type: 0.1.0 js-yaml: 3.14.1 resolve-from: 5.0.0 dev: true /@istanbuljs/schema/0.1.2: resolution: {integrity: sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==} engines: {node: '>=8'} dev: true /@jest/console/26.6.2: resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/node': 14.14.20 chalk: 4.1.0 jest-message-util: 26.6.2 jest-util: 26.6.2 slash: 3.0.0 dev: true /@jest/core/26.6.3: resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==} engines: {node: '>= 10.14.2'} dependencies: '@jest/console': 26.6.2 '@jest/reporters': 26.6.2 '@jest/test-result': 26.6.2 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 '@types/node': 14.14.20 ansi-escapes: 4.3.1 chalk: 4.1.0 exit: 0.1.2 graceful-fs: 4.2.4 jest-changed-files: 26.6.2 jest-config: 26.6.3 jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-resolve-dependencies: 26.6.3 jest-runner: 26.6.3 jest-runtime: 26.6.3 jest-snapshot: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 jest-watcher: 26.6.2 micromatch: 4.0.2 p-each-series: 2.2.0 rimraf: 3.0.2 slash: 3.0.0 strip-ansi: 6.0.0 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate dev: true /@jest/environment/26.6.2: resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==} engines: {node: '>= 10.14.2'} dependencies: '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 '@types/node': 14.14.20 jest-mock: 26.6.2 dev: true /@jest/fake-timers/26.6.2: resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@sinonjs/fake-timers': 6.0.1 '@types/node': 14.14.20 jest-message-util: 26.6.2 jest-mock: 26.6.2 jest-util: 26.6.2 dev: true /@jest/globals/26.6.2: resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} engines: {node: '>= 10.14.2'} dependencies: '@jest/environment': 26.6.2 '@jest/types': 26.6.2 expect: 26.6.2 dev: true /@jest/reporters/26.6.2: resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==} engines: {node: '>= 10.14.2'} dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 26.6.2 '@jest/test-result': 26.6.2 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 chalk: 4.1.0 collect-v8-coverage: 1.0.1 exit: 0.1.2 glob: 7.1.6 graceful-fs: 4.2.4 istanbul-lib-coverage: 3.0.0 istanbul-lib-instrument: 4.0.3 istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.0 istanbul-reports: 3.0.2 jest-haste-map: 26.6.2 jest-resolve: 26.6.2 jest-util: 26.6.2 jest-worker: 26.6.2 slash: 3.0.0 source-map: 0.6.1 string-length: 4.0.1 terminal-link: 2.1.1 v8-to-istanbul: 7.1.0 optionalDependencies: node-notifier: 8.0.2 transitivePeerDependencies: - supports-color dev: true /@jest/source-map/26.6.2: resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==} engines: {node: '>= 10.14.2'} dependencies: callsites: 3.1.0 graceful-fs: 4.2.4 source-map: 0.6.1 dev: true /@jest/test-result/26.6.2: resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==} engines: {node: '>= 10.14.2'} dependencies: '@jest/console': 26.6.2 '@jest/types': 26.6.2 '@types/istanbul-lib-coverage': 2.0.3 collect-v8-coverage: 1.0.1 dev: true /@jest/test-sequencer/26.6.3: resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==} engines: {node: '>= 10.14.2'} dependencies: '@jest/test-result': 26.6.2 graceful-fs: 4.2.4 jest-haste-map: 26.6.2 jest-runner: 26.6.3 jest-runtime: 26.6.3 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate dev: true /@jest/transform/26.6.2: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: '@babel/core': 7.12.10 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.0.0 chalk: 4.1.0 convert-source-map: 1.7.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.4 jest-haste-map: 26.6.2 jest-regex-util: 26.0.0 jest-util: 26.6.2 micromatch: 4.0.2 pirates: 4.0.1 slash: 3.0.0 source-map: 0.6.1 write-file-atomic: 3.0.3 transitivePeerDependencies: - supports-color dev: true /@jest/types/26.6.2: resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} engines: {node: '>= 10.14.2'} dependencies: '@types/istanbul-lib-coverage': 2.0.3 '@types/istanbul-reports': 3.0.0 '@types/node': 14.14.20 '@types/yargs': 15.0.12 chalk: 4.1.0 dev: true /@sinonjs/commons/1.8.1: resolution: {integrity: sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==} dependencies: type-detect: 4.0.8 dev: true /@sinonjs/fake-timers/6.0.1: resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} dependencies: '@sinonjs/commons': 1.8.1 dev: true /@types/babel__core/7.1.12: resolution: {integrity: sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==} dependencies: '@babel/parser': 7.12.11 '@babel/types': 7.12.12 '@types/babel__generator': 7.6.2 '@types/babel__template': 7.4.0 '@types/babel__traverse': 7.11.0 dev: true /@types/babel__generator/7.6.2: resolution: {integrity: sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==} dependencies: '@babel/types': 7.12.12 dev: true /@types/babel__template/7.4.0: resolution: {integrity: sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==} dependencies: '@babel/parser': 7.12.11 '@babel/types': 7.12.12 dev: true /@types/babel__traverse/7.11.0: resolution: {integrity: sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg==} dependencies: '@babel/types': 7.12.12 dev: true /@types/graceful-fs/4.1.4: resolution: {integrity: sha512-mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg==} dependencies: '@types/node': 14.14.20 dev: true /@types/is-windows/1.0.0: resolution: {integrity: sha512-tJ1rq04tGKuIJoWIH0Gyuwv4RQ3+tIu7wQrC0MV47raQ44kIzXSSFKfrxFUOWVRvesoF7mrTqigXmqoZJsXwTg==} dev: true /@types/istanbul-lib-coverage/2.0.3: resolution: {integrity: sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==} dev: true /@types/istanbul-lib-report/3.0.0: resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} dependencies: '@types/istanbul-lib-coverage': 2.0.3 dev: true /@types/istanbul-reports/3.0.0: resolution: {integrity: sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==} dependencies: '@types/istanbul-lib-report': 3.0.0 dev: true /@types/jest/26.0.20: resolution: {integrity: sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA==} dependencies: jest-diff: 26.6.2 pretty-format: 26.6.2 dev: true /@types/node/14.14.20: resolution: {integrity: sha512-Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A==} dev: true /@types/normalize-package-data/2.4.0: resolution: {integrity: sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==} dev: true /@types/prettier/2.1.6: resolution: {integrity: sha512-6gOkRe7OIioWAXfnO/2lFiv+SJichKVSys1mSsgyrYHSEjk8Ctv4tSR/Odvnu+HWlH2C8j53dahU03XmQdd5fA==} dev: true /@types/stack-utils/2.0.0: resolution: {integrity: sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==} dev: true /@types/yargs-parser/20.2.0: resolution: {integrity: sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==} dev: true /@types/yargs/15.0.12: resolution: {integrity: sha512-f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw==} dependencies: '@types/yargs-parser': 20.2.0 dev: true /@zkochan/async-replace/0.4.1: resolution: {integrity: sha1-TPO97s9S8vasjzKw2IpoLrSEiXk=} dependencies: babel-run-async: 1.0.0 babel-runtime: 6.26.0 dev: true /@zkochan/hosted-git-info/2.1.5: resolution: {integrity: sha1-VVsJHJVrqEky2IiY++/gZDxjp58=} dev: true /@zkochan/normalize-package-data/2.3.6: resolution: {integrity: sha1-fxfhnnnmUm3mc7d/OMgvrhrHXWk=} dependencies: '@zkochan/hosted-git-info': 2.1.5 is-builtin-module: 1.0.0 semver: 5.7.1 validate-npm-package-license: 3.0.4 dev: true /@zkochan/read-pkg-up/1.0.2: resolution: {integrity: sha1-naMNLg1pvpyxPj+yJkAiwPaHqgg=} engines: {node: '>=0.10.0'} dependencies: '@zkochan/read-pkg': 1.1.2 find-up: 1.1.2 dev: true /@zkochan/read-pkg/1.1.2: resolution: {integrity: sha1-7o/STAEJZvFmIg+Roa7hr397tTQ=} engines: {node: '>=0.10.0'} dependencies: '@zkochan/normalize-package-data': 2.3.6 load-json-file: 1.1.0 path-type: 1.1.0 dev: true /@zkochan/tap-diff/1.1.1: resolution: {integrity: sha1-97rUOe3/KbmLC/80Rru4xecJbHk=} hasBin: true dependencies: babel-runtime: 6.26.0 chalk: 1.1.3 core-js: 2.6.12 diff: 2.2.3 duplexer: 0.1.2 figures: 1.7.0 jsondiffpatch: 0.1.43 pretty-ms: 2.1.0 tap-parser: 1.3.2 through2: 2.0.5 dev: true /abab/2.0.5: resolution: {integrity: sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==} dev: true /acorn-globals/6.0.0: resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} dependencies: acorn: 7.4.1 acorn-walk: 7.2.0 dev: true /acorn-jsx/5.3.1_acorn@7.4.1: resolution: {integrity: sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 7.4.1 dev: true /acorn-walk/7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} engines: {node: '>=0.4.0'} dev: true /acorn/3.0.4: resolution: {integrity: sha1-BPJElQ/bj6+FUHrUgcLt7nrs3uw=} engines: {node: '>=0.4.0'} hasBin: true dev: true /acorn/7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} hasBin: true dev: true /ajv/6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 json-schema-traverse: 0.4.1 uri-js: 4.4.1 dev: true /amdefine/1.0.1: resolution: {integrity: sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=} engines: {node: '>=0.4.2'} dev: true /ansi-align/1.1.0: resolution: {integrity: sha1-LwwWWIKXOa3V67FeawxuNCPwFro=} dependencies: string-width: 1.0.2 dev: true /ansi-escapes/4.3.1: resolution: {integrity: sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==} engines: {node: '>=8'} dependencies: type-fest: 0.11.0 dev: true /ansi-regex/0.2.1: resolution: {integrity: sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=} engines: {node: '>=0.10.0'} dev: true /ansi-regex/2.1.1: resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=} engines: {node: '>=0.10.0'} dev: true /ansi-regex/4.1.0: resolution: {integrity: sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==} engines: {node: '>=6'} dev: true /ansi-regex/5.0.0: resolution: {integrity: sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==} engines: {node: '>=8'} dev: true /ansi-styles/1.1.0: resolution: {integrity: sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94=} engines: {node: '>=0.10.0'} dev: true /ansi-styles/2.2.1: resolution: {integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=} engines: {node: '>=0.10.0'} dev: true /ansi-styles/3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} dependencies: color-convert: 1.9.3 dev: true /ansi-styles/4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} dependencies: color-convert: 2.0.1 dev: true /anymatch/2.0.0: resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} dependencies: micromatch: 3.1.10 normalize-path: 2.1.1 dev: true /anymatch/3.1.1: resolution: {integrity: sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==} engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.2.2 dev: true /argparse/1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: sprintf-js: 1.0.3 dev: true /arr-diff/4.0.0: resolution: {integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=} engines: {node: '>=0.10.0'} dev: true /arr-exclude/1.0.0: resolution: {integrity: sha1-38fC5VKicHI8zaBM8xKMjL/lxjE=} engines: {node: '>=0.10.0'} dev: true /arr-flatten/1.1.0: resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} engines: {node: '>=0.10.0'} dev: true /arr-union/3.1.0: resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=} engines: {node: '>=0.10.0'} dev: true /array-find-index/1.0.2: resolution: {integrity: sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=} engines: {node: '>=0.10.0'} dev: true /array-includes/3.1.2: resolution: {integrity: sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.1 define-properties: 1.1.3 es-abstract: 1.18.0-next.1 get-intrinsic: 1.0.2 is-string: 1.0.5 dev: true /array-unique/0.3.2: resolution: {integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=} engines: {node: '>=0.10.0'} dev: true /asn1/0.2.4: resolution: {integrity: sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==} dependencies: safer-buffer: 2.1.2 dev: true /assert-plus/1.0.0: resolution: {integrity: sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=} engines: {node: '>=0.8'} dev: true /assign-symbols/1.0.0: resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=} engines: {node: '>=0.10.0'} dev: true /astral-regex/1.0.0: resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} engines: {node: '>=4'} dev: true /asynckit/0.4.0: resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=} dev: true /atob/2.1.2: resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} engines: {node: '>= 4.5.0'} hasBin: true dev: true /aws-sign2/0.7.0: resolution: {integrity: sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=} dev: true /aws4/1.11.0: resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==} dev: true /babel-code-frame/6.26.0: resolution: {integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=} dependencies: chalk: 1.1.3 esutils: 2.0.3 js-tokens: 3.0.2 dev: true /babel-core/6.26.3: resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==} dependencies: babel-code-frame: 6.26.0 babel-generator: 6.26.1 babel-helpers: 6.24.1 babel-messages: 6.23.0 babel-register: 6.26.0 babel-runtime: 6.26.0 babel-template: 6.26.0 babel-traverse: 6.26.0 babel-types: 6.26.0 babylon: 6.18.0 convert-source-map: 1.7.0 debug: 2.6.9 json5: 0.5.1 lodash: 4.17.20 minimatch: 3.0.4 path-is-absolute: 1.0.1 private: 0.1.8 slash: 1.0.0 source-map: 0.5.7 dev: true /babel-generator/6.26.1: resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==} dependencies: babel-messages: 6.23.0 babel-runtime: 6.26.0 babel-types: 6.26.0 detect-indent: 4.0.0 jsesc: 1.3.0 lodash: 4.17.20 source-map: 0.5.7 trim-right: 1.0.1 dev: true /babel-helper-define-map/6.26.0: resolution: {integrity: sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=} dependencies: babel-helper-function-name: 6.24.1 babel-runtime: 6.26.0 babel-types: 6.26.0 lodash: 4.17.20 dev: true /babel-helper-function-name/6.24.1: resolution: {integrity: sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=} dependencies: babel-helper-get-function-arity: 6.24.1 babel-runtime: 6.26.0 babel-template: 6.26.0 babel-traverse: 6.26.0 babel-types: 6.26.0 dev: true /babel-helper-get-function-arity/6.24.1: resolution: {integrity: sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=} dependencies: babel-runtime: 6.26.0 babel-types: 6.26.0 dev: true /babel-helper-optimise-call-expression/6.24.1: resolution: {integrity: sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=} dependencies: babel-runtime: 6.26.0 babel-types: 6.26.0 dev: true /babel-helper-replace-supers/6.24.1: resolution: {integrity: sha1-v22/5Dk40XNpohPKiov3S2qQqxo=} dependencies: babel-helper-optimise-call-expression: 6.24.1 babel-messages: 6.23.0 babel-runtime: 6.26.0 babel-template: 6.26.0 babel-traverse: 6.26.0 babel-types: 6.26.0 dev: true /babel-helpers/6.24.1: resolution: {integrity: sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=} dependencies: babel-runtime: 6.26.0 babel-template: 6.26.0 dev: true /babel-jest/26.6.3_@babel+core@7.12.10: resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} engines: {node: '>= 10.14.2'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.12.10 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 '@types/babel__core': 7.1.12 babel-plugin-istanbul: 6.0.0 babel-preset-jest: 26.6.2_@babel+core@7.12.10 chalk: 4.1.0 graceful-fs: 4.2.4 slash: 3.0.0 transitivePeerDependencies: - supports-color dev: true /babel-messages/6.23.0: resolution: {integrity: sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=} dependencies: babel-runtime: 6.26.0 dev: true /babel-plugin-istanbul/6.0.0: resolution: {integrity: sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==} engines: {node: '>=8'} dependencies: '@babel/helper-plugin-utils': 7.10.4 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.2 istanbul-lib-instrument: 4.0.3 test-exclude: 6.0.0 transitivePeerDependencies: - supports-color dev: true /babel-plugin-jest-hoist/26.6.2: resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} engines: {node: '>= 10.14.2'} dependencies: '@babel/template': 7.12.7 '@babel/types': 7.12.12 '@types/babel__core': 7.1.12 '@types/babel__traverse': 7.11.0 dev: true /babel-plugin-transform-es2015-classes/6.24.1: resolution: {integrity: sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=} dependencies: babel-helper-define-map: 6.26.0 babel-helper-function-name: 6.24.1 babel-helper-optimise-call-expression: 6.24.1 babel-helper-replace-supers: 6.24.1 babel-messages: 6.23.0 babel-runtime: 6.26.0 babel-template: 6.26.0 babel-traverse: 6.26.0 babel-types: 6.26.0 dev: true /babel-preset-current-node-syntax/1.0.1_@babel+core@7.12.10: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.12.10 '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.10 '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.12.10 '@babel/plugin-syntax-class-properties': 7.12.1_@babel+core@7.12.10 '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.12.10 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.10 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.10 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.10 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.10 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.10 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.10 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.10 '@babel/plugin-syntax-top-level-await': 7.12.1_@babel+core@7.12.10 dev: true /babel-preset-jest/26.6.2_@babel+core@7.12.10: resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} engines: {node: '>= 10.14.2'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.12.10 babel-plugin-jest-hoist: 26.6.2 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.12.10 dev: true /babel-register/6.26.0: resolution: {integrity: sha1-btAhFz4vy0htestFxgCahW9kcHE=} dependencies: babel-core: 6.26.3 babel-runtime: 6.26.0 core-js: 2.6.12 home-or-tmp: 2.0.0 lodash: 4.17.20 mkdirp: 0.5.5 source-map-support: 0.4.18 dev: true /babel-run-async/1.0.0: resolution: {integrity: sha1-o0NCX802FY3++ucl0Dk+zkTsRZw=} dependencies: babel-runtime: 6.26.0 is-promise: 2.2.2 dev: true /babel-runtime/6.26.0: resolution: {integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=} dependencies: core-js: 2.6.12 regenerator-runtime: 0.11.1 dev: true /babel-template/6.26.0: resolution: {integrity: sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=} dependencies: babel-runtime: 6.26.0 babel-traverse: 6.26.0 babel-types: 6.26.0 babylon: 6.18.0 lodash: 4.17.20 dev: true /babel-traverse/6.26.0: resolution: {integrity: sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=} dependencies: babel-code-frame: 6.26.0 babel-messages: 6.23.0 babel-runtime: 6.26.0 babel-types: 6.26.0 babylon: 6.18.0 debug: 2.6.9 globals: 9.18.0 invariant: 2.2.4 lodash: 4.17.20 dev: true /babel-types/6.26.0: resolution: {integrity: sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=} dependencies: babel-runtime: 6.26.0 esutils: 2.0.3 lodash: 4.17.20 to-fast-properties: 1.0.3 dev: true /babylon/6.18.0: resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} hasBin: true dev: true /balanced-match/1.0.0: resolution: {integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=} dev: true /base/0.11.2: resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} engines: {node: '>=0.10.0'} dependencies: cache-base: 1.0.1 class-utils: 0.3.6 component-emitter: 1.3.0 define-property: 1.0.0 isobject: 3.0.1 mixin-deep: 1.3.2 pascalcase: 0.1.1 dev: true /bcrypt-pbkdf/1.0.2: resolution: {integrity: sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=} dependencies: tweetnacl: 0.14.5 dev: true /boxen/0.5.1: resolution: {integrity: sha1-W3PYhA6388ihVcv2ntPtaNRyABQ=} engines: {node: '>=0.10.0'} dependencies: camelcase: 2.1.1 chalk: 1.1.3 cli-boxes: 1.0.0 filled-array: 1.1.0 object-assign: 4.1.1 repeating: 2.0.1 string-width: 1.0.2 widest-line: 1.0.0 dev: true /brace-expansion/1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.0 concat-map: 0.0.1 dev: true /braces/2.3.2: resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} engines: {node: '>=0.10.0'} dependencies: 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.3 snapdragon: 0.8.2 snapdragon-node: 2.1.1 split-string: 3.1.0 to-regex: 3.0.2 dev: true /braces/3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} dependencies: fill-range: 7.0.1 dev: true /browser-process-hrtime/1.0.0: resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} dev: true /bser/2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 dev: true /buffer-from/1.1.1: resolution: {integrity: sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==} dev: true /builtin-modules/1.1.1: resolution: {integrity: sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=} engines: {node: '>=0.10.0'} dev: true /cache-base/1.0.1: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} engines: {node: '>=0.10.0'} dependencies: collection-visit: 1.0.0 component-emitter: 1.3.0 get-value: 2.0.6 has-value: 1.0.0 isobject: 3.0.1 set-value: 2.0.1 to-object-path: 0.3.0 union-value: 1.0.1 unset-value: 1.0.0 dev: true /call-bind/1.0.1: resolution: {integrity: sha512-tvAvUwNcRikl3RVF20X9lsYmmepsovzTWeJiXjO0PkJp15uy/6xKFZOQtuiSULwYW+6ToZBprphCgWXC2dSgcQ==} dependencies: function-bind: 1.1.1 get-intrinsic: 1.0.2 dev: true /caller-path/0.1.0: resolution: {integrity: sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=} engines: {node: '>=0.10.0'} dependencies: callsites: 0.2.0 dev: true /callsites/0.2.0: resolution: {integrity: sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=} engines: {node: '>=0.10.0'} dev: true /callsites/1.0.0: resolution: {integrity: sha1-AlY7EO0x8uvZWJOndvCz2VprFbg=} engines: {node: '>=0.10.0'} dev: true /callsites/3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} dev: true /camelcase-keys/2.1.0: resolution: {integrity: sha1-MIvur/3ygRkFHvodkyITyRuPkuc=} engines: {node: '>=0.10.0'} dependencies: camelcase: 2.1.1 map-obj: 1.0.1 dev: true /camelcase/2.1.1: resolution: {integrity: sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=} engines: {node: '>=0.10.0'} dev: true /camelcase/5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} dev: true /camelcase/6.2.0: resolution: {integrity: sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==} engines: {node: '>=10'} dev: true /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} engines: {node: 6.* || 8.* || >= 10.*} dependencies: rsvp: 4.8.5 dev: true /capture-stack-trace/1.0.1: resolution: {integrity: sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==} engines: {node: '>=0.10.0'} dev: true /caseless/0.12.0: resolution: {integrity: sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=} dev: true /ccount/1.1.0: resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} dev: true /chalk/0.5.1: resolution: {integrity: sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=} engines: {node: '>=0.10.0'} dependencies: ansi-styles: 1.1.0 escape-string-regexp: 1.0.5 has-ansi: 0.1.0 strip-ansi: 0.3.0 supports-color: 0.2.0 dev: true /chalk/1.1.3: resolution: {integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=} engines: {node: '>=0.10.0'} dependencies: ansi-styles: 2.2.1 escape-string-regexp: 1.0.5 has-ansi: 2.0.0 strip-ansi: 3.0.1 supports-color: 2.0.0 dev: true /chalk/2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 dev: true /chalk/4.1.0: resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 dev: true /char-regex/1.0.2: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} engines: {node: '>=10'} dev: true /character-entities-html4/1.1.4: resolution: {integrity: sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==} dev: true /character-entities-legacy/1.1.4: resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} dev: true /character-entities/1.2.4: resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} dev: true /character-reference-invalid/1.1.4: resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} dev: true /chardet/0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} dev: true /ci-info/2.0.0: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} dev: true /cjs-module-lexer/0.6.0: resolution: {integrity: sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==} dev: true /class-utils/0.3.6: resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} engines: {node: '>=0.10.0'} dependencies: arr-union: 3.1.0 define-property: 0.2.5 isobject: 3.0.1 static-extend: 0.1.2 dev: true /cli-boxes/1.0.0: resolution: {integrity: sha1-T6kXw+WclKAEzWH47lCdplFocUM=} engines: {node: '>=0.10.0'} dev: true /cli-cursor/3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} dependencies: restore-cursor: 3.1.0 dev: true /cli-width/3.0.0: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} engines: {node: '>= 10'} dev: true /cliui/6.0.0: resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: string-width: 4.2.0 strip-ansi: 6.0.0 wrap-ansi: 6.2.0 dev: true /cmd-extension/1.0.1: resolution: {integrity: sha512-gZWHJ9fu2rBAGufA/3F5ousXFiXHyhXKkym2xmXNWaebMUOkhxE1vCQEdegaXyi95180A32b+j4lQaOv7LqzxA==} engines: {node: '>=10'} dev: false /co/4.6.0: resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} dev: true /code-point-at/1.1.0: resolution: {integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=} engines: {node: '>=0.10.0'} dev: true /codemo/0.2.2: resolution: {integrity: sha1-GCe0ZB87z4vXG9SbLU6ZtFuLX9c=} engines: {node: '>=0.10'} dependencies: acorn: 3.0.4 babel-runtime: 6.26.0 callsites: 1.0.0 cross-spawn-async: 2.2.2 file-position: 0.0.0 lodash.partition: 4.6.0 normalize-newline: 2.0.0 normalize-path: 2.0.1 promise.prototype.finally: 1.0.1 rollup: 0.25.8 rollup-plugin-babel: 2.4.0 rollup-plugin-includepaths: 0.1.2 source-map: 0.5.3 dev: true /collapse-white-space/1.0.6: resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} dev: true /collect-v8-coverage/1.0.1: resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} dev: true /collection-visit/1.0.0: resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=} engines: {node: '>=0.10.0'} dependencies: map-visit: 1.0.0 object-visit: 1.0.1 dev: true /color-convert/1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 dev: true /color-convert/2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 dev: true /color-name/1.1.3: resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} dev: true /color-name/1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} dev: true /combined-stream/1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 dev: true /component-emitter/1.3.0: resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} dev: true /concat-map/0.0.1: resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} dev: true /configstore/2.1.0: resolution: {integrity: sha1-c3o6cDbpiGECqmCZ5HuzOrGroaE=} engines: {node: '>=0.10.0'} dependencies: dot-prop: 3.0.0 graceful-fs: 4.2.4 mkdirp: 0.5.5 object-assign: 4.1.1 os-tmpdir: 1.0.2 osenv: 0.1.5 uuid: 2.0.3 write-file-atomic: 1.3.4 xdg-basedir: 2.0.0 dev: true /contains-path/0.1.0: resolution: {integrity: sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=} engines: {node: '>=0.10.0'} dev: true /convert-source-map/1.7.0: resolution: {integrity: sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==} dependencies: safe-buffer: 5.1.2 dev: true /copy-descriptor/0.1.1: resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=} engines: {node: '>=0.10.0'} dev: true /core-js/2.6.12: resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} deprecated: core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3. dev: true /core-util-is/1.0.2: resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=} dev: true /create-error-class/3.0.2: resolution: {integrity: sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=} engines: {node: '>=0.10.0'} dependencies: capture-stack-trace: 1.0.1 dev: true /cross-spawn-async/2.2.2: resolution: {integrity: sha1-kN6ptpIPA7L3vHSZYVABrubyMX4=} deprecated: cross-spawn no longer requires a build toolchain, use it instead dependencies: lru-cache: 4.1.5 which: 1.3.1 dev: true /cross-spawn/6.0.5: resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} engines: {node: '>=4.8'} dependencies: nice-try: 1.0.5 path-key: 2.0.1 semver: 5.7.1 shebang-command: 1.2.0 which: 1.3.1 dev: true /cross-spawn/7.0.3: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 dev: true /cssom/0.3.8: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} dev: true /cssom/0.4.4: resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} dev: true /cssstyle/2.3.0: resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} engines: {node: '>=8'} dependencies: cssom: 0.3.8 dev: true /currently-unhandled/0.4.1: resolution: {integrity: sha1-mI3zP+qxke95mmE2nddsF635V+o=} engines: {node: '>=0.10.0'} dependencies: array-find-index: 1.0.2 dev: true /dashdash/1.14.1: resolution: {integrity: sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=} engines: {node: '>=0.10'} dependencies: assert-plus: 1.0.0 dev: true /data-urls/2.0.0: resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} engines: {node: '>=10'} dependencies: abab: 2.0.5 whatwg-mimetype: 2.3.0 whatwg-url: 8.4.0 dev: true /debug-log/1.0.1: resolution: {integrity: sha1-IwdjLUwEOCuN+KMvcLiVBG1SdF8=} engines: {node: '>=0.10.0'} dev: true /debug/2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} dependencies: ms: 2.0.0 dev: true /debug/4.3.1: resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' peerDependenciesMeta: supports-color: optional: true dependencies: ms: 2.1.2 dev: true /decamelize/1.2.0: resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=} engines: {node: '>=0.10.0'} dev: true /decimal.js/10.2.1: resolution: {integrity: sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==} dev: true /decode-uri-component/0.2.0: resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=} engines: {node: '>=0.10'} dev: true /deep-equal/1.0.1: resolution: {integrity: sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=} dev: true /deep-extend/0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} engines: {node: '>=4.0.0'} dev: true /deep-is/0.1.3: resolution: {integrity: sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=} dev: true /deepmerge/4.2.2: resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} engines: {node: '>=0.10.0'} dev: true /define-properties/1.1.3: resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==} engines: {node: '>= 0.4'} dependencies: object-keys: 1.1.1 dev: true /define-property/0.2.5: resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 0.1.6 dev: true /define-property/1.0.0: resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.2 dev: true /define-property/2.0.2: resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.2 isobject: 3.0.1 dev: true /defined/1.0.0: resolution: {integrity: sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=} dev: true /deglob/4.0.1: resolution: {integrity: sha512-/g+RDZ7yf2HvoW+E5Cy+K94YhgcFgr6C8LuHZD1O5HoNPkf3KY6RfXJ0DBGlB/NkLi5gml+G9zqRzk9S0mHZCg==} dependencies: find-root: 1.1.0 glob: 7.1.6 ignore: 5.1.8 pkg-config: 1.1.1 run-parallel: 1.1.10 uniq: 1.0.1 dev: true /delayed-stream/1.0.0: resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=} engines: {node: '>=0.4.0'} dev: true /detect-indent/4.0.0: resolution: {integrity: sha1-920GQ1LN9Docts5hnE7jqUdd4gg=} engines: {node: '>=0.10.0'} dependencies: repeating: 2.0.1 dev: true /detect-newline/3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} dev: true /diff-sequences/26.6.2: resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} engines: {node: '>= 10.14.2'} dev: true /diff/2.2.3: resolution: {integrity: sha1-YOr9DSjukG5Oj/ClLBIpUhAzv5k=} engines: {node: '>=0.3.1'} dev: true /doctrine/1.5.0: resolution: {integrity: sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=} engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 isarray: 1.0.0 dev: true /doctrine/2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 dev: true /doctrine/3.0.0: resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 dev: true /domexception/2.0.1: resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} engines: {node: '>=8'} dependencies: webidl-conversions: 5.0.0 dev: true /dot-prop/3.0.0: resolution: {integrity: sha1-G3CK8JSknJoOfbyteQq6U52sEXc=} engines: {node: '>=0.10.0'} dependencies: is-obj: 1.0.1 dev: true /duplexer/0.1.2: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} dev: true /duplexer2/0.1.4: resolution: {integrity: sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=} dependencies: readable-stream: 2.3.7 dev: true /ecc-jsbn/0.1.2: resolution: {integrity: sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=} dependencies: jsbn: 0.1.1 safer-buffer: 2.1.2 dev: true /emittery/0.7.2: resolution: {integrity: sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==} engines: {node: '>=10'} dev: true /emoji-regex/6.1.1: resolution: {integrity: sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=} dev: true /emoji-regex/7.0.3: resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} dev: true /emoji-regex/8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: true /end-of-stream/1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} dependencies: once: 1.4.0 dev: true /error-ex/1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 dev: true /es-abstract/1.17.7: resolution: {integrity: sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==} engines: {node: '>= 0.4'} dependencies: es-to-primitive: 1.2.1 function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.1 is-callable: 1.2.2 is-regex: 1.1.1 object-inspect: 1.9.0 object-keys: 1.1.1 object.assign: 4.1.2 string.prototype.trimend: 1.0.3 string.prototype.trimstart: 1.0.3 dev: true /es-abstract/1.18.0-next.1: resolution: {integrity: sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==} engines: {node: '>= 0.4'} dependencies: es-to-primitive: 1.2.1 function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.1 is-callable: 1.2.2 is-negative-zero: 2.0.1 is-regex: 1.1.1 object-inspect: 1.9.0 object-keys: 1.1.1 object.assign: 4.1.2 string.prototype.trimend: 1.0.3 string.prototype.trimstart: 1.0.3 dev: true /es-to-primitive/1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: is-callable: 1.2.2 is-date-object: 1.0.2 is-symbol: 1.0.3 dev: true /escape-string-regexp/1.0.5: resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} engines: {node: '>=0.8.0'} dev: true /escape-string-regexp/2.0.0: resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} engines: {node: '>=8'} dev: true /escodegen/1.14.3: resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==} engines: {node: '>=4.0'} hasBin: true dependencies: esprima: 4.0.1 estraverse: 4.3.0 esutils: 2.0.3 optionator: 0.8.3 optionalDependencies: source-map: 0.6.1 dev: true /eslint-config-standard-jsx/8.1.0_65d1ca32d5f5cbf4c96bd0eee33adee0: resolution: {integrity: sha512-ULVC8qH8qCqbU792ZOO6DaiaZyHNS/5CZt3hKqHkEhVlhPEPN3nfBqqxJCyp59XrjIBZPu1chMYe9T2DXZ7TMw==} peerDependencies: eslint: '>=6.2.2' eslint-plugin-react: '>=7.14.2' dependencies: eslint: 6.8.0 eslint-plugin-react: 7.14.3_eslint@6.8.0 dev: true /eslint-config-standard/14.1.1_9e7530ec76492f2b386fab08b53a2169: resolution: {integrity: sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg==} peerDependencies: eslint: '>=6.2.2' eslint-plugin-import: '>=2.18.0' eslint-plugin-node: '>=9.1.0' eslint-plugin-promise: '>=4.2.1' eslint-plugin-standard: '>=4.0.0' dependencies: eslint: 6.8.0 eslint-plugin-import: 2.18.2_eslint@6.8.0 eslint-plugin-node: 10.0.0_eslint@6.8.0 eslint-plugin-promise: 4.2.1 eslint-plugin-standard: 4.0.2_eslint@6.8.0 dev: true /eslint-import-resolver-node/0.3.4: resolution: {integrity: sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==} dependencies: debug: 2.6.9 resolve: 1.19.0 dev: true /eslint-module-utils/2.6.0: resolution: {integrity: sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==} engines: {node: '>=4'} dependencies: debug: 2.6.9 pkg-dir: 2.0.0 dev: true /eslint-plugin-es/2.0.0_eslint@6.8.0: resolution: {integrity: sha512-f6fceVtg27BR02EYnBhgWLFQfK6bN4Ll0nQFrBHOlCsAyxeZkn0NHns5O0YZOPrV1B3ramd6cgFwaoFLcSkwEQ==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: eslint: 6.8.0 eslint-utils: 1.4.3 regexpp: 3.1.0 dev: true /eslint-plugin-import/2.18.2_eslint@6.8.0: resolution: {integrity: sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ==} engines: {node: '>=4'} peerDependencies: eslint: 2.x - 6.x dependencies: array-includes: 3.1.2 contains-path: 0.1.0 debug: 2.6.9 doctrine: 1.5.0 eslint: 6.8.0 eslint-import-resolver-node: 0.3.4 eslint-module-utils: 2.6.0 has: 1.0.3 minimatch: 3.0.4 object.values: 1.1.2 read-pkg-up: 2.0.0 resolve: 1.19.0 dev: true /eslint-plugin-node/10.0.0_eslint@6.8.0: resolution: {integrity: sha512-1CSyM/QCjs6PXaT18+zuAXsjXGIGo5Rw630rSKwokSs2jrYURQc4R5JZpoanNCqwNmepg+0eZ9L7YiRUJb8jiQ==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=5.16.0' dependencies: eslint: 6.8.0 eslint-plugin-es: 2.0.0_eslint@6.8.0 eslint-utils: 1.4.3 ignore: 5.1.8 minimatch: 3.0.4 resolve: 1.19.0 semver: 6.3.0 dev: true /eslint-plugin-promise/4.2.1: resolution: {integrity: sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==} engines: {node: '>=6'} dev: true /eslint-plugin-react/7.14.3_eslint@6.8.0: resolution: {integrity: sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA==} engines: {node: '>=4'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 dependencies: array-includes: 3.1.2 doctrine: 2.1.0 eslint: 6.8.0 has: 1.0.3 jsx-ast-utils: 2.4.1 object.entries: 1.1.3 object.fromentries: 2.0.3 object.values: 1.1.2 prop-types: 15.7.2 resolve: 1.19.0 dev: true /eslint-plugin-standard/4.0.2_eslint@6.8.0: resolution: {integrity: sha512-nKptN8l7jksXkwFk++PhJB3cCDTcXOEyhISIN86Ue2feJ1LFyY3PrY3/xT2keXlJSY5bpmbiTG0f885/YKAvTA==} peerDependencies: eslint: '>=5.0.0' dependencies: eslint: 6.8.0 dev: true /eslint-scope/5.1.1: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} engines: {node: '>=8.0.0'} dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 dev: true /eslint-utils/1.4.3: resolution: {integrity: sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==} engines: {node: '>=6'} dependencies: eslint-visitor-keys: 1.3.0 dev: true /eslint-visitor-keys/1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} dev: true /eslint/6.8.0: resolution: {integrity: sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} hasBin: true dependencies: '@babel/code-frame': 7.12.11 ajv: 6.12.6 chalk: 2.4.2 cross-spawn: 6.0.5 debug: 4.3.1 doctrine: 3.0.0 eslint-scope: 5.1.1 eslint-utils: 1.4.3 eslint-visitor-keys: 1.3.0 espree: 6.2.1 esquery: 1.3.1 esutils: 2.0.3 file-entry-cache: 5.0.1 functional-red-black-tree: 1.0.1 glob-parent: 5.1.1 globals: 12.4.0 ignore: 4.0.6 import-fresh: 3.3.0 imurmurhash: 0.1.4 inquirer: 7.3.3 is-glob: 4.0.1 js-yaml: 3.14.1 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.3.0 lodash: 4.17.20 minimatch: 3.0.4 mkdirp: 0.5.5 natural-compare: 1.4.0 optionator: 0.8.3 progress: 2.0.3 regexpp: 2.0.1 semver: 6.3.0 strip-ansi: 5.2.0 strip-json-comments: 3.1.1 table: 5.4.6 text-table: 0.2.0 v8-compile-cache: 2.2.0 transitivePeerDependencies: - supports-color dev: true /espree/6.2.1: resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==} engines: {node: '>=6.0.0'} dependencies: acorn: 7.4.1 acorn-jsx: 5.3.1_acorn@7.4.1 eslint-visitor-keys: 1.3.0 dev: true /esprima/4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true dev: true /esquery/1.3.1: resolution: {integrity: sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==} engines: {node: '>=0.10'} dependencies: estraverse: 5.2.0 dev: true /esrecurse/4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} dependencies: estraverse: 5.2.0 dev: true /estraverse/4.3.0: resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} engines: {node: '>=4.0'} dev: true /estraverse/5.2.0: resolution: {integrity: sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==} engines: {node: '>=4.0'} dev: true /estree-walker/0.2.1: resolution: {integrity: sha1-va/oCVOD2EFNXcLs9MkXO225QS4=} dev: true /esutils/2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} dev: true /events-to-array/1.1.2: resolution: {integrity: sha1-LUH1Y+H+QA7Uli/hpNXGp1Od9/Y=} dev: true /exec-sh/0.3.4: resolution: {integrity: sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==} dev: true /execa/1.0.0: resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} engines: {node: '>=6'} dependencies: cross-spawn: 6.0.5 get-stream: 4.1.0 is-stream: 1.1.0 npm-run-path: 2.0.2 p-finally: 1.0.0 signal-exit: 3.0.3 strip-eof: 1.0.0 dev: true /execa/4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} dependencies: cross-spawn: 7.0.3 get-stream: 5.2.0 human-signals: 1.1.1 is-stream: 2.0.0 merge-stream: 2.0.0 npm-run-path: 4.0.1 onetime: 5.1.2 signal-exit: 3.0.3 strip-final-newline: 2.0.0 dev: true /exit/0.1.2: resolution: {integrity: sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=} engines: {node: '>= 0.8.0'} dev: true /expand-brackets/2.1.4: resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=} engines: {node: '>=0.10.0'} dependencies: debug: 2.6.9 define-property: 0.2.5 extend-shallow: 2.0.1 posix-character-classes: 0.1.1 regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 dev: true /expect/26.6.2: resolution: {integrity: sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 ansi-styles: 4.3.0 jest-get-type: 26.3.0 jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 jest-regex-util: 26.0.0 dev: true /extend-shallow/2.0.1: resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=} engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 dev: true /extend-shallow/3.0.2: resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=} engines: {node: '>=0.10.0'} dependencies: assign-symbols: 1.0.0 is-extendable: 1.0.1 dev: true /extend/3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} dev: true /external-editor/3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 dev: true /extglob/2.0.4: resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} engines: {node: '>=0.10.0'} dependencies: 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.2 snapdragon: 0.8.2 to-regex: 3.0.2 dev: true /extsprintf/1.3.0: resolution: {integrity: sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=} engines: {'0': node >=0.6.0} dev: true /fast-deep-equal/3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true /fast-json-stable-stringify/2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true /fast-levenshtein/2.0.6: resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} dev: true /fb-watchman/2.0.1: resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==} dependencies: bser: 2.1.1 dev: true /figures/1.7.0: resolution: {integrity: sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=} engines: {node: '>=0.10.0'} dependencies: escape-string-regexp: 1.0.5 object-assign: 4.1.1 dev: true /figures/3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} dependencies: escape-string-regexp: 1.0.5 dev: true /file-entry-cache/5.0.1: resolution: {integrity: sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==} engines: {node: '>=4'} dependencies: flat-cache: 2.0.1 dev: true /file-exists/1.0.0: resolution: {integrity: sha1-5tJptWVnuJIlgTmOmQ3XB49y1hY=} dev: true /file-position/0.0.0: resolution: {integrity: sha1-rkxlqupgoUyX9xUIwKvIaopfCI4=} dev: true /fill-range/4.0.0: resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=} engines: {node: '>=0.10.0'} dependencies: extend-shallow: 2.0.1 is-number: 3.0.0 repeat-string: 1.6.1 to-regex-range: 2.1.1 dev: true /fill-range/7.0.1: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 dev: true /filled-array/1.1.0: resolution: {integrity: sha1-w8T2xmO5I0WamqKZEtLQMfFQf4Q=} engines: {node: '>=0.10.0'} dev: true /find-root/1.1.0: resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} dev: true /find-up/1.1.2: resolution: {integrity: sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=} engines: {node: '>=0.10.0'} dependencies: path-exists: 2.1.0 pinkie-promise: 2.0.1 dev: true /find-up/2.1.0: resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=} engines: {node: '>=4'} dependencies: locate-path: 2.0.0 dev: true /find-up/3.0.0: resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} engines: {node: '>=6'} dependencies: locate-path: 3.0.0 dev: true /find-up/4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} dependencies: locate-path: 5.0.0 path-exists: 4.0.0 dev: true /flat-cache/2.0.1: resolution: {integrity: sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==} engines: {node: '>=4'} dependencies: flatted: 2.0.2 rimraf: 2.6.3 write: 1.0.3 dev: true /flatted/2.0.2: resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} dev: true /flatten/1.0.3: resolution: {integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==} dev: true /for-in/1.0.2: resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} engines: {node: '>=0.10.0'} dev: true /forever-agent/0.6.1: resolution: {integrity: sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=} dev: true /form-data/2.3.3: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} engines: {node: '>= 0.12'} dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.28 dev: true /fragment-cache/0.2.1: resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=} engines: {node: '>=0.10.0'} dependencies: map-cache: 0.2.2 dev: true /fs-monkey/1.0.1: resolution: {integrity: sha512-fcSa+wyTqZa46iWweI7/ZiUfegOZl0SG8+dltIwFXo7+zYU9J9kpS3NB6pZcSlJdhvIwp81Adx2XhZorncxiaA==} dev: true /fs.realpath/1.0.0: resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} dev: true /fsevents/2.3.2: resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] dev: true optional: true /function-bind/1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} dev: true /functional-red-black-tree/1.0.1: resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} dev: true /gensync/1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} dev: true /get-caller-file/2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} dev: true /get-intrinsic/1.0.2: resolution: {integrity: sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==} dependencies: function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.1 dev: true /get-package-type/0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} dev: true /get-stdin/4.0.1: resolution: {integrity: sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=} engines: {node: '>=0.10.0'} dev: true /get-stdin/7.0.0: resolution: {integrity: sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==} engines: {node: '>=8'} dev: true /get-stream/4.1.0: resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} engines: {node: '>=6'} dependencies: pump: 3.0.0 dev: true /get-stream/5.2.0: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} engines: {node: '>=8'} dependencies: pump: 3.0.0 dev: true /get-value/2.0.6: resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=} engines: {node: '>=0.10.0'} dev: true /getpass/0.1.7: resolution: {integrity: sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=} dependencies: assert-plus: 1.0.0 dev: true /github-slugger/1.3.0: resolution: {integrity: sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==} dependencies: emoji-regex: 6.1.1 dev: true /github-url-to-object/2.2.6: resolution: {integrity: sha1-ypJQFlFJdI7uswv8xgAMb+DSQvc=} dependencies: is-url: 1.2.4 dev: true /glob-parent/5.1.1: resolution: {integrity: sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==} engines: {node: '>= 6'} dependencies: is-glob: 4.0.1 dev: true /glob/7.0.6: resolution: {integrity: sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 3.0.4 once: 1.4.0 path-is-absolute: 1.0.1 dev: true /glob/7.1.6: resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 minimatch: 3.0.4 once: 1.4.0 path-is-absolute: 1.0.1 dev: true /globals/11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} dev: true /globals/12.4.0: resolution: {integrity: sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==} engines: {node: '>=8'} dependencies: type-fest: 0.8.1 dev: true /globals/9.18.0: resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} engines: {node: '>=0.10.0'} dev: true /got/5.7.1: resolution: {integrity: sha1-X4FjWmHkplifGAVp6k44FoClHzU=} engines: {node: '>=0.10.0 <7'} dependencies: create-error-class: 3.0.2 duplexer2: 0.1.4 is-redirect: 1.0.0 is-retry-allowed: 1.2.0 is-stream: 1.1.0 lowercase-keys: 1.0.1 node-status-codes: 1.0.0 object-assign: 4.1.1 parse-json: 2.2.0 pinkie-promise: 2.0.1 read-all-stream: 3.1.0 readable-stream: 2.3.7 timed-out: 3.1.3 unzip-response: 1.0.2 url-parse-lax: 1.0.0 dev: true /graceful-fs/4.2.4: resolution: {integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==} dev: true /growly/1.3.0: resolution: {integrity: sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=} dev: true optional: true /har-schema/2.0.0: resolution: {integrity: sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=} engines: {node: '>=4'} dev: true /har-validator/5.1.5: resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} engines: {node: '>=6'} deprecated: this library is no longer supported dependencies: ajv: 6.12.6 har-schema: 2.0.0 dev: true /has-ansi/0.1.0: resolution: {integrity: sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4=} engines: {node: '>=0.10.0'} hasBin: true dependencies: ansi-regex: 0.2.1 dev: true /has-ansi/2.0.0: resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=} engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 dev: true /has-flag/3.0.0: resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} engines: {node: '>=4'} dev: true /has-flag/4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} dev: true /has-symbols/1.0.1: resolution: {integrity: sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==} engines: {node: '>= 0.4'} dev: true /has-value/0.3.1: resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=} engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 has-values: 0.1.4 isobject: 2.1.0 dev: true /has-value/1.0.0: resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=} engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 has-values: 1.0.0 isobject: 3.0.1 dev: true /has-values/0.1.4: resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=} engines: {node: '>=0.10.0'} dev: true /has-values/1.0.0: resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=} engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 kind-of: 4.0.0 dev: true /has/1.0.3: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 dev: true /home-or-tmp/2.0.0: resolution: {integrity: sha1-42w/LSyufXRqhX440Y1fMqeILbg=} engines: {node: '>=0.10.0'} dependencies: os-homedir: 1.0.2 os-tmpdir: 1.0.2 dev: true /hosted-git-info/2.8.8: resolution: {integrity: sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==} dev: true /html-encoding-sniffer/2.0.1: resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} engines: {node: '>=10'} dependencies: whatwg-encoding: 1.0.5 dev: true /html-escaper/2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true /http-signature/1.2.0: resolution: {integrity: sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=} engines: {node: '>=0.8', npm: '>=1.3.7'} dependencies: assert-plus: 1.0.0 jsprim: 1.4.1 sshpk: 1.16.1 dev: true /human-signals/1.1.1: resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} engines: {node: '>=8.12.0'} dev: true /iconv-lite/0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 dev: true /ignore/4.0.6: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} dev: true /ignore/5.1.8: resolution: {integrity: sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==} engines: {node: '>= 4'} dev: true /import-fresh/3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 dev: true /import-local/3.0.2: resolution: {integrity: sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==} engines: {node: '>=8'} hasBin: true dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 dev: true /imurmurhash/0.1.4: resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} engines: {node: '>=0.8.19'} dev: true /indent-string/2.1.0: resolution: {integrity: sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=} engines: {node: '>=0.10.0'} dependencies: repeating: 2.0.1 dev: true /independent/0.2.0: resolution: {integrity: sha1-fP+w1d94AFLyRFzaqPXj29sXyw8=} dependencies: '@zkochan/async-replace': 0.4.1 babel-runtime: 6.26.0 read-pkg-up: 1.0.1 relative: 3.0.2 resolve: 1.1.7 dev: true /inflight/1.0.6: resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} dependencies: once: 1.4.0 wrappy: 1.0.2 dev: true /inherits/2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} dev: true /ini/1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} dev: true /inquirer/7.3.3: resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} engines: {node: '>=8.0.0'} dependencies: ansi-escapes: 4.3.1 chalk: 4.1.0 cli-cursor: 3.1.0 cli-width: 3.0.0 external-editor: 3.1.0 figures: 3.2.0 lodash: 4.17.20 mute-stream: 0.0.8 run-async: 2.4.1 rxjs: 6.6.3 string-width: 4.2.0 strip-ansi: 6.0.0 through: 2.3.8 dev: true /invariant/2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} dependencies: loose-envify: 1.4.0 dev: true /ip-regex/2.1.0: resolution: {integrity: sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=} engines: {node: '>=4'} dev: true /is-accessor-descriptor/0.1.6: resolution: {integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true /is-accessor-descriptor/1.0.0: resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} engines: {node: '>=0.10.0'} dependencies: kind-of: 6.0.3 dev: true /is-alphabetical/1.0.4: resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} dev: true /is-alphanumerical/1.0.4: resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} dependencies: is-alphabetical: 1.0.4 is-decimal: 1.0.4 dev: true /is-arrayish/0.2.1: resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} dev: true /is-buffer/1.1.6: resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} dev: true /is-builtin-module/1.0.0: resolution: {integrity: sha1-VAVy0096wxGfj3bDDLwbHgN6/74=} engines: {node: '>=0.10.0'} dependencies: builtin-modules: 1.1.1 dev: true /is-callable/1.2.2: resolution: {integrity: sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==} engines: {node: '>= 0.4'} dev: true /is-ci/2.0.0: resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} hasBin: true dependencies: ci-info: 2.0.0 dev: true /is-core-module/2.2.0: resolution: {integrity: sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==} dependencies: has: 1.0.3 dev: true /is-data-descriptor/0.1.4: resolution: {integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true /is-data-descriptor/1.0.0: resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} engines: {node: '>=0.10.0'} dependencies: kind-of: 6.0.3 dev: true /is-date-object/1.0.2: resolution: {integrity: sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==} engines: {node: '>= 0.4'} dev: true /is-decimal/1.0.4: resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} dev: true /is-descriptor/0.1.6: resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} engines: {node: '>=0.10.0'} dependencies: is-accessor-descriptor: 0.1.6 is-data-descriptor: 0.1.4 kind-of: 5.1.0 dev: true /is-descriptor/1.0.2: resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} engines: {node: '>=0.10.0'} dependencies: is-accessor-descriptor: 1.0.0 is-data-descriptor: 1.0.0 kind-of: 6.0.3 dev: true /is-docker/2.1.1: resolution: {integrity: sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==} engines: {node: '>=8'} hasBin: true dev: true optional: true /is-extendable/0.1.1: resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=} engines: {node: '>=0.10.0'} dev: true /is-extendable/1.0.1: resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} engines: {node: '>=0.10.0'} dependencies: is-plain-object: 2.0.4 dev: true /is-extglob/2.1.1: resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} engines: {node: '>=0.10.0'} dev: true /is-finite/1.1.0: resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} engines: {node: '>=0.10.0'} dev: true /is-fullwidth-code-point/1.0.0: resolution: {integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs=} engines: {node: '>=0.10.0'} dependencies: number-is-nan: 1.0.1 dev: true /is-fullwidth-code-point/2.0.0: resolution: {integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=} engines: {node: '>=4'} dev: true /is-fullwidth-code-point/3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} dev: true /is-generator-fn/2.1.0: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} engines: {node: '>=6'} dev: true /is-glob/4.0.1: resolution: {integrity: sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==} engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 dev: true /is-hexadecimal/1.0.4: resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} dev: true /is-negative-zero/2.0.1: resolution: {integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==} engines: {node: '>= 0.4'} dev: true /is-npm/1.0.0: resolution: {integrity: sha1-8vtjpl5JBbQGyGBydloaTceTufQ=} engines: {node: '>=0.10.0'} dev: true /is-number/3.0.0: resolution: {integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true /is-number/7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} dev: true /is-obj/1.0.1: resolution: {integrity: sha1-PkcprB9f3gJc19g6iW2rn09n2w8=} engines: {node: '>=0.10.0'} dev: true /is-plain-obj/1.1.0: resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=} engines: {node: '>=0.10.0'} dev: true /is-plain-object/2.0.4: resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true /is-potential-custom-element-name/1.0.0: resolution: {integrity: sha1-DFLlS8yjkbssSUsh6GJtczbG45c=} dev: true /is-promise/2.2.2: resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} dev: true /is-redirect/1.0.0: resolution: {integrity: sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=} engines: {node: '>=0.10.0'} dev: true /is-regex/1.1.1: resolution: {integrity: sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.1 dev: true /is-retry-allowed/1.2.0: resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==} engines: {node: '>=0.10.0'} dev: true /is-stream/1.1.0: resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=} engines: {node: '>=0.10.0'} dev: true /is-stream/2.0.0: resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==} engines: {node: '>=8'} dev: true /is-string/1.0.5: resolution: {integrity: sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==} engines: {node: '>= 0.4'} dev: true /is-symbol/1.0.3: resolution: {integrity: sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.1 dev: true /is-typedarray/1.0.0: resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=} dev: true /is-url/1.2.4: resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==} dev: true /is-utf8/0.2.1: resolution: {integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=} dev: true /is-windows/1.0.2: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} /is-wsl/2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} dependencies: is-docker: 2.1.1 dev: true optional: true /isarray/1.0.0: resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} dev: true /isexe/2.0.0: resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} dev: true /isobject/2.1.0: resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=} engines: {node: '>=0.10.0'} dependencies: isarray: 1.0.0 dev: true /isobject/3.0.1: resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=} engines: {node: '>=0.10.0'} dev: true /isstream/0.1.2: resolution: {integrity: sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=} dev: true /istanbul-lib-coverage/3.0.0: resolution: {integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==} engines: {node: '>=8'} dev: true /istanbul-lib-instrument/4.0.3: resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} engines: {node: '>=8'} dependencies: '@babel/core': 7.12.10 '@istanbuljs/schema': 0.1.2 istanbul-lib-coverage: 3.0.0 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true /istanbul-lib-report/3.0.0: resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} engines: {node: '>=8'} dependencies: istanbul-lib-coverage: 3.0.0 make-dir: 3.1.0 supports-color: 7.2.0 dev: true /istanbul-lib-source-maps/4.0.0: resolution: {integrity: sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==} engines: {node: '>=8'} dependencies: debug: 4.3.1 istanbul-lib-coverage: 3.0.0 source-map: 0.6.1 transitivePeerDependencies: - supports-color dev: true /istanbul-reports/3.0.2: resolution: {integrity: sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==} engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.0 dev: true /jest-changed-files/26.6.2: resolution: {integrity: sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 execa: 4.1.0 throat: 5.0.0 dev: true /jest-cli/26.6.3: resolution: {integrity: sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==} engines: {node: '>= 10.14.2'} hasBin: true dependencies: '@jest/core': 26.6.3 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 chalk: 4.1.0 exit: 0.1.2 graceful-fs: 4.2.4 import-local: 3.0.2 is-ci: 2.0.0 jest-config: 26.6.3 jest-util: 26.6.2 jest-validate: 26.6.2 prompts: 2.4.0 yargs: 15.4.1 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate dev: true /jest-config/26.6.3: resolution: {integrity: sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==} engines: {node: '>= 10.14.2'} peerDependencies: ts-node: '>=9.0.0' peerDependenciesMeta: ts-node: optional: true dependencies: '@babel/core': 7.12.10 '@jest/test-sequencer': 26.6.3 '@jest/types': 26.6.2 babel-jest: 26.6.3_@babel+core@7.12.10 chalk: 4.1.0 deepmerge: 4.2.2 glob: 7.1.6 graceful-fs: 4.2.4 jest-environment-jsdom: 26.6.2 jest-environment-node: 26.6.2 jest-get-type: 26.3.0 jest-jasmine2: 26.6.3 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 micromatch: 4.0.2 pretty-format: 26.6.2 transitivePeerDependencies: - bufferutil - canvas - supports-color - utf-8-validate dev: true /jest-diff/26.6.2: resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} engines: {node: '>= 10.14.2'} dependencies: chalk: 4.1.0 diff-sequences: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 dev: true /jest-docblock/26.0.0: resolution: {integrity: sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==} engines: {node: '>= 10.14.2'} dependencies: detect-newline: 3.1.0 dev: true /jest-each/26.6.2: resolution: {integrity: sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 chalk: 4.1.0 jest-get-type: 26.3.0 jest-util: 26.6.2 pretty-format: 26.6.2 dev: true /jest-environment-jsdom/26.6.2: resolution: {integrity: sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==} engines: {node: '>= 10.14.2'} dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 '@types/node': 14.14.20 jest-mock: 26.6.2 jest-util: 26.6.2 jsdom: 16.4.0 transitivePeerDependencies: - bufferutil - canvas - utf-8-validate dev: true /jest-environment-node/26.6.2: resolution: {integrity: sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==} engines: {node: '>= 10.14.2'} dependencies: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 '@types/node': 14.14.20 jest-mock: 26.6.2 jest-util: 26.6.2 dev: true /jest-get-type/26.3.0: resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} engines: {node: '>= 10.14.2'} dev: true /jest-haste-map/26.6.2: resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.4 '@types/node': 14.14.20 anymatch: 3.1.1 fb-watchman: 2.0.1 graceful-fs: 4.2.4 jest-regex-util: 26.0.0 jest-serializer: 26.6.2 jest-util: 26.6.2 jest-worker: 26.6.2 micromatch: 4.0.2 sane: 4.1.0 walker: 1.0.7 optionalDependencies: fsevents: 2.3.2 dev: true /jest-jasmine2/26.6.3: resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} engines: {node: '>= 10.14.2'} dependencies: '@babel/traverse': 7.12.12 '@jest/environment': 26.6.2 '@jest/source-map': 26.6.2 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 '@types/node': 14.14.20 chalk: 4.1.0 co: 4.6.0 expect: 26.6.2 is-generator-fn: 2.1.0 jest-each: 26.6.2 jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 jest-runtime: 26.6.3 jest-snapshot: 26.6.2 jest-util: 26.6.2 pretty-format: 26.6.2 throat: 5.0.0 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate dev: true /jest-leak-detector/26.6.2: resolution: {integrity: sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==} engines: {node: '>= 10.14.2'} dependencies: jest-get-type: 26.3.0 pretty-format: 26.6.2 dev: true /jest-matcher-utils/26.6.2: resolution: {integrity: sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==} engines: {node: '>= 10.14.2'} dependencies: chalk: 4.1.0 jest-diff: 26.6.2 jest-get-type: 26.3.0 pretty-format: 26.6.2 dev: true /jest-message-util/26.6.2: resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} engines: {node: '>= 10.14.2'} dependencies: '@babel/code-frame': 7.12.11 '@jest/types': 26.6.2 '@types/stack-utils': 2.0.0 chalk: 4.1.0 graceful-fs: 4.2.4 micromatch: 4.0.2 pretty-format: 26.6.2 slash: 3.0.0 stack-utils: 2.0.3 dev: true /jest-mock/26.6.2: resolution: {integrity: sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/node': 14.14.20 dev: true /jest-pnp-resolver/1.2.2_jest-resolve@26.6.2: resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} engines: {node: '>=6'} peerDependencies: jest-resolve: '*' peerDependenciesMeta: jest-resolve: optional: true dependencies: jest-resolve: 26.6.2 dev: true /jest-regex-util/26.0.0: resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} engines: {node: '>= 10.14.2'} dev: true /jest-resolve-dependencies/26.6.3: resolution: {integrity: sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 jest-regex-util: 26.0.0 jest-snapshot: 26.6.2 dev: true /jest-resolve/26.6.2: resolution: {integrity: sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 chalk: 4.1.0 graceful-fs: 4.2.4 jest-pnp-resolver: 1.2.2_jest-resolve@26.6.2 jest-util: 26.6.2 read-pkg-up: 7.0.1 resolve: 1.19.0 slash: 3.0.0 dev: true /jest-runner/26.6.3: resolution: {integrity: sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==} engines: {node: '>= 10.14.2'} dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 '@types/node': 14.14.20 chalk: 4.1.0 emittery: 0.7.2 exit: 0.1.2 graceful-fs: 4.2.4 jest-config: 26.6.3 jest-docblock: 26.0.0 jest-haste-map: 26.6.2 jest-leak-detector: 26.6.2 jest-message-util: 26.6.2 jest-resolve: 26.6.2 jest-runtime: 26.6.3 jest-util: 26.6.2 jest-worker: 26.6.2 source-map-support: 0.5.19 throat: 5.0.0 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate dev: true /jest-runtime/26.6.3: resolution: {integrity: sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==} engines: {node: '>= 10.14.2'} hasBin: true dependencies: '@jest/console': 26.6.2 '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/globals': 26.6.2 '@jest/source-map': 26.6.2 '@jest/test-result': 26.6.2 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 '@types/yargs': 15.0.12 chalk: 4.1.0 cjs-module-lexer: 0.6.0 collect-v8-coverage: 1.0.1 exit: 0.1.2 glob: 7.1.6 graceful-fs: 4.2.4 jest-config: 26.6.3 jest-haste-map: 26.6.2 jest-message-util: 26.6.2 jest-mock: 26.6.2 jest-regex-util: 26.0.0 jest-resolve: 26.6.2 jest-snapshot: 26.6.2 jest-util: 26.6.2 jest-validate: 26.6.2 slash: 3.0.0 strip-bom: 4.0.0 yargs: 15.4.1 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate dev: true /jest-serializer/26.6.2: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: '@types/node': 14.14.20 graceful-fs: 4.2.4 dev: true /jest-snapshot/26.6.2: resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} engines: {node: '>= 10.14.2'} dependencies: '@babel/types': 7.12.12 '@jest/types': 26.6.2 '@types/babel__traverse': 7.11.0 '@types/prettier': 2.1.6 chalk: 4.1.0 expect: 26.6.2 graceful-fs: 4.2.4 jest-diff: 26.6.2 jest-get-type: 26.3.0 jest-haste-map: 26.6.2 jest-matcher-utils: 26.6.2 jest-message-util: 26.6.2 jest-resolve: 26.6.2 natural-compare: 1.4.0 pretty-format: 26.6.2 semver: 7.3.4 dev: true /jest-util/26.6.2: resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 '@types/node': 14.14.20 chalk: 4.1.0 graceful-fs: 4.2.4 is-ci: 2.0.0 micromatch: 4.0.2 dev: true /jest-validate/26.6.2: resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 camelcase: 6.2.0 chalk: 4.1.0 jest-get-type: 26.3.0 leven: 3.1.0 pretty-format: 26.6.2 dev: true /jest-watcher/26.6.2: resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==} engines: {node: '>= 10.14.2'} dependencies: '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 '@types/node': 14.14.20 ansi-escapes: 4.3.1 chalk: 4.1.0 jest-util: 26.6.2 string-length: 4.0.1 dev: true /jest-worker/26.6.2: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: '@types/node': 14.14.20 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true /jest/26.6.3: resolution: {integrity: sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q==} engines: {node: '>= 10.14.2'} hasBin: true dependencies: '@jest/core': 26.6.3 import-local: 3.0.2 jest-cli: 26.6.3 transitivePeerDependencies: - bufferutil - canvas - supports-color - ts-node - utf-8-validate dev: true /js-tokens/3.0.2: resolution: {integrity: sha1-mGbfOVECEw449/mWvOtlRDIJwls=} dev: true /js-tokens/4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} dev: true /js-yaml/3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true dependencies: argparse: 1.0.10 esprima: 4.0.1 dev: true /jsbn/0.1.1: resolution: {integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM=} dev: true /jsdom/16.4.0: resolution: {integrity: sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==} engines: {node: '>=10'} peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: canvas: optional: true dependencies: abab: 2.0.5 acorn: 7.4.1 acorn-globals: 6.0.0 cssom: 0.4.4 cssstyle: 2.3.0 data-urls: 2.0.0 decimal.js: 10.2.1 domexception: 2.0.1 escodegen: 1.14.3 html-encoding-sniffer: 2.0.1 is-potential-custom-element-name: 1.0.0 nwsapi: 2.2.0 parse5: 5.1.1 request: 2.88.2 request-promise-native: 1.0.9_request@2.88.2 saxes: 5.0.1 symbol-tree: 3.2.4 tough-cookie: 3.0.1 w3c-hr-time: 1.0.2 w3c-xmlserializer: 2.0.0 webidl-conversions: 6.1.0 whatwg-encoding: 1.0.5 whatwg-mimetype: 2.3.0 whatwg-url: 8.4.0 ws: 7.4.2 xml-name-validator: 3.0.0 transitivePeerDependencies: - bufferutil - utf-8-validate dev: true /jsesc/1.3.0: resolution: {integrity: sha1-RsP+yMGJKxKwgz25vHYiF226s0s=} hasBin: true dev: true /jsesc/2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} hasBin: true dev: true /json-parse-better-errors/1.0.2: resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} dev: true /json-parse-even-better-errors/2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: true /json-schema-traverse/0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} dev: true /json-schema/0.2.3: resolution: {integrity: sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=} dev: true /json-stable-stringify-without-jsonify/1.0.1: resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} dev: true /json-stringify-safe/5.0.1: resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=} dev: true /json5/0.5.1: resolution: {integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=} hasBin: true dev: true /json5/2.1.3: resolution: {integrity: sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==} engines: {node: '>=6'} hasBin: true dependencies: minimist: 1.2.5 dev: true /jsondiffpatch/0.1.43: resolution: {integrity: sha1-wFKImpnvfroZ0AlfkPclz6cKVhE=} hasBin: true dependencies: chalk: 0.5.1 dev: true bundledDependencies: [] /jsprim/1.4.1: resolution: {integrity: sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=} engines: {'0': node >=0.6.0} dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 json-schema: 0.2.3 verror: 1.10.0 dev: true /jsx-ast-utils/2.4.1: resolution: {integrity: sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==} engines: {node: '>=4.0'} dependencies: array-includes: 3.1.2 object.assign: 4.1.2 dev: true /kind-of/3.2.2: resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 dev: true /kind-of/4.0.0: resolution: {integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 dev: true /kind-of/5.1.0: resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} engines: {node: '>=0.10.0'} dev: true /kind-of/6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} dev: true /kleur/3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} dev: true /latest-version/2.0.0: resolution: {integrity: sha1-VvjWE5YghHuAF/jx9NeOIRMkFos=} engines: {node: '>=0.10.0'} dependencies: package-json: 2.4.0 dev: true /leven/3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} dev: true /levn/0.3.0: resolution: {integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 type-check: 0.3.2 dev: true /lines-and-columns/1.1.6: resolution: {integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=} dev: true /load-json-file/1.1.0: resolution: {integrity: sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=} engines: {node: '>=0.10.0'} dependencies: graceful-fs: 4.2.4 parse-json: 2.2.0 pify: 2.3.0 pinkie-promise: 2.0.1 strip-bom: 2.0.0 dev: true /load-json-file/2.0.0: resolution: {integrity: sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=} engines: {node: '>=4'} dependencies: graceful-fs: 4.2.4 parse-json: 2.2.0 pify: 2.3.0 strip-bom: 3.0.0 dev: true /load-json-file/5.3.0: resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==} engines: {node: '>=6'} dependencies: graceful-fs: 4.2.4 parse-json: 4.0.0 pify: 4.0.1 strip-bom: 3.0.0 type-fest: 0.3.1 dev: true /locate-path/2.0.0: resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=} engines: {node: '>=4'} dependencies: p-locate: 2.0.0 path-exists: 3.0.0 dev: true /locate-path/3.0.0: resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} engines: {node: '>=6'} dependencies: p-locate: 3.0.0 path-exists: 3.0.0 dev: true /locate-path/5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} dependencies: p-locate: 4.1.0 dev: true /lodash.partition/4.6.0: resolution: {integrity: sha1-o45GtzRp4EILDaEhLmbUFL42S6Q=} dev: true /lodash.sortby/4.7.0: resolution: {integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=} dev: true /lodash/4.17.20: resolution: {integrity: sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==} dev: true /longest-streak/1.0.0: resolution: {integrity: sha1-0GWXxNTDG1LMsfXY+P5xSOr9aWU=} dev: true /loose-envify/1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true dependencies: js-tokens: 4.0.0 dev: true /loud-rejection/1.6.0: resolution: {integrity: sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=} engines: {node: '>=0.10.0'} dependencies: currently-unhandled: 0.4.1 signal-exit: 3.0.3 dev: true /lowercase-keys/1.0.1: resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} engines: {node: '>=0.10.0'} dev: true /lru-cache/4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: pseudomap: 1.0.2 yallist: 2.1.2 dev: true /lru-cache/6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} dependencies: yallist: 4.0.0 dev: true /magic-hook/1.0.0: resolution: {integrity: sha1-mu2GAadRK1axlUcNonSk7jqVCfA=} dependencies: flatten: 1.0.3 dev: true /make-dir/3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: semver: 6.3.0 dev: true /makeerror/1.0.11: resolution: {integrity: sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=} dependencies: tmpl: 1.0.4 dev: true /map-cache/0.2.2: resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=} engines: {node: '>=0.10.0'} dev: true /map-obj/1.0.1: resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=} engines: {node: '>=0.10.0'} dev: true /map-visit/1.0.0: resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=} engines: {node: '>=0.10.0'} dependencies: object-visit: 1.0.1 dev: true /markdown-table/0.4.0: resolution: {integrity: sha1-iQwsGzv+g/sA5BKbjkz+ZFJw+dE=} dev: true /markdownscript/1.3.0: resolution: {integrity: sha1-vf3/Csk0F4JLI2UjqaaZ5eDOfhE=} engines: {node: '>=0.10'} dependencies: babel-runtime: 6.26.0 dev: true /mdast-util-to-string/1.1.0: resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} dev: true /memfs/3.2.0: resolution: {integrity: sha512-f/xxz2TpdKv6uDn6GtHee8ivFyxwxmPuXatBb1FBwxYNuVpbM3k/Y1Z+vC0mH/dIXXrukYfe3qe5J32Dfjg93A==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.1 dev: true /meow/3.7.0: resolution: {integrity: sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=} engines: {node: '>=0.10.0'} dependencies: camelcase-keys: 2.1.0 decamelize: 1.2.0 loud-rejection: 1.6.0 map-obj: 1.0.1 minimist: 1.2.5 normalize-package-data: 2.5.0 object-assign: 4.1.1 read-pkg-up: 1.0.1 redent: 1.0.0 trim-newlines: 1.0.0 dev: true /merge-stream/2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} dev: true /micromatch/3.1.10: resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} engines: {node: '>=0.10.0'} dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 braces: 2.3.2 define-property: 2.0.2 extend-shallow: 3.0.2 extglob: 2.0.4 fragment-cache: 0.2.1 kind-of: 6.0.3 nanomatch: 1.2.13 object.pick: 1.3.0 regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 dev: true /micromatch/4.0.2: resolution: {integrity: sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==} engines: {node: '>=8'} dependencies: braces: 3.0.2 picomatch: 2.2.2 dev: true /mime-db/1.45.0: resolution: {integrity: sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==} engines: {node: '>= 0.6'} dev: true /mime-types/2.1.28: resolution: {integrity: sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==} engines: {node: '>= 0.6'} dependencies: mime-db: 1.45.0 dev: true /mimic-fn/2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} dev: true /minimatch/3.0.4: resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} dependencies: brace-expansion: 1.1.11 dev: true /minimist/1.2.5: resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} dev: true /mixin-deep/1.3.2: resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} engines: {node: '>=0.10.0'} dependencies: for-in: 1.0.2 is-extendable: 1.0.1 dev: true /mkdirp/0.5.5: resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==} hasBin: true dependencies: minimist: 1.2.5 dev: true /mock-fs/4.13.0: resolution: {integrity: sha512-DD0vOdofJdoaRNtnWcrXe6RQbpHkPPmtqGq14uRX0F8ZKJ5nv89CVTYl/BZdppDxBDaV0hl75htg3abpEWlPZA==} dev: true /mos-core/0.2.1: resolution: {integrity: sha1-oVarJoUbAcjkIegGVhfPNfEfU5o=} engines: {node: '>=0.10'} dependencies: babel-runtime: 6.26.0 ccount: 1.1.0 collapse-white-space: 1.0.6 core-js: 2.6.12 is-promise: 2.2.2 longest-streak: 1.0.0 markdown-table: 0.4.0 parse-entities: 1.2.2 repeat-string: 1.6.1 stringify-entities: 1.3.2 trim: 0.0.1 trim-trailing-lines: 1.1.4 unist-util-remove-position: 1.1.4 vfile: 1.4.0 vfile-location: 2.0.6 dev: true /mos-init/1.1.0: resolution: {integrity: sha1-k2l4WlCc1ekHsjMYGTwK49JXqmQ=} engines: {node: '>=0.10'} dependencies: arr-exclude: 1.0.0 core-js: 2.6.12 the-argv: 1.0.0 write-pkg: 1.0.0 dev: true /mos-plugin-dependencies/2.2.0: resolution: {integrity: sha1-pPxOypZ1ejWAew8tRXUFIQHfgtw=} engines: {node: '>=4'} dependencies: babel-runtime: 6.26.0 github-url-to-object: 2.2.6 shieldman: 1.4.0 dev: true /mos-plugin-ejs/1.1.0: resolution: {integrity: sha1-K8Q82LEiMQNf/ao4QIviQksiy+k=} engines: {node: '>=0.10'} dependencies: '@zkochan/read-pkg-up': 1.0.2 babel-run-async: 1.0.0 babel-runtime: 6.26.0 github-url-to-object: 2.2.6 reserved-words: 0.1.2 dev: true /mos-plugin-example/1.1.0: resolution: {integrity: sha1-e6Qv56UPL8/6lnEkONx/cfD0anE=} engines: {node: '>=0.10'} dependencies: babel-runtime: 6.26.0 codemo: 0.2.2 independent: 0.2.0 dev: true /mos-plugin-installation/1.2.0: resolution: {integrity: sha1-WaHEyiJ9InEXeCvf3+gG3bf4Xiw=} engines: {node: '>=0.10'} dependencies: babel-runtime: 6.26.0 markdownscript: 1.3.0 mdast-util-to-string: 1.1.0 dev: true /mos-plugin-license/1.2.0: resolution: {integrity: sha1-D05kpCfobBXLuDg6nBC9snXfLao=} engines: {node: '>=0.10'} dependencies: babel-runtime: 6.26.0 file-exists: 1.0.0 markdownscript: 1.3.0 mdast-util-to-string: 1.1.0 dev: true /mos-plugin-markdownscript/2.1.0: resolution: {integrity: sha1-wUeSaZOiFOrsHwjZr31LkfIBWFw=} engines: {node: '>=4'} dependencies: babel-runtime: 6.26.0 markdownscript: 1.3.0 reserved-words: 0.1.2 dev: true /mos-plugin-package-json/2.1.0: resolution: {integrity: sha1-0UzSUMY/BLBQg5IjEvZFPoyIWDM=} engines: {node: '>=0.10'} dependencies: babel-runtime: 6.26.0 dev: true /mos-plugin-readme/1.0.4: resolution: {integrity: sha1-fOweSUjB7B1EKRWAHR9m164khfM=} engines: {node: '>=0.12'} dependencies: babel-runtime: 6.26.0 markdownscript: 1.3.0 dev: true /mos-plugin-shields/2.2.0: resolution: {integrity: sha1-L55aB7tYQOptGa1Nc02ixKLVGyU=} engines: {node: '>=0.10'} dependencies: babel-runtime: 6.26.0 shieldman: 1.4.0 dev: true /mos-plugin-snippet/2.1.1: resolution: {integrity: sha1-4urieZUjRAXzkk6iAiMgDPa60KY=} engines: {node: '>=0.10'} dependencies: babel-runtime: 6.26.0 dev: true /mos-plugin-toc/1.2.1: resolution: {integrity: sha1-uPs0aBbnolpBq/6rBF87uzyGVwo=} engines: {node: '>=0.10'} dependencies: babel-runtime: 6.26.0 github-slugger: 1.3.0 markdownscript: 1.3.0 dev: true /mos-processor/1.2.0: resolution: {integrity: sha1-wiNpb9b1ogwau0q0D4ToL0StaT0=} engines: {node: '>=0.10'} dependencies: '@zkochan/read-pkg-up': 1.0.2 babel-runtime: 6.26.0 github-url-to-object: 2.2.6 magic-hook: 1.0.0 mos-core: 0.2.1 remi: 1.1.1 remi-runner: 1.1.3 vfile: 1.4.0 dev: true /mos/1.3.1: resolution: {integrity: sha1-FSUfZGIGkofctlBXXXpZPHvnkYg=} engines: {node: '>=0.10'} hasBin: true dependencies: '@zkochan/read-pkg-up': 1.0.2 '@zkochan/tap-diff': 1.1.1 babel-runtime: 6.26.0 chalk: 1.1.3 glob: 7.0.6 loud-rejection: 1.6.0 magic-hook: 1.0.0 meow: 3.7.0 mos-init: 1.1.0 mos-plugin-dependencies: 2.2.0 mos-plugin-ejs: 1.1.0 mos-plugin-example: 1.1.0 mos-plugin-installation: 1.2.0 mos-plugin-license: 1.2.0 mos-plugin-markdownscript: 2.1.0 mos-plugin-package-json: 2.1.0 mos-plugin-shields: 2.2.0 mos-plugin-snippet: 2.1.1 mos-plugin-toc: 1.2.1 mos-processor: 1.2.0 normalize-newline: 2.0.0 normalize-path: 2.0.1 rcfile: 1.0.3 relative: 3.0.2 resolve: 1.1.7 tape: 4.5.1 update-notifier: 0.7.0 dev: true /ms/2.0.0: resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} dev: true /ms/2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} dev: true /mute-stream/0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: true /nanomatch/1.2.13: resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} engines: {node: '>=0.10.0'} dependencies: 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.3 object.pick: 1.3.0 regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 dev: true /natural-compare/1.4.0: resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} dev: true /nice-try/1.0.5: resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} dev: true /node-int64/0.4.0: resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=} dev: true /node-modules-regexp/1.0.0: resolution: {integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=} engines: {node: '>=0.10.0'} dev: true /node-notifier/8.0.2: resolution: {integrity: sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==} dependencies: growly: 1.3.0 is-wsl: 2.2.0 semver: 7.3.4 shellwords: 0.1.1 uuid: 8.3.2 which: 2.0.2 dev: true optional: true /node-status-codes/1.0.0: resolution: {integrity: sha1-WuVUHQJGRdMqWPzdyc7s6nrjrC8=} engines: {node: '>=0.10.0'} dev: true /normalize-newline/2.0.0: resolution: {integrity: sha1-yIv2pUcUYqzrP2UXE7wjmw+stUk=} engines: {node: '>=0.10.0'} dev: true /normalize-package-data/2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.8 resolve: 1.19.0 semver: 5.7.1 validate-npm-package-license: 3.0.4 dev: true /normalize-path/2.0.1: resolution: {integrity: sha1-R4hqwWYnYNQmG32XnSQXCdPOP3o=} engines: {node: '>=0.10.0'} dev: true /normalize-path/2.1.1: resolution: {integrity: sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=} engines: {node: '>=0.10.0'} dependencies: remove-trailing-separator: 1.1.0 dev: true /normalize-path/3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} dev: true /npm-run-path/2.0.2: resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=} engines: {node: '>=4'} dependencies: path-key: 2.0.1 dev: true /npm-run-path/4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} dependencies: path-key: 3.1.1 dev: true /number-is-nan/1.0.1: resolution: {integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=} engines: {node: '>=0.10.0'} dev: true /nwsapi/2.2.0: resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==} dev: true /oauth-sign/0.9.0: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} dev: true /object-assign/4.1.1: resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} engines: {node: '>=0.10.0'} dev: true /object-copy/0.1.0: resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=} engines: {node: '>=0.10.0'} dependencies: copy-descriptor: 0.1.1 define-property: 0.2.5 kind-of: 3.2.2 dev: true /object-inspect/1.1.0: resolution: {integrity: sha1-NLymRKgPlPi6QaD50JhOr2Os8U0=} dev: true /object-inspect/1.9.0: resolution: {integrity: sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==} dev: true /object-keys/1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} dev: true /object-visit/1.0.1: resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true /object.assign/4.1.2: resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.1 define-properties: 1.1.3 has-symbols: 1.0.1 object-keys: 1.1.1 dev: true /object.entries/1.1.3: resolution: {integrity: sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.1 define-properties: 1.1.3 es-abstract: 1.18.0-next.1 has: 1.0.3 dev: true /object.fromentries/2.0.3: resolution: {integrity: sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.1 define-properties: 1.1.3 es-abstract: 1.18.0-next.1 has: 1.0.3 dev: true /object.pick/1.3.0: resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true /object.values/1.1.2: resolution: {integrity: sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.1 define-properties: 1.1.3 es-abstract: 1.18.0-next.1 has: 1.0.3 dev: true /once/1.4.0: resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} dependencies: wrappy: 1.0.2 dev: true /onetime/5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 dev: true /optionator/0.8.3: resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} engines: {node: '>= 0.8.0'} dependencies: deep-is: 0.1.3 fast-levenshtein: 2.0.6 levn: 0.3.0 prelude-ls: 1.1.2 type-check: 0.3.2 word-wrap: 1.2.3 dev: true /os-homedir/1.0.2: resolution: {integrity: sha1-/7xJiDNuDoM94MFox+8VISGqf7M=} engines: {node: '>=0.10.0'} dev: true /os-tmpdir/1.0.2: resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=} engines: {node: '>=0.10.0'} dev: true /osenv/0.1.5: resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==} dependencies: os-homedir: 1.0.2 os-tmpdir: 1.0.2 dev: true /p-each-series/2.2.0: resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} engines: {node: '>=8'} dev: true /p-finally/1.0.0: resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=} engines: {node: '>=4'} dev: true /p-limit/1.3.0: resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} engines: {node: '>=4'} dependencies: p-try: 1.0.0 dev: true /p-limit/2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} dependencies: p-try: 2.2.0 dev: true /p-locate/2.0.0: resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} engines: {node: '>=4'} dependencies: p-limit: 1.3.0 dev: true /p-locate/3.0.0: resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} engines: {node: '>=6'} dependencies: p-limit: 2.3.0 dev: true /p-locate/4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} engines: {node: '>=8'} dependencies: p-limit: 2.3.0 dev: true /p-try/1.0.0: resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=} engines: {node: '>=4'} dev: true /p-try/2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} dev: true /package-json/2.4.0: resolution: {integrity: sha1-DRW9Z9HLvduyyiIv8u24a8sxqLs=} engines: {node: '>=0.10.0'} dependencies: got: 5.7.1 registry-auth-token: 3.4.0 registry-url: 3.1.0 semver: 5.7.1 dev: true /parent-module/1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} dependencies: callsites: 3.1.0 dev: true /parse-entities/1.2.2: resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==} dependencies: character-entities: 1.2.4 character-entities-legacy: 1.1.4 character-reference-invalid: 1.1.4 is-alphanumerical: 1.0.4 is-decimal: 1.0.4 is-hexadecimal: 1.0.4 dev: true /parse-json/2.2.0: resolution: {integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=} engines: {node: '>=0.10.0'} dependencies: error-ex: 1.3.2 dev: true /parse-json/4.0.0: resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=} engines: {node: '>=4'} dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 dev: true /parse-json/5.1.0: resolution: {integrity: sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==} engines: {node: '>=8'} dependencies: '@babel/code-frame': 7.12.11 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.1.6 dev: true /parse-ms/1.0.1: resolution: {integrity: sha1-VjRtR0nXjyNDDKDHE4UK75GqNh0=} engines: {node: '>=0.10.0'} dev: true /parse5/5.1.1: resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} dev: true /pascalcase/0.1.1: resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=} engines: {node: '>=0.10.0'} dev: true /path-exists/2.1.0: resolution: {integrity: sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=} engines: {node: '>=0.10.0'} dependencies: pinkie-promise: 2.0.1 dev: true /path-exists/3.0.0: resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} engines: {node: '>=4'} dev: true /path-exists/4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} dev: true /path-is-absolute/1.0.1: resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} engines: {node: '>=0.10.0'} dev: true /path-key/2.0.1: resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=} engines: {node: '>=4'} dev: true /path-key/3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} dev: true /path-parse/1.0.6: resolution: {integrity: sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==} dev: true /path-type/1.1.0: resolution: {integrity: sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=} engines: {node: '>=0.10.0'} dependencies: graceful-fs: 4.2.4 pify: 2.3.0 pinkie-promise: 2.0.1 dev: true /path-type/2.0.0: resolution: {integrity: sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=} engines: {node: '>=4'} dependencies: pify: 2.3.0 dev: true /performance-now/2.1.0: resolution: {integrity: sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=} dev: true /picomatch/2.2.2: resolution: {integrity: sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==} engines: {node: '>=8.6'} dev: true /pify/2.3.0: resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=} engines: {node: '>=0.10.0'} dev: true /pify/4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} dev: true /pinkie-promise/2.0.1: resolution: {integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=} engines: {node: '>=0.10.0'} dependencies: pinkie: 2.0.4 dev: true /pinkie/2.0.4: resolution: {integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=} engines: {node: '>=0.10.0'} dev: true /pirates/4.0.1: resolution: {integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==} engines: {node: '>= 6'} dependencies: node-modules-regexp: 1.0.0 dev: true /pkg-conf/3.1.0: resolution: {integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==} engines: {node: '>=6'} dependencies: find-up: 3.0.0 load-json-file: 5.3.0 dev: true /pkg-config/1.1.1: resolution: {integrity: sha1-VX7yLXPaPIg3EHdmxS6tq94pj+Q=} engines: {node: '>=0.10'} dependencies: debug-log: 1.0.1 find-root: 1.1.0 xtend: 4.0.2 dev: true /pkg-dir/2.0.0: resolution: {integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=} engines: {node: '>=4'} dependencies: find-up: 2.1.0 dev: true /pkg-dir/4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} dependencies: find-up: 4.1.0 dev: true /plur/1.0.0: resolution: {integrity: sha1-24XGgU9eXlo7Se/CjWBP7GKXUVY=} engines: {node: '>=0.10.0'} dev: true /posix-character-classes/0.1.1: resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=} engines: {node: '>=0.10.0'} dev: true /prelude-ls/1.1.2: resolution: {integrity: sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=} engines: {node: '>= 0.8.0'} dev: true /prepend-http/1.0.4: resolution: {integrity: sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=} engines: {node: '>=0.10.0'} dev: true /pretty-format/26.6.2: resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} engines: {node: '>= 10'} dependencies: '@jest/types': 26.6.2 ansi-regex: 5.0.0 ansi-styles: 4.3.0 react-is: 17.0.1 dev: true /pretty-ms/2.1.0: resolution: {integrity: sha1-QlfCVt8/sLRR1q/6qwIYhBJpgdw=} engines: {node: '>=0.10.0'} dependencies: is-finite: 1.1.0 parse-ms: 1.0.1 plur: 1.0.0 dev: true /private/0.1.8: resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} engines: {node: '>= 0.6'} dev: true /process-nextick-args/2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} dev: true /progress/2.0.3: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} dev: true /promise.prototype.finally/1.0.1: resolution: {integrity: sha1-kRgvkckkhplXQPoF4NqUKsmGvvo=} deprecated: Please upgrade to v2.0 or higher! dev: true /prompts/2.4.0: resolution: {integrity: sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==} engines: {node: '>= 6'} dependencies: kleur: 3.0.3 sisteransi: 1.0.5 dev: true /prop-types/15.7.2: resolution: {integrity: sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 dev: true /pseudomap/1.0.2: resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=} dev: true /psl/1.8.0: resolution: {integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==} dev: true /pump/3.0.0: resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} dependencies: end-of-stream: 1.4.4 once: 1.4.0 dev: true /punycode/2.1.1: resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} engines: {node: '>=6'} dev: true /qs/6.5.2: resolution: {integrity: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==} engines: {node: '>=0.6'} dev: true /rc/1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true dependencies: deep-extend: 0.6.0 ini: 1.3.8 minimist: 1.2.5 strip-json-comments: 2.0.1 dev: true /rcfile/1.0.3: resolution: {integrity: sha1-wdgXXCiRh8Hci7OpY7bURAF7FXY=} engines: {node: '>=0.10'} dependencies: debug: 2.6.9 js-yaml: 3.14.1 json5: 0.5.1 object-assign: 4.1.1 object-keys: 1.1.1 path-exists: 2.1.0 require-uncached: 1.0.3 dev: true /react-is/16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} dev: true /react-is/17.0.1: resolution: {integrity: sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==} dev: true /read-all-stream/3.1.0: resolution: {integrity: sha1-NcPhd/IHjveJ7kv6+kNzB06u9Po=} engines: {node: '>=0.10.0'} dependencies: pinkie-promise: 2.0.1 readable-stream: 2.3.7 dev: true /read-pkg-up/1.0.1: resolution: {integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=} engines: {node: '>=0.10.0'} dependencies: find-up: 1.1.2 read-pkg: 1.1.0 dev: true /read-pkg-up/2.0.0: resolution: {integrity: sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=} engines: {node: '>=4'} dependencies: find-up: 2.1.0 read-pkg: 2.0.0 dev: true /read-pkg-up/7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} engines: {node: '>=8'} dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 dev: true /read-pkg/1.1.0: resolution: {integrity: sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=} engines: {node: '>=0.10.0'} dependencies: load-json-file: 1.1.0 normalize-package-data: 2.5.0 path-type: 1.1.0 dev: true /read-pkg/2.0.0: resolution: {integrity: sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=} engines: {node: '>=4'} dependencies: load-json-file: 2.0.0 normalize-package-data: 2.5.0 path-type: 2.0.0 dev: true /read-pkg/5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: '@types/normalize-package-data': 2.4.0 normalize-package-data: 2.5.0 parse-json: 5.1.0 type-fest: 0.6.0 dev: true /readable-stream/2.3.7: resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==} dependencies: core-util-is: 1.0.2 inherits: 2.0.4 isarray: 1.0.0 process-nextick-args: 2.0.1 safe-buffer: 5.1.2 string_decoder: 1.1.1 util-deprecate: 1.0.2 dev: true /redent/1.0.0: resolution: {integrity: sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=} engines: {node: '>=0.10.0'} dependencies: indent-string: 2.1.0 strip-indent: 1.0.1 dev: true /regenerator-runtime/0.11.1: resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} dev: true /regex-not/1.0.2: resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} engines: {node: '>=0.10.0'} dependencies: extend-shallow: 3.0.2 safe-regex: 1.1.0 dev: true /regexpp/2.0.1: resolution: {integrity: sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==} engines: {node: '>=6.5.0'} dev: true /regexpp/3.1.0: resolution: {integrity: sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==} engines: {node: '>=8'} dev: true /registry-auth-token/3.4.0: resolution: {integrity: sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==} dependencies: rc: 1.2.8 safe-buffer: 5.2.1 dev: true /registry-url/3.1.0: resolution: {integrity: sha1-PU74cPc93h138M+aOBQyRE4XSUI=} engines: {node: '>=0.10.0'} dependencies: rc: 1.2.8 dev: true /relative/3.0.2: resolution: {integrity: sha1-Dc2OxUpdNaPBXhBFA9ZTdbWlNn8=} engines: {node: '>= 0.8.0'} dependencies: isobject: 2.1.0 dev: true /remi-runner/1.1.3: resolution: {integrity: sha1-Dh/tS9DxMlwnNeZTHRM5EnM/fmw=} dependencies: babel-runtime: 6.26.0 is-promise: 2.2.2 dev: true /remi/1.1.1: resolution: {integrity: sha1-Rxt5AU16SWvboB0BihJvj3ctiMY=} dependencies: babel-runtime: 6.26.0 magic-hook: 1.0.0 dev: true /remove-trailing-separator/1.1.0: resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=} dev: true /repeat-element/1.1.3: resolution: {integrity: sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==} engines: {node: '>=0.10.0'} dev: true /repeat-string/1.6.1: resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=} engines: {node: '>=0.10'} dev: true /repeating/2.0.1: resolution: {integrity: sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=} engines: {node: '>=0.10.0'} dependencies: is-finite: 1.1.0 dev: true /request-promise-core/1.1.4_request@2.88.2: resolution: {integrity: sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==} engines: {node: '>=0.10.0'} peerDependencies: request: ^2.34 dependencies: lodash: 4.17.20 request: 2.88.2 dev: true /request-promise-native/1.0.9_request@2.88.2: resolution: {integrity: sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==} engines: {node: '>=0.12.0'} deprecated: request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142 peerDependencies: request: ^2.34 dependencies: request: 2.88.2 request-promise-core: 1.1.4_request@2.88.2 stealthy-require: 1.1.1 tough-cookie: 2.5.0 dev: true /request/2.88.2: resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} engines: {node: '>= 6'} deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 dependencies: aws-sign2: 0.7.0 aws4: 1.11.0 caseless: 0.12.0 combined-stream: 1.0.8 extend: 3.0.2 forever-agent: 0.6.1 form-data: 2.3.3 har-validator: 5.1.5 http-signature: 1.2.0 is-typedarray: 1.0.0 isstream: 0.1.2 json-stringify-safe: 5.0.1 mime-types: 2.1.28 oauth-sign: 0.9.0 performance-now: 2.1.0 qs: 6.5.2 safe-buffer: 5.2.1 tough-cookie: 2.5.0 tunnel-agent: 0.6.0 uuid: 3.4.0 dev: true /require-directory/2.1.1: resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} engines: {node: '>=0.10.0'} dev: true /require-main-filename/2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} dev: true /require-uncached/1.0.3: resolution: {integrity: sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=} engines: {node: '>=0.10.0'} dependencies: caller-path: 0.1.0 resolve-from: 1.0.1 dev: true /reserved-words/0.1.2: resolution: {integrity: sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=} dev: true /resolve-cwd/3.0.0: resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 dev: true /resolve-from/1.0.1: resolution: {integrity: sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=} engines: {node: '>=0.10.0'} dev: true /resolve-from/4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} dev: true /resolve-from/5.0.0: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} dev: true /resolve-url/0.2.1: resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=} deprecated: https://github.com/lydell/resolve-url#deprecated dev: true /resolve/1.1.7: resolution: {integrity: sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=} dev: true /resolve/1.19.0: resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} dependencies: is-core-module: 2.2.0 path-parse: 1.0.6 dev: true /restore-cursor/3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} dependencies: onetime: 5.1.2 signal-exit: 3.0.3 dev: true /resumer/0.0.0: resolution: {integrity: sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=} dependencies: through: 2.3.8 dev: true /ret/0.1.15: resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} engines: {node: '>=0.12'} dev: true /rimraf/2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} hasBin: true dependencies: glob: 7.1.6 dev: true /rimraf/3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: glob: 7.1.6 dev: true /rollup-plugin-babel/2.4.0: resolution: {integrity: sha1-gqfhZPopFCq9B7UmucfALV6jO70=} deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel. dependencies: babel-core: 6.26.3 babel-plugin-transform-es2015-classes: 6.24.1 object-assign: 4.1.1 rollup-pluginutils: 1.5.2 dev: true /rollup-plugin-includepaths/0.1.2: resolution: {integrity: sha1-VuhDgwmmK5QYnkIIqA+a/BUf3WA=} dev: true /rollup-pluginutils/1.5.2: resolution: {integrity: sha1-HhVud4+UtyVb+hs9AXi+j1xVJAg=} dependencies: estree-walker: 0.2.1 minimatch: 3.0.4 dev: true /rollup/0.25.8: resolution: {integrity: sha1-v2zoO4dRDRY0Ru6qV37WpvxYNeA=} hasBin: true dependencies: chalk: 1.1.3 minimist: 1.2.5 source-map-support: 0.3.3 dev: true /rsvp/4.8.5: resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} engines: {node: 6.* || >= 7.*} dev: true /run-async/2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} dev: true /run-parallel/1.1.10: resolution: {integrity: sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==} dev: true /rxjs/6.6.3: resolution: {integrity: sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==} engines: {npm: '>=2.0.0'} dependencies: tslib: 1.14.1 dev: true /safe-buffer/5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} dev: true /safe-buffer/5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} dev: true /safe-regex/1.1.0: resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=} dependencies: ret: 0.1.15 dev: true /safer-buffer/2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true /sane/4.1.0: resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} engines: {node: 6.* || 8.* || >= 10.*} hasBin: true dependencies: '@cnakazawa/watch': 1.0.4 anymatch: 2.0.0 capture-exit: 2.0.0 exec-sh: 0.3.4 execa: 1.0.0 fb-watchman: 2.0.1 micromatch: 3.1.10 minimist: 1.2.5 walker: 1.0.7 dev: true /saxes/5.0.1: resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} engines: {node: '>=10'} dependencies: xmlchars: 2.2.0 dev: true /semver-diff/2.1.0: resolution: {integrity: sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=} engines: {node: '>=0.10.0'} dependencies: semver: 5.7.1 dev: true /semver/5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} hasBin: true dev: true /semver/6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true dev: true /semver/7.3.4: resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 dev: true /set-blocking/2.0.0: resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=} dev: true /set-value/2.0.1: resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} engines: {node: '>=0.10.0'} dependencies: extend-shallow: 2.0.1 is-extendable: 0.1.1 is-plain-object: 2.0.4 split-string: 3.1.0 dev: true /shebang-command/1.2.0: resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=} engines: {node: '>=0.10.0'} dependencies: shebang-regex: 1.0.0 dev: true /shebang-command/2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 dev: true /shebang-regex/1.0.0: resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=} engines: {node: '>=0.10.0'} dev: true /shebang-regex/3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} dev: true /shellwords/0.1.1: resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} dev: true optional: true /shieldman/1.4.0: resolution: {integrity: sha512-wnaqLmbwHOkG72+CpKfuBQMth2yEYpn0X0/wwuaGovycRIFPuT00BD0PwOeMRv44LOwEJpNTfG4vbDtT2Ap+tg==} engines: {node: '>=0.10'} dev: true /signal-exit/3.0.3: resolution: {integrity: sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==} dev: true /sisteransi/1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} dev: true /slash/1.0.0: resolution: {integrity: sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=} engines: {node: '>=0.10.0'} dev: true /slash/3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} dev: true /slice-ansi/2.1.0: resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} engines: {node: '>=6'} dependencies: ansi-styles: 3.2.1 astral-regex: 1.0.0 is-fullwidth-code-point: 2.0.0 dev: true /slide/1.1.6: resolution: {integrity: sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=} dev: true /snapdragon-node/2.1.1: resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} engines: {node: '>=0.10.0'} dependencies: define-property: 1.0.0 isobject: 3.0.1 snapdragon-util: 3.0.1 dev: true /snapdragon-util/3.0.1: resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true /snapdragon/0.8.2: resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} engines: {node: '>=0.10.0'} dependencies: base: 0.11.2 debug: 2.6.9 define-property: 0.2.5 extend-shallow: 2.0.1 map-cache: 0.2.2 source-map: 0.5.7 source-map-resolve: 0.5.3 use: 3.1.1 dev: true /sort-keys/1.1.2: resolution: {integrity: sha1-RBttTTRnmPG05J6JIK37oOVD+a0=} engines: {node: '>=0.10.0'} dependencies: is-plain-obj: 1.1.0 dev: true /source-map-resolve/0.5.3: resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} dependencies: atob: 2.1.2 decode-uri-component: 0.2.0 resolve-url: 0.2.1 source-map-url: 0.4.0 urix: 0.1.0 dev: true /source-map-support/0.3.3: resolution: {integrity: sha1-NJAJd9W6PwfHdX7nLnO7GptTdU8=} dependencies: source-map: 0.1.32 dev: true /source-map-support/0.4.18: resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==} dependencies: source-map: 0.5.7 dev: true /source-map-support/0.5.19: resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} dependencies: buffer-from: 1.1.1 source-map: 0.6.1 dev: true /source-map-url/0.4.0: resolution: {integrity: sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=} dev: true /source-map/0.1.32: resolution: {integrity: sha1-yLbBZ3l7pHQKjqMyUhYv8IWRsmY=} engines: {node: '>=0.8.0'} dependencies: amdefine: 1.0.1 dev: true /source-map/0.5.3: resolution: {integrity: sha1-gmdLhacbC+dsPnQW0V6fUlLrO+A=} engines: {node: '>=0.10.0'} dev: true /source-map/0.5.7: resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=} engines: {node: '>=0.10.0'} dev: true /source-map/0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} dev: true /source-map/0.7.3: resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==} engines: {node: '>= 8'} dev: true /spdx-correct/3.1.1: resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.7 dev: true /spdx-exceptions/2.3.0: resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} dev: true /spdx-expression-parse/3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.7 dev: true /spdx-license-ids/3.0.7: resolution: {integrity: sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==} dev: true /split-string/3.1.0: resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} engines: {node: '>=0.10.0'} dependencies: extend-shallow: 3.0.2 dev: true /sprintf-js/1.0.3: resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} dev: true /sshpk/1.16.1: resolution: {integrity: sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==} engines: {node: '>=0.10.0'} hasBin: true dependencies: asn1: 0.2.4 assert-plus: 1.0.0 bcrypt-pbkdf: 1.0.2 dashdash: 1.14.1 ecc-jsbn: 0.1.2 getpass: 0.1.7 jsbn: 0.1.1 safer-buffer: 2.1.2 tweetnacl: 0.14.5 dev: true /stack-utils/2.0.3: resolution: {integrity: sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==} engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 dev: true /standard-engine/12.1.0: resolution: {integrity: sha512-DVJnWM1CGkag4ucFLGdiYWa5/kJURPONmMmk17p8FT5NE4UnPZB1vxWnXnRo2sPSL78pWJG8xEM+1Tu19z0deg==} engines: {node: '>=8.10'} dependencies: deglob: 4.0.1 get-stdin: 7.0.0 minimist: 1.2.5 pkg-conf: 3.1.0 dev: true /standard/14.3.4: resolution: {integrity: sha512-+lpOkFssMkljJ6eaILmqxHQ2n4csuEABmcubLTb9almFi1ElDzXb1819fjf/5ygSyePCq4kU2wMdb2fBfb9P9Q==} engines: {node: '>=8.10.0'} hasBin: true dependencies: eslint: 6.8.0 eslint-config-standard: 14.1.1_9e7530ec76492f2b386fab08b53a2169 eslint-config-standard-jsx: 8.1.0_65d1ca32d5f5cbf4c96bd0eee33adee0 eslint-plugin-import: 2.18.2_eslint@6.8.0 eslint-plugin-node: 10.0.0_eslint@6.8.0 eslint-plugin-promise: 4.2.1 eslint-plugin-react: 7.14.3_eslint@6.8.0 eslint-plugin-standard: 4.0.2_eslint@6.8.0 standard-engine: 12.1.0 transitivePeerDependencies: - supports-color dev: true /static-extend/0.1.2: resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=} engines: {node: '>=0.10.0'} dependencies: define-property: 0.2.5 object-copy: 0.1.0 dev: true /stealthy-require/1.1.1: resolution: {integrity: sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=} engines: {node: '>=0.10.0'} dev: true /string-length/4.0.1: resolution: {integrity: sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==} engines: {node: '>=10'} dependencies: char-regex: 1.0.2 strip-ansi: 6.0.0 dev: true /string-width/1.0.2: resolution: {integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=} engines: {node: '>=0.10.0'} dependencies: code-point-at: 1.1.0 is-fullwidth-code-point: 1.0.0 strip-ansi: 3.0.1 dev: true /string-width/3.1.0: resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} engines: {node: '>=6'} dependencies: emoji-regex: 7.0.3 is-fullwidth-code-point: 2.0.0 strip-ansi: 5.2.0 dev: true /string-width/4.2.0: resolution: {integrity: sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==} engines: {node: '>=8'} dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.0 dev: true /string.prototype.trim/1.1.2: resolution: {integrity: sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=} engines: {node: '>= 0.4'} dependencies: define-properties: 1.1.3 es-abstract: 1.17.7 function-bind: 1.1.1 dev: true /string.prototype.trimend/1.0.3: resolution: {integrity: sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==} dependencies: call-bind: 1.0.1 define-properties: 1.1.3 dev: true /string.prototype.trimstart/1.0.3: resolution: {integrity: sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==} dependencies: call-bind: 1.0.1 define-properties: 1.1.3 dev: true /string_decoder/1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 dev: true /stringify-entities/1.3.2: resolution: {integrity: sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A==} dependencies: character-entities-html4: 1.1.4 character-entities-legacy: 1.1.4 is-alphanumerical: 1.0.4 is-hexadecimal: 1.0.4 dev: true /strip-ansi/0.3.0: resolution: {integrity: sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=} engines: {node: '>=0.10.0'} hasBin: true dependencies: ansi-regex: 0.2.1 dev: true /strip-ansi/3.0.1: resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=} engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 dev: true /strip-ansi/5.2.0: resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} engines: {node: '>=6'} dependencies: ansi-regex: 4.1.0 dev: true /strip-ansi/6.0.0: resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==} engines: {node: '>=8'} dependencies: ansi-regex: 5.0.0 dev: true /strip-bom/2.0.0: resolution: {integrity: sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=} engines: {node: '>=0.10.0'} dependencies: is-utf8: 0.2.1 dev: true /strip-bom/3.0.0: resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} engines: {node: '>=4'} dev: true /strip-bom/4.0.0: resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} engines: {node: '>=8'} dev: true /strip-eof/1.0.0: resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=} engines: {node: '>=0.10.0'} dev: true /strip-final-newline/2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} dev: true /strip-indent/1.0.1: resolution: {integrity: sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=} engines: {node: '>=0.10.0'} hasBin: true dependencies: get-stdin: 4.0.1 dev: true /strip-json-comments/2.0.1: resolution: {integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=} engines: {node: '>=0.10.0'} dev: true /strip-json-comments/3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} dev: true /supports-color/0.2.0: resolution: {integrity: sha1-2S3iaU6z9nMjlz1649i1W0wiGQo=} engines: {node: '>=0.10.0'} hasBin: true dev: true /supports-color/2.0.0: resolution: {integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=} engines: {node: '>=0.8.0'} dev: true /supports-color/5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} dependencies: has-flag: 3.0.0 dev: true /supports-color/7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 dev: true /supports-hyperlinks/2.1.0: resolution: {integrity: sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 supports-color: 7.2.0 dev: true /symbol-tree/3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} dev: true /table/5.4.6: resolution: {integrity: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==} engines: {node: '>=6.0.0'} dependencies: ajv: 6.12.6 lodash: 4.17.20 slice-ansi: 2.1.0 string-width: 3.1.0 dev: true /tap-parser/1.3.2: resolution: {integrity: sha1-EgxQiciMPIp5PvKIhn3jIeGPjCI=} hasBin: true dependencies: events-to-array: 1.1.2 inherits: 2.0.4 js-yaml: 3.14.1 optionalDependencies: readable-stream: 2.3.7 dev: true /tape/4.5.1: resolution: {integrity: sha1-K7PqGb3J9SJSF7P5fL95hsxMbow=} hasBin: true dependencies: deep-equal: 1.0.1 defined: 1.0.0 function-bind: 1.1.1 glob: 7.0.6 has: 1.0.3 inherits: 2.0.4 minimist: 1.2.5 object-inspect: 1.1.0 resolve: 1.1.7 resumer: 0.0.0 string.prototype.trim: 1.1.2 through: 2.3.8 dev: true /terminal-link/2.1.1: resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} engines: {node: '>=8'} dependencies: ansi-escapes: 4.3.1 supports-hyperlinks: 2.1.0 dev: true /test-exclude/6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} dependencies: '@istanbuljs/schema': 0.1.2 glob: 7.1.6 minimatch: 3.0.4 dev: true /text-table/0.2.0: resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} dev: true /the-argv/1.0.0: resolution: {integrity: sha1-AIRwUAVzDdhNt1UlPJMa45jblSI=} dev: true /throat/5.0.0: resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} dev: true /through/2.3.8: resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} dev: true /through2/2.0.5: resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} dependencies: readable-stream: 2.3.7 xtend: 4.0.2 dev: true /timed-out/3.1.3: resolution: {integrity: sha1-lYYL/MXHbCd/j4Mm/Q9bLiDrohc=} engines: {node: '>=0.10.0'} dev: true /tmp/0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} dependencies: os-tmpdir: 1.0.2 dev: true /tmpl/1.0.4: resolution: {integrity: sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=} dev: true /to-fast-properties/1.0.3: resolution: {integrity: sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=} engines: {node: '>=0.10.0'} dev: true /to-fast-properties/2.0.0: resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} engines: {node: '>=4'} dev: true /to-object-path/0.3.0: resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true /to-regex-range/2.1.1: resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=} engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 repeat-string: 1.6.1 dev: true /to-regex-range/5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 dev: true /to-regex/3.0.2: resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} engines: {node: '>=0.10.0'} dependencies: define-property: 2.0.2 extend-shallow: 3.0.2 regex-not: 1.0.2 safe-regex: 1.1.0 dev: true /tough-cookie/2.5.0: resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} engines: {node: '>=0.8'} dependencies: psl: 1.8.0 punycode: 2.1.1 dev: true /tough-cookie/3.0.1: resolution: {integrity: sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==} engines: {node: '>=6'} dependencies: ip-regex: 2.1.0 psl: 1.8.0 punycode: 2.1.1 dev: true /tr46/2.0.2: resolution: {integrity: sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==} engines: {node: '>=8'} dependencies: punycode: 2.1.1 dev: true /trim-newlines/1.0.0: resolution: {integrity: sha1-WIeWa7WCpFA6QetST301ARgVphM=} engines: {node: '>=0.10.0'} dev: true /trim-right/1.0.1: resolution: {integrity: sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=} engines: {node: '>=0.10.0'} dev: true /trim-trailing-lines/1.1.4: resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} dev: true /trim/0.0.1: resolution: {integrity: sha1-WFhUf2spB1fulczMZm+1AITEYN0=} dev: true /tslib/1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: true /tunnel-agent/0.6.0: resolution: {integrity: sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=} dependencies: safe-buffer: 5.2.1 dev: true /tweetnacl/0.14.5: resolution: {integrity: sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=} dev: true /type-check/0.3.2: resolution: {integrity: sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 dev: true /type-detect/4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} dev: true /type-fest/0.11.0: resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==} engines: {node: '>=8'} dev: true /type-fest/0.3.1: resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==} engines: {node: '>=6'} dev: true /type-fest/0.6.0: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} engines: {node: '>=8'} dev: true /type-fest/0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} dev: true /typedarray-to-buffer/3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: is-typedarray: 1.0.0 dev: true /typescript/4.1.3: resolution: {integrity: sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==} engines: {node: '>=4.2.0'} hasBin: true dev: true /union-value/1.0.1: resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} engines: {node: '>=0.10.0'} dependencies: arr-union: 3.1.0 get-value: 2.0.6 is-extendable: 0.1.1 set-value: 2.0.1 dev: true /uniq/1.0.1: resolution: {integrity: sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=} dev: true /unist-util-is/3.0.0: resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==} dev: true /unist-util-remove-position/1.1.4: resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==} dependencies: unist-util-visit: 1.4.1 dev: true /unist-util-visit-parents/2.1.2: resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==} dependencies: unist-util-is: 3.0.0 dev: true /unist-util-visit/1.4.1: resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==} dependencies: unist-util-visit-parents: 2.1.2 dev: true /unset-value/1.0.0: resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=} engines: {node: '>=0.10.0'} dependencies: has-value: 0.3.1 isobject: 3.0.1 dev: true /unzip-response/1.0.2: resolution: {integrity: sha1-uYTwh3/AqJwsdzzB73tbIytbBv4=} engines: {node: '>=0.10'} dev: true /update-notifier/0.7.0: resolution: {integrity: sha1-FDxFMzg9CJCO9wVGIGOV/htauwY=} engines: {node: '>=0.10.0'} dependencies: ansi-align: 1.1.0 boxen: 0.5.1 chalk: 1.1.3 configstore: 2.1.0 is-npm: 1.0.0 latest-version: 2.0.0 semver-diff: 2.1.0 xdg-basedir: 2.0.0 dev: true /uri-js/4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.1.1 dev: true /urix/0.1.0: resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=} deprecated: Please see https://github.com/lydell/urix#deprecated dev: true /url-parse-lax/1.0.0: resolution: {integrity: sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=} engines: {node: '>=0.10.0'} dependencies: prepend-http: 1.0.4 dev: true /use/3.1.1: resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} engines: {node: '>=0.10.0'} dev: true /util-deprecate/1.0.2: resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} dev: true /uuid/2.0.3: resolution: {integrity: sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=} dev: true /uuid/3.4.0: resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} hasBin: true dev: true /uuid/8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true dev: true optional: true /v8-compile-cache/2.2.0: resolution: {integrity: sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==} dev: true /v8-to-istanbul/7.1.0: resolution: {integrity: sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g==} engines: {node: '>=10.10.0'} dependencies: '@types/istanbul-lib-coverage': 2.0.3 convert-source-map: 1.7.0 source-map: 0.7.3 dev: true /validate-npm-package-license/3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} dependencies: spdx-correct: 3.1.1 spdx-expression-parse: 3.0.1 dev: true /verror/1.10.0: resolution: {integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=} engines: {'0': node >=0.6.0} dependencies: assert-plus: 1.0.0 core-util-is: 1.0.2 extsprintf: 1.3.0 dev: true /vfile-location/2.0.6: resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==} dev: true /vfile/1.4.0: resolution: {integrity: sha1-wP1vpIT43r23cfaMMe112I2pf+c=} dev: true /w3c-hr-time/1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} dependencies: browser-process-hrtime: 1.0.0 dev: true /w3c-xmlserializer/2.0.0: resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} engines: {node: '>=10'} dependencies: xml-name-validator: 3.0.0 dev: true /walker/1.0.7: resolution: {integrity: sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=} dependencies: makeerror: 1.0.11 dev: true /webidl-conversions/5.0.0: resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} engines: {node: '>=8'} dev: true /webidl-conversions/6.1.0: resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} engines: {node: '>=10.4'} dev: true /whatwg-encoding/1.0.5: resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} dependencies: iconv-lite: 0.4.24 dev: true /whatwg-mimetype/2.3.0: resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} dev: true /whatwg-url/8.4.0: resolution: {integrity: sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==} engines: {node: '>=10'} dependencies: lodash.sortby: 4.7.0 tr46: 2.0.2 webidl-conversions: 6.1.0 dev: true /which-module/2.0.0: resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=} dev: true /which/1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true dependencies: isexe: 2.0.0 dev: true /which/2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 dev: true /widest-line/1.0.0: resolution: {integrity: sha1-DAnIXCqUaD0Nfq+O4JfVZL8OEFw=} engines: {node: '>=0.10.0'} dependencies: string-width: 1.0.2 dev: true /word-wrap/1.2.3: resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} engines: {node: '>=0.10.0'} dev: true /wrap-ansi/6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.0 strip-ansi: 6.0.0 dev: true /wrappy/1.0.2: resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} dev: true /write-file-atomic/1.3.4: resolution: {integrity: sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8=} dependencies: graceful-fs: 4.2.4 imurmurhash: 0.1.4 slide: 1.1.6 dev: true /write-file-atomic/3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 signal-exit: 3.0.3 typedarray-to-buffer: 3.1.5 dev: true /write-json-file/1.2.0: resolution: {integrity: sha1-LV3+lqvDyIkFfJOXGqQAXvtUgTQ=} engines: {node: '>=0.10.0'} dependencies: graceful-fs: 4.2.4 mkdirp: 0.5.5 object-assign: 4.1.1 pify: 2.3.0 pinkie-promise: 2.0.1 sort-keys: 1.1.2 write-file-atomic: 1.3.4 dev: true /write-pkg/1.0.0: resolution: {integrity: sha1-rriqnU14jh2JPfsIVJaLVDqRn1c=} engines: {node: '>=0.10.0'} dependencies: write-json-file: 1.2.0 dev: true /write/1.0.3: resolution: {integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==} engines: {node: '>=4'} dependencies: mkdirp: 0.5.5 dev: true /ws/7.4.2: resolution: {integrity: sha512-T4tewALS3+qsrpGI/8dqNMLIVdq/g/85U98HPMa6F0m6xTbvhXU6RCQLqPH3+SlomNV/LdY6RXEbBpMH6EOJnA==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true dev: true /xdg-basedir/2.0.0: resolution: {integrity: sha1-7byQPMOF/ARSPZZqM1UEtVBNG9I=} engines: {node: '>=0.10.0'} dependencies: os-homedir: 1.0.2 dev: true /xml-name-validator/3.0.0: resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} dev: true /xmlchars/2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} dev: true /xtend/4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} dev: true /y18n/4.0.1: resolution: {integrity: sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==} dev: true /yallist/2.1.2: resolution: {integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=} dev: true /yallist/4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true /yargs-parser/18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 dev: true /yargs/15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} engines: {node: '>=8'} dependencies: cliui: 6.0.0 decamelize: 1.2.0 find-up: 4.1.0 get-caller-file: 2.0.5 require-directory: 2.1.1 require-main-filename: 2.0.0 set-blocking: 2.0.0 string-width: 4.2.0 which-module: 2.0.0 y18n: 4.0.1 yargs-parser: 18.1.3 dev: true cmd-shim--zkochan-cmd-shim-5.2.1/src/000077500000000000000000000000001412467660700172335ustar00rootroot00000000000000cmd-shim--zkochan-cmd-shim-5.2.1/src/index.ts000066400000000000000000000432661412467660700207250ustar00rootroot00000000000000'use strict' // On windows, create a .cmd file. // Read the #! in the file to see what it uses. The vast majority // of the time, this will be either: // "#!/usr/bin/env " // or: // "#! " // // Write a binroot/pkg.bin + ".cmd" file that has this line in it: // @ %~dp0 %* namespace cmdShim { export interface Options { /** * If a PowerShell script should be created. * * @default true */ createPwshFile?: boolean /** * If a Windows Command Prompt script should be created. * * @default false */ createCmdFile?: boolean /** * If symbolic links should be preserved. * * @default false */ preserveSymlinks?: boolean /** * The path to the executable file. */ prog?: string /** * The arguments to initialize the `node` process with. */ args?: string /** * The arguments to initialize the target process with, before the actual CLI arguments */ progArgs?: string[] /** * The value of the $NODE_PATH environment variable. * * The single `string` format is only kept for legacy compatibility, * and the array form should be preferred. */ nodePath?: string | string[] /** * fs implementation to use. Must implement node's `fs` module interface. */ fs?: typeof import('fs') /* * Path to the Node.js executable */ nodeExecPath?: string } } type Options = cmdShim.Options export = cmdShim cmdShim.ifExists = cmdShimIfExists /** * @internal */ type InternalOptions = Options & Required> & { fs_: FsPromisified } type Fs_= Pick type FsPromisified = {[K in keyof Fs_]: Fs_[K]['__promisify__']} /** * Callback functions to generate scripts for shims. * @param src Path to the executable or script. * @param to Path to the shim(s) that is going to be created. * @param opts Options. * @return Generated script for shim. */ type ShimGenerator = (src: string, to: string, opts: InternalOptions) => string interface ShimGenExtTuple { /** The shim generator function. */ generator: ShimGenerator /** The file extension for the shim. */ extension: string } import {promisify} from 'util' import path = require('path') import isWindows = require('is-windows') import CMD_EXTENSION = require('cmd-extension') const shebangExpr = /^#!\s*(?:\/usr\/bin\/env)?\s*([^ \t]+)(.*)$/ const DEFAULT_OPTIONS = { // Create PowerShell file by default if the option hasn't been specified createPwshFile: true, createCmdFile: isWindows(), fs: require('fs') } /** * Map from extensions of files that this module is frequently used for to their runtime. * @type {Map} */ const extensionToProgramMap = new Map([ ['.js', 'node'], ['.cjs', 'node'], ['.mjs', 'node'], ['.cmd', 'cmd'], ['.bat', 'cmd'], ['.ps1', 'pwsh'], // not 'powershell' ['.sh', 'sh'] ]) function ingestOptions (opts?: Options): InternalOptions { const opts_ = {...DEFAULT_OPTIONS, ...opts} as InternalOptions const fs = opts_.fs opts_.fs_ = { chmod: fs.chmod ? promisify(fs.chmod) : (async () => { /* noop */ }) as any, mkdir: promisify(fs.mkdir), readFile: promisify(fs.readFile), stat: promisify(fs.stat), unlink: promisify(fs.unlink), writeFile: promisify(fs.writeFile) } return opts_ } /** * Try to create shims. * * @param src Path to program (executable or script). * @param to Path to shims. * Don't add an extension if you will create multiple types of shims. * @param opts Options. * @throws If `src` is missing. */ async function cmdShim (src: string, to: string, opts?: Options): Promise { const opts_ = ingestOptions(opts) await opts_.fs_.stat(src) await cmdShim_(src, to, opts_) } /** * Try to create shims. * * Does nothing if `src` doesn't exist. * * @param src Path to program (executable or script). * @param to Path to shims. * Don't add an extension if you will create multiple types of shims. * @param opts Options. */ function cmdShimIfExists (src: string, to: string, opts?: Options): Promise { return cmdShim(src, to, opts).catch(() => {}) } /** * Try to unlink, but ignore errors. * Any problems will surface later. * * @param path File to be removed. */ function rm (path: string, opts: InternalOptions): Promise { return opts.fs_.unlink(path).catch(() => {}) } /** * Try to create shims **even if `src` is missing**. * * @param src Path to program (executable or script). * @param to Path to shims. * Don't add an extension if you will create multiple types of shims. * @param opts Options. */ async function cmdShim_ (src: string, to: string, opts: InternalOptions) { const srcRuntimeInfo = await searchScriptRuntime(src, opts) // Always tries to create all types of shims by calling `writeAllShims` as of now. // Append your code here to change the behavior in response to `srcRuntimeInfo`. // Create 3 shims for (Ba)sh in Cygwin / MSYS, no extension) & CMD (.cmd) & PowerShell (.ps1) await writeShimsPreCommon(to, opts) return writeAllShims(src, to, srcRuntimeInfo, opts) } /** * Do processes before **all** shims are created. * This must be called **only once** for one call of `cmdShim(IfExists)`. * * @param target Path of shims that are going to be created. */ function writeShimsPreCommon (target: string, opts: InternalOptions) { return opts.fs_.mkdir(path.dirname(target), { recursive: true }) } /** * Write all types (sh & cmd & pwsh) of shims to files. * Extensions (`.cmd` and `.ps1`) are appended to cmd and pwsh shims. * * * @param src Path to program (executable or script). * @param to Path to shims **without extensions**. * Extensions are added for CMD and PowerShell shims. * @param srcRuntimeInfo Return value of `await searchScriptRuntime(src)`. * @param opts Options. */ function writeAllShims (src: string, to: string, srcRuntimeInfo: RuntimeInfo, opts: Options) { const opts_ = ingestOptions(opts) const generatorAndExts: ShimGenExtTuple[] = [{ generator: generateShShim, extension: '' }] if (opts_.createCmdFile) { generatorAndExts.push({ generator: generateCmdShim, extension: CMD_EXTENSION }) } if (opts_.createPwshFile) { generatorAndExts.push({ generator: generatePwshShim, extension: '.ps1' }) } return Promise.all( generatorAndExts.map((generatorAndExt) => writeShim(src, to + generatorAndExt.extension, srcRuntimeInfo, generatorAndExt.generator, opts_)) ) } /** * Do processes before writing shim. * * @param target Path to shim that is going to be created. */ function writeShimPre (target: string, opts: InternalOptions) { return rm(target, opts) } /** * Do processes after writing the shim. * * @param target Path to just created shim. */ function writeShimPost (target: string, opts: InternalOptions) { // Only chmoding shims as of now. // Some other processes may be appended. return chmodShim(target, opts) } interface RuntimeInfo { program: string | null additionalArgs: string } /** * Look into runtime (e.g. `node` & `sh` & `pwsh`) and its arguments * of the target program (script or executable). * * @param target Path to the executable or script. * @return Promise of infomation of runtime of `target`. */ async function searchScriptRuntime (target: string, opts: InternalOptions): Promise { const data = await opts.fs_.readFile(target, 'utf8') // First, check if the bin is a #! of some sort. const firstLine = data.trim().split(/\r*\n/)[0] const shebang = firstLine.match(shebangExpr) if (!shebang) { // If not, infer script type from its extension. // If the inference fails, it's something that'll be compiled, or some other // sort of script, and just call it directly. const targetExtension = path.extname(target).toLowerCase() return { // undefined if extension is unknown but it's converted to null. program: extensionToProgramMap.get(targetExtension) || null, additionalArgs: '' } } return { program: shebang[1], additionalArgs: shebang[2] } } /** * Write shim to the file system while executing the pre- and post-processes * defined in `WriteShimPre` and `WriteShimPost`. * * @param src Path to the executable or script. * @param to Path to the (sh) shim(s) that is going to be created. * @param srcRuntimeInfo Result of `await searchScriptRuntime(src)`. * @param generateShimScript Generator of shim script. * @param opts Other options. */ async function writeShim (src: string, to: string, srcRuntimeInfo: RuntimeInfo, generateShimScript: ShimGenerator, opts: InternalOptions) { const defaultArgs = opts.preserveSymlinks ? '--preserve-symlinks' : '' // `Array.prototype.filter` removes ''. // ['--foo', '--bar'].join(' ') and [].join(' ') returns '--foo --bar' and '' respectively. const args = [srcRuntimeInfo.additionalArgs, defaultArgs].filter(arg => arg).join(' ') opts = Object.assign({}, opts, { prog: srcRuntimeInfo.program, args: args }) await writeShimPre(to, opts) await opts.fs_.writeFile(to, generateShimScript(src, to, opts), 'utf8') return writeShimPost(to, opts) } /** * Generate the content of a shim for CMD. * * @param src Path to the executable or script. * @param to Path to the shim to be created. * It is highly recommended to end with `.cmd` (or `.bat`). * @param opts Options. * @return The content of shim. */ function generateCmdShim (src: string, to: string, opts: InternalOptions): string { // `shTarget` is not used to generate the content. const shTarget = path.relative(path.dirname(to), src) let target = shTarget.split('/').join('\\') const quotedPathToTarget = path.isAbsolute(target) ? `"${target}"` : `"%~dp0\\${target}"` let longProg let prog = opts.prog let args = opts.args || '' const nodePath = normalizePathEnvVar(opts.nodePath).win32 if (!prog) { prog = quotedPathToTarget args = '' target = '' } else if (prog === 'node' && opts.nodeExecPath) { prog = `"${opts.nodeExecPath}"` target = quotedPathToTarget } else { longProg = `"%~dp0\\${prog}.exe"` target = quotedPathToTarget } let progArgs = opts.progArgs ? `${opts.progArgs.join(` `)} ` : '' // @IF EXIST "%~dp0\node.exe" ( // "%~dp0\node.exe" "%~dp0\.\node_modules\npm\bin\npm-cli.js" %* // ) ELSE ( // SETLOCAL // SET PATHEXT=%PATHEXT:;.JS;=;% // node "%~dp0\.\node_modules\npm\bin\npm-cli.js" %* // ) let cmd = '@SETLOCAL\r\n' if (nodePath) { cmd += `\ @IF NOT DEFINED NODE_PATH (\r @SET "NODE_PATH=${nodePath}"\r ) ELSE (\r @SET "NODE_PATH=%NODE_PATH%;${nodePath}"\r )\r ` } if (longProg) { cmd += `\ @IF EXIST ${longProg} (\r ${longProg} ${args} ${target} ${progArgs}%*\r ) ELSE (\r @SET PATHEXT=%PATHEXT:;.JS;=;%\r ${prog} ${args} ${target} ${progArgs}%*\r )\r ` } else { cmd += `@${prog} ${args} ${target} ${progArgs}%*\r\n` } return cmd } /** * Generate the content of a shim for (Ba)sh in, for example, Cygwin and MSYS(2). * * @param src Path to the executable or script. * @param to Path to the shim to be created. * It is highly recommended to end with `.sh` or to contain no extension. * @param opts Options. * @return The content of shim. */ function generateShShim (src: string, to: string, opts: InternalOptions): string { let shTarget = path.relative(path.dirname(to), src) let shProg = opts.prog && opts.prog.split('\\').join('/') let shLongProg shTarget = shTarget.split('\\').join('/') const quotedPathToTarget = path.isAbsolute(shTarget) ? `"${shTarget}"` : `"$basedir/${shTarget}"` let args = opts.args || '' const shNodePath = normalizePathEnvVar(opts.nodePath).posix if (!shProg) { shProg = quotedPathToTarget args = '' shTarget = '' } else if (opts.prog === 'node' && opts.nodeExecPath) { shProg = `"${opts.nodeExecPath}"` shTarget = quotedPathToTarget } else { shLongProg = `"$basedir/${opts.prog}"` shTarget = quotedPathToTarget } let progArgs = opts.progArgs ? `${opts.progArgs.join(` `)} ` : '' // #!/bin/sh // basedir=`dirname "$0"` // // case `uname` in // *CYGWIN*) basedir=`cygpath -w "$basedir"`;; // esac // // export NODE_PATH="" // // if [ -x "$basedir/node.exe" ]; then // exec "$basedir/node.exe" "$basedir/node_modules/npm/bin/npm-cli.js" "$@" // else // exec node "$basedir/node_modules/npm/bin/npm-cli.js" "$@" // fi let sh = `\ #!/bin/sh basedir=$(dirname "$(echo "$0" | sed -e 's,\\\\,/,g')") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w "$basedir"\`;; esac ` if (opts.nodePath) { sh += `\ if [ -z "$NODE_PATH" ]; then export NODE_PATH="${shNodePath}" else export NODE_PATH="$NODE_PATH:${shNodePath}" fi ` } if (shLongProg) { sh += `\ if [ -x ${shLongProg} ]; then exec ${shLongProg} ${args} ${shTarget} ${progArgs}"$@" else exec ${shProg} ${args} ${shTarget} ${progArgs}"$@" fi ` } else { sh += `\ ${shProg} ${args} ${shTarget} ${progArgs}"$@" exit $? ` } return sh } /** * Generate the content of a shim for PowerShell. * * @param src Path to the executable or script. * @param to Path to the shim to be created. * It is highly recommended to end with `.ps1`. * @param opts Options. * @return The content of shim. */ function generatePwshShim (src: string, to: string, opts: InternalOptions): string { let shTarget = path.relative(path.dirname(to), src) const shProg = opts.prog && opts.prog.split('\\').join('/') let pwshProg = shProg && `"${shProg}$exe"` let pwshLongProg shTarget = shTarget.split('\\').join('/') const quotedPathToTarget = path.isAbsolute(shTarget) ? `"${shTarget}"` : `"$basedir/${shTarget}"` let args = opts.args || '' let normalizedPathEnvVar = normalizePathEnvVar(opts.nodePath) const nodePath = normalizedPathEnvVar.win32 const shNodePath = normalizedPathEnvVar.posix if (!pwshProg) { pwshProg = quotedPathToTarget args = '' shTarget = '' } else if (opts.prog === 'node' && opts.nodeExecPath) { pwshProg = `"${opts.nodeExecPath}"` shTarget = quotedPathToTarget } else { pwshLongProg = `"$basedir/${opts.prog}$exe"` shTarget = quotedPathToTarget } let progArgs = opts.progArgs ? `${opts.progArgs.join(` `)} ` : '' // #!/usr/bin/env pwsh // $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent // // $ret=0 // $exe = "" // if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { // # Fix case when both the Windows and Linux builds of Node // # are installed in the same directory // $exe = ".exe" // } // if (Test-Path "$basedir/node") { // # Support pipeline input // if ($MyInvocation.ExpectingInput) { // $input | & "$basedir/node$exe" "$basedir/node_modules/npm/bin/npm-cli.js" $args // } else { // & "$basedir/node$exe" "$basedir/node_modules/npm/bin/npm-cli.js" $args // } // $ret=$LASTEXITCODE // } else { // # Support pipeline input // if ($MyInvocation.ExpectingInput) { // $input | & "node$exe" "$basedir/node_modules/npm/bin/npm-cli.js" $args // } else { // & "node$exe" "$basedir/node_modules/npm/bin/npm-cli.js" $args // } // $ret=$LASTEXITCODE // } // exit $ret let pwsh = `\ #!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe="" ${opts.nodePath ? `\ $pathsep=":" $env_node_path=$env:NODE_PATH $new_node_path="${nodePath}" ` : ''}\ if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=".exe" ${opts.nodePath ? ' $pathsep=";"\n' : ''}\ }` if (opts.nodePath) { pwsh += `\ else { $new_node_path="${shNodePath}" } if ([string]::IsNullOrEmpty($env_node_path)) { $env:NODE_PATH=$new_node_path } else { $env:NODE_PATH="$env_node_path$pathsep$new_node_path" } ` } if (pwshLongProg) { pwsh += ` $ret=0 if (Test-Path ${pwshLongProg}) { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & ${pwshLongProg} ${args} ${shTarget} ${progArgs}$args } else { & ${pwshLongProg} ${args} ${shTarget} ${progArgs}$args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & ${pwshProg} ${args} ${shTarget} ${progArgs}$args } else { & ${pwshProg} ${args} ${shTarget} ${progArgs}$args } $ret=$LASTEXITCODE } ${opts.nodePath ? '$env:NODE_PATH=$env_node_path\n' : ''}\ exit $ret ` } else { pwsh += ` # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & ${pwshProg} ${args} ${shTarget} ${progArgs}$args } else { & ${pwshProg} ${args} ${shTarget} ${progArgs}$args } ${opts.nodePath ? '$env:NODE_PATH=$env_node_path\n' : ''}\ exit $LASTEXITCODE ` } return pwsh } /** * Chmod just created shim and make it executable * * @param to Path to shim. */ function chmodShim (to: string, opts: InternalOptions) { return opts.fs_.chmod(to, 0o755) } interface NormalizedPathEnvVar { win32: string posix: string [index:number]: {win32:string,posix:string} } function normalizePathEnvVar (nodePath: undefined | string | string[]): NormalizedPathEnvVar { if (!nodePath) { return { win32: '', posix: '' } } let split = (typeof nodePath === 'string' ? nodePath.split(path.delimiter) : Array.from(nodePath)) let result = {} as NormalizedPathEnvVar for (let i = 0; i < split.length; i++) { const win32 = split[i].split('/').join('\\') const posix = isWindows() ? split[i].split('\\').join('/').replace(/^([^:\\/]*):/, (_, $1) => `/mnt/${$1.toLowerCase()}`) : split[i] result.win32 = result.win32 ? `${result.win32};${win32}` : win32 result.posix = result.posix ? `${result.posix}:${posix}` : posix result[i] = {win32, posix} } return result } cmd-shim--zkochan-cmd-shim-5.2.1/test/000077500000000000000000000000001412467660700174235ustar00rootroot00000000000000cmd-shim--zkochan-cmd-shim-5.2.1/test/__snapshots__/000077500000000000000000000000001412467660700222415ustar00rootroot00000000000000cmd-shim--zkochan-cmd-shim-5.2.1/test/__snapshots__/test.js.snap000066400000000000000000000373641412467660700245330ustar00rootroot00000000000000// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`custom node executable env.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac \\"/.pnpm/nodejs/16.0.0/node\\" \\"$basedir/src.env\\" \\"$@\\" exit $? " `; exports[`custom node executable env.shim.cmd 1`] = ` "@SETLOCAL @\\"/.pnpm/nodejs/16.0.0/node\\" \\"%~dp0\\\\src.env\\" %* " `; exports[`custom node executable env.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"/.pnpm/nodejs/16.0.0/node\\" \\"$basedir/src.env\\" $args } else { & \\"/.pnpm/nodejs/16.0.0/node\\" \\"$basedir/src.env\\" $args } exit $LASTEXITCODE " `; exports[`env shebang env.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac if [ -x \\"$basedir/node\\" ]; then exec \\"$basedir/node\\" \\"$basedir/src.env\\" \\"$@\\" else exec node \\"$basedir/src.env\\" \\"$@\\" fi " `; exports[`env shebang env.shim.cmd 1`] = ` "@SETLOCAL @IF EXIST \\"%~dp0\\\\node.exe\\" ( \\"%~dp0\\\\node.exe\\" \\"%~dp0\\\\src.env\\" %* ) ELSE ( @SET PATHEXT=%PATHEXT:;.JS;=;% node \\"%~dp0\\\\src.env\\" %* ) " `; exports[`env shebang env.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } $ret=0 if (Test-Path \\"$basedir/node$exe\\") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir/node$exe\\" \\"$basedir/src.env\\" $args } else { & \\"$basedir/node$exe\\" \\"$basedir/src.env\\" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"node$exe\\" \\"$basedir/src.env\\" $args } else { & \\"node$exe\\" \\"$basedir/src.env\\" $args } $ret=$LASTEXITCODE } exit $ret " `; exports[`env shebang with NODE_PATH env.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac if [ -z \\"$NODE_PATH\\" ]; then export NODE_PATH=\\"/john/src/node_modules:/bin/node/node_modules\\" else export NODE_PATH=\\"$NODE_PATH:/john/src/node_modules:/bin/node/node_modules\\" fi if [ -x \\"$basedir/node\\" ]; then exec \\"$basedir/node\\" \\"$basedir/src.env\\" \\"$@\\" else exec node \\"$basedir/src.env\\" \\"$@\\" fi " `; exports[`env shebang with NODE_PATH env.shim.cmd 1`] = ` "@SETLOCAL @IF NOT DEFINED NODE_PATH ( @SET \\"NODE_PATH=\\\\john\\\\src\\\\node_modules;\\\\bin\\\\node\\\\node_modules\\" ) ELSE ( @SET \\"NODE_PATH=%NODE_PATH%;\\\\john\\\\src\\\\node_modules;\\\\bin\\\\node\\\\node_modules\\" ) @IF EXIST \\"%~dp0\\\\node.exe\\" ( \\"%~dp0\\\\node.exe\\" \\"%~dp0\\\\src.env\\" %* ) ELSE ( @SET PATHEXT=%PATHEXT:;.JS;=;% node \\"%~dp0\\\\src.env\\" %* ) " `; exports[`env shebang with NODE_PATH env.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" $pathsep=\\":\\" $env_node_path=$env:NODE_PATH $new_node_path=\\"\\\\john\\\\src\\\\node_modules;\\\\bin\\\\node\\\\node_modules\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" $pathsep=\\";\\" } else { $new_node_path=\\"/john/src/node_modules:/bin/node/node_modules\\" } if ([string]::IsNullOrEmpty($env_node_path)) { $env:NODE_PATH=$new_node_path } else { $env:NODE_PATH=\\"$env_node_path$pathsep$new_node_path\\" } $ret=0 if (Test-Path \\"$basedir/node$exe\\") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir/node$exe\\" \\"$basedir/src.env\\" $args } else { & \\"$basedir/node$exe\\" \\"$basedir/src.env\\" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"node$exe\\" \\"$basedir/src.env\\" $args } else { & \\"node$exe\\" \\"$basedir/src.env\\" $args } $ret=$LASTEXITCODE } $env:NODE_PATH=$env_node_path exit $ret " `; exports[`env shebang with args env.args.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac if [ -x \\"$basedir/node\\" ]; then exec \\"$basedir/node\\" --expose_gc \\"$basedir/src.env.args\\" \\"$@\\" else exec node --expose_gc \\"$basedir/src.env.args\\" \\"$@\\" fi " `; exports[`env shebang with args env.args.shim.cmd 1`] = ` "@SETLOCAL @IF EXIST \\"%~dp0\\\\node.exe\\" ( \\"%~dp0\\\\node.exe\\" --expose_gc \\"%~dp0\\\\src.env.args\\" %* ) ELSE ( @SET PATHEXT=%PATHEXT:;.JS;=;% node --expose_gc \\"%~dp0\\\\src.env.args\\" %* ) " `; exports[`env shebang with args env.args.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } $ret=0 if (Test-Path \\"$basedir/node$exe\\") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir/node$exe\\" --expose_gc \\"$basedir/src.env.args\\" $args } else { & \\"$basedir/node$exe\\" --expose_gc \\"$basedir/src.env.args\\" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"node$exe\\" --expose_gc \\"$basedir/src.env.args\\" $args } else { & \\"node$exe\\" --expose_gc \\"$basedir/src.env.args\\" $args } $ret=$LASTEXITCODE } exit $ret " `; exports[`env shebang with default args env.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac if [ -x \\"$basedir/node\\" ]; then exec \\"$basedir/node\\" --preserve-symlinks \\"$basedir/src.env\\" \\"$@\\" else exec node --preserve-symlinks \\"$basedir/src.env\\" \\"$@\\" fi " `; exports[`env shebang with default args env.shim.cmd 1`] = ` "@SETLOCAL @IF EXIST \\"%~dp0\\\\node.exe\\" ( \\"%~dp0\\\\node.exe\\" --preserve-symlinks \\"%~dp0\\\\src.env\\" %* ) ELSE ( @SET PATHEXT=%PATHEXT:;.JS;=;% node --preserve-symlinks \\"%~dp0\\\\src.env\\" %* ) " `; exports[`env shebang with default args env.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } $ret=0 if (Test-Path \\"$basedir/node$exe\\") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir/node$exe\\" --preserve-symlinks \\"$basedir/src.env\\" $args } else { & \\"$basedir/node$exe\\" --preserve-symlinks \\"$basedir/src.env\\" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"node$exe\\" --preserve-symlinks \\"$basedir/src.env\\" $args } else { & \\"node$exe\\" --preserve-symlinks \\"$basedir/src.env\\" $args } $ret=$LASTEXITCODE } exit $ret " `; exports[`explicit shebang sh.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac if [ -x \\"$basedir//usr/bin/sh\\" ]; then exec \\"$basedir//usr/bin/sh\\" \\"$basedir/src.sh\\" \\"$@\\" else exec /usr/bin/sh \\"$basedir/src.sh\\" \\"$@\\" fi " `; exports[`explicit shebang sh.shim.cmd 1`] = ` "@SETLOCAL @IF EXIST \\"%~dp0\\\\/usr/bin/sh.exe\\" ( \\"%~dp0\\\\/usr/bin/sh.exe\\" \\"%~dp0\\\\src.sh\\" %* ) ELSE ( @SET PATHEXT=%PATHEXT:;.JS;=;% /usr/bin/sh \\"%~dp0\\\\src.sh\\" %* ) " `; exports[`explicit shebang sh.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } $ret=0 if (Test-Path \\"$basedir//usr/bin/sh$exe\\") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir//usr/bin/sh$exe\\" \\"$basedir/src.sh\\" $args } else { & \\"$basedir//usr/bin/sh$exe\\" \\"$basedir/src.sh\\" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"/usr/bin/sh$exe\\" \\"$basedir/src.sh\\" $args } else { & \\"/usr/bin/sh$exe\\" \\"$basedir/src.sh\\" $args } $ret=$LASTEXITCODE } exit $ret " `; exports[`explicit shebang with args sh.args.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac if [ -x \\"$basedir//usr/bin/sh\\" ]; then exec \\"$basedir//usr/bin/sh\\" -x \\"$basedir/src.sh.args\\" \\"$@\\" else exec /usr/bin/sh -x \\"$basedir/src.sh.args\\" \\"$@\\" fi " `; exports[`explicit shebang with args sh.args.shim.cmd 1`] = ` "@SETLOCAL @IF EXIST \\"%~dp0\\\\/usr/bin/sh.exe\\" ( \\"%~dp0\\\\/usr/bin/sh.exe\\" -x \\"%~dp0\\\\src.sh.args\\" %* ) ELSE ( @SET PATHEXT=%PATHEXT:;.JS;=;% /usr/bin/sh -x \\"%~dp0\\\\src.sh.args\\" %* ) " `; exports[`explicit shebang with args sh.args.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } $ret=0 if (Test-Path \\"$basedir//usr/bin/sh$exe\\") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir//usr/bin/sh$exe\\" -x \\"$basedir/src.sh.args\\" $args } else { & \\"$basedir//usr/bin/sh$exe\\" -x \\"$basedir/src.sh.args\\" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"/usr/bin/sh$exe\\" -x \\"$basedir/src.sh.args\\" $args } else { & \\"/usr/bin/sh$exe\\" -x \\"$basedir/src.sh.args\\" $args } $ret=$LASTEXITCODE } exit $ret " `; exports[`explicit shebang with args, linking to another drive on Windows sh.args.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac if [ -x \\"$basedir//usr/bin/sh\\" ]; then exec \\"$basedir//usr/bin/sh\\" -x \\"J:/cmd-shim/fixtures/src.sh.args\\" \\"$@\\" else exec /usr/bin/sh -x \\"J:/cmd-shim/fixtures/src.sh.args\\" \\"$@\\" fi " `; exports[`explicit shebang with args, linking to another drive on Windows sh.args.shim.cmd 1`] = ` "@SETLOCAL @IF EXIST \\"%~dp0\\\\/usr/bin/sh.exe\\" ( \\"%~dp0\\\\/usr/bin/sh.exe\\" -x \\"J:\\\\cmd-shim\\\\fixtures\\\\src.sh.args\\" %* ) ELSE ( @SET PATHEXT=%PATHEXT:;.JS;=;% /usr/bin/sh -x \\"J:\\\\cmd-shim\\\\fixtures\\\\src.sh.args\\" %* ) " `; exports[`explicit shebang with args, linking to another drive on Windows sh.args.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } $ret=0 if (Test-Path \\"$basedir//usr/bin/sh$exe\\") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir//usr/bin/sh$exe\\" -x \\"J:/cmd-shim/fixtures/src.sh.args\\" $args } else { & \\"$basedir//usr/bin/sh$exe\\" -x \\"J:/cmd-shim/fixtures/src.sh.args\\" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"/usr/bin/sh$exe\\" -x \\"J:/cmd-shim/fixtures/src.sh.args\\" $args } else { & \\"/usr/bin/sh$exe\\" -x \\"J:/cmd-shim/fixtures/src.sh.args\\" $args } $ret=$LASTEXITCODE } exit $ret " `; exports[`explicit shebang with prog args sh.args.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac if [ -x \\"$basedir//usr/bin/sh\\" ]; then exec \\"$basedir//usr/bin/sh\\" -x \\"$basedir/src.sh.args\\" hello \\"$@\\" else exec /usr/bin/sh -x \\"$basedir/src.sh.args\\" hello \\"$@\\" fi " `; exports[`explicit shebang with prog args sh.args.shim.cmd 1`] = ` "@SETLOCAL @IF EXIST \\"%~dp0\\\\/usr/bin/sh.exe\\" ( \\"%~dp0\\\\/usr/bin/sh.exe\\" -x \\"%~dp0\\\\src.sh.args\\" hello %* ) ELSE ( @SET PATHEXT=%PATHEXT:;.JS;=;% /usr/bin/sh -x \\"%~dp0\\\\src.sh.args\\" hello %* ) " `; exports[`explicit shebang with prog args sh.args.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } $ret=0 if (Test-Path \\"$basedir//usr/bin/sh$exe\\") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir//usr/bin/sh$exe\\" -x \\"$basedir/src.sh.args\\" hello $args } else { & \\"$basedir//usr/bin/sh$exe\\" -x \\"$basedir/src.sh.args\\" hello $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"/usr/bin/sh$exe\\" -x \\"$basedir/src.sh.args\\" hello $args } else { & \\"/usr/bin/sh$exe\\" -x \\"$basedir/src.sh.args\\" hello $args } $ret=$LASTEXITCODE } exit $ret " `; exports[`no cmd file exe.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac \\"$basedir/src.exe\\" \\"$@\\" exit $? " `; exports[`no cmd file exe.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir/src.exe\\" $args } else { & \\"$basedir/src.exe\\" $args } exit $LASTEXITCODE " `; exports[`no shebang exe.shim 1`] = ` "#!/bin/sh basedir=$(dirname \\"$(echo \\"$0\\" | sed -e 's,\\\\\\\\,/,g')\\") case \`uname\` in *CYGWIN*) basedir=\`cygpath -w \\"$basedir\\"\`;; esac \\"$basedir/src.exe\\" \\"$@\\" exit $? " `; exports[`no shebang exe.shim.cmd 1`] = ` "@SETLOCAL @\\"%~dp0\\\\src.exe\\" %* " `; exports[`no shebang exe.shim.ps1 1`] = ` "#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe=\\"\\" if ($PSVersionTable.PSVersion -lt \\"6.0\\" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=\\".exe\\" } # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & \\"$basedir/src.exe\\" $args } else { & \\"$basedir/src.exe\\" $args } exit $LASTEXITCODE " `; cmd-shim--zkochan-cmd-shim-5.2.1/test/setup.js000066400000000000000000000022711412467660700211230ustar00rootroot00000000000000'use strict' /** @type {typeof import("fs")} */ // @ts-ignore const memfs = require('memfs') const path = require('path') const { fixtures, fixtures2 } = process.platform === 'win32' ? { fixtures: 'I:\\cmd-shim\\fixtures', fixtures2: 'J:\\cmd-shim\\fixtures' } : { fixtures: '/foo/cmd-shim/fixtures', fixtures2: '/bar/cmd-shim/fixtures' } exports.fixtures = fixtures exports.fixtures2 = fixtures2 exports.fs = memfs /** @type {{ [dir: string]: { [filename: string]: string } }} */ const fixtureFiles = { [fixtures]: { 'src.exe': 'exe', 'src.env': '#!/usr/bin/env node\nconsole.log(/hi/)\n', 'src.env.args': '#!/usr/bin/env node --expose_gc\ngc()\n', 'src.sh': '#!/usr/bin/sh\necho hi\n', 'src.sh.args': '#!/usr/bin/sh -x\necho hi\n' }, [fixtures2]: { 'src.sh.args': '#!/usr/bin/sh -x\necho hi\n' } } beforeAll(() => { const fs = memfs.promises return Promise.all( Object.entries(fixtureFiles).map(async ([dir, files]) => { await fs.mkdir(dir, { recursive: true }) return Promise.all( Object.entries(files).map(([filename, contents]) => { return fs.writeFile(path.join(dir, filename), contents) }) ) }) ) }) cmd-shim--zkochan-cmd-shim-5.2.1/test/test.js000077500000000000000000000100601412467660700207400ustar00rootroot00000000000000 'use strict' const path = require('path') const { fixtures, fixtures2, fs } = require('./setup') const cmdShim = require('../') /** * @param {string} fileName * @param {'\n' | '\r\n'} lineEnding */ function testFile (fileName, lineEnding = '\n') { test(path.basename(fileName), async () => { const invalidLineEnding = lineEnding === '\r\n' ? /$(? { const src = path.resolve(fixtures, 'src.exe') const to = path.resolve(fixtures, 'exe.shim') beforeAll(() => { return cmdShim(src, to, { createCmdFile: false, fs }) }) testFile(to) test(`${to}.cmd`, () => { expect(() => fs.readFileSync(`${to}.cmd`, 'utf8')).toThrow('no such file or directory') }) testFile(`${to}.ps1`) }) describe('no shebang', () => { const src = path.resolve(fixtures, 'src.exe') const to = path.resolve(fixtures, 'exe.shim') beforeAll(() => { return cmdShim(src, to, { createCmdFile: true, fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) describe('env shebang', () => { const src = path.resolve(fixtures, 'src.env') const to = path.resolve(fixtures, 'env.shim') beforeAll(() => { return cmdShim(src, to, { createCmdFile: true, fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) describe('env shebang with NODE_PATH', () => { const src = path.resolve(fixtures, 'src.env') const to = path.resolve(fixtures, 'env.shim') beforeAll(() => { return cmdShim(src, to, { nodePath: ['/john/src/node_modules', '/bin/node/node_modules'], createCmdFile: true, fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) describe('env shebang with default args', () => { const src = path.resolve(fixtures, 'src.env') const to = path.resolve(fixtures, 'env.shim') beforeAll(() => { return cmdShim(src, to, { preserveSymlinks: true, createCmdFile: true, fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) describe('env shebang with args', () => { const src = path.resolve(fixtures, 'src.env.args') const to = path.resolve(fixtures, 'env.args.shim') beforeAll(() => { return cmdShim(src, to, { createCmdFile: true, fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) describe('explicit shebang', () => { const src = path.resolve(fixtures, 'src.sh') const to = path.resolve(fixtures, 'sh.shim') beforeAll(() => { return cmdShim(src, to, { createCmdFile: true, fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) describe('explicit shebang with args', () => { const src = path.resolve(fixtures, 'src.sh.args') const to = path.resolve(fixtures, 'sh.args.shim') beforeAll(() => { return cmdShim(src, to, { createCmdFile: true, fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) describe('explicit shebang with prog args', () => { const src = path.resolve(fixtures, 'src.sh.args') const to = path.resolve(fixtures, 'sh.args.shim') beforeAll(() => { return cmdShim(src, to, { createCmdFile: true, progArgs: ['hello'], fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) describe('custom node executable', () => { const src = path.resolve(fixtures, 'src.env') const to = path.resolve(fixtures, 'env.shim') beforeAll(() => { return cmdShim(src, to, { nodeExecPath: '/.pnpm/nodejs/16.0.0/node', fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) ;(process.platform === 'win32' ? describe : describe.skip)('explicit shebang with args, linking to another drive on Windows', () => { const src = path.resolve(fixtures2, 'src.sh.args') const to = path.resolve(fixtures, 'sh.args.shim') beforeAll(() => { return cmdShim(src, to, { createCmdFile: true, fs }) }) testFile(to) testFile(`${to}.cmd`, '\r\n') testFile(`${to}.ps1`) }) cmd-shim--zkochan-cmd-shim-5.2.1/test/tsconfig.json000066400000000000000000000005241412467660700221330ustar00rootroot00000000000000{ "include": [ "**/*.js" ], "exclude": [ "**/__snapshots__/**" ], "compilerOptions": { "allowJs": true, "checkJs": true, "strict": true, "moduleResolution": "node", "allowSyntheticDefaultImports": true, "types": ["node","jest"], "noEmit": true }, "references": [ { "path": ".." } ] } cmd-shim--zkochan-cmd-shim-5.2.1/tsconfig.json000066400000000000000000000035271412467660700211620ustar00rootroot00000000000000{ "include": [ "src/**/*" ], "exclude": [], "compilerOptions": { /* Basic Options */ "composite": true, /* Enable support for project references */ "incremental": true, /* Enable incremental compilation */ "target": "esnext", /* 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'. */ "declaration": true, /* Generates corresponding '.d.ts' file. */ "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ "sourceMap": true, /* Generates corresponding '.map' file. */ "outDir": "./", /* Redirect output structure to the directory. */ "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ "tsBuildInfoFile": "./tsconfig.tsbuildinfo", /* Specify file to store incremental compilation information */ /* Strict Type-Checking Options */ "strict": true, /* Enable all strict type-checking options. */ /* Module Resolution Options */ "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ "types": ["node"], /* Type declaration files to be included in compilation. */ "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ } }