diff --git a/.babelrc.json b/.babelrc.json new file mode 100644 index 0000000..7e41953 --- /dev/null +++ b/.babelrc.json @@ -0,0 +1,3 @@ +{ + "extends": "@dword-design/babel-config" +} \ No newline at end of file diff --git a/.commitlintrc.json b/.commitlintrc.json new file mode 100644 index 0000000..7af3538 --- /dev/null +++ b/.commitlintrc.json @@ -0,0 +1,10 @@ +{ + "extends": [ + "@commitlint/config-conventional" + ], + "rules": { + "footer-max-line-length": [ + 0 + ] + } +} \ No newline at end of file diff --git a/.cz.json b/.cz.json new file mode 100644 index 0000000..d1bcc20 --- /dev/null +++ b/.cz.json @@ -0,0 +1,3 @@ +{ + "path": "cz-conventional-changelog" +} diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b4e3016 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# Editor configuration, see http://editorconfig.org +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +max_line_length = off +trim_trailing_whitespace = false \ No newline at end of file diff --git a/.gitattributes b/.gitattributes index 6313b56..73c763e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,3 @@ * text=auto eol=lf +*.jpg filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90f300f..a8de0d2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,55 +1,70 @@ -name: build - -on: - push: - branches: - - '**' - jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [macos-latest, windows-latest, ubuntu-latest] - node: [10, 12] - exclude: - - os: macos-latest - node: 10 - - os: windows-latest - node: 10 + cancel-existing: + if: "!contains(github.event.head_commit.message, '[skip ci]')" + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node }} - - run: yarn --frozen-lockfile - - run: yarn test - - name: Coveralls - run: yarn dw-ci coveralls - env: - COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COVERALLS_SERVICE_NAME: github - COVERALLS_GIT_COMMIT: ${{ github.sha }} - COVERALLS_GIT_BRANCH: ${{ github.ref }} - + - env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: rokroskar/workflow-run-cleanup-action@v0.3.0 release: needs: test - if: github.ref == 'refs/heads/master' runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: node-version: 12 + - run: git config --global user.email "actions@github.com" + - run: git config --global user.name "GitHub Actions" - run: yarn --frozen-lockfile - - name: Push changed files - run: yarn dw-ci push-changed-files - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - run: yarn lint + - env: GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }} - - name: Release - env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + name: Push changed files + run: yarn dw-ci push-changed-files + - env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: | - yarn semantic-release \ No newline at end of file + if: github.ref == 'refs/heads/master' + name: Release + run: yarn semantic-release + test: + needs: cancel-existing + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node }} + - run: yarn --frozen-lockfile + - run: yarn lint + - run: yarn test + - run: yarn check-unknown-files + - env: + COVERALLS_GIT_BRANCH: ${{ github.ref }} + COVERALLS_GIT_COMMIT: ${{ github.sha }} + COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_SERVICE_NAME: github + if: matrix.os == 'ubuntu-latest' && matrix.node == 12 + name: Coveralls + run: yarn dw-ci coveralls + strategy: + matrix: + exclude: + - node: 10 + os: macos-latest + - node: 10 + os: windows-latest + node: + - 10 + - 12 + os: + - macos-latest + - windows-latest + - ubuntu-latest +name: build +on: + push: + branches: + - "**" diff --git a/.gitignore b/.gitignore index 87bc275..78e16c6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,8 @@ .DS_Store -/.cz.json -/.editorconfig -/.env +/.env.json /.eslintrc.json /.nyc_output -/.releaserc.json -/.vscode +/.test.env.json /coverage /dist /node_modules diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 062aec9..2b1cd2e 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,3 +1,4 @@ -FROM gitpod/workspace-full +# Need to add :latest, otherwise old versions (e.g. of node) are installed +FROM gitpod/workspace-full:latest -RUN sudo apt-get update && sudo apt-get install -y libgtk-3-0 libx11-xcb1 libnss3 libxss1 libasound2 \ No newline at end of file +RUN sudo apt-get update && sudo apt-get install -y libgtk-3-0 libx11-xcb1 libnss3 libxss1 libasound2 libgbm1 \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml index aca65b8..8672186 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,10 +1,11 @@ image: file: .gitpod.Dockerfile - + tasks: - init: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >>~/.npmrc - init: yarn --frozen-lockfile vscode: extensions: - - karlito40.fix-irregular-whitespace@0.0.3:8jjyZYuYF6yW6nwsAiulrg== \ No newline at end of file + - karlito40.fix-irregular-whitespace@0.0.3:8jjyZYuYF6yW6nwsAiulrg== + - adrianwilczynski.toggle-hidden@1.0.2:pj4yxebPvdfdMeVIjOEuRQ== \ No newline at end of file diff --git a/.huskyrc.json b/.huskyrc.json new file mode 100644 index 0000000..0580fc5 --- /dev/null +++ b/.huskyrc.json @@ -0,0 +1,6 @@ +{ + "hooks": { + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" + }, + "skipCI": false +} \ No newline at end of file diff --git a/.releaserc.json b/.releaserc.json new file mode 100644 index 0000000..81ecd48 --- /dev/null +++ b/.releaserc.json @@ -0,0 +1,15 @@ +{ + "plugins": [ + "@semantic-release/commit-analyzer", + "@semantic-release/release-notes-generator", + "@semantic-release/changelog", + "@semantic-release/npm", + "@semantic-release/github", + [ + "@semantic-release/git", + { + "message": "chore: ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" + } + ] + ] +} \ No newline at end of file diff --git a/.renovaterc.json b/.renovaterc.json index 6b77d5c..a7f06eb 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -2,6 +2,10 @@ "extends": [ ":semanticCommits" ], + "labels": [ + "maintenance" + ], + "semanticCommitScope": null, "packageRules": [ { "packagePatterns": [ @@ -20,7 +24,6 @@ } ], "lockFileMaintenance": { - "enabled": true, - "schedule": "at any time" + "enabled": true } -} +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..5b14df2 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,24 @@ +{ + "files.exclude": { + ".babelrc.json": true, + ".commitlintrc.json": true, + ".cz.json": true, + ".editorconfig": true, + ".eslintrc.json": true, + ".gitattributes": true, + ".github": true, + ".gitignore": true, + ".gitpod.Dockerfile": true, + ".gitpod.yml": true, + ".huskyrc.json": true, + ".nyc_output": true, + ".releaserc.json": true, + ".renovaterc.json": true, + "CHANGELOG.md": true, + "LICENSE.md": true, + "coverage": true, + "dist": true, + "node_modules": true, + "yarn.lock": true + } +} \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md index ae0fa75..1b43a32 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -10,10 +10,12 @@ and licensed under: ## MIT License -MIT License Copyright (c) +MIT License + +Copyright (c) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index 776a33f..04aa9d7 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,32 @@ [![NPM version](https://img.shields.io/npm/v/package-name-regex.svg)](https://npmjs.org/package/package-name-regex) ![Linux macOS Windows compatible](https://img.shields.io/badge/os-linux%20%7C%C2%A0macos%20%7C%C2%A0windows-blue) - -[![Build status](https://img.shields.io/github/workflow/status/dword-design/package-name-regex/build)](https://github.com/dword-design/package-name-regex/actions) +[![Build status](https://github.com/dword-design/package-name-regex/workflows/build/badge.svg)](https://github.com/dword-design/package-name-regex/actions) [![Coverage status](https://img.shields.io/coveralls/dword-design/package-name-regex)](https://coveralls.io/github/dword-design/package-name-regex) [![Dependency status](https://img.shields.io/david/dword-design/package-name-regex)](https://david-dm.org/dword-design/package-name-regex) ![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen) -[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/dword-design/package-name-regex) + + Open in Gitpod + + Buy Me a Coffee + + PayPal + + Patreon + @@ -20,7 +39,7 @@ Provides a regex that can be used to test if a string is a valid NPM package nam -# Install +## Install ```bash # NPM @@ -46,7 +65,7 @@ packageNameRegex.test('@npm-zors/money!time.js') // false ``` -# License +## License Unless stated otherwise all works are: diff --git a/package.json b/package.json index 42ab4a7..b394c23 100644 --- a/package.json +++ b/package.json @@ -17,14 +17,18 @@ "dist" ], "scripts": { + "check-unknown-files": "base check-unknown-files", "commit": "base commit", - "depgraph": "base depgraph", + "dev": "base dev", + "lint": "base lint", "prepare": "base prepare", "prepublishOnly": "base prepublishOnly", - "release": "base release", "test": "base test" }, "devDependencies": { - "@dword-design/base": "^6.0.0" + "@dword-design/base": "^7.0.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/yarn.lock b/yarn.lock index 65ee602..cfd65b4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -999,11 +999,11 @@ "@babel/plugin-proposal-pipeline-operator" "^7.5.0" "@babel/preset-env" "^7.6.3" "@dword-design/functions" "^2.2.2" - "@vue/babel-preset-jsx" "github:dword-design/jsx#fork-babel-preset-jsx" + "@vue/babel-preset-jsx" dword-design/jsx#fork-babel-preset-jsx babel-plugin-add-module-exports "^1.0.2" babel-plugin-module-resolver "^4.0.0" babel-plugin-transform-imports "^2.0.0" - babel-plugin-wildcard "github:dword-design/babel-plugin-wildcard#fork" + babel-plugin-wildcard dword-design/babel-plugin-wildcard#fork depcheck-package-name "^1.0.0" find-up "^5.0.0" param-case "^3.0.3" @@ -1025,10 +1025,10 @@ execa "^5.0.0" fs-extra "^9.0.0" -"@dword-design/base@^6.0.0": - version "6.32.3" - resolved "https://registry.yarnpkg.com/@dword-design/base/-/base-6.32.3.tgz#2c30f29ca69fc5b99e6faf7da26b61d0acdd1caa" - integrity sha512-/5b5prrq8tqovN0oqkReIWSLtLXx4O4nvYh0S4v99d1g+H6AuLHhHQm5qWqrx7qJW8Szfww2vnVWEdtOLebfwg== +"@dword-design/base@^7.0.0": + version "7.0.2" + resolved "https://registry.yarnpkg.com/@dword-design/base/-/base-7.0.2.tgz#67f37e27355b3b3c4a4a4280129dc88d5dce87f7" + integrity sha512-mZAMmYKSv7+406p6kS37MASQDtqWvTfm3/mpXKOD24xOCnkP0rQfMXj59gUxo+rhTfZF6BvA1Z8l6i1MnDyh9g== dependencies: "@babel/core" "^7.6.4" "@babel/register" "^7.6.2" @@ -1040,12 +1040,12 @@ "@dword-design/functions" "^2.2.2" "@semantic-release/changelog" "^5.0.0" "@semantic-release/git" "^9.0.0" - ajv-cli "^3.0.0" + ajv-cli "^4.0.0" ci-info "^2.0.0" commitizen "^4.0.3" constant-case "^3.0.3" cz-conventional-changelog "^3.1.0" - depcheck "github:dword-design/depcheck#fork" + depcheck dword-design/depcheck#fork depcheck-detector-execa "^1.2.1" depcheck-detector-package-name "^1.0.0" depcheck-package-name "^1.0.0" @@ -1103,7 +1103,7 @@ depcheck-package-name "^1.0.0" eslint-config-airbnb-base "^14.2.1" eslint-config-prettier "^7.0.0" - eslint-import-resolver-babel-module "github:dword-design/eslint-import-resolver-babel-module#fork" + eslint-import-resolver-babel-module dword-design/eslint-import-resolver-babel-module#fork eslint-plugin-import "^2.22.1" eslint-plugin-json-format "^2.0.1" eslint-plugin-prefer-arrow "^1.1.6" @@ -1131,7 +1131,7 @@ resolved "https://registry.yarnpkg.com/@dword-design/functions/-/functions-1.1.5.tgz#0b39b7a15ed2b162641991c6950cca9844f4cd4e" integrity sha512-j/pqGY6PC/8ccXM+SMxekarpwsHsDPOUkia+Eu/28ZTx3FQ2mUDb0EEAmFj9OwEXIjVvU+F710Wh0fBB7/9eyg== dependencies: - endent "github:dword-design/endent#fork" + endent dword-design/endent#fork lodash "^4.17.15" tinycolor2 "^1.4.1" @@ -1543,7 +1543,6 @@ "@vue/babel-preset-jsx@github:dword-design/jsx#fork-babel-preset-jsx": version "1.1.2" - uid a73cb9961541a60a66b1b99a69a32e00bc66d336 resolved "https://codeload.github.com/dword-design/jsx/tar.gz/a73cb9961541a60a66b1b99a69a32e00bc66d336" dependencies: "@vue/babel-helper-vue-jsx-merge-props" "^1.0.0" @@ -1562,7 +1561,6 @@ "@vue/babel-sugar-inject-h@dword-design/jsx#fork-babel-sugar-inject-h": version "1.1.2" - uid cc36a2200c059120f37944615fb2ec0e22f8f3cc resolved "https://codeload.github.com/dword-design/jsx/tar.gz/cc36a2200c059120f37944615fb2ec0e22f8f3cc" dependencies: "@babel/plugin-syntax-jsx" "^7.2.0" @@ -1647,39 +1645,20 @@ aggregate-error@^3.0.0: clean-stack "^2.0.0" indent-string "^4.0.0" -ajv-cli@^3.0.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/ajv-cli/-/ajv-cli-3.3.0.tgz#dd72207f5395051db7d620ab7d4da1cec3d50f06" - integrity sha512-4eiNNjDlainn5Rm+rU3egxLUUxzevcB+gviBLs9sm6etHNrE7l2JSQ3yoz5hE+eqrth3pTygELOafhSIO8Hiig== +ajv-cli@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ajv-cli/-/ajv-cli-4.1.0.tgz#0fd85dc7524f4f9ea0810ed692ff0f3dab7f7557" + integrity sha512-93vIxvsdJ9NBkkr/1xm6QYLyj9OH1UHWZn8CWM9FnuK15SLaFKb5HYXVVmvzeJS3/sIqKGNC1l/PpduooN8q8A== dependencies: - ajv "^6.7.0" - ajv-pack "^0.3.0" + ajv "^7.1.0" fast-json-patch "^2.0.0" glob "^7.1.0" - js-yaml "^3.13.1" - json-schema-migrate "^0.2.0" + js-yaml "^3.14.0" + json-schema-migrate "^1.1.0" json5 "^2.1.3" minimist "^1.2.0" -ajv-pack@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/ajv-pack/-/ajv-pack-0.3.1.tgz#b72c4d4219e3928e62842d742ded93bf50796560" - integrity sha1-tyxNQhnjko5ihC10Le2Tv1B5ZWA= - dependencies: - js-beautify "^1.6.4" - require-from-string "^1.2.0" - -ajv@^5.0.0: - version "5.5.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" - integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= - dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" - -ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.7.0: +ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -1689,7 +1668,7 @@ ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.7.0: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ajv@^7.0.2: +ajv@^7.0.0-beta.9, ajv@^7.0.2, ajv@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.1.0.tgz#f982ea7933dc7f1012eae9eec5a86687d805421b" integrity sha512-svS9uILze/cXbH0z2myCK2Brqprx/+JJYK5pHicT/GQiBfzzhUVAIT6MwqJg8y4xV/zoGsUeuPuwtoiKSGE15g== @@ -1994,7 +1973,6 @@ babel-plugin-transform-imports@^2.0.0: "babel-plugin-wildcard@github:dword-design/babel-plugin-wildcard#fork": version "6.0.0" - uid "691d11923ee2dcf63e86f205b0a2c998883e3a3c" resolved "https://codeload.github.com/dword-design/babel-plugin-wildcard/tar.gz/691d11923ee2dcf63e86f205b0a2c998883e3a3c" dependencies: rimraf "^2.6.2" @@ -2428,11 +2406,6 @@ cmd-shim@^3.0.0, cmd-shim@^3.0.3: graceful-fs "^4.1.2" mkdirp "~0.5.0" -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= - code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" @@ -2495,11 +2468,6 @@ combined-stream@^1.0.6, combined-stream@~1.0.6: dependencies: delayed-stream "~1.0.0" -commander@^2.19.0: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - commander@^4.0.1: version "4.1.1" resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" @@ -2664,15 +2632,15 @@ conventional-commits-filter@^2.0.0, conventional-commits-filter@^2.0.7: modify-values "^1.0.0" conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.0.7: - version "3.2.0" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.0.tgz#9e261b139ca4b7b29bcebbc54460da36894004ca" - integrity sha512-XmJiXPxsF0JhAKyfA2Nn+rZwYKJ60nanlbSWwwkGwLQFbugsc0gv1rzc7VbbUWAzJfR1qR87/pNgv9NgmxtBMQ== + version "3.2.1" + resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.1.tgz#ba44f0b3b6588da2ee9fd8da508ebff50d116ce2" + integrity sha512-OG9kQtmMZBJD/32NEw5IhN5+HnBqVjy03eC+I71I0oQRFA5rOgA4OtPOYG7mz1GkCfCNxn3gKIX8EiHJYuf1cA== dependencies: JSONStream "^1.0.4" is-text-path "^1.0.1" lodash "^4.17.15" meow "^8.0.0" - split2 "^2.0.0" + split2 "^3.0.0" through2 "^4.0.0" trim-off-newlines "^1.0.0" @@ -2909,7 +2877,6 @@ dedent@0.7.0: dedent@dword-design/dedent#fork: version "0.7.0" - uid c8d46e5017d60504657c2d01b59082c0329a12a7 resolved "https://codeload.github.com/dword-design/dedent/tar.gz/c8d46e5017d60504657c2d01b59082c0329a12a7" dependencies: babel-plugin-add-module-exports "^1.0.2" @@ -3021,7 +2988,6 @@ depcheck-parser-babel@^1.2.0: "depcheck@github:dword-design/depcheck#fork": version "0.0.1" - uid "8a9eb41006c2c6f9cbd79e4e68bf265e1c1df1dc" resolved "https://codeload.github.com/dword-design/depcheck/tar.gz/8a9eb41006c2c6f9cbd79e4e68bf265e1c1df1dc" dependencies: "@babel/parser" "^7.8.4" @@ -3191,20 +3157,10 @@ editor@~1.0.0: resolved "https://registry.yarnpkg.com/editor/-/editor-1.0.0.tgz#60c7f87bd62bcc6a894fa8ccd6afb7823a24f742" integrity sha1-YMf4e9YrzGqJT6jM1q+3gjok90I= -editorconfig@^0.15.3: - version "0.15.3" - resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5" - integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g== - dependencies: - commander "^2.19.0" - lru-cache "^4.1.5" - semver "^5.6.0" - sigmund "^1.0.1" - electron-to-chromium@^1.3.649: - version "1.3.664" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.664.tgz#8fb039e2fa8ef3ab2568308464a28425d4f6e2a3" - integrity sha512-yb8LrTQXQnh9yhnaIHLk6CYugF/An50T20+X0h++hjjhVfgSp1DGoMSYycF8/aD5eiqS4QwaNhiduFvK8rifRg== + version "1.3.666" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.666.tgz#59f3ce1e45b860a0ebe439b72664354efbb8bc62" + integrity sha512-/mP4HFQ0fKIX4sXltG6kfcoGrfNDZwCIyWbH2SIcVaa9u7Rm0HKjambiHNg5OEruicTl9s1EwbERLwxZwk19aw== emoji-regex@^7.0.1: version "7.0.3" @@ -3232,7 +3188,6 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0: endent@dword-design/endent#fork, "endent@github:dword-design/endent#fork": version "1.4.0" - uid be5433db67eaec07c6c9d00ba3bed2ed946dc664 resolved "https://codeload.github.com/dword-design/endent/tar.gz/be5433db67eaec07c6c9d00ba3bed2ed946dc664" dependencies: dedent dword-design/dedent#fork @@ -3360,7 +3315,6 @@ eslint-config-prettier@^7.0.0: "eslint-import-resolver-babel-module@github:dword-design/eslint-import-resolver-babel-module#fork": version "5.1.2" - uid "97550c5b7626a9cf582ea2392b9749702a27473d" resolved "https://codeload.github.com/dword-design/eslint-import-resolver-babel-module/tar.gz/97550c5b7626a9cf582ea2392b9749702a27473d" dependencies: pkg-up "^2.0.0" @@ -3727,11 +3681,6 @@ extsprintf@^1.2.0: resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= -fast-deep-equal@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" - integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= - fast-deep-equal@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" @@ -4375,9 +4324,9 @@ growl@1.10.5: integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== handlebars@^4.7.6: - version "4.7.6" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" - integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== + version "4.7.7" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== dependencies: minimist "^1.2.5" neo-async "^2.6.0" @@ -5237,17 +5186,6 @@ jest-regex-util@^26.0.0: resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== -js-beautify@^1.6.4: - version "1.13.5" - resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.5.tgz#a08a97890cae55daf1d758d3f6577bd4a64d7014" - integrity sha512-MsXlH6Z/BiRYSkSRW3clNDqDjSpiSNOiG8xYVUBXt4k0LnGvDhlTGOlHX1VFtAdoLmtwjxMG5qiWKy/g+Ipv5w== - dependencies: - config-chain "^1.1.12" - editorconfig "^0.15.3" - glob "^7.1.3" - mkdirp "^1.0.4" - nopt "^5.0.0" - "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -5260,7 +5198,7 @@ js-yaml@4.0.0: dependencies: argparse "^2.0.1" -js-yaml@^3.13.1: +js-yaml@^3.13.1, js-yaml@^3.14.0: version "3.14.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== @@ -5302,17 +5240,12 @@ json-parse-even-better-errors@^2.3.0: resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== -json-schema-migrate@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/json-schema-migrate/-/json-schema-migrate-0.2.0.tgz#ba47a5b0072fc72396460e1bd60b44d52178bbc6" - integrity sha1-ukelsAcvxyOWRg4b1gtE1SF4u8Y= +json-schema-migrate@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/json-schema-migrate/-/json-schema-migrate-1.1.0.tgz#3e886c38a8efdc9fd3c831d450595c5ab7a36b17" + integrity sha512-PggRuqHB+k1OMz0N1vXCMmwwr8cAsKWVOG5jZh1I2xSyePpRoBG6xOlWG50qe2Ca3hxfWWqZHLEYqJw2/4765g== dependencies: - ajv "^5.0.0" - -json-schema-traverse@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" - integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= + ajv "^7.0.0-beta.9" json-schema-traverse@^0.4.1: version "0.4.1" @@ -5834,7 +5767,7 @@ lowercase-keys@^1.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== -lru-cache@^4.0.1, lru-cache@^4.1.5: +lru-cache@^4.0.1: version "4.1.5" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== @@ -6112,11 +6045,6 @@ mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.5, mkdirp@~0.5.0: dependencies: minimist "^1.2.5" -mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - mocha-ui-exports-auto-describe@^1.0.0: version "1.0.7" resolved "https://registry.yarnpkg.com/mocha-ui-exports-auto-describe/-/mocha-ui-exports-auto-describe-1.0.7.tgz#857a13a8139aa66466a133de01078c4ce1a56bcf" @@ -6313,13 +6241,6 @@ nopt@^4.0.1, nopt@^4.0.3: abbrev "1" osenv "^0.1.4" -nopt@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" - integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== - dependencies: - abbrev "1" - normalize-package-data@^2.0.0, normalize-package-data@^2.3.2, normalize-package-data@^2.4.0, normalize-package-data@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" @@ -6500,7 +6421,6 @@ npm@^6.14.9: cmd-shim "^3.0.3" columnify "~1.5.4" config-chain "^1.1.12" - debuglog "*" detect-indent "~5.0.0" detect-newline "^2.1.0" dezalgo "~1.0.3" @@ -6515,7 +6435,6 @@ npm@^6.14.9: has-unicode "~2.0.1" hosted-git-info "^2.8.8" iferr "^1.0.2" - imurmurhash "*" infer-owner "^1.0.4" inflight "~1.0.6" inherits "^2.0.4" @@ -6534,14 +6453,8 @@ npm@^6.14.9: libnpx "^10.2.4" lock-verify "^2.1.0" lockfile "^1.0.4" - lodash._baseindexof "*" lodash._baseuniq "~4.6.0" - lodash._bindcallback "*" - lodash._cacheindexof "*" - lodash._createcache "*" - lodash._getnative "*" lodash.clonedeep "~4.5.0" - lodash.restparam "*" lodash.union "~4.6.0" lodash.uniq "~4.5.0" lodash.without "~4.4.0" @@ -6925,9 +6838,9 @@ p-reduce@^2.0.0: integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw== p-retry@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.3.0.tgz#a31679a66b0261a51fa6c43b19b6f4471a54021e" - integrity sha512-Pow4yaHpOiJou1QcpGcBJhGHiS4782LdDa6GhU91hlaNh3ExOOupjSJcxPQZYmUSZk3Pl2ARz/LRvW8Qu0+3mQ== + version "4.4.0" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.4.0.tgz#fefc2abe883ca7c91ca0dd25060180438b61ebd4" + integrity sha512-gVB/tBsG+3AHI1SyDHRrX6n9ZL0Bcbifps9W9/Bgu3Oyu4/OrAh8SvDzDsvpP0oxfCt3oWNT+0fQ9LyUGwBTLg== dependencies: "@types/retry" "^0.12.0" retry "^0.12.0" @@ -7728,11 +7641,6 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= -require-from-string@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" - integrity sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg= - require-from-string@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" @@ -8050,11 +7958,6 @@ side-channel@^1.0.3, side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" -sigmund@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" - integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA= - signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" @@ -8268,13 +8171,6 @@ split-string@^3.0.1, split-string@^3.0.2: dependencies: extend-shallow "^3.0.0" -split2@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" - integrity sha512-RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw== - dependencies: - through2 "^2.0.2" - split2@^3.0.0: version "3.2.2" resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" @@ -8634,7 +8530,7 @@ text-table@^0.2.0, text-table@~0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= -through2@^2.0.0, through2@^2.0.2, through2@~2.0.0: +through2@^2.0.0, through2@~2.0.0: version "2.0.5" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==