From 3ffb1d1441ab802b99f8e84ab2a7a54aa3a9781d Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Wed, 12 Aug 2020 01:39:22 -0500 Subject: [PATCH] fix: bump --- .github/workflows/CI.yml | 24 +- package.json | 34 +- pnpm-lock.yaml | 903 +++++++++++++++++---------------- rollup.config.js | 2 +- script/install-package-deps.js | 9 + 5 files changed, 514 insertions(+), 458 deletions(-) create mode 100644 script/install-package-deps.js diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b4af019..d7f28c3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,11 +1,7 @@ name: CI on: - - push - pull_request - -defaults: - run: - shell: bash + - push jobs: Test: @@ -17,8 +13,8 @@ jobs: matrix: os: - ubuntu-latest - # - macos-latest - # - windows-latest + - macos-latest + - windows-latest atom_channel: [stable, beta] steps: - uses: actions/checkout@v2 @@ -31,19 +27,15 @@ jobs: run: | apm install - name: Atom Package dependencies - run: | - npm install array-to-txt-file - node -e 'const pkg = require("./package.json"); deps=Array.from(pkg["package-deps"]); const arrayToTxtFile = require("array-to-txt-file"); arrayToTxtFile(deps,"deps.txt", ()=>{});' - cat deps.txt | \ - while read dep; do - apm install $dep - done + run: node ./script/install-package-deps.js - name: Run tests 👩🏾‍💻 run: npm run test Lint: if: "!contains(github.event.head_commit.message, '[skip ci]')" runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - uses: actions/checkout@v2 with: @@ -52,7 +44,7 @@ jobs: uses: wagoid/commitlint-github-action@v1 - uses: actions/setup-node@v1 with: - node-version: "14.x" + node-version: "12.x" - name: Install NPM dependencies run: | npm install @@ -69,7 +61,7 @@ jobs: - uses: UziTech/action-setup-atom@v1 - uses: actions/setup-node@v1 with: - node-version: "14.x" + node-version: "12.x" - name: NPM install run: npm install - name: Build and Commit diff --git a/package.json b/package.json index 7189440..edddd62 100644 --- a/package.json +++ b/package.json @@ -19,9 +19,9 @@ "lint": "eslint . --fix", "test": "atom --test spec", "clean": "shx rm -rf dist", - "babel": "npm run clean && shx cp -r lib dist && cross-env NODE_ENV=development cross-env BABEL_ENV=development babel dist --out-dir dist", - "dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_ENV=production rollup -c -w", - "build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_ENV=production rollup -c ", + "babel": "npm run clean && shx cp -r lib dist && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=false babel dist --out-dir dist", + "dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w", + "build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c ", "build-commit": "build-commit -o dist", "bump": "ncu -u", "prepare": "npm run build" @@ -32,28 +32,28 @@ }, "devDependencies": { "@types/atom": "1.40.4", - "@types/dompurify": "2.0.2", + "@types/dompurify": "2.0.3", "@types/marked": "^1.1.0", - "@types/node": "^14.0.23", + "@types/node": "^14.0.27", "atom-languageclient": "^0.9.9", - "jasmine": "^3.5.0", - "@types/jasmine": "^3.5.11", - "atom-jasmine3-test-runner": "^4.4.8", + "jasmine": "^3.6.1", + "@types/jasmine": "^3.5.12", + "atom-jasmine3-test-runner": "^5.0.5", "typescript": "^3.9.7", - "tslib": "^2.0.0", + "tslib": "^2.0.1", "prettier": "^2.0.5", - "eslint": "7.4.0", - "eslint-config-atomic": "^1.0.0", - "tslint": "6.1.2", + "eslint": "7.6.0", + "eslint-config-atomic": "^1.3.0", + "tslint": "6.1.3", "tslint-config-prettier": "1.18.0", - "rollup": "^2.21.0", - "rollup-plugin-atomic": "^1.0.2", + "rollup": "^2.23.1", + "rollup-plugin-atomic": "^1.2.0", "shx": "^0.3.2", "cross-env": "^7.0.2", "@babel/cli": "7.10.5", - "@babel/core": "7.10.5", - "babel-preset-atomic": "latest", - "npm-check-updates": "7.0.2", + "@babel/core": "7.11.1", + "babel-preset-atomic": "^1.0.7", + "npm-check-updates": "7.1.0", "build-commit": "0.1.1" }, "activationHooks": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8d943a2..32ad4cb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2,35 +2,35 @@ dependencies: dompurify: 2.0.12 marked: 1.1.1 devDependencies: - '@babel/cli': 7.10.5_@babel+core@7.10.5 - '@babel/core': 7.10.5 + '@babel/cli': 7.10.5_@babel+core@7.11.1 + '@babel/core': 7.11.1 '@types/atom': 1.40.4 - '@types/dompurify': 2.0.2 + '@types/dompurify': 2.0.3 '@types/jasmine': 3.5.12 '@types/marked': 1.1.0 '@types/node': 14.0.27 - atom-jasmine3-test-runner: 4.4.9 + atom-jasmine3-test-runner: 5.0.5 atom-languageclient: 0.9.9 - babel-preset-atomic: 1.0.7_d72946d1a81dd74f7df92ec0224a35e0 + babel-preset-atomic: 1.0.7_85545ff2d5eda21cd5151f447bb4f089 build-commit: 0.1.1 cross-env: 7.0.2 - eslint: 7.4.0 - eslint-config-atomic: 1.3.0_eslint@7.4.0 + eslint: 7.6.0 + eslint-config-atomic: 1.3.0_eslint@7.6.0 jasmine: 3.6.1 - npm-check-updates: 7.0.2 + npm-check-updates: 7.1.0 prettier: 2.0.5 rollup: 2.23.1 - rollup-plugin-atomic: 1.2.0_664370b78d78fc72308f428cb2dcc590 + rollup-plugin-atomic: 1.2.0_6be78e0098e3f86f4b2912094ecea11b shx: 0.3.2 tslib: 2.0.1 - tslint: 6.1.2_typescript@3.9.7 + tslint: 6.1.3_typescript@3.9.7 tslint-config-prettier: 1.18.0 typescript: 3.9.7 lockfileVersion: 5.1 packages: - /@babel/cli/7.10.5_@babel+core@7.10.5: + /@babel/cli/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 commander: 4.1.1 convert-source-map: 1.7.0 fs-readdir-recursive: 1.1.0 @@ -61,7 +61,7 @@ packages: dev: true resolution: integrity: sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ== - /@babel/core/7.10.5: + /@babel/core/7.11.1: dependencies: '@babel/code-frame': 7.10.4 '@babel/generator': 7.11.0 @@ -83,7 +83,7 @@ packages: engines: node: '>=6.9.0' resolution: - integrity: sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w== + integrity: sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ== /@babel/generator/7.11.0: dependencies: '@babel/types': 7.11.0 @@ -120,10 +120,10 @@ packages: dev: true resolution: integrity: sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg== - /@babel/helper-compilation-targets/7.10.4_@babel+core@7.10.5: + /@babel/helper-compilation-targets/7.10.4_@babel+core@7.11.1: dependencies: '@babel/compat-data': 7.11.0 - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 browserslist: 4.14.0 invariant: 2.2.4 levenary: 1.1.1 @@ -133,9 +133,9 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== - /@babel/helper-create-class-features-plugin/7.10.5_@babel+core@7.10.5: + /@babel/helper-create-class-features-plugin/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-function-name': 7.10.4 '@babel/helper-member-expression-to-functions': 7.11.0 '@babel/helper-optimise-call-expression': 7.10.4 @@ -147,9 +147,9 @@ packages: '@babel/core': ^7.0.0 resolution: integrity: sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== - /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.10.5: + /@babel/helper-create-regexp-features-plugin/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-regex': 7.10.5 regexpu-core: 4.7.0 @@ -307,205 +307,205 @@ packages: hasBin: true resolution: integrity: sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA== - /@babel/plugin-proposal-async-generator-functions/7.10.5_@babel+core@7.10.5: + /@babel/plugin-proposal-async-generator-functions/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-remap-async-to-generator': 7.10.4 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.10.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== - /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.10.5 + '@babel/core': 7.11.1 + '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== - /@babel/plugin-proposal-decorators/7.10.5_@babel+core@7.10.5: + /@babel/plugin-proposal-decorators/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.10.5 + '@babel/core': 7.11.1 + '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-decorators': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-decorators': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Sc5TAQSZuLzgY0664mMDn24Vw2P8g/VhyLyGPaWiHahhgLqeZvcGeyBZOrJW0oSKIK2mvQ22a1ENXBIQLhrEiQ== - /@babel/plugin-proposal-do-expressions/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-do-expressions/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-do-expressions': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-do-expressions': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Gcc2wLVeMceRdP6m9tdDygP01lbUVmaQGBRoIRJZxzPfB5VTiUgmn1jGfORgqbEVgUpG0IQm/z4q5Y/qzG+8JQ== - /@babel/plugin-proposal-dynamic-import/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-dynamic-import/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== - /@babel/plugin-proposal-export-default-from/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-export-default-from/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-export-default-from': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-export-default-from': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-G1l00VvDZ7Yk2yRlC5D8Ybvu3gmeHS3rCHoUYdjrqGYUtdeOBoRypnvDZ5KQqxyaiiGHWnVDeSEzA5F9ozItig== - /@babel/plugin-proposal-export-namespace-from/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-export-namespace-from/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg== - /@babel/plugin-proposal-function-bind/7.10.5_@babel+core@7.10.5: + /@babel/plugin-proposal-function-bind/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-function-bind': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-function-bind': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-1lYbE2ynV9yN0LCEYCdEBD5pR6GaNkRfjn1z1tWDdWMJgunTFcJBZDJUgiMPcTMqAc3D6Vrm8v2khxjjx6FrCg== - /@babel/plugin-proposal-function-sent/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-function-sent/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-wrap-function': 7.10.4 - '@babel/plugin-syntax-function-sent': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-function-sent': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-aBtve/DhQsVPAGnSDcgt33gF36rO0TK+KtHp9Hwtj3KwH+o1Cii9vfVVYeB9c6Jo1SXOgTRwRD7ljpTS0qbN8w== - /@babel/plugin-proposal-json-strings/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-json-strings/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== - /@babel/plugin-proposal-logical-assignment-operators/7.11.0_@babel+core@7.10.5: + /@babel/plugin-proposal-logical-assignment-operators/7.11.0_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q== - /@babel/plugin-proposal-nullish-coalescing-operator/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-nullish-coalescing-operator/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== - /@babel/plugin-proposal-numeric-separator/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-numeric-separator/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== - /@babel/plugin-proposal-object-rest-spread/7.11.0_@babel+core@7.10.5: + /@babel/plugin-proposal-object-rest-spread/7.11.0_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.10.5 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.10.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== - /@babel/plugin-proposal-optional-catch-binding/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-optional-catch-binding/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== - /@babel/plugin-proposal-optional-chaining/7.11.0_@babel+core@7.10.5: + /@babel/plugin-proposal-optional-chaining/7.11.0_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-skip-transparent-expression-wrappers': 7.11.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.10.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA== - /@babel/plugin-proposal-pipeline-operator/7.10.5_@babel+core@7.10.5: + /@babel/plugin-proposal-pipeline-operator/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-pipeline-operator': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-pipeline-operator': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-tCpZ46KUAHgFoXsH593k9sX/ZKsNb4NlTGNif8PdlmkGbtYdbTQi6zNv8yibpRf+3sQFElOBLyNo3I5ZwVu90g== - /@babel/plugin-proposal-private-methods/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-private-methods/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 - '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.10.5 + '@babel/core': 7.11.1 + '@babel/helper-create-class-features-plugin': 7.10.5_@babel+core@7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== - /@babel/plugin-proposal-throw-expressions/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-throw-expressions/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-throw-expressions': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-throw-expressions': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-m7K9duXeH/rko36i9G9seLOg2AVdeVTn65k8nnTxgozex0hkDSUr6cktJxTO7jElGEpmMz410pTs0Jn8+empxw== - /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.10.5: + /@babel/plugin-proposal-unicode-property-regex/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.5 + '@babel/core': 7.11.1 + '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true engines: @@ -514,216 +514,216 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.10.5: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - /@babel/plugin-syntax-class-properties/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-class-properties/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== - /@babel/plugin-syntax-decorators/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-decorators/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw== - /@babel/plugin-syntax-do-expressions/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-do-expressions/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-HyvaTg1aiwGo2I+Pu0nyurRMjIP7J89GpuZ2mcQ0fhO6Jt3BnyhEPbNJFG1hRE99NAPNfPYh93/7HO+GPVkTKg== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.10.5: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-export-default-from/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-export-default-from/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-79V6r6Pgudz0RnuMGp5xidu6Z+bPFugh8/Q9eDHonmLp4wKFAZDwygJwYgCzuDu8lFA/sYyT+mc5y2wkd7bTXA== - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.10.5: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - /@babel/plugin-syntax-flow/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-flow/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ== - /@babel/plugin-syntax-function-bind/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-function-bind/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-vF/K9yS0dpPNlT7mXSGhbdpb2f4DaLa/AYYbUqlxOggAug/oseIR1+LgAzwci4iJNlqWNmJ7aQ+llUMYjn9uhw== - /@babel/plugin-syntax-function-sent/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-function-sent/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-dwElaRoDQhlVevbgKOlEUTe08QNJo4ZjWw3rqnMbEvH8NRJM+iPN2tTQtzyfNloXD8f3Jdiyf5Pn400B1U3SVA== - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.10.5: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - /@babel/plugin-syntax-jsx/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-jsx/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.10.5: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.10.5: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.10.5: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.10.5: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-pipeline-operator/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-pipeline-operator/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-QOmXevisZebt9pBkMdDdXWg+fndB8dT/puwSKKu/1K3P4oBwmydN/4dX1hdrNvPHbw4xE+ocIoEus7c4eh7Igg== - /@babel/plugin-syntax-throw-expressions/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-throw-expressions/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Yac/4W71+JdAiOV3aLbnUUe2R0NZzNvdy5EqdauFnBQTxIXT58M89lOplIFVELTSus6PxFMjmbi2vXaJDiV/PQ== - /@babel/plugin-syntax-top-level-await/7.10.4_@babel+core@7.10.5: + /@babel/plugin-syntax-top-level-await/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== - /@babel/plugin-transform-arrow-functions/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-arrow-functions/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== - /@babel/plugin-transform-async-to-generator/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-async-to-generator/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-module-imports': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-remap-async-to-generator': 7.10.4 @@ -732,27 +732,27 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== - /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== - /@babel/plugin-transform-block-scoping/7.11.1_@babel+core@7.10.5: + /@babel/plugin-transform-block-scoping/7.11.1_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== - /@babel/plugin-transform-classes/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-classes/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-define-map': 7.10.5 '@babel/helper-function-name': 7.10.4 @@ -766,46 +766,46 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== - /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== - /@babel/plugin-transform-destructuring/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-destructuring/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== - /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-dotall-regex/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.5 + '@babel/core': 7.11.1 + '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== - /@babel/plugin-transform-duplicate-keys/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-duplicate-keys/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== - /@babel/plugin-transform-exponentiation-operator/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-exponentiation-operator/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true @@ -813,28 +813,28 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== - /@babel/plugin-transform-flow-strip-types/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-flow-strip-types/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-flow': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-flow': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-XTadyuqNst88UWBTdLjM+wEY7BFnY2sYtPyAidfC7M/QaZnSuIZpMvLxqGT7phAcnGyWh/XQFLKcGf04CnvxSQ== - /@babel/plugin-transform-for-of/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-for-of/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== - /@babel/plugin-transform-function-name/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-function-name/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-function-name': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true @@ -842,27 +842,27 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== - /@babel/plugin-transform-literals/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-literals/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== - /@babel/plugin-transform-member-expression-literals/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-member-expression-literals/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== - /@babel/plugin-transform-modules-amd/7.10.5_@babel+core@7.10.5: + /@babel/plugin-transform-modules-amd/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-module-transforms': 7.11.0 '@babel/helper-plugin-utils': 7.10.4 babel-plugin-dynamic-import-node: 2.3.3 @@ -871,9 +871,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== - /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-module-transforms': 7.11.0 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-simple-access': 7.10.4 @@ -883,9 +883,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== - /@babel/plugin-transform-modules-systemjs/7.10.5_@babel+core@7.10.5: + /@babel/plugin-transform-modules-systemjs/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-hoist-variables': 7.10.4 '@babel/helper-module-transforms': 7.11.0 '@babel/helper-plugin-utils': 7.10.4 @@ -895,9 +895,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== - /@babel/plugin-transform-modules-umd/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-modules-umd/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-module-transforms': 7.11.0 '@babel/helper-plugin-utils': 7.10.4 dev: true @@ -905,27 +905,27 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== - /@babel/plugin-transform-named-capturing-groups-regex/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-named-capturing-groups-regex/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.5 + '@babel/core': 7.11.1 + '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: integrity: sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== - /@babel/plugin-transform-new-target/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-new-target/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== - /@babel/plugin-transform-object-super/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-object-super/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-replace-supers': 7.10.4 dev: true @@ -933,9 +933,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== - /@babel/plugin-transform-parameters/7.10.5_@babel+core@7.10.5: + /@babel/plugin-transform-parameters/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-get-function-arity': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true @@ -943,70 +943,70 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== - /@babel/plugin-transform-property-literals/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-property-literals/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== - /@babel/plugin-transform-react-display-name/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-react-display-name/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw== - /@babel/plugin-transform-react-jsx-development/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-react-jsx-development/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-builder-react-jsx-experimental': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ== - /@babel/plugin-transform-react-jsx-self/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-react-jsx-self/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== - /@babel/plugin-transform-react-jsx-source/7.10.5_@babel+core@7.10.5: + /@babel/plugin-transform-react-jsx-source/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA== - /@babel/plugin-transform-react-jsx/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-react-jsx/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-builder-react-jsx': 7.10.4 '@babel/helper-builder-react-jsx-experimental': 7.10.5 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-syntax-jsx': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== - /@babel/plugin-transform-react-pure-annotations/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-react-pure-annotations/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true @@ -1014,36 +1014,36 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A== - /@babel/plugin-transform-regenerator/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-regenerator/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 regenerator-transform: 0.14.5 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== - /@babel/plugin-transform-reserved-words/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-reserved-words/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== - /@babel/plugin-transform-shorthand-properties/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-shorthand-properties/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== - /@babel/plugin-transform-spread/7.11.0_@babel+core@7.10.5: + /@babel/plugin-transform-spread/7.11.0_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-skip-transparent-expression-wrappers': 7.11.0 dev: true @@ -1051,9 +1051,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== - /@babel/plugin-transform-sticky-regex/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-sticky-regex/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-regex': 7.10.5 dev: true @@ -1061,9 +1061,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== - /@babel/plugin-transform-template-literals/7.10.5_@babel+core@7.10.5: + /@babel/plugin-transform-template-literals/7.10.5_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-annotate-as-pure': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 dev: true @@ -1071,99 +1071,99 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== - /@babel/plugin-transform-typeof-symbol/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-typeof-symbol/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== - /@babel/plugin-transform-unicode-escapes/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-unicode-escapes/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== - /@babel/plugin-transform-unicode-regex/7.10.4_@babel+core@7.10.5: + /@babel/plugin-transform-unicode-regex/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 - '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.10.5 + '@babel/core': 7.11.1 + '@babel/helper-create-regexp-features-plugin': 7.10.4_@babel+core@7.11.1 '@babel/helper-plugin-utils': 7.10.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== - /@babel/preset-env/7.11.0_@babel+core@7.10.5: + /@babel/preset-env/7.11.0_@babel+core@7.11.1: dependencies: '@babel/compat-data': 7.11.0 - '@babel/core': 7.10.5 - '@babel/helper-compilation-targets': 7.10.4_@babel+core@7.10.5 + '@babel/core': 7.11.1 + '@babel/helper-compilation-targets': 7.10.4_@babel+core@7.11.1 '@babel/helper-module-imports': 7.10.4 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-async-generator-functions': 7.10.5_@babel+core@7.10.5 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-dynamic-import': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-export-namespace-from': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-logical-assignment-operators': 7.11.0_@babel+core@7.10.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-numeric-separator': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.10.5 - '@babel/plugin-proposal-optional-catch-binding': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-optional-chaining': 7.11.0_@babel+core@7.10.5 - '@babel/plugin-proposal-private-methods': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.10.5 - '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.10.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.10.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.10.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.10.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.10.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.10.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.10.5 - '@babel/plugin-syntax-top-level-await': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-arrow-functions': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-async-to-generator': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-block-scoped-functions': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-block-scoping': 7.11.1_@babel+core@7.10.5 - '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-computed-properties': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-destructuring': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-duplicate-keys': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-exponentiation-operator': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-for-of': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-function-name': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-literals': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-member-expression-literals': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-modules-amd': 7.10.5_@babel+core@7.10.5 - '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-modules-systemjs': 7.10.5_@babel+core@7.10.5 - '@babel/plugin-transform-modules-umd': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-new-target': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-object-super': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.10.5 - '@babel/plugin-transform-property-literals': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-regenerator': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-reserved-words': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-shorthand-properties': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-spread': 7.11.0_@babel+core@7.10.5 - '@babel/plugin-transform-sticky-regex': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.10.5 - '@babel/plugin-transform-typeof-symbol': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-unicode-escapes': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-unicode-regex': 7.10.4_@babel+core@7.10.5 - '@babel/preset-modules': 0.1.3_@babel+core@7.10.5 + '@babel/plugin-proposal-async-generator-functions': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-dynamic-import': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-export-namespace-from': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-logical-assignment-operators': 7.11.0_@babel+core@7.11.1 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-numeric-separator': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-object-rest-spread': 7.11.0_@babel+core@7.11.1 + '@babel/plugin-proposal-optional-catch-binding': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-optional-chaining': 7.11.0_@babel+core@7.11.1 + '@babel/plugin-proposal-private-methods': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.11.1 + '@babel/plugin-syntax-class-properties': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-top-level-await': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-arrow-functions': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-async-to-generator': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-block-scoped-functions': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-block-scoping': 7.11.1_@babel+core@7.11.1 + '@babel/plugin-transform-classes': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-computed-properties': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-destructuring': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-duplicate-keys': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-exponentiation-operator': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-for-of': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-function-name': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-literals': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-member-expression-literals': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-modules-amd': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-modules-systemjs': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-transform-modules-umd': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-named-capturing-groups-regex': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-new-target': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-object-super': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-parameters': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-transform-property-literals': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-regenerator': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-reserved-words': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-shorthand-properties': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-spread': 7.11.0_@babel+core@7.11.1 + '@babel/plugin-transform-sticky-regex': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-template-literals': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-transform-typeof-symbol': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-unicode-escapes': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-unicode-regex': 7.10.4_@babel+core@7.11.1 + '@babel/preset-modules': 0.1.3_@babel+core@7.11.1 '@babel/types': 7.11.0 browserslist: 4.14.0 core-js-compat: 3.6.5 @@ -1175,22 +1175,22 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg== - /@babel/preset-flow/7.10.4_@babel+core@7.10.5: + /@babel/preset-flow/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-transform-flow-strip-types': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-flow-strip-types': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-XI6l1CptQCOBv+ZKYwynyswhtOKwpZZp5n0LG1QKCo8erRhqjoQV6nvx61Eg30JHpysWQSBwA2AWRU3pBbSY5g== - /@babel/preset-modules/0.1.3_@babel+core@7.10.5: + /@babel/preset-modules/0.1.3_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-proposal-unicode-property-regex': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-dotall-regex': 7.10.4_@babel+core@7.11.1 '@babel/types': 7.11.0 esutils: 2.0.3 dev: true @@ -1198,16 +1198,16 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== - /@babel/preset-react/7.10.4_@babel+core@7.10.5: + /@babel/preset-react/7.10.4_@babel+core@7.11.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-plugin-utils': 7.10.4 - '@babel/plugin-transform-react-display-name': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-react-jsx': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-react-jsx-development': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-react-jsx-self': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-transform-react-jsx-source': 7.10.5_@babel+core@7.10.5 - '@babel/plugin-transform-react-pure-annotations': 7.10.4_@babel+core@7.10.5 + '@babel/plugin-transform-react-display-name': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-react-jsx': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-react-jsx-development': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-react-jsx-self': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-transform-react-jsx-source': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-transform-react-pure-annotations': 7.10.4_@babel+core@7.11.1 dev: true peerDependencies: '@babel/core': ^7.0.0-0 @@ -1324,9 +1324,9 @@ packages: dev: true resolution: integrity: sha512-z7AzLmsMtVntMRJt35M5VAjb/jH6yH37Q8Ku011JVR7rEoy+p2a6/NkwqChCRZORlJaS9rwjXmZKM6UmwXLkqA== - /@rollup/plugin-babel/5.1.0_@babel+core@7.10.5+rollup@2.23.1: + /@rollup/plugin-babel/5.1.0_@babel+core@7.11.1+rollup@2.23.1: dependencies: - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@babel/helper-module-imports': 7.10.4 '@rollup/pluginutils': 3.1.0_rollup@2.23.1 rollup: 2.23.1 @@ -1454,12 +1454,12 @@ packages: dev: true resolution: integrity: sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== - /@types/dompurify/2.0.2: + /@types/dompurify/2.0.3: dependencies: '@types/trusted-types': 1.0.6 dev: true resolution: - integrity: sha512-WHoQQTziRHm5/Fw/KsUKyh2V+wd3k2QUpJyjUXo8K7d9kMJ5i5wQnGDkO4URkwulhY2HuM/gbX25nSooi6+wUA== + integrity: sha512-sK52Cwj9nJh186Tt/My7WzCWsJlJWAtcUig1fp/7s7/T2t4xMgpNHYdgjXlCUsXpmGc1OZWPqUFpZ35o6xs5lQ== /@types/eslint-visitor-keys/1.0.0: dev: true resolution: @@ -1502,12 +1502,12 @@ packages: dev: true resolution: integrity: sha512-230RC8sFeHoT6sSUlRO6a8cAnclO06eeiq1QDfiv2FGCLWFvvERWgwIQD4FWqD9A69BN7Lzee4OXwoMVnnsWDw== - /@typescript-eslint/eslint-plugin/3.9.0_c5500b8257270e095bba2b64ac58386a: + /@typescript-eslint/eslint-plugin/3.9.0_d6577319693733c9ab4cf1a59ecb806a: dependencies: - '@typescript-eslint/experimental-utils': 3.9.0_eslint@7.4.0+typescript@3.9.7 - '@typescript-eslint/parser': 3.9.0_eslint@7.4.0+typescript@3.9.7 + '@typescript-eslint/experimental-utils': 3.9.0_eslint@7.6.0+typescript@3.9.7 + '@typescript-eslint/parser': 3.9.0_eslint@7.6.0+typescript@3.9.7 debug: 4.1.1 - eslint: 7.4.0 + eslint: 7.6.0 functional-red-black-tree: 1.0.1 regexpp: 3.1.0 semver: 7.3.2 @@ -1525,12 +1525,12 @@ packages: optional: true resolution: integrity: sha512-UD6b4p0/hSe1xdTvRCENSx7iQ+KR6ourlZFfYuPC7FlXEzdHuLPrEmuxZ23b2zW96KJX9Z3w05GE/wNOiEzrVg== - /@typescript-eslint/experimental-utils/3.9.0_eslint@7.4.0+typescript@3.9.7: + /@typescript-eslint/experimental-utils/3.9.0_eslint@7.6.0+typescript@3.9.7: dependencies: '@types/json-schema': 7.0.5 '@typescript-eslint/types': 3.9.0 '@typescript-eslint/typescript-estree': 3.9.0_typescript@3.9.7 - eslint: 7.4.0 + eslint: 7.6.0 eslint-scope: 5.1.0 eslint-utils: 2.1.0 dev: true @@ -1541,13 +1541,13 @@ packages: typescript: '*' resolution: integrity: sha512-/vSHUDYizSOhrOJdjYxPNGfb4a3ibO8zd4nUKo/QBFOmxosT3cVUV7KIg8Dwi6TXlr667G7YPqFK9+VSZOorNA== - /@typescript-eslint/parser/3.9.0_eslint@7.4.0+typescript@3.9.7: + /@typescript-eslint/parser/3.9.0_eslint@7.6.0+typescript@3.9.7: dependencies: '@types/eslint-visitor-keys': 1.0.0 - '@typescript-eslint/experimental-utils': 3.9.0_eslint@7.4.0+typescript@3.9.7 + '@typescript-eslint/experimental-utils': 3.9.0_eslint@7.6.0+typescript@3.9.7 '@typescript-eslint/types': 3.9.0 '@typescript-eslint/typescript-estree': 3.9.0_typescript@3.9.7 - eslint: 7.4.0 + eslint: 7.6.0 eslint-visitor-keys: 1.3.0 typescript: 3.9.7 dev: true @@ -1862,20 +1862,28 @@ packages: hasBin: true resolution: integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - /atom-jasmine3-test-runner/4.4.9: + /atom-jasmine3-test-runner/5.0.5: dependencies: etch: 0.14.0 find-parent-dir: 0.3.0 fs-plus: 3.1.1 glob: 7.1.6 grim: 2.0.2 - jasmine: 3.5.0 + jasmine: 3.6.1 + jasmine-local-storage: 1.1.1_jasmine@3.6.1 + jasmine-pass: 1.1.0_jasmine@3.6.1 + jasmine-should-fail: 1.1.7_jasmine@3.6.1 + jasmine-unspy: 1.1.0_jasmine@3.6.1 + jasmine2-atom-matchers: 1.1.5_jasmine@3.6.1 + jasmine2-focused: 1.1.1_jasmine@3.6.1 + jasmine2-json: 1.1.1_jasmine@3.6.1 + jasmine2-tagged: 1.1.1_jasmine@3.6.1 semver: 7.3.2 temp: 0.9.1 underscore-plus: 1.7.0 dev: true resolution: - integrity: sha512-8Dy3m2rSCKq6WjWE5kUikVwvHqpIKbzeA8DTrGEyq0bQspwxWkowWBeK80dy+l65E++kniOYH+b/2OYFsWB6Bw== + integrity: sha512-pdT6DxRmDsss0To94tEDYedpTwX4ChSc3c8ZSMdjk1aPM7n/0VGIQyUQHOPjvtyDLJArchr/m3KVxG1tM8cgSA== /atom-languageclient/0.9.9: dependencies: fuzzaldrin-plus: 0.6.0 @@ -1911,13 +1919,13 @@ packages: dev: true resolution: integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= - /babel-eslint/10.1.0_eslint@7.4.0: + /babel-eslint/10.1.0_eslint@7.6.0: dependencies: '@babel/code-frame': 7.10.4 '@babel/parser': 7.11.3 '@babel/traverse': 7.11.0 '@babel/types': 7.11.0 - eslint: 7.4.0 + eslint: 7.6.0 eslint-visitor-keys: 1.3.0 resolve: 1.17.0 dev: true @@ -1956,29 +1964,29 @@ packages: dev: true resolution: integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== - /babel-preset-atomic/1.0.7_d72946d1a81dd74f7df92ec0224a35e0: - dependencies: - '@babel/cli': 7.10.5_@babel+core@7.10.5 - '@babel/core': 7.10.5 - '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-decorators': 7.10.5_@babel+core@7.10.5 - '@babel/plugin-proposal-do-expressions': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-export-default-from': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-export-namespace-from': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-function-bind': 7.10.5_@babel+core@7.10.5 - '@babel/plugin-proposal-function-sent': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-logical-assignment-operators': 7.11.0_@babel+core@7.10.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-numeric-separator': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-proposal-optional-chaining': 7.11.0_@babel+core@7.10.5 - '@babel/plugin-proposal-pipeline-operator': 7.10.5_@babel+core@7.10.5 - '@babel/plugin-proposal-throw-expressions': 7.10.4_@babel+core@7.10.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.10.5 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.10.5 - '@babel/preset-env': 7.11.0_@babel+core@7.10.5 - '@babel/preset-flow': 7.10.4_@babel+core@7.10.5 - '@babel/preset-react': 7.10.4_@babel+core@7.10.5 + /babel-preset-atomic/1.0.7_85545ff2d5eda21cd5151f447bb4f089: + dependencies: + '@babel/cli': 7.10.5_@babel+core@7.11.1 + '@babel/core': 7.11.1 + '@babel/plugin-proposal-class-properties': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-decorators': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-proposal-do-expressions': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-export-default-from': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-export-namespace-from': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-function-bind': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-proposal-function-sent': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-json-strings': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-logical-assignment-operators': 7.11.0_@babel+core@7.11.1 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-numeric-separator': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-proposal-optional-chaining': 7.11.0_@babel+core@7.11.1 + '@babel/plugin-proposal-pipeline-operator': 7.10.5_@babel+core@7.11.1 + '@babel/plugin-proposal-throw-expressions': 7.10.4_@babel+core@7.11.1 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.11.1 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.11.1 + '@babel/preset-env': 7.11.0_@babel+core@7.11.1 + '@babel/preset-flow': 7.10.4_@babel+core@7.11.1 + '@babel/preset-react': 7.10.4_@babel+core@7.11.1 babel-plugin-add-module-exports: 1.0.2 dev: true peerDependencies: @@ -2487,6 +2495,12 @@ packages: node: '>= 6' resolution: integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== + /commander/6.0.0: + dev: true + engines: + node: '>= 6' + resolution: + integrity: sha512-s7EA+hDtTYNhuXkTlhqew4txMZVdszBmKWSPEMxGr8ru8JXR7bLUFIAtPhcSuFdJQ0ILMxnJi8GkQL0yvDy/YA== /commondir/1.0.1: dev: true resolution: @@ -2941,11 +2955,11 @@ packages: node: '>=0.8.0' resolution: integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - /eslint-config-airbnb-base/14.2.0_c68bb5016e109f58285db45d8cc55073: + /eslint-config-airbnb-base/14.2.0_2d0a3b79766400155c8e1793948754aa: dependencies: confusing-browser-globals: 1.0.9 - eslint: 7.4.0 - eslint-plugin-import: 2.22.0_eslint@7.4.0 + eslint: 7.6.0 + eslint-plugin-import: 2.22.0_eslint@7.6.0 object.assign: 4.1.0 object.entries: 1.1.2 dev: true @@ -2956,13 +2970,13 @@ packages: eslint-plugin-import: ^2.21.2 resolution: integrity: sha512-Snswd5oC6nJaevs3nZoLSTvGJBvzTfnBqOIArkf3cbyTyq9UD79wOk8s+RiL6bhca0p/eRO6veczhf6A/7Jy8Q== - /eslint-config-airbnb/18.2.0_b01f67fb55d24315aa8a8d1591dff7e3: + /eslint-config-airbnb/18.2.0_9a6c542908500e630401e5fb85354c15: dependencies: - eslint: 7.4.0 - eslint-config-airbnb-base: 14.2.0_c68bb5016e109f58285db45d8cc55073 - eslint-plugin-import: 2.22.0_eslint@7.4.0 - eslint-plugin-jsx-a11y: 6.3.1_eslint@7.4.0 - eslint-plugin-react: 7.20.5_eslint@7.4.0 + eslint: 7.6.0 + eslint-config-airbnb-base: 14.2.0_2d0a3b79766400155c8e1793948754aa + eslint-plugin-import: 2.22.0_eslint@7.6.0 + eslint-plugin-jsx-a11y: 6.3.1_eslint@7.6.0 + eslint-plugin-react: 7.20.5_eslint@7.6.0 object.assign: 4.1.0 object.entries: 1.1.2 dev: true @@ -2976,20 +2990,20 @@ packages: eslint-plugin-react-hooks: ^4 || ^3 || ^2.3.0 || ^1.7.0 resolution: integrity: sha512-Fz4JIUKkrhO0du2cg5opdyPKQXOI2MvF8KUvN2710nJMT6jaRUpRE2swrJftAjVGL7T1otLM5ieo5RqS1v9Udg== - /eslint-config-atomic/1.3.0_eslint@7.4.0: + /eslint-config-atomic/1.3.0_eslint@7.6.0: dependencies: - '@babel/core': 7.10.5 - '@typescript-eslint/eslint-plugin': 3.9.0_c5500b8257270e095bba2b64ac58386a - '@typescript-eslint/parser': 3.9.0_eslint@7.4.0+typescript@3.9.7 - babel-eslint: 10.1.0_eslint@7.4.0 + '@babel/core': 7.11.1 + '@typescript-eslint/eslint-plugin': 3.9.0_d6577319693733c9ab4cf1a59ecb806a + '@typescript-eslint/parser': 3.9.0_eslint@7.6.0+typescript@3.9.7 + babel-eslint: 10.1.0_eslint@7.6.0 coffeescript: 1.12.7 - eslint: 7.4.0 - eslint-config-prettier: 6.11.0_eslint@7.4.0 - eslint-plugin-coffee: 0.1.12_eslint@7.4.0 + eslint: 7.6.0 + eslint-config-prettier: 6.11.0_eslint@7.6.0 + eslint-plugin-coffee: 0.1.12_eslint@7.6.0 eslint-plugin-json: 2.1.2 eslint-plugin-only-warn: 1.0.2 - eslint-plugin-prettier: 3.1.4_eslint@7.4.0+prettier@2.0.5 - eslint-plugin-react: 7.20.5_eslint@7.4.0 + eslint-plugin-prettier: 3.1.4_eslint@7.6.0+prettier@2.0.5 + eslint-plugin-react: 7.20.5_eslint@7.6.0 eslint-plugin-yaml: 0.3.0 prettier: 2.0.5 typescript: 3.9.7 @@ -2998,9 +3012,9 @@ packages: eslint: '>=7' resolution: integrity: sha512-2IF9cQD3gUoWW3IZkQEqSHKFJDi1FqK7V8ntN39xlg7jdyfkoveQWHaD7MHTEkjRPIF0zd7ILEoL0T6iqyYNHA== - /eslint-config-prettier/6.11.0_eslint@7.4.0: + /eslint-config-prettier/6.11.0_eslint@7.6.0: dependencies: - eslint: 7.4.0 + eslint: 7.6.0 get-stdin: 6.0.0 dev: true hasBin: true @@ -3024,20 +3038,20 @@ packages: node: '>=4' resolution: integrity: sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== - /eslint-plugin-coffee/0.1.12_eslint@7.4.0: + /eslint-plugin-coffee/0.1.12_eslint@7.6.0: dependencies: axe-core: 3.5.5 babel-eslint: 7.2.3 babylon: 7.0.0-beta.47 coffeescript: 2.5.1 doctrine: 2.1.0 - eslint: 7.4.0 - eslint-config-airbnb: 18.2.0_b01f67fb55d24315aa8a8d1591dff7e3 - eslint-config-airbnb-base: 14.2.0_c68bb5016e109f58285db45d8cc55073 - eslint-plugin-import: 2.22.0_eslint@7.4.0 - eslint-plugin-jsx-a11y: 6.3.1_eslint@7.4.0 - eslint-plugin-react: 7.20.5_eslint@7.4.0 - eslint-plugin-react-native: 3.8.1_eslint@7.4.0 + eslint: 7.6.0 + eslint-config-airbnb: 18.2.0_9a6c542908500e630401e5fb85354c15 + eslint-config-airbnb-base: 14.2.0_2d0a3b79766400155c8e1793948754aa + eslint-plugin-import: 2.22.0_eslint@7.6.0 + eslint-plugin-jsx-a11y: 6.3.1_eslint@7.6.0 + eslint-plugin-react: 7.20.5_eslint@7.6.0 + eslint-plugin-react-native: 3.8.1_eslint@7.6.0 eslint-scope: 3.7.3 eslint-utils: 1.4.3 eslint-visitor-keys: 1.3.0 @@ -3048,14 +3062,14 @@ packages: eslint: '>=6.0.0' resolution: integrity: sha512-ThsCQLHhuxpQrqV7mH5+Xlf6Zt3rrzAgkvoduhdzoIwa8xRLxXUahAW1R3FGT/ci04f+8Z9kqlz52/9QtVWxtw== - /eslint-plugin-import/2.22.0_eslint@7.4.0: + /eslint-plugin-import/2.22.0_eslint@7.6.0: dependencies: array-includes: 3.1.1 array.prototype.flat: 1.2.3 contains-path: 0.1.0 debug: 2.6.9 doctrine: 1.5.0 - eslint: 7.4.0 + eslint: 7.6.0 eslint-import-resolver-node: 0.3.4 eslint-module-utils: 2.6.0 has: 1.0.3 @@ -3080,7 +3094,7 @@ packages: node: '>=8.10.0' resolution: integrity: sha512-isM/fsUxS4wN1+nLsWoV5T4gLgBQnsql3nMTr8u+cEls1bL8rRQO5CP5GtxJxaOfbcKqnz401styw+H/P+e78Q== - /eslint-plugin-jsx-a11y/6.3.1_eslint@7.4.0: + /eslint-plugin-jsx-a11y/6.3.1_eslint@7.6.0: dependencies: '@babel/runtime': 7.11.2 aria-query: 4.2.2 @@ -3090,7 +3104,7 @@ packages: axobject-query: 2.2.0 damerau-levenshtein: 1.0.6 emoji-regex: 9.0.0 - eslint: 7.4.0 + eslint: 7.6.0 has: 1.0.3 jsx-ast-utils: 2.4.1 language-tags: 1.0.5 @@ -3107,9 +3121,9 @@ packages: node: '>=6' resolution: integrity: sha512-DCG8vuUynDnyfkm0POT50JoE9VJfbtKf+COHn3q79+ExW4dg9ZWM/hsMWX1mjZqxMjQledL/9TmGipon/vwWmw== - /eslint-plugin-prettier/3.1.4_eslint@7.4.0+prettier@2.0.5: + /eslint-plugin-prettier/3.1.4_eslint@7.6.0+prettier@2.0.5: dependencies: - eslint: 7.4.0 + eslint: 7.6.0 prettier: 2.0.5 prettier-linter-helpers: 1.0.0 dev: true @@ -3124,21 +3138,21 @@ packages: dev: true resolution: integrity: sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g== - /eslint-plugin-react-native/3.8.1_eslint@7.4.0: + /eslint-plugin-react-native/3.8.1_eslint@7.6.0: dependencies: - eslint: 7.4.0 + eslint: 7.6.0 eslint-plugin-react-native-globals: 0.1.2 dev: true peerDependencies: eslint: ^3.17.0 || ^4 || ^5 || ^6 resolution: integrity: sha512-6Z4s4nvgFRdda/1s1+uu4a6EMZwEjjJ9Bk/1yBImv0fd9U2CsGu2cUakAtV83cZKhizbWhSouXoaK4JtlScdFg== - /eslint-plugin-react/7.20.5_eslint@7.4.0: + /eslint-plugin-react/7.20.5_eslint@7.6.0: dependencies: array-includes: 3.1.1 array.prototype.flatmap: 1.2.3 doctrine: 2.1.0 - eslint: 7.4.0 + eslint: 7.6.0 has: 1.0.3 jsx-ast-utils: 2.4.1 object.entries: 1.1.2 @@ -3201,7 +3215,7 @@ packages: node: '>=4' resolution: integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== - /eslint/7.4.0: + /eslint/7.6.0: dependencies: '@babel/code-frame': 7.10.4 ajv: 6.12.3 @@ -3244,7 +3258,7 @@ packages: node: ^10.12.0 || >=12.0.0 hasBin: true resolution: - integrity: sha512-gU+lxhlPHu45H3JkEGgYhWhkR9wLHHEXC9FbWFnTlEkbKyZKWgWRLgf61E8zWmBuI6g5xKBph9ltg3NtZMVF8g== + integrity: sha512-QlAManNtqr7sozWm5TF4wIH9gmUm2hE3vNRUvyoYAa4y1l5/jxD/PQStEjBMQtCqZmSep8UxrcecI60hOpe61w== /espree/7.2.0: dependencies: acorn: 7.4.0 @@ -4263,22 +4277,42 @@ packages: dev: true resolution: integrity: sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= - /jasmine-core/3.5.0: - dev: true - resolution: - integrity: sha512-nCeAiw37MIMA9w9IXso7bRaLl+c/ef3wnxsoSAlYrzS+Ot0zTG6nU8G/cIfGkqpkjX2wNaIW9RFG0TwIFnG6bA== /jasmine-core/3.6.0: dev: true resolution: integrity: sha512-8uQYa7zJN8hq9z+g8z1bqCfdC8eoDAeVnM5sfqs7KHv9/ifoJ500m018fpFc7RDaO6SWCLCXwo/wPSNcdYTgcw== - /jasmine/3.5.0: + /jasmine-local-storage/1.1.1_jasmine@3.6.1: dependencies: - glob: 7.1.6 - jasmine-core: 3.5.0 + jasmine: 3.6.1 dev: true - hasBin: true + peerDependencies: + jasmine: '>=2 <4' + resolution: + integrity: sha512-GBqtas3l8SBo39NwjbHuzWhQhgHabq/mVVDabGvKLUXRFH8GtPy4jPKRIMDLWC+q7S+q4M6pIY4OHoVuU8hsCQ== + /jasmine-pass/1.1.0_jasmine@3.6.1: + dependencies: + jasmine: 3.6.1 + dev: true + peerDependencies: + jasmine: <4 + resolution: + integrity: sha512-gtsHtIj1zNS/90REIpyDH2HRSW7vFwKMau5A2hcfL/RsSwUiKAS8EdOY1Z67m8giyaUMe7I8O7SzJF2oevCX0A== + /jasmine-should-fail/1.1.7_jasmine@3.6.1: + dependencies: + jasmine: 3.6.1 + dev: true + peerDependencies: + jasmine: '>=2 <4' + resolution: + integrity: sha512-MNtae0/NUAU0OknPcM4cTA04JEXmxMH0+hqZxBjdt4+8LvDqm+oYIQcY70OqpRwVhTTcAyG7HxiPw/4AGlxfgw== + /jasmine-unspy/1.1.0_jasmine@3.6.1: + dependencies: + jasmine: 3.6.1 + dev: true + peerDependencies: + jasmine: '>=2 <4' resolution: - integrity: sha512-DYypSryORqzsGoMazemIHUfMkXM7I7easFaxAvNM3Mr6Xz3Fy36TupTrAOxZWN8MVKEU5xECv22J4tUQf3uBzQ== + integrity: sha512-TlddbVtz9FiVmgz4qw89LZj2K8Oq3/ojGfA4L8NDiJJEJ9OuAk6Y+OpVJZTxvoqIn4tWfV/9CES8rpgku9POeQ== /jasmine/3.6.1: dependencies: fast-glob: 2.2.7 @@ -4287,6 +4321,40 @@ packages: hasBin: true resolution: integrity: sha512-Jqp8P6ZWkTVFGmJwBK46p+kJNrZCdqkQ4GL+PGuBXZwK1fM4ST9BizkYgIwCFqYYqnTizAy6+XG2Ej5dFrej9Q== + /jasmine2-atom-matchers/1.1.5_jasmine@3.6.1: + dependencies: + jasmine: 3.6.1 + jquery: 3.5.1 + underscore-plus: 1.7.0 + dev: true + peerDependencies: + jasmine: '>=2 <4' + resolution: + integrity: sha512-KZYHnEgUNTHSWdmjq99G9WgQ8Sx5EFLh+YeJF/AIL0gTB1yy6vziKoQHpxfQe8DJRn3y+d/XEbIF6BODyPezyg== + /jasmine2-focused/1.1.1_jasmine@3.6.1: + dependencies: + jasmine: 3.6.1 + dev: true + peerDependencies: + jasmine: '>=2 <4' + resolution: + integrity: sha512-2NnQD+Lwqu/0RIVentOiDtdsjhP/4jJooG88rQC3A6lKHxnm2d9Q/wGbQBDZlIA7bDUrQpuHZ6d2A/lACLwfhQ== + /jasmine2-json/1.1.1_jasmine@3.6.1: + dependencies: + jasmine: 3.6.1 + dev: true + peerDependencies: + jasmine: '>=2 <4' + resolution: + integrity: sha512-D8dFHVDsDZpqgYK4eR3SYkMXypRjK0MpnHzVkO38ByXe7R3QaZDsoRt3Kh4rqI1U4iq9hkxHuKr+gy+OzuL+8g== + /jasmine2-tagged/1.1.1_jasmine@3.6.1: + dependencies: + jasmine: 3.6.1 + dev: true + peerDependencies: + jasmine: '>=2 <4' + resolution: + integrity: sha512-PK/83f9hBI6R/gGZ8zEYHt4OUtZu3xpcoUFICMBVsdbbanrhCCNC3EkWldIQgvuSHaUMhVptXAihWjNJI3uiRw== /jest-worker/26.3.0: dependencies: '@types/node': 14.0.27 @@ -4301,6 +4369,10 @@ packages: dev: true resolution: integrity: sha1-o6vicYryQaKykE+EpiWXDzia4yo= + /jquery/3.5.1: + dev: true + resolution: + integrity: sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg== /js-tokens/3.0.2: dev: true resolution: @@ -4409,6 +4481,10 @@ packages: graceful-fs: 4.2.4 resolution: integrity: sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg== + /jsonlines/0.1.1: + dev: true + resolution: + integrity: sha1-T80kbcXQ44aRkHxEqwAveC0dlMw= /jsonparse/1.3.1: dev: true engines: @@ -4872,10 +4948,6 @@ packages: dev: true resolution: integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= - /nested-error-stacks/2.0.1: - dev: true - resolution: - integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A== /node-gyp/6.1.0: dependencies: env-paths: 2.2.0 @@ -4943,15 +5015,16 @@ packages: dev: true resolution: integrity: sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== - /npm-check-updates/7.0.2: + /npm-check-updates/7.1.0: dependencies: chalk: 4.1.0 cint: 8.2.1 cli-table: 0.3.1 - commander: 5.1.0 + commander: 6.0.0 find-up: 4.1.0 get-stdin: 8.0.0 json-parse-helpfulerror: 1.0.3 + jsonlines: 0.1.1 libnpmconfig: 1.2.1 lodash: 4.17.19 p-map: 4.0.0 @@ -4959,7 +5032,6 @@ packages: progress: 2.0.3 prompts: 2.3.2 rc-config-loader: 3.0.0 - requireg: 0.2.2 semver: 7.3.2 semver-utils: 1.1.4 spawn-please: 0.3.0 @@ -4969,7 +5041,7 @@ packages: node: '>=10.17' hasBin: true resolution: - integrity: sha512-MyH17fUCFbYShuIyxZj6yqB6YZ47+AjPCgXQiH1oqNe3vElBoJ0toY7nwy88qJbfXnFqjTFigzs9lsoKSK0iUw== + integrity: sha512-xxEObkGnT361LY57GY/+FQUgCARoAeRfIU5M2GxnESoZFMeDv1W7Ck01MBswyTEQgjD4A3HBolcBTYaJsSl03A== /npm-install-checks/4.0.0: dependencies: semver: 7.3.2 @@ -5755,16 +5827,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - /requireg/0.2.2: - dependencies: - nested-error-stacks: 2.0.1 - rc: 1.2.8 - resolve: 1.7.1 - dev: true - engines: - node: '>= 4.0.0' - resolution: - integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg== /resolve-from/4.0.0: dev: true engines: @@ -5782,12 +5844,6 @@ packages: dev: true resolution: integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== - /resolve/1.7.1: - dependencies: - path-parse: 1.0.6 - dev: true - resolution: - integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw== /responselike/1.0.2: dependencies: lowercase-keys: 1.0.1 @@ -5825,10 +5881,10 @@ packages: hasBin: true resolution: integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - /rollup-plugin-atomic/1.2.0_664370b78d78fc72308f428cb2dcc590: + /rollup-plugin-atomic/1.2.0_6be78e0098e3f86f4b2912094ecea11b: dependencies: - '@babel/core': 7.10.5 - '@rollup/plugin-babel': 5.1.0_@babel+core@7.10.5+rollup@2.23.1 + '@babel/core': 7.11.1 + '@rollup/plugin-babel': 5.1.0_@babel+core@7.11.1+rollup@2.23.1 '@rollup/plugin-commonjs': 14.0.0_rollup@2.23.1 '@rollup/plugin-json': 4.1.0_rollup@2.23.1 '@rollup/plugin-node-resolve': 8.4.0_rollup@2.23.1 @@ -6540,7 +6596,7 @@ packages: hasBin: true resolution: integrity: sha512-xPw9PgNPLG3iKRxmK7DWr+Ea/SzrvfHtjFt5LBl61gk2UBG/DB9kCXRjv+xyIU1rUtnayLeMUVJBcMX8Z17nDg== - /tslint/6.1.2_typescript@3.9.7: + /tslint/6.1.3_typescript@3.9.7: dependencies: '@babel/code-frame': 7.10.4 builtin-modules: 1.1.1 @@ -6556,15 +6612,14 @@ packages: tslib: 1.13.0 tsutils: 2.29.0_typescript@3.9.7 typescript: 3.9.7 - deprecated: 'TSLint has been deprecated in favor of ESLint. Please see https://github.com/palantir/tslint/issues/4534 for more information.' dev: true engines: node: '>=4.8.0' hasBin: true peerDependencies: - typescript: '>=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev' + typescript: '>=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 4.0.0-dev' resolution: - integrity: sha512-UyNrLdK3E0fQG/xWNqAFAC5ugtFyPO4JJR1KyyfQAyzR8W0fTRrC91A8Wej4BntFzcvETdCSDa/4PnNYJQLYiA== + integrity: sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg== /tsutils/2.29.0_typescript@3.9.7: dependencies: tslib: 1.13.0 @@ -6915,28 +6970,28 @@ packages: integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== specifiers: '@babel/cli': 7.10.5 - '@babel/core': 7.10.5 + '@babel/core': 7.11.1 '@types/atom': 1.40.4 - '@types/dompurify': 2.0.2 - '@types/jasmine': ^3.5.11 + '@types/dompurify': 2.0.3 + '@types/jasmine': ^3.5.12 '@types/marked': ^1.1.0 - '@types/node': ^14.0.23 - atom-jasmine3-test-runner: ^4.4.8 + '@types/node': ^14.0.27 + atom-jasmine3-test-runner: ^5.0.5 atom-languageclient: ^0.9.9 - babel-preset-atomic: latest + babel-preset-atomic: ^1.0.7 build-commit: 0.1.1 cross-env: ^7.0.2 dompurify: ^2.0.12 - eslint: 7.4.0 - eslint-config-atomic: ^1.0.0 - jasmine: ^3.5.0 + eslint: 7.6.0 + eslint-config-atomic: ^1.3.0 + jasmine: ^3.6.1 marked: ^1.1.1 - npm-check-updates: 7.0.2 + npm-check-updates: 7.1.0 prettier: ^2.0.5 - rollup: ^2.21.0 - rollup-plugin-atomic: ^1.0.2 + rollup: ^2.23.1 + rollup-plugin-atomic: ^1.2.0 shx: ^0.3.2 - tslib: ^2.0.0 - tslint: 6.1.2 + tslib: ^2.0.1 + tslint: 6.1.3 tslint-config-prettier: 1.18.0 typescript: ^3.9.7 diff --git a/rollup.config.js b/rollup.config.js index e064616..4bedba5 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,6 +1,6 @@ import { createPlugins } from "rollup-plugin-atomic" -const plugins = createPlugins(["js"], true) +const plugins = createPlugins(["js", "babel"]) export default [ { diff --git a/script/install-package-deps.js b/script/install-package-deps.js new file mode 100644 index 0000000..943c5b8 --- /dev/null +++ b/script/install-package-deps.js @@ -0,0 +1,9 @@ +const { execSync } = require("child_process") + +const pkg = require("../package.json") +if (pkg["package-deps"]) { + const deps = Array.from(pkg["package-deps"]) + for (const dep of deps) { + execSync(`apm install ${dep}`) + } +}