pax_global_header00006660000000000000000000000064142213252140014506gustar00rootroot0000000000000052 comment=ee41ddaffce571498c4f39a4da7894c15b9da65e css-what-6.1.0/000077500000000000000000000000001422132521400132435ustar00rootroot00000000000000css-what-6.1.0/.eslintrc.json000066400000000000000000000047511422132521400160460ustar00rootroot00000000000000{ "extends": ["eslint:recommended", "plugin:node/recommended", "prettier"], "env": { "node": true, "es6": true }, "rules": { "eqeqeq": [2, "smart"], "no-caller": 2, "dot-notation": 2, "no-var": 2, "prefer-const": 2, "prefer-arrow-callback": [2, { "allowNamedFunctions": true }], "arrow-body-style": [2, "as-needed"], "object-shorthand": 2, "prefer-template": 2, "one-var": [2, "never"], "prefer-destructuring": [2, { "object": true }], "capitalized-comments": 2, "multiline-comment-style": [2, "starred-block"], "spaced-comment": 2, "yoda": [2, "never"], "curly": [2, "multi-line"], "no-else-return": 2, "node/no-unsupported-features/es-syntax": [ 2, { "ignores": ["modules"] } ] }, "overrides": [ { "files": "*.ts", "extends": [ "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "prettier" ], "parserOptions": { "sourceType": "module", "project": "./tsconfig.eslint.json" }, "settings": { "node": { "tryExtensions": [".js", ".json", ".node", ".ts"] } }, "rules": { "@typescript-eslint/prefer-for-of": 0, "@typescript-eslint/member-ordering": 0, "@typescript-eslint/explicit-function-return-type": 0, "@typescript-eslint/no-unused-vars": 0, "@typescript-eslint/no-use-before-define": [ 2, { "functions": false } ], "@typescript-eslint/consistent-type-definitions": [ 2, "interface" ], "@typescript-eslint/prefer-function-type": 2, "@typescript-eslint/no-unnecessary-type-arguments": 2, "@typescript-eslint/prefer-string-starts-ends-with": 2, "@typescript-eslint/prefer-readonly": 2, "@typescript-eslint/prefer-includes": 2, "@typescript-eslint/no-unnecessary-condition": 2, "@typescript-eslint/switch-exhaustiveness-check": 2, "@typescript-eslint/prefer-nullish-coalescing": 2 } } ] } css-what-6.1.0/.github/000077500000000000000000000000001422132521400146035ustar00rootroot00000000000000css-what-6.1.0/.github/FUNDING.yml000066400000000000000000000000461422132521400164200ustar00rootroot00000000000000github: [fb55] tidelift: npm/css-what css-what-6.1.0/.github/dependabot.yml000066400000000000000000000004401422132521400174310ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: npm directory: "/" schedule: interval: daily open-pull-requests-limit: 10 versioning-strategy: increase - package-ecosystem: "github-actions" directory: "/" schedule: interval: daily css-what-6.1.0/.github/workflows/000077500000000000000000000000001422132521400166405ustar00rootroot00000000000000css-what-6.1.0/.github/workflows/codeql-analysis.yml000066400000000000000000000013411422132521400224520ustar00rootroot00000000000000name: "CodeQL" on: push: branches: [master] pull_request: # The branches below must be a subset of the branches above branches: [master] schedule: - cron: "0 0 * * 0" jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write steps: - name: Checkout repository uses: actions/checkout@v3 - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: languages: "javascript" - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 css-what-6.1.0/.github/workflows/dependabot-automerge.yml000066400000000000000000000022361422132521400234610ustar00rootroot00000000000000# Based on https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request name: Dependabot auto-merge on: pull_request_target permissions: pull-requests: write contents: write jobs: dependabot: runs-on: ubuntu-latest if: ${{ github.actor == 'dependabot[bot]' }} steps: - name: Dependabot metadata id: metadata uses: dependabot/fetch-metadata@v1.3.0 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Enable auto-merge for Dependabot PRs # Automatically merge semver-patch and semver-minor PRs if: "${{ steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch' }}" run: gh pr merge --auto --squash "$PR_URL" env: PR_URL: ${{github.event.pull_request.html_url}} GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} css-what-6.1.0/.github/workflows/nodejs-test.yml000066400000000000000000000030641422132521400216250ustar00rootroot00000000000000name: Node.js CI on: push: branches-ignore: - "dependabot/**" pull_request: env: CI: true FORCE_COLOR: 2 NODE_COV: 16 # The Node.js version to run coveralls on jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 16 cache: npm - run: npm ci - run: npm run lint test: name: Node ${{ matrix.node }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: node: - 10 - 12 - 14 - 16 steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} cache: npm - run: npm ci - run: npm run build --if-present - name: Run Jest run: npm run test:jest if: matrix.node != env.NODE_COV - name: Run Jest with coverage run: npm run test:jest -- --coverage if: matrix.node == env.NODE_COV - name: Run Coveralls uses: coverallsapp/github-action@1.1.3 if: matrix.node == env.NODE_COV continue-on-error: true with: github-token: "${{ secrets.GITHUB_TOKEN }}" css-what-6.1.0/.gitignore000066400000000000000000000000351422132521400152310ustar00rootroot00000000000000node_modules/ coverage/ lib/ css-what-6.1.0/.prettierignore000066400000000000000000000000351422132521400163040ustar00rootroot00000000000000node_modules/ coverage/ lib/ css-what-6.1.0/LICENSE000066400000000000000000000023541422132521400142540ustar00rootroot00000000000000Copyright (c) Felix Böhm All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. css-what-6.1.0/package-lock.json000066400000000000000000014163451422132521400164750ustar00rootroot00000000000000{ "name": "css-what", "version": "6.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "css-what", "version": "6.1.0", "license": "BSD-2-Clause", "devDependencies": { "@types/jest": "^27.4.1", "@types/node": "^17.0.23", "@typescript-eslint/eslint-plugin": "^5.17.0", "@typescript-eslint/parser": "^5.17.0", "eslint": "^8.12.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-node": "^11.1.0", "jest": "^27.5.1", "prettier": "^2.6.1", "ts-jest": "^27.1.4", "typescript": "^4.6.3" }, "engines": { "node": ">= 6" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/@babel/code-frame": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", "dev": true, "dependencies": { "@babel/highlight": "^7.14.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { "version": "7.15.0", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz", "integrity": "sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og==", "dev": true, "dependencies": { "@babel/code-frame": "^7.15.8", "@babel/generator": "^7.15.8", "@babel/helper-compilation-targets": "^7.15.4", "@babel/helper-module-transforms": "^7.15.8", "@babel/helpers": "^7.15.4", "@babel/parser": "^7.15.8", "@babel/template": "^7.15.4", "@babel/traverse": "^7.15.4", "@babel/types": "^7.15.6", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.1.2", "semver": "^6.3.0", "source-map": "^0.5.0" }, "engines": { "node": ">=6.9.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/babel" } }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/core/node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/@babel/generator": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz", "integrity": "sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==", "dev": true, "dependencies": { "@babel/types": "^7.15.6", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/generator/node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/@babel/helper-compilation-targets": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz", "integrity": "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==", "dev": true, "dependencies": { "@babel/compat-data": "^7.15.0", "@babel/helper-validator-option": "^7.14.5", "browserslist": "^4.16.6", "semver": "^6.3.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-function-name": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz", "integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==", "dev": true, "dependencies": { "@babel/helper-get-function-arity": "^7.15.4", "@babel/template": "^7.15.4", "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-get-function-arity": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz", "integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==", "dev": true, "dependencies": { "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz", "integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==", "dev": true, "dependencies": { "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz", "integrity": "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==", "dev": true, "dependencies": { "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz", "integrity": "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==", "dev": true, "dependencies": { "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz", "integrity": "sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==", "dev": true, "dependencies": { "@babel/helper-module-imports": "^7.15.4", "@babel/helper-replace-supers": "^7.15.4", "@babel/helper-simple-access": "^7.15.4", "@babel/helper-split-export-declaration": "^7.15.4", "@babel/helper-validator-identifier": "^7.15.7", "@babel/template": "^7.15.4", "@babel/traverse": "^7.15.4", "@babel/types": "^7.15.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-optimise-call-expression": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz", "integrity": "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==", "dev": true, "dependencies": { "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-replace-supers": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz", "integrity": "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==", "dev": true, "dependencies": { "@babel/helper-member-expression-to-functions": "^7.15.4", "@babel/helper-optimise-call-expression": "^7.15.4", "@babel/traverse": "^7.15.4", "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz", "integrity": "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==", "dev": true, "dependencies": { "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz", "integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==", "dev": true, "dependencies": { "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { "version": "7.15.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz", "integrity": "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==", "dev": true, "dependencies": { "@babel/template": "^7.15.4", "@babel/traverse": "^7.15.4", "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.14.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight/node_modules/ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { "color-convert": "^1.9.0" }, "engines": { "node": ">=4" } }, "node_modules/@babel/highlight/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" }, "engines": { "node": ">=4" } }, "node_modules/@babel/highlight/node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { "color-name": "1.1.3" } }, "node_modules/@babel/highlight/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "node_modules/@babel/highlight/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true, "engines": { "node": ">=0.8.0" } }, "node_modules/@babel/highlight/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true, "engines": { "node": ">=4" } }, "node_modules/@babel/highlight/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/@babel/parser": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz", "integrity": "sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==", "dev": true, "bin": { "parser": "bin/babel-parser.js" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz", "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/template": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz", "integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==", "dev": true, "dependencies": { "@babel/code-frame": "^7.14.5", "@babel/parser": "^7.15.4", "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz", "integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.14.5", "@babel/generator": "^7.15.4", "@babel/helper-function-name": "^7.15.4", "@babel/helper-hoist-variables": "^7.15.4", "@babel/helper-split-export-declaration": "^7.15.4", "@babel/parser": "^7.15.4", "@babel/types": "^7.15.4", "debug": "^4.1.0", "globals": "^11.1.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse/node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/@babel/types": { "version": "7.15.6", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz", "integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.14.9", "to-fast-properties": "^2.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, "node_modules/@eslint/eslintrc": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.1.tgz", "integrity": "sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.3.1", "globals": "^13.9.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.0.4", "strip-json-comments": "^3.1.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@humanwhocodes/config-array": { "version": "0.9.2", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.2.tgz", "integrity": "sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", "minimatch": "^3.0.4" }, "engines": { "node": ">=10.10.0" } }, "node_modules/@humanwhocodes/object-schema": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/@jest/console": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/core": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", "dev": true, "dependencies": { "@jest/console": "^27.5.1", "@jest/reporters": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.8.1", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "jest-changed-files": "^27.5.1", "jest-config": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-resolve-dependencies": "^27.5.1", "jest-runner": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "jest-watcher": "^27.5.1", "micromatch": "^4.0.4", "rimraf": "^3.0.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/@jest/environment": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", "dev": true, "dependencies": { "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/fake-timers": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@sinonjs/fake-timers": "^8.0.1", "@types/node": "*", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/globals": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/types": "^27.5.1", "expect": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/reporters": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", "glob": "^7.1.2", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", "istanbul-lib-instrument": "^5.1.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", "jest-haste-map": "^27.5.1", "jest-resolve": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "slash": "^3.0.0", "source-map": "^0.6.0", "string-length": "^4.0.1", "terminal-link": "^2.0.0", "v8-to-istanbul": "^8.1.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/@jest/source-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "dev": true, "dependencies": { "callsites": "^3.0.0", "graceful-fs": "^4.2.9", "source-map": "^0.6.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/test-result": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", "dev": true, "dependencies": { "@jest/console": "^27.5.1", "@jest/types": "^27.5.1", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/test-sequencer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", "dev": true, "dependencies": { "@jest/test-result": "^27.5.1", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-runtime": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/transform": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dev": true, "dependencies": { "@babel/core": "^7.1.0", "@jest/types": "^27.5.1", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^1.4.0", "fast-json-stable-stringify": "^2.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-util": "^27.5.1", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^16.0.0", "chalk": "^4.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" }, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" }, "engines": { "node": ">= 8" } }, "node_modules/@sinonjs/commons": { "version": "1.8.3", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", "dev": true, "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/fake-timers": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", "dev": true, "dependencies": { "@sinonjs/commons": "^1.7.0" } }, "node_modules/@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true, "engines": { "node": ">= 6" } }, "node_modules/@types/babel__core": { "version": "7.1.18", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz", "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==", "dev": true, "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "node_modules/@types/babel__generator": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__traverse": { "version": "7.14.2", "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", "dev": true, "dependencies": { "@babel/types": "^7.3.0" } }, "node_modules/@types/graceful-fs": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", "dev": true }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/jest": { "version": "27.4.1", "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.4.1.tgz", "integrity": "sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw==", "dev": true, "dependencies": { "jest-matcher-utils": "^27.0.0", "pretty-format": "^27.0.0" } }, "node_modules/@types/json-schema": { "version": "7.0.11", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "dev": true }, "node_modules/@types/node": { "version": "17.0.23", "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz", "integrity": "sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==", "dev": true }, "node_modules/@types/prettier": { "version": "2.4.4", "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.4.tgz", "integrity": "sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==", "dev": true }, "node_modules/@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, "node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { "version": "20.2.1", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz", "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", "dev": true }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.17.0.tgz", "integrity": "sha512-qVstvQilEd89HJk3qcbKt/zZrfBZ+9h2ynpAGlWjWiizA7m/MtLT9RoX6gjtpE500vfIg8jogAkDzdCxbsFASQ==", "dev": true, "dependencies": { "@typescript-eslint/scope-manager": "5.17.0", "@typescript-eslint/type-utils": "5.17.0", "@typescript-eslint/utils": "5.17.0", "debug": "^4.3.2", "functional-red-black-tree": "^1.0.1", "ignore": "^5.1.8", "regexpp": "^3.2.0", "semver": "^7.3.5", "tsutils": "^3.21.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "@typescript-eslint/parser": "^5.0.0", "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/parser": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.17.0.tgz", "integrity": "sha512-aRzW9Jg5Rlj2t2/crzhA2f23SIYFlF9mchGudyP0uiD6SenIxzKoLjwzHbafgHn39dNV/TV7xwQkLfFTZlJ4ig==", "dev": true, "dependencies": { "@typescript-eslint/scope-manager": "5.17.0", "@typescript-eslint/types": "5.17.0", "@typescript-eslint/typescript-estree": "5.17.0", "debug": "^4.3.2" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/scope-manager": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.17.0.tgz", "integrity": "sha512-062iCYQF/doQ9T2WWfJohQKKN1zmmXVfAcS3xaiialiw8ZUGy05Em6QVNYJGO34/sU1a7a+90U3dUNfqUDHr3w==", "dev": true, "dependencies": { "@typescript-eslint/types": "5.17.0", "@typescript-eslint/visitor-keys": "5.17.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@typescript-eslint/type-utils": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.17.0.tgz", "integrity": "sha512-3hU0RynUIlEuqMJA7dragb0/75gZmwNwFf/QJokWzPehTZousP/MNifVSgjxNcDCkM5HI2K22TjQWUmmHUINSg==", "dev": true, "dependencies": { "@typescript-eslint/utils": "5.17.0", "debug": "^4.3.2", "tsutils": "^3.21.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "*" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/types": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.17.0.tgz", "integrity": "sha512-AgQ4rWzmCxOZLioFEjlzOI3Ch8giDWx8aUDxyNw9iOeCvD3GEYAB7dxWGQy4T/rPVe8iPmu73jPHuaSqcjKvxw==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/@typescript-eslint/typescript-estree": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.17.0.tgz", "integrity": "sha512-X1gtjEcmM7Je+qJRhq7ZAAaNXYhTgqMkR10euC4Si6PIjb+kwEQHSxGazXUQXFyqfEXdkGf6JijUu5R0uceQzg==", "dev": true, "dependencies": { "@typescript-eslint/types": "5.17.0", "@typescript-eslint/visitor-keys": "5.17.0", "debug": "^4.3.2", "globby": "^11.0.4", "is-glob": "^4.0.3", "semver": "^7.3.5", "tsutils": "^3.21.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/@typescript-eslint/utils": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.17.0.tgz", "integrity": "sha512-DVvndq1QoxQH+hFv+MUQHrrWZ7gQ5KcJzyjhzcqB1Y2Xes1UQQkTRPUfRpqhS8mhTWsSb2+iyvDW1Lef5DD7vA==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.9", "@typescript-eslint/scope-manager": "5.17.0", "@typescript-eslint/types": "5.17.0", "@typescript-eslint/typescript-estree": "5.17.0", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/@typescript-eslint/visitor-keys": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.17.0.tgz", "integrity": "sha512-6K/zlc4OfCagUu7Am/BD5k8PSWQOgh34Nrv9Rxe2tBzlJ7uOeJ/h7ugCGDCeEZHT6k2CJBhbk9IsbkPI0uvUkA==", "dev": true, "dependencies": { "@typescript-eslint/types": "5.17.0", "eslint-visitor-keys": "^3.0.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, "node_modules/abab": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", "dev": true }, "node_modules/acorn": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", "dev": true, "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-globals": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "dev": true, "dependencies": { "acorn": "^7.1.1", "acorn-walk": "^7.1.1" } }, "node_modules/acorn-globals/node_modules/acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true, "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true, "engines": { "node": ">=0.4.0" } }, "node_modules/agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "dependencies": { "debug": "4" }, "engines": { "node": ">= 6.0.0" } }, "node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "dependencies": { "type-fest": "^0.21.3" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ansi-escapes/node_modules/type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dev": true, "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" }, "engines": { "node": ">= 8" } }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", "dev": true }, "node_modules/babel-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", "dev": true, "dependencies": { "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "@babel/core": "^7.8.0" } }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" }, "engines": { "node": ">=8" } }, "node_modules/babel-plugin-jest-hoist": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", "@types/babel__core": "^7.0.0", "@types/babel__traverse": "^7.0.6" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/babel-preset-current-node-syntax": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", "@babel/plugin-syntax-class-properties": "^7.8.3", "@babel/plugin-syntax-import-meta": "^7.8.3", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.8.3", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-top-level-await": "^7.8.3" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/babel-preset-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", "dev": true, "dependencies": { "babel-plugin-jest-hoist": "^27.5.1", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { "fill-range": "^7.0.1" }, "engines": { "node": ">=8" } }, "node_modules/browser-process-hrtime": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "dev": true }, "node_modules/browserslist": { "version": "4.17.4", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz", "integrity": "sha512-Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ==", "dev": true, "dependencies": { "caniuse-lite": "^1.0.30001265", "electron-to-chromium": "^1.3.867", "escalade": "^3.1.1", "node-releases": "^2.0.0", "picocolors": "^1.0.0" }, "bin": { "browserslist": "cli.js" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/browserslist" } }, "node_modules/bs-logger": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "dependencies": { "fast-json-stable-stringify": "2.x" }, "engines": { "node": ">= 6" } }, "node_modules/bser": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "dependencies": { "node-int64": "^0.4.0" } }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/caniuse-lite": { "version": "1.0.30001267", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001267.tgz", "integrity": "sha512-r1mjTzAuJ9W8cPBGbbus8E0SKcUP7gn03R14Wk8FlAlqhH9hroy9nLqmpuXlfKEw/oILW+FGz47ipXV2O7x8lg==", "dev": true, "funding": { "type": "opencollective", "url": "https://opencollective.com/browserslist" } }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/ci-info": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz", "integrity": "sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==", "dev": true }, "node_modules/cjs-module-lexer": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", "dev": true }, "node_modules/cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }, "node_modules/co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", "dev": true, "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" } }, "node_modules/collect-v8-coverage": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "dependencies": { "delayed-stream": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, "node_modules/convert-source-map": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, "dependencies": { "safe-buffer": "~5.1.1" } }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" }, "engines": { "node": ">= 8" } }, "node_modules/cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", "dev": true }, "node_modules/cssstyle": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, "dependencies": { "cssom": "~0.3.6" }, "engines": { "node": ">=8" } }, "node_modules/cssstyle/node_modules/cssom": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true }, "node_modules/data-urls": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, "dependencies": { "abab": "^2.0.3", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.0.0" }, "engines": { "node": ">=10" } }, "node_modules/debug": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "dev": true, "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/decimal.js": { "version": "10.3.1", "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", "dev": true }, "node_modules/dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", "dev": true }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "node_modules/deepmerge": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", "dev": true, "engines": { "node": ">=0.4.0" } }, "node_modules/detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/diff-sequences": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", "dev": true, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { "path-type": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { "esutils": "^2.0.2" }, "engines": { "node": ">=6.0.0" } }, "node_modules/domexception": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "dev": true, "dependencies": { "webidl-conversions": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/domexception/node_modules/webidl-conversions": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/electron-to-chromium": { "version": "1.3.870", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.870.tgz", "integrity": "sha512-PiJMshfq6PL+i1V+nKLwhHbCKeD8eAz8rvO9Cwk/7cChOHJBtufmjajLyYLsSRHguRFiOCVx3XzJLeZsIAYfSA==", "dev": true }, "node_modules/emittery": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/escodegen": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", "dev": true, "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", "esutils": "^2.0.2", "optionator": "^0.8.1" }, "bin": { "escodegen": "bin/escodegen.js", "esgenerate": "bin/esgenerate.js" }, "engines": { "node": ">=6.0" }, "optionalDependencies": { "source-map": "~0.6.1" } }, "node_modules/escodegen/node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/escodegen/node_modules/levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", "dev": true, "dependencies": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/escodegen/node_modules/optionator": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", "word-wrap": "~1.2.3" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/escodegen/node_modules/prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/escodegen/node_modules/type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", "dev": true, "dependencies": { "prelude-ls": "~1.1.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/eslint": { "version": "8.12.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.12.0.tgz", "integrity": "sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q==", "dev": true, "dependencies": { "@eslint/eslintrc": "^1.2.1", "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.1.1", "eslint-utils": "^3.0.0", "eslint-visitor-keys": "^3.3.0", "espree": "^9.3.1", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", "glob-parent": "^6.0.1", "globals": "^13.6.0", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" }, "bin": { "eslint": "bin/eslint.js" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-config-prettier": { "version": "8.5.0", "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", "dev": true, "bin": { "eslint-config-prettier": "bin/cli.js" }, "peerDependencies": { "eslint": ">=7.0.0" } }, "node_modules/eslint-plugin-es": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", "dev": true, "dependencies": { "eslint-utils": "^2.0.0", "regexpp": "^3.0.0" }, "engines": { "node": ">=8.10.0" }, "funding": { "url": "https://github.com/sponsors/mysticatea" }, "peerDependencies": { "eslint": ">=4.19.1" } }, "node_modules/eslint-plugin-es/node_modules/eslint-utils": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "dependencies": { "eslint-visitor-keys": "^1.1.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/mysticatea" } }, "node_modules/eslint-plugin-es/node_modules/eslint-visitor-keys": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/eslint-plugin-node": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", "dev": true, "dependencies": { "eslint-plugin-es": "^3.0.0", "eslint-utils": "^2.0.0", "ignore": "^5.1.1", "minimatch": "^3.0.4", "resolve": "^1.10.1", "semver": "^6.1.0" }, "engines": { "node": ">=8.10.0" }, "peerDependencies": { "eslint": ">=5.16.0" } }, "node_modules/eslint-plugin-node/node_modules/eslint-utils": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "dependencies": { "eslint-visitor-keys": "^1.1.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/mysticatea" } }, "node_modules/eslint-plugin-node/node_modules/eslint-visitor-keys": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/eslint-plugin-node/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/eslint-utils": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "dependencies": { "eslint-visitor-keys": "^2.0.0" }, "engines": { "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" }, "funding": { "url": "https://github.com/sponsors/mysticatea" }, "peerDependencies": { "eslint": ">=5" } }, "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/eslint-visitor-keys": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/eslint/node_modules/eslint-scope": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/eslint/node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/espree": { "version": "9.3.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz", "integrity": "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==", "dev": true, "dependencies": { "acorn": "^8.7.0", "acorn-jsx": "^5.3.1", "eslint-visitor-keys": "^3.3.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" }, "engines": { "node": ">=4" } }, "node_modules/esquery": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, "dependencies": { "estraverse": "^5.1.0" }, "engines": { "node": ">=0.10" } }, "node_modules/esquery/node_modules/estraverse": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "dependencies": { "estraverse": "^5.2.0" }, "engines": { "node": ">=4.0" } }, "node_modules/esrecurse/node_modules/estraverse": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, "engines": { "node": ">=4.0" } }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/expect": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "jest-get-type": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "node_modules/fast-glob": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" }, "engines": { "node": ">=8" } }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, "node_modules/fastq": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, "dependencies": { "reusify": "^1.0.4" } }, "node_modules/fb-watchman": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", "dev": true, "dependencies": { "bser": "2.1.1" } }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "dependencies": { "flat-cache": "^3.0.4" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "dependencies": { "to-regex-range": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "dependencies": { "flatted": "^3.1.0", "rimraf": "^3.0.2" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/flatted": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", "dev": true }, "node_modules/form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" }, "engines": { "node": ">= 6" } }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, "node_modules/fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, "hasInstallScript": true, "optional": true, "os": [ "darwin" ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, "node_modules/functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", "dev": true }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, "engines": { "node": ">=8.0.0" } }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { "is-glob": "^4.0.3" }, "engines": { "node": ">=10.13.0" } }, "node_modules/globals": { "version": "13.12.1", "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.1.tgz", "integrity": "sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==", "dev": true, "dependencies": { "type-fest": "^0.20.2" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/globby": { "version": "11.0.4", "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", "dev": true, "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.1.1", "ignore": "^5.1.4", "merge2": "^1.3.0", "slash": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/graceful-fs": { "version": "4.2.9", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", "dev": true }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "dependencies": { "function-bind": "^1.1.1" }, "engines": { "node": ">= 0.4.0" } }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/html-encoding-sniffer": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "dev": true, "dependencies": { "whatwg-encoding": "^1.0.5" }, "engines": { "node": ">=10" } }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, "node_modules/http-proxy-agent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, "dependencies": { "@tootallnate/once": "1", "agent-base": "6", "debug": "4" }, "engines": { "node": ">= 6" } }, "node_modules/https-proxy-agent": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", "dev": true, "dependencies": { "agent-base": "6", "debug": "4" }, "engines": { "node": ">= 6" } }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, "engines": { "node": ">=10.17.0" } }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, "node_modules/ignore": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "dev": true, "engines": { "node": ">= 4" } }, "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" }, "bin": { "import-local-fixture": "fixtures/cli.js" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true, "engines": { "node": ">=0.8.19" } }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "dev": true, "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, "node_modules/is-core-module": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", "dev": true, "dependencies": { "has": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/is-generator-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, "engines": { "node": ">=0.12.0" } }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", "dev": true }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", "dev": true }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, "node_modules/istanbul-lib-coverage": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" }, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^3.0.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", "source-map": "^0.6.1" }, "engines": { "node": ">=10" } }, "node_modules/istanbul-reports": { "version": "3.1.4", "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "dev": true, "dependencies": { "@jest/core": "^27.5.1", "import-local": "^3.0.2", "jest-cli": "^27.5.1" }, "bin": { "jest": "bin/jest.js" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/jest-changed-files": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "execa": "^5.0.0", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-circus": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^0.7.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-cli": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "dev": true, "dependencies": { "@jest/core": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", "jest-config": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "prompts": "^2.0.1", "yargs": "^16.2.0" }, "bin": { "jest": "bin/jest.js" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { "node-notifier": { "optional": true } } }, "node_modules/jest-config": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", "dev": true, "dependencies": { "@babel/core": "^7.8.0", "@jest/test-sequencer": "^27.5.1", "@jest/types": "^27.5.1", "babel-jest": "^27.5.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.1", "graceful-fs": "^4.2.9", "jest-circus": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-get-type": "^27.5.1", "jest-jasmine2": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runner": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "micromatch": "^4.0.4", "parse-json": "^5.2.0", "pretty-format": "^27.5.1", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "ts-node": ">=9.0.0" }, "peerDependenciesMeta": { "ts-node": { "optional": true } } }, "node_modules/jest-diff": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-docblock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-each": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-environment-jsdom": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1", "jsdom": "^16.6.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-environment-node": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-get-type": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", "dev": true, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-haste-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@types/graceful-fs": "^4.1.2", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^27.5.1", "jest-serializer": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "micromatch": "^4.0.4", "walker": "^1.0.7" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "optionalDependencies": { "fsevents": "^2.3.2" } }, "node_modules/jest-jasmine2": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-leak-detector": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", "dev": true, "dependencies": { "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-matcher-utils": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "dev": true, "dependencies": { "chalk": "^4.0.0", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-message-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", "@jest/types": "^27.5.1", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-mock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-pnp-resolver": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", "dev": true, "engines": { "node": ">=6" }, "peerDependencies": { "jest-resolve": "*" }, "peerDependenciesMeta": { "jest-resolve": { "optional": true } } }, "node_modules/jest-regex-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "dev": true, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-resolve": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-pnp-resolver": "^1.2.2", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "resolve": "^1.20.0", "resolve.exports": "^1.1.0", "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-resolve-dependencies": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-snapshot": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-runner": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", "dev": true, "dependencies": { "@jest/console": "^27.5.1", "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.8.1", "graceful-fs": "^4.2.9", "jest-docblock": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-leak-detector": "^27.5.1", "jest-message-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runtime": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "source-map-support": "^0.5.6", "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-runtime": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/globals": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "execa": "^5.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-serializer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "dev": true, "dependencies": { "@types/node": "*", "graceful-fs": "^4.2.9" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-snapshot": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", "dev": true, "dependencies": { "@babel/core": "^7.7.2", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/traverse": "^7.7.2", "@babel/types": "^7.0.0", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__traverse": "^7.0.4", "@types/prettier": "^2.1.5", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", "expect": "^27.5.1", "graceful-fs": "^4.2.9", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "natural-compare": "^1.4.0", "pretty-format": "^27.5.1", "semver": "^7.3.2" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-validate": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", "camelcase": "^6.2.0", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "leven": "^3.1.0", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-validate/node_modules/camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/jest-watcher": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", "dev": true, "dependencies": { "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "jest-util": "^27.5.1", "string-length": "^4.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "engines": { "node": ">= 10.13.0" } }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, "node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/jsdom": { "version": "16.7.0", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, "dependencies": { "abab": "^2.0.5", "acorn": "^8.2.4", "acorn-globals": "^6.0.0", "cssom": "^0.4.4", "cssstyle": "^2.3.0", "data-urls": "^2.0.0", "decimal.js": "^10.2.1", "domexception": "^2.0.1", "escodegen": "^2.0.0", "form-data": "^3.0.0", "html-encoding-sniffer": "^2.0.1", "http-proxy-agent": "^4.0.1", "https-proxy-agent": "^5.0.0", "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.0", "parse5": "6.0.1", "saxes": "^5.0.1", "symbol-tree": "^3.2.4", "tough-cookie": "^4.0.0", "w3c-hr-time": "^1.0.2", "w3c-xmlserializer": "^2.0.0", "webidl-conversions": "^6.1.0", "whatwg-encoding": "^1.0.5", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.5.0", "ws": "^7.4.6", "xml-name-validator": "^3.0.0" }, "engines": { "node": ">=10" }, "peerDependencies": { "canvas": "^2.5.0" }, "peerDependenciesMeta": { "canvas": { "optional": true } } }, "node_modules/jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, "bin": { "jsesc": "bin/jsesc" }, "engines": { "node": ">=4" } }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true }, "node_modules/json5": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", "dev": true, "dependencies": { "minimist": "^1.2.5" }, "bin": { "json5": "lib/cli.js" }, "engines": { "node": ">=6" } }, "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "dependencies": { "p-locate": "^4.1.0" }, "engines": { "node": ">=8" } }, "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=10" } }, "node_modules/make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "dependencies": { "semver": "^6.0.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/make-dir/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, "node_modules/makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "dependencies": { "tmpl": "1.0.5" } }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/micromatch": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", "dev": true, "dependencies": { "braces": "^3.0.1", "picomatch": "^2.2.3" }, "engines": { "node": ">=8.6" } }, "node_modules/mime-db": { "version": "1.51.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", "dev": true, "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { "version": "2.1.34", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", "dev": true, "dependencies": { "mime-db": "1.51.0" }, "engines": { "node": ">= 0.6" } }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, "engines": { "node": "*" } }, "node_modules/minimist": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", "dev": true }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true }, "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", "dev": true }, "node_modules/node-releases": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.0.tgz", "integrity": "sha512-aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA==", "dev": true }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "dependencies": { "path-key": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/nwsapi": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", "dev": true }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "dependencies": { "mimic-fn": "^2.1.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/optionator": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.3" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "dependencies": { "p-try": "^2.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "dependencies": { "p-limit": "^2.2.0" }, "engines": { "node": ">=8" } }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "dependencies": { "callsites": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "dev": true }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "node_modules/picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", "dev": true, "engines": { "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, "node_modules/pirates": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==", "dev": true, "engines": { "node": ">= 6" } }, "node_modules/pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "dependencies": { "find-up": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/prettier": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.6.1.tgz", "integrity": "sha512-8UVbTBYGwN37Bs9LERmxCPjdvPxlEowx2urIL6urHzdb3SDq4B/Z6xLFCblrSnE4iKWcS6ziJ3aOYrc1kz/E2A==", "dev": true, "bin": { "prettier": "bin-prettier.js" }, "engines": { "node": ">=10.13.0" }, "funding": { "url": "https://github.com/prettier/prettier?sponsor=1" } }, "node_modules/pretty-format": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" }, "engines": { "node": ">= 6" } }, "node_modules/psl": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", "dev": true }, "node_modules/punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true }, "node_modules/regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/mysticatea" } }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/resolve": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", "dev": true, "dependencies": { "is-core-module": "^2.2.0", "path-parse": "^1.0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/resolve-cwd": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "dependencies": { "resolve-from": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/resolve-cwd/node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/resolve.exports": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" } }, "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true }, "node_modules/saxes": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", "dev": true, "dependencies": { "xmlchars": "^2.2.0" }, "engines": { "node": ">=10" } }, "node_modules/semver": { "version": "7.3.5", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" }, "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "dependencies": { "shebang-regex": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/signal-exit": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz", "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==", "dev": true }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, "node_modules/stack-utils": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", "dev": true, "dependencies": { "escape-string-regexp": "^2.0.0" }, "engines": { "node": ">=10" } }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" } }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/supports-hyperlinks": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", "dev": true, "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, "engines": { "node": ">=8" } }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, "node_modules/terminal-link": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "dev": true, "dependencies": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" }, "engines": { "node": ">=8" } }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true }, "node_modules/throat": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", "dev": true }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, "node_modules/to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", "dev": true, "engines": { "node": ">=4" } }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "dependencies": { "is-number": "^7.0.0" }, "engines": { "node": ">=8.0" } }, "node_modules/tough-cookie": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", "dev": true, "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.1.2" }, "engines": { "node": ">=6" } }, "node_modules/tr46": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "dev": true, "dependencies": { "punycode": "^2.1.1" }, "engines": { "node": ">=8" } }, "node_modules/ts-jest": { "version": "27.1.4", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.4.tgz", "integrity": "sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==", "dev": true, "dependencies": { "bs-logger": "0.x", "fast-json-stable-stringify": "2.x", "jest-util": "^27.0.0", "json5": "2.x", "lodash.memoize": "4.x", "make-error": "1.x", "semver": "7.x", "yargs-parser": "20.x" }, "bin": { "ts-jest": "cli.js" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", "@types/jest": "^27.0.0", "babel-jest": ">=27.0.0 <28", "jest": "^27.0.0", "typescript": ">=3.8 <5.0" }, "peerDependenciesMeta": { "@babel/core": { "optional": true }, "@types/jest": { "optional": true }, "babel-jest": { "optional": true }, "esbuild": { "optional": true } } }, "node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, "node_modules/tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, "dependencies": { "tslib": "^1.8.1" }, "engines": { "node": ">= 6" }, "peerDependencies": { "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "dependencies": { "prelude-ls": "^1.2.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, "dependencies": { "is-typedarray": "^1.0.0" } }, "node_modules/typescript": { "version": "4.6.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz", "integrity": "sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { "node": ">=4.2.0" } }, "node_modules/universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, "engines": { "node": ">= 4.0.0" } }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "dependencies": { "punycode": "^2.1.0" } }, "node_modules/v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, "node_modules/v8-to-istanbul": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", "dev": true, "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", "source-map": "^0.7.3" }, "engines": { "node": ">=10.12.0" } }, "node_modules/v8-to-istanbul/node_modules/source-map": { "version": "0.7.3", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", "dev": true, "dependencies": { "browser-process-hrtime": "^1.0.0" } }, "node_modules/w3c-xmlserializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", "dev": true, "dependencies": { "xml-name-validator": "^3.0.0" }, "engines": { "node": ">=10" } }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "dependencies": { "makeerror": "1.0.12" } }, "node_modules/webidl-conversions": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", "dev": true, "engines": { "node": ">=10.4" } }, "node_modules/whatwg-encoding": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "dev": true, "dependencies": { "iconv-lite": "0.4.24" } }, "node_modules/whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", "dev": true }, "node_modules/whatwg-url": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dev": true, "dependencies": { "lodash": "^4.7.0", "tr46": "^2.1.0", "webidl-conversions": "^6.1.0" }, "engines": { "node": ">=10" } }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" }, "engines": { "node": ">= 8" } }, "node_modules/word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, "node_modules/write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, "node_modules/ws": { "version": "7.5.7", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==", "dev": true, "engines": { "node": ">=8.3.0" }, "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" }, "peerDependenciesMeta": { "bufferutil": { "optional": true }, "utf-8-validate": { "optional": true } } }, "node_modules/xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", "dev": true }, "node_modules/xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, "node_modules/yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.0", "y18n": "^5.0.5", "yargs-parser": "^20.2.2" }, "engines": { "node": ">=10" } }, "node_modules/yargs-parser": { "version": "20.2.9", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, "engines": { "node": ">=10" } } }, "dependencies": { "@babel/code-frame": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", "dev": true, "requires": { "@babel/highlight": "^7.14.5" } }, "@babel/compat-data": { "version": "7.15.0", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==", "dev": true }, "@babel/core": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz", "integrity": "sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og==", "dev": true, "requires": { "@babel/code-frame": "^7.15.8", "@babel/generator": "^7.15.8", "@babel/helper-compilation-targets": "^7.15.4", "@babel/helper-module-transforms": "^7.15.8", "@babel/helpers": "^7.15.4", "@babel/parser": "^7.15.8", "@babel/template": "^7.15.4", "@babel/traverse": "^7.15.4", "@babel/types": "^7.15.6", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.1.2", "semver": "^6.3.0", "source-map": "^0.5.0" }, "dependencies": { "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true } } }, "@babel/generator": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz", "integrity": "sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==", "dev": true, "requires": { "@babel/types": "^7.15.6", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, "dependencies": { "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true } } }, "@babel/helper-compilation-targets": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz", "integrity": "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==", "dev": true, "requires": { "@babel/compat-data": "^7.15.0", "@babel/helper-validator-option": "^7.14.5", "browserslist": "^4.16.6", "semver": "^6.3.0" }, "dependencies": { "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "@babel/helper-function-name": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz", "integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==", "dev": true, "requires": { "@babel/helper-get-function-arity": "^7.15.4", "@babel/template": "^7.15.4", "@babel/types": "^7.15.4" } }, "@babel/helper-get-function-arity": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz", "integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==", "dev": true, "requires": { "@babel/types": "^7.15.4" } }, "@babel/helper-hoist-variables": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz", "integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==", "dev": true, "requires": { "@babel/types": "^7.15.4" } }, "@babel/helper-member-expression-to-functions": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz", "integrity": "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==", "dev": true, "requires": { "@babel/types": "^7.15.4" } }, "@babel/helper-module-imports": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz", "integrity": "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==", "dev": true, "requires": { "@babel/types": "^7.15.4" } }, "@babel/helper-module-transforms": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz", "integrity": "sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==", "dev": true, "requires": { "@babel/helper-module-imports": "^7.15.4", "@babel/helper-replace-supers": "^7.15.4", "@babel/helper-simple-access": "^7.15.4", "@babel/helper-split-export-declaration": "^7.15.4", "@babel/helper-validator-identifier": "^7.15.7", "@babel/template": "^7.15.4", "@babel/traverse": "^7.15.4", "@babel/types": "^7.15.6" } }, "@babel/helper-optimise-call-expression": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz", "integrity": "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==", "dev": true, "requires": { "@babel/types": "^7.15.4" } }, "@babel/helper-plugin-utils": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", "dev": true }, "@babel/helper-replace-supers": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz", "integrity": "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==", "dev": true, "requires": { "@babel/helper-member-expression-to-functions": "^7.15.4", "@babel/helper-optimise-call-expression": "^7.15.4", "@babel/traverse": "^7.15.4", "@babel/types": "^7.15.4" } }, "@babel/helper-simple-access": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz", "integrity": "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==", "dev": true, "requires": { "@babel/types": "^7.15.4" } }, "@babel/helper-split-export-declaration": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz", "integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==", "dev": true, "requires": { "@babel/types": "^7.15.4" } }, "@babel/helper-validator-identifier": { "version": "7.15.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", "dev": true }, "@babel/helper-validator-option": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", "dev": true }, "@babel/helpers": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz", "integrity": "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==", "dev": true, "requires": { "@babel/template": "^7.15.4", "@babel/traverse": "^7.15.4", "@babel/types": "^7.15.4" } }, "@babel/highlight": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.14.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, "dependencies": { "ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { "color-convert": "^1.9.0" } }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { "color-name": "1.1.3" } }, "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "requires": { "has-flag": "^3.0.0" } } } }, "@babel/parser": { "version": "7.15.8", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz", "integrity": "sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==", "dev": true }, "@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-bigint": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-class-properties": { "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.12.13" } }, "@babel/plugin-syntax-import-meta": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-syntax-json-strings": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-top-level-await": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.14.5" } }, "@babel/plugin-syntax-typescript": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz", "integrity": "sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/template": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz", "integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==", "dev": true, "requires": { "@babel/code-frame": "^7.14.5", "@babel/parser": "^7.15.4", "@babel/types": "^7.15.4" } }, "@babel/traverse": { "version": "7.15.4", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz", "integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==", "dev": true, "requires": { "@babel/code-frame": "^7.14.5", "@babel/generator": "^7.15.4", "@babel/helper-function-name": "^7.15.4", "@babel/helper-hoist-variables": "^7.15.4", "@babel/helper-split-export-declaration": "^7.15.4", "@babel/parser": "^7.15.4", "@babel/types": "^7.15.4", "debug": "^4.1.0", "globals": "^11.1.0" }, "dependencies": { "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true } } }, "@babel/types": { "version": "7.15.6", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz", "integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==", "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.14.9", "to-fast-properties": "^2.0.0" } }, "@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, "@eslint/eslintrc": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.1.tgz", "integrity": "sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==", "dev": true, "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.3.1", "globals": "^13.9.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.0.4", "strip-json-comments": "^3.1.1" } }, "@humanwhocodes/config-array": { "version": "0.9.2", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.2.tgz", "integrity": "sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==", "dev": true, "requires": { "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", "minimatch": "^3.0.4" } }, "@humanwhocodes/object-schema": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "requires": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" }, "dependencies": { "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "requires": { "sprintf-js": "~1.0.2" } }, "js-yaml": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" } }, "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true } } }, "@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true }, "@jest/console": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0" } }, "@jest/core": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", "dev": true, "requires": { "@jest/console": "^27.5.1", "@jest/reporters": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.8.1", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "jest-changed-files": "^27.5.1", "jest-config": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-resolve-dependencies": "^27.5.1", "jest-runner": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "jest-watcher": "^27.5.1", "micromatch": "^4.0.4", "rimraf": "^3.0.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" } }, "@jest/environment": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", "dev": true, "requires": { "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1" } }, "@jest/fake-timers": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@sinonjs/fake-timers": "^8.0.1", "@types/node": "*", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" } }, "@jest/globals": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/types": "^27.5.1", "expect": "^27.5.1" } }, "@jest/reporters": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", "dev": true, "requires": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", "glob": "^7.1.2", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", "istanbul-lib-instrument": "^5.1.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", "jest-haste-map": "^27.5.1", "jest-resolve": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "slash": "^3.0.0", "source-map": "^0.6.0", "string-length": "^4.0.1", "terminal-link": "^2.0.0", "v8-to-istanbul": "^8.1.0" } }, "@jest/source-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "dev": true, "requires": { "callsites": "^3.0.0", "graceful-fs": "^4.2.9", "source-map": "^0.6.0" } }, "@jest/test-result": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", "dev": true, "requires": { "@jest/console": "^27.5.1", "@jest/types": "^27.5.1", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" } }, "@jest/test-sequencer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", "dev": true, "requires": { "@jest/test-result": "^27.5.1", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-runtime": "^27.5.1" } }, "@jest/transform": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dev": true, "requires": { "@babel/core": "^7.1.0", "@jest/types": "^27.5.1", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^1.4.0", "fast-json-stable-stringify": "^2.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-util": "^27.5.1", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" } }, "@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", "@types/yargs": "^16.0.0", "chalk": "^4.0.0" } }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "requires": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true }, "@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "@sinonjs/commons": { "version": "1.8.3", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", "dev": true, "requires": { "type-detect": "4.0.8" } }, "@sinonjs/fake-timers": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", "dev": true, "requires": { "@sinonjs/commons": "^1.7.0" } }, "@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true }, "@types/babel__core": { "version": "7.1.18", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz", "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==", "dev": true, "requires": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "@types/babel__generator": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, "requires": { "@babel/types": "^7.0.0" } }, "@types/babel__template": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, "requires": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "@types/babel__traverse": { "version": "7.14.2", "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", "dev": true, "requires": { "@babel/types": "^7.3.0" } }, "@types/graceful-fs": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", "dev": true, "requires": { "@types/node": "*" } }, "@types/istanbul-lib-coverage": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", "dev": true }, "@types/istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "*" } }, "@types/istanbul-reports": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, "requires": { "@types/istanbul-lib-report": "*" } }, "@types/jest": { "version": "27.4.1", "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.4.1.tgz", "integrity": "sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw==", "dev": true, "requires": { "jest-matcher-utils": "^27.0.0", "pretty-format": "^27.0.0" } }, "@types/json-schema": { "version": "7.0.11", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "dev": true }, "@types/node": { "version": "17.0.23", "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz", "integrity": "sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==", "dev": true }, "@types/prettier": { "version": "2.4.4", "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.4.tgz", "integrity": "sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==", "dev": true }, "@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", "dev": true }, "@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, "requires": { "@types/yargs-parser": "*" } }, "@types/yargs-parser": { "version": "20.2.1", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz", "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", "dev": true }, "@typescript-eslint/eslint-plugin": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.17.0.tgz", "integrity": "sha512-qVstvQilEd89HJk3qcbKt/zZrfBZ+9h2ynpAGlWjWiizA7m/MtLT9RoX6gjtpE500vfIg8jogAkDzdCxbsFASQ==", "dev": true, "requires": { "@typescript-eslint/scope-manager": "5.17.0", "@typescript-eslint/type-utils": "5.17.0", "@typescript-eslint/utils": "5.17.0", "debug": "^4.3.2", "functional-red-black-tree": "^1.0.1", "ignore": "^5.1.8", "regexpp": "^3.2.0", "semver": "^7.3.5", "tsutils": "^3.21.0" } }, "@typescript-eslint/parser": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.17.0.tgz", "integrity": "sha512-aRzW9Jg5Rlj2t2/crzhA2f23SIYFlF9mchGudyP0uiD6SenIxzKoLjwzHbafgHn39dNV/TV7xwQkLfFTZlJ4ig==", "dev": true, "requires": { "@typescript-eslint/scope-manager": "5.17.0", "@typescript-eslint/types": "5.17.0", "@typescript-eslint/typescript-estree": "5.17.0", "debug": "^4.3.2" } }, "@typescript-eslint/scope-manager": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.17.0.tgz", "integrity": "sha512-062iCYQF/doQ9T2WWfJohQKKN1zmmXVfAcS3xaiialiw8ZUGy05Em6QVNYJGO34/sU1a7a+90U3dUNfqUDHr3w==", "dev": true, "requires": { "@typescript-eslint/types": "5.17.0", "@typescript-eslint/visitor-keys": "5.17.0" } }, "@typescript-eslint/type-utils": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.17.0.tgz", "integrity": "sha512-3hU0RynUIlEuqMJA7dragb0/75gZmwNwFf/QJokWzPehTZousP/MNifVSgjxNcDCkM5HI2K22TjQWUmmHUINSg==", "dev": true, "requires": { "@typescript-eslint/utils": "5.17.0", "debug": "^4.3.2", "tsutils": "^3.21.0" } }, "@typescript-eslint/types": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.17.0.tgz", "integrity": "sha512-AgQ4rWzmCxOZLioFEjlzOI3Ch8giDWx8aUDxyNw9iOeCvD3GEYAB7dxWGQy4T/rPVe8iPmu73jPHuaSqcjKvxw==", "dev": true }, "@typescript-eslint/typescript-estree": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.17.0.tgz", "integrity": "sha512-X1gtjEcmM7Je+qJRhq7ZAAaNXYhTgqMkR10euC4Si6PIjb+kwEQHSxGazXUQXFyqfEXdkGf6JijUu5R0uceQzg==", "dev": true, "requires": { "@typescript-eslint/types": "5.17.0", "@typescript-eslint/visitor-keys": "5.17.0", "debug": "^4.3.2", "globby": "^11.0.4", "is-glob": "^4.0.3", "semver": "^7.3.5", "tsutils": "^3.21.0" } }, "@typescript-eslint/utils": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.17.0.tgz", "integrity": "sha512-DVvndq1QoxQH+hFv+MUQHrrWZ7gQ5KcJzyjhzcqB1Y2Xes1UQQkTRPUfRpqhS8mhTWsSb2+iyvDW1Lef5DD7vA==", "dev": true, "requires": { "@types/json-schema": "^7.0.9", "@typescript-eslint/scope-manager": "5.17.0", "@typescript-eslint/types": "5.17.0", "@typescript-eslint/typescript-estree": "5.17.0", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0" } }, "@typescript-eslint/visitor-keys": { "version": "5.17.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.17.0.tgz", "integrity": "sha512-6K/zlc4OfCagUu7Am/BD5k8PSWQOgh34Nrv9Rxe2tBzlJ7uOeJ/h7ugCGDCeEZHT6k2CJBhbk9IsbkPI0uvUkA==", "dev": true, "requires": { "@typescript-eslint/types": "5.17.0", "eslint-visitor-keys": "^3.0.0" } }, "abab": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", "dev": true }, "acorn": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", "dev": true }, "acorn-globals": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "dev": true, "requires": { "acorn": "^7.1.1", "acorn-walk": "^7.1.1" }, "dependencies": { "acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true } } }, "acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "requires": {} }, "acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true }, "agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "requires": { "debug": "4" } }, "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "requires": { "type-fest": "^0.21.3" }, "dependencies": { "type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true } } }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "requires": { "color-convert": "^2.0.1" } }, "anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dev": true, "requires": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, "array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", "dev": true }, "babel-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", "dev": true, "requires": { "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", "babel-preset-jest": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" } }, "babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" } }, "babel-plugin-jest-hoist": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", "dev": true, "requires": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", "@types/babel__core": "^7.0.0", "@types/babel__traverse": "^7.0.6" } }, "babel-preset-current-node-syntax": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "requires": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", "@babel/plugin-syntax-class-properties": "^7.8.3", "@babel/plugin-syntax-import-meta": "^7.8.3", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-syntax-numeric-separator": "^7.8.3", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-top-level-await": "^7.8.3" } }, "babel-preset-jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", "dev": true, "requires": { "babel-plugin-jest-hoist": "^27.5.1", "babel-preset-current-node-syntax": "^1.0.0" } }, "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "requires": { "fill-range": "^7.0.1" } }, "browser-process-hrtime": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "dev": true }, "browserslist": { "version": "4.17.4", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz", "integrity": "sha512-Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ==", "dev": true, "requires": { "caniuse-lite": "^1.0.30001265", "electron-to-chromium": "^1.3.867", "escalade": "^3.1.1", "node-releases": "^2.0.0", "picocolors": "^1.0.0" } }, "bs-logger": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", "dev": true, "requires": { "fast-json-stable-stringify": "2.x" } }, "bser": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "requires": { "node-int64": "^0.4.0" } }, "buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true }, "camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, "caniuse-lite": { "version": "1.0.30001267", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001267.tgz", "integrity": "sha512-r1mjTzAuJ9W8cPBGbbus8E0SKcUP7gn03R14Wk8FlAlqhH9hroy9nLqmpuXlfKEw/oILW+FGz47ipXV2O7x8lg==", "dev": true }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true }, "ci-info": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz", "integrity": "sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==", "dev": true }, "cjs-module-lexer": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", "dev": true }, "cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "requires": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }, "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", "dev": true }, "collect-v8-coverage": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "requires": { "color-name": "~1.1.4" } }, "color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "requires": { "delayed-stream": "~1.0.0" } }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, "convert-source-map": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, "requires": { "safe-buffer": "~5.1.1" } }, "cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "requires": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", "dev": true }, "cssstyle": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, "requires": { "cssom": "~0.3.6" }, "dependencies": { "cssom": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true } } }, "data-urls": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, "requires": { "abab": "^2.0.3", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.0.0" } }, "debug": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", "dev": true, "requires": { "ms": "2.1.2" } }, "decimal.js": { "version": "10.3.1", "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", "dev": true }, "dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", "dev": true }, "deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "deepmerge": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "dev": true }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", "dev": true }, "detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true }, "diff-sequences": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", "dev": true }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "requires": { "path-type": "^4.0.0" } }, "doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "requires": { "esutils": "^2.0.2" } }, "domexception": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "dev": true, "requires": { "webidl-conversions": "^5.0.0" }, "dependencies": { "webidl-conversions": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "dev": true } } }, "electron-to-chromium": { "version": "1.3.870", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.870.tgz", "integrity": "sha512-PiJMshfq6PL+i1V+nKLwhHbCKeD8eAz8rvO9Cwk/7cChOHJBtufmjajLyYLsSRHguRFiOCVx3XzJLeZsIAYfSA==", "dev": true }, "emittery": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", "dev": true }, "emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "requires": { "is-arrayish": "^0.2.1" } }, "escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true }, "escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true }, "escodegen": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", "dev": true, "requires": { "esprima": "^4.0.1", "estraverse": "^5.2.0", "esutils": "^2.0.2", "optionator": "^0.8.1", "source-map": "~0.6.1" }, "dependencies": { "estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true }, "levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", "dev": true, "requires": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" } }, "optionator": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, "requires": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", "levn": "~0.3.0", "prelude-ls": "~1.1.2", "type-check": "~0.3.2", "word-wrap": "~1.2.3" } }, "prelude-ls": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", "dev": true }, "type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", "dev": true, "requires": { "prelude-ls": "~1.1.2" } } } }, "eslint": { "version": "8.12.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.12.0.tgz", "integrity": "sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q==", "dev": true, "requires": { "@eslint/eslintrc": "^1.2.1", "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.1.1", "eslint-utils": "^3.0.0", "eslint-visitor-keys": "^3.3.0", "espree": "^9.3.1", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", "glob-parent": "^6.0.1", "globals": "^13.6.0", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" }, "dependencies": { "eslint-scope": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", "dev": true, "requires": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true } } }, "eslint-config-prettier": { "version": "8.5.0", "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", "dev": true, "requires": {} }, "eslint-plugin-es": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", "dev": true, "requires": { "eslint-utils": "^2.0.0", "regexpp": "^3.0.0" }, "dependencies": { "eslint-utils": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "requires": { "eslint-visitor-keys": "^1.1.0" } }, "eslint-visitor-keys": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true } } }, "eslint-plugin-node": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", "dev": true, "requires": { "eslint-plugin-es": "^3.0.0", "eslint-utils": "^2.0.0", "ignore": "^5.1.1", "minimatch": "^3.0.4", "resolve": "^1.10.1", "semver": "^6.1.0" }, "dependencies": { "eslint-utils": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", "dev": true, "requires": { "eslint-visitor-keys": "^1.1.0" } }, "eslint-visitor-keys": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "requires": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" } }, "eslint-utils": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "requires": { "eslint-visitor-keys": "^2.0.0" }, "dependencies": { "eslint-visitor-keys": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true } } }, "eslint-visitor-keys": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", "dev": true }, "espree": { "version": "9.3.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.1.tgz", "integrity": "sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==", "dev": true, "requires": { "acorn": "^8.7.0", "acorn-jsx": "^5.3.1", "eslint-visitor-keys": "^3.3.0" } }, "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true }, "esquery": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", "dev": true, "requires": { "estraverse": "^5.1.0" }, "dependencies": { "estraverse": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", "dev": true } } }, "esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { "estraverse": "^5.2.0" }, "dependencies": { "estraverse": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", "dev": true } } }, "estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, "execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "requires": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" } }, "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", "dev": true }, "expect": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "dev": true, "requires": { "@jest/types": "^27.5.1", "jest-get-type": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1" } }, "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "fast-glob": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" }, "dependencies": { "glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { "is-glob": "^4.0.1" } } } }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, "fastq": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, "requires": { "reusify": "^1.0.4" } }, "fb-watchman": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", "dev": true, "requires": { "bser": "2.1.1" } }, "file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "requires": { "flat-cache": "^3.0.4" } }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "requires": { "to-regex-range": "^5.0.1" } }, "find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" } }, "flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "requires": { "flatted": "^3.1.0", "rimraf": "^3.0.2" } }, "flatted": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", "dev": true }, "form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" } }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, "fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, "optional": true }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, "functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", "dev": true }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true }, "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, "get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, "glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "requires": { "is-glob": "^4.0.3" } }, "globals": { "version": "13.12.1", "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.1.tgz", "integrity": "sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==", "dev": true, "requires": { "type-fest": "^0.20.2" } }, "globby": { "version": "11.0.4", "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", "dev": true, "requires": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.1.1", "ignore": "^5.1.4", "merge2": "^1.3.0", "slash": "^3.0.0" } }, "graceful-fs": { "version": "4.2.9", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", "dev": true }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "requires": { "function-bind": "^1.1.1" } }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, "html-encoding-sniffer": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "dev": true, "requires": { "whatwg-encoding": "^1.0.5" } }, "html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, "http-proxy-agent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, "requires": { "@tootallnate/once": "1", "agent-base": "6", "debug": "4" } }, "https-proxy-agent": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", "dev": true, "requires": { "agent-base": "6", "debug": "4" } }, "human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true }, "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } }, "ignore": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "dev": true }, "import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "requires": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" } }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" } }, "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, "is-core-module": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", "dev": true, "requires": { "has": "^1.0.3" } }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "dev": true }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true }, "is-generator-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true }, "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { "is-extglob": "^2.1.1" } }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, "is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", "dev": true }, "is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", "dev": true }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, "istanbul-lib-coverage": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true }, "istanbul-lib-instrument": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", "dev": true, "requires": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" }, "dependencies": { "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, "requires": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^3.0.0", "supports-color": "^7.1.0" } }, "istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "requires": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", "source-map": "^0.6.1" } }, "istanbul-reports": { "version": "3.1.4", "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", "dev": true, "requires": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" } }, "jest": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "dev": true, "requires": { "@jest/core": "^27.5.1", "import-local": "^3.0.2", "jest-cli": "^27.5.1" } }, "jest-changed-files": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", "dev": true, "requires": { "@jest/types": "^27.5.1", "execa": "^5.0.0", "throat": "^6.0.1" } }, "jest-circus": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "dedent": "^0.7.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3", "throat": "^6.0.1" } }, "jest-cli": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "dev": true, "requires": { "@jest/core": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", "import-local": "^3.0.2", "jest-config": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "prompts": "^2.0.1", "yargs": "^16.2.0" } }, "jest-config": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", "dev": true, "requires": { "@babel/core": "^7.8.0", "@jest/test-sequencer": "^27.5.1", "@jest/types": "^27.5.1", "babel-jest": "^27.5.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.1", "graceful-fs": "^4.2.9", "jest-circus": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-get-type": "^27.5.1", "jest-jasmine2": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runner": "^27.5.1", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "micromatch": "^4.0.4", "parse-json": "^5.2.0", "pretty-format": "^27.5.1", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" } }, "jest-diff": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", "dev": true, "requires": { "chalk": "^4.0.0", "diff-sequences": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" } }, "jest-docblock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", "dev": true, "requires": { "detect-newline": "^3.0.0" } }, "jest-each": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "dev": true, "requires": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1" } }, "jest-environment-jsdom": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1", "jsdom": "^16.6.0" } }, "jest-environment-node": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "jest-mock": "^27.5.1", "jest-util": "^27.5.1" } }, "jest-get-type": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", "dev": true }, "jest-haste-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@types/graceful-fs": "^4.1.2", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "fsevents": "^2.3.2", "graceful-fs": "^4.2.9", "jest-regex-util": "^27.5.1", "jest-serializer": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "micromatch": "^4.0.4", "walker": "^1.0.7" } }, "jest-jasmine2": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", "expect": "^27.5.1", "is-generator-fn": "^2.0.0", "jest-each": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-runtime": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "pretty-format": "^27.5.1", "throat": "^6.0.1" } }, "jest-leak-detector": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", "dev": true, "requires": { "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" } }, "jest-matcher-utils": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "dev": true, "requires": { "chalk": "^4.0.0", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "pretty-format": "^27.5.1" } }, "jest-message-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "dev": true, "requires": { "@babel/code-frame": "^7.12.13", "@jest/types": "^27.5.1", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", "pretty-format": "^27.5.1", "slash": "^3.0.0", "stack-utils": "^2.0.3" } }, "jest-mock": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@types/node": "*" } }, "jest-pnp-resolver": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", "dev": true, "requires": {} }, "jest-regex-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "dev": true }, "jest-resolve": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", "dev": true, "requires": { "@jest/types": "^27.5.1", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-pnp-resolver": "^1.2.2", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", "resolve": "^1.20.0", "resolve.exports": "^1.1.0", "slash": "^3.0.0" } }, "jest-resolve-dependencies": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", "dev": true, "requires": { "@jest/types": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-snapshot": "^27.5.1" } }, "jest-runner": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", "dev": true, "requires": { "@jest/console": "^27.5.1", "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.8.1", "graceful-fs": "^4.2.9", "jest-docblock": "^27.5.1", "jest-environment-jsdom": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-leak-detector": "^27.5.1", "jest-message-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-runtime": "^27.5.1", "jest-util": "^27.5.1", "jest-worker": "^27.5.1", "source-map-support": "^0.5.6", "throat": "^6.0.1" } }, "jest-runtime": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", "dev": true, "requires": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", "@jest/globals": "^27.5.1", "@jest/source-map": "^27.5.1", "@jest/test-result": "^27.5.1", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "execa": "^5.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", "jest-haste-map": "^27.5.1", "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", "jest-regex-util": "^27.5.1", "jest-resolve": "^27.5.1", "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", "slash": "^3.0.0", "strip-bom": "^4.0.0" } }, "jest-serializer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "dev": true, "requires": { "@types/node": "*", "graceful-fs": "^4.2.9" } }, "jest-snapshot": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", "dev": true, "requires": { "@babel/core": "^7.7.2", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", "@babel/traverse": "^7.7.2", "@babel/types": "^7.0.0", "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/babel__traverse": "^7.0.4", "@types/prettier": "^2.1.5", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", "expect": "^27.5.1", "graceful-fs": "^4.2.9", "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", "jest-haste-map": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", "jest-util": "^27.5.1", "natural-compare": "^1.4.0", "pretty-format": "^27.5.1", "semver": "^7.3.2" } }, "jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "requires": { "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" } }, "jest-validate": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "dev": true, "requires": { "@jest/types": "^27.5.1", "camelcase": "^6.2.0", "chalk": "^4.0.0", "jest-get-type": "^27.5.1", "leven": "^3.1.0", "pretty-format": "^27.5.1" }, "dependencies": { "camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true } } }, "jest-watcher": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", "dev": true, "requires": { "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "jest-util": "^27.5.1", "string-length": "^4.0.1" } }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "requires": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "dependencies": { "supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "requires": { "has-flag": "^4.0.0" } } } }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, "js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "requires": { "argparse": "^2.0.1" } }, "jsdom": { "version": "16.7.0", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, "requires": { "abab": "^2.0.5", "acorn": "^8.2.4", "acorn-globals": "^6.0.0", "cssom": "^0.4.4", "cssstyle": "^2.3.0", "data-urls": "^2.0.0", "decimal.js": "^10.2.1", "domexception": "^2.0.1", "escodegen": "^2.0.0", "form-data": "^3.0.0", "html-encoding-sniffer": "^2.0.1", "http-proxy-agent": "^4.0.1", "https-proxy-agent": "^5.0.0", "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.0", "parse5": "6.0.1", "saxes": "^5.0.1", "symbol-tree": "^3.2.4", "tough-cookie": "^4.0.0", "w3c-hr-time": "^1.0.2", "w3c-xmlserializer": "^2.0.0", "webidl-conversions": "^6.1.0", "whatwg-encoding": "^1.0.5", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.5.0", "ws": "^7.4.6", "xml-name-validator": "^3.0.0" } }, "jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true }, "json5": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", "dev": true, "requires": { "minimist": "^1.2.5" } }, "kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true }, "leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true }, "levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "requires": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, "locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { "p-locate": "^4.1.0" } }, "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, "lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "requires": { "yallist": "^4.0.0" } }, "make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "requires": { "semver": "^6.0.0" }, "dependencies": { "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true }, "makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "requires": { "tmpl": "1.0.5" } }, "merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, "merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, "micromatch": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", "dev": true, "requires": { "braces": "^3.0.1", "picomatch": "^2.2.3" } }, "mime-db": { "version": "1.51.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", "dev": true }, "mime-types": { "version": "2.1.34", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", "dev": true, "requires": { "mime-db": "1.51.0" } }, "mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", "dev": true }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true }, "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", "dev": true }, "node-releases": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.0.tgz", "integrity": "sha512-aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA==", "dev": true }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true }, "npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "requires": { "path-key": "^3.0.0" } }, "nwsapi": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", "dev": true }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, "requires": { "wrappy": "1" } }, "onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "requires": { "mimic-fn": "^2.1.0" } }, "optionator": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, "requires": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.3" } }, "p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { "p-try": "^2.0.0" } }, "p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { "p-limit": "^2.2.0" } }, "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "requires": { "callsites": "^3.0.0" } }, "parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "dev": true }, "path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true }, "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true }, "path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, "path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", "dev": true }, "pirates": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==", "dev": true }, "pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { "find-up": "^4.0.0" } }, "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, "prettier": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.6.1.tgz", "integrity": "sha512-8UVbTBYGwN37Bs9LERmxCPjdvPxlEowx2urIL6urHzdb3SDq4B/Z6xLFCblrSnE4iKWcS6ziJ3aOYrc1kz/E2A==", "dev": true }, "pretty-format": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, "requires": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" }, "dependencies": { "ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true } } }, "prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "requires": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" } }, "psl": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", "dev": true }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, "react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true }, "regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true }, "resolve": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", "dev": true, "requires": { "is-core-module": "^2.2.0", "path-parse": "^1.0.6" } }, "resolve-cwd": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "requires": { "resolve-from": "^5.0.0" }, "dependencies": { "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true } } }, "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true }, "resolve.exports": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", "dev": true }, "reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true }, "rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "requires": { "glob": "^7.1.3" } }, "run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "requires": { "queue-microtask": "^1.2.2" } }, "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true }, "saxes": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", "dev": true, "requires": { "xmlchars": "^2.2.0" } }, "semver": { "version": "7.3.5", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", "dev": true, "requires": { "lru-cache": "^6.0.0" } }, "shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { "shebang-regex": "^3.0.0" } }, "shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "signal-exit": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz", "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==", "dev": true }, "sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, "slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true }, "source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "requires": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, "stack-utils": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", "dev": true, "requires": { "escape-string-regexp": "^2.0.0" }, "dependencies": { "escape-string-regexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true } } }, "string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "requires": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" } }, "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { "ansi-regex": "^5.0.1" } }, "strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true }, "strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true }, "strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { "has-flag": "^4.0.0" } }, "supports-hyperlinks": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", "dev": true, "requires": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" } }, "symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, "terminal-link": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", "dev": true, "requires": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" } }, "test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "requires": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" } }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true }, "throat": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", "dev": true }, "tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", "dev": true }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "requires": { "is-number": "^7.0.0" } }, "tough-cookie": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", "dev": true, "requires": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.1.2" } }, "tr46": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "dev": true, "requires": { "punycode": "^2.1.1" } }, "ts-jest": { "version": "27.1.4", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.4.tgz", "integrity": "sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==", "dev": true, "requires": { "bs-logger": "0.x", "fast-json-stable-stringify": "2.x", "jest-util": "^27.0.0", "json5": "2.x", "lodash.memoize": "4.x", "make-error": "1.x", "semver": "7.x", "yargs-parser": "20.x" } }, "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, "tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, "requires": { "tslib": "^1.8.1" } }, "type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "requires": { "prelude-ls": "^1.2.1" } }, "type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true }, "type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true }, "typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, "requires": { "is-typedarray": "^1.0.0" } }, "typescript": { "version": "4.6.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz", "integrity": "sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==", "dev": true }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "requires": { "punycode": "^2.1.0" } }, "v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, "v8-to-istanbul": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", "source-map": "^0.7.3" }, "dependencies": { "source-map": { "version": "0.7.3", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", "dev": true } } }, "w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", "dev": true, "requires": { "browser-process-hrtime": "^1.0.0" } }, "w3c-xmlserializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", "dev": true, "requires": { "xml-name-validator": "^3.0.0" } }, "walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "requires": { "makeerror": "1.0.12" } }, "webidl-conversions": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", "dev": true }, "whatwg-encoding": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "dev": true, "requires": { "iconv-lite": "0.4.24" } }, "whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", "dev": true }, "whatwg-url": { "version": "8.7.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dev": true, "requires": { "lodash": "^4.7.0", "tr46": "^2.1.0", "webidl-conversions": "^6.1.0" } }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { "isexe": "^2.0.0" } }, "word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "requires": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true }, "write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, "requires": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, "ws": { "version": "7.5.7", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz", "integrity": "sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==", "dev": true, "requires": {} }, "xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", "dev": true }, "xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, "y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, "yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "requires": { "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.0", "y18n": "^5.0.5", "yargs-parser": "^20.2.2" } }, "yargs-parser": { "version": "20.2.9", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true } } } css-what-6.1.0/package.json000066400000000000000000000033051422132521400155320ustar00rootroot00000000000000{ "author": "Felix Böhm (http://feedic.com)", "name": "css-what", "description": "a CSS selector parser", "version": "6.1.0", "funding": { "url": "https://github.com/sponsors/fb55" }, "repository": { "type": "git", "url": "https://github.com/fb55/css-what" }, "main": "lib/commonjs/index.js", "module": "lib/es/index.js", "types": "lib/es/index.d.ts", "sideEffects": false, "files": [ "lib/**/*" ], "scripts": { "test": "npm run test:jest && npm run lint", "test:jest": "jest", "lint": "npm run lint:es && npm run lint:prettier", "lint:es": "eslint src", "lint:prettier": "npm run prettier -- --check", "format": "npm run format:es && npm run format:prettier", "format:es": "npm run lint:es -- --fix", "format:prettier": "npm run prettier -- --write", "prettier": "prettier '**/*.{ts,md,json,yml}'", "build": "tsc && tsc -p tsconfig.es.json", "prepare": "npm run build" }, "devDependencies": { "@types/jest": "^27.4.1", "@types/node": "^17.0.23", "@typescript-eslint/eslint-plugin": "^5.17.0", "@typescript-eslint/parser": "^5.17.0", "eslint": "^8.12.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-node": "^11.1.0", "jest": "^27.5.1", "prettier": "^2.6.1", "ts-jest": "^27.1.4", "typescript": "^4.6.3" }, "engines": { "node": ">= 6" }, "license": "BSD-2-Clause", "jest": { "preset": "ts-jest", "roots": [ "src" ] }, "prettier": { "tabWidth": 4 } } css-what-6.1.0/readme.md000066400000000000000000000112121422132521400150170ustar00rootroot00000000000000# css-what [![Build Status](https://img.shields.io/github/workflow/status/fb55/css-what/Node.js%20CI/master)](https://github.com/fb55/css-what/actions/workflows/nodejs-test.yml) [![Coverage](https://img.shields.io/coveralls/github/fb55/css-what/master)](https://coveralls.io/github/fb55/css-what?branch=master) A CSS selector parser. ## Example ```js import * as CSSwhat from "css-what"; CSSwhat.parse("foo[bar]:baz") ~> [ [ { type: "tag", name: "foo" }, { type: "attribute", name: "bar", action: "exists", value: "", ignoreCase: null }, { type: "pseudo", name: "baz", data: null } ] ] ``` ## API **`CSSwhat.parse(selector)` - Parses `selector`.** The function returns a two-dimensional array. The first array represents selectors separated by commas (eg. `sub1, sub2`), the second contains the relevant tokens for that selector. Possible token types are: | name | properties | example | output | | ------------------- | --------------------------------------- | ------------- | ---------------------------------------------------------------------------------------- | | `tag` | `name` | `div` | `{ type: 'tag', name: 'div' }` | | `universal` | - | `*` | `{ type: 'universal' }` | | `pseudo` | `name`, `data` | `:name(data)` | `{ type: 'pseudo', name: 'name', data: 'data' }` | | `pseudo` | `name`, `data` | `:name` | `{ type: 'pseudo', name: 'name', data: null }` | | `pseudo-element` | `name` | `::name` | `{ type: 'pseudo-element', name: 'name' }` | | `attribute` | `name`, `action`, `value`, `ignoreCase` | `[attr]` | `{ type: 'attribute', name: 'attr', action: 'exists', value: '', ignoreCase: false }` | | `attribute` | `name`, `action`, `value`, `ignoreCase` | `[attr=val]` | `{ type: 'attribute', name: 'attr', action: 'equals', value: 'val', ignoreCase: false }` | | `attribute` | `name`, `action`, `value`, `ignoreCase` | `[attr^=val]` | `{ type: 'attribute', name: 'attr', action: 'start', value: 'val', ignoreCase: false }` | | `attribute` | `name`, `action`, `value`, `ignoreCase` | `[attr$=val]` | `{ type: 'attribute', name: 'attr', action: 'end', value: 'val', ignoreCase: false }` | | `child` | - | `>` | `{ type: 'child' }` | | `parent` | - | `<` | `{ type: 'parent' }` | | `sibling` | - | `~` | `{ type: 'sibling' }` | | `adjacent` | - | `+` | `{ type: 'adjacent' }` | | `descendant` | - | | `{ type: 'descendant' }` | | `column-combinator` | - | `\|\|` | `{ type: 'column-combinator' }` | **`CSSwhat.stringify(selector)` - Turns `selector` back into a string.** --- License: BSD-2-Clause ## Security contact information To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure. ## `css-what` for enterprise Available as part of the Tidelift Subscription The maintainers of `css-what` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-css-what?utm_source=npm-css-what&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) css-what-6.1.0/src/000077500000000000000000000000001422132521400140325ustar00rootroot00000000000000css-what-6.1.0/src/__fixtures__/000077500000000000000000000000001422132521400164775ustar00rootroot00000000000000css-what-6.1.0/src/__fixtures__/out.json000066400000000000000000015265571422132521400202260ustar00rootroot00000000000000{ "": [], "\t": [], "\t#qunit-fixture p": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "\n#qunit-fixture p": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "\f#qunit-fixture p": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "\r#qunit-fixture p": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], " ": [], " #qunit-fixture p": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], " a ": [ [ { "type": "tag", "name": "a", "namespace": null } ] ], " p ": [ [ { "type": "tag", "name": "p", "namespace": null } ] ], "#__sizzle__": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "__sizzle__", "namespace": null, "ignoreCase": "quirks" } ] ], "#ap :nth-last-of-type(0n+3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-of-type", "data": "0n+3" } ] ], "#ap :nth-last-of-type(2n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-of-type", "data": "2n" } ] ], "#ap :nth-last-of-type(2n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-of-type", "data": "2n+1" } ] ], "#ap :nth-last-of-type(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-of-type", "data": "3" } ] ], "#ap :nth-last-of-type(even)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-of-type", "data": "even" } ] ], "#ap :nth-last-of-type(n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-of-type", "data": "n" } ] ], "#ap :nth-last-of-type(odd)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-of-type", "data": "odd" } ] ], "#ap :nth-of-type(0n+3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-of-type", "data": "0n+3" } ] ], "#ap :nth-of-type(2n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-of-type", "data": "2n" } ] ], "#ap :nth-of-type(2n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-of-type", "data": "2n+1" } ] ], "#ap :nth-of-type(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-of-type", "data": "3" } ] ], "#ap :nth-of-type(even)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-of-type", "data": "even" } ] ], "#ap :nth-of-type(n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-of-type", "data": "n" } ] ], "#ap :nth-of-type(odd)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-of-type", "data": "odd" } ] ], "#ap a[hreflang!='en']": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "hreflang", "action": "not", "value": "en", "namespace": null, "ignoreCase": null } ] ], "#ap:has(*), #ap:has(*)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ] ] } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ], "#asdfasdf #foobar": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "asdfasdf", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "foobar", "namespace": null, "ignoreCase": "quirks" } ] ], "#attr-child-boosh": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attr-child-boosh", "namespace": null, "ignoreCase": "quirks" } ] ], "#attributes a[href=\"#aname\"]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "equals", "value": "#aname", "namespace": null, "ignoreCase": null } ] ], "#attributes div[test$=foo]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "end", "value": "foo", "namespace": null, "ignoreCase": null } ] ], "#attributes div[test*=hree]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "any", "value": "hree", "namespace": null, "ignoreCase": null } ] ], "#attributes div[test=\"two-foo\"]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "equals", "value": "two-foo", "namespace": null, "ignoreCase": null } ] ], "#attributes div[test='two-foo']": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "equals", "value": "two-foo", "namespace": null, "ignoreCase": null } ] ], "#attributes div[test=two-foo]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "equals", "value": "two-foo", "namespace": null, "ignoreCase": null } ] ], "#attributes div[test^=two]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "start", "value": "two", "namespace": null, "ignoreCase": null } ] ], "#attributes div[test|=\"two-foo\"]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "hyphen", "value": "two-foo", "namespace": null, "ignoreCase": null } ] ], "#attributes div[test|=two]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "hyphen", "value": "two", "namespace": null, "ignoreCase": null } ] ], "#attributes div[test~=three]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "element", "value": "three", "namespace": null, "ignoreCase": null } ] ], "#attributes div[unique-test]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "attributes", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "unique-test", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#backslash\\\\foo": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "backslash\\foo", "namespace": null, "ignoreCase": "quirks" } ] ], "#blargh": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "blargh", "namespace": null, "ignoreCase": "quirks" } ] ], "#body": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "body", "namespace": null, "ignoreCase": "quirks" } ] ], "#boosh": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" } ] ], "#boosh #booshTest": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "booshTest", "namespace": null, "ignoreCase": "quirks" } ] ], "#boosh *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null } ] ], "#boosh .a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" } ] ], "#boosh div": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], "#boosh div div": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], "#boosh div,#boosh span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#boosh div.a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" } ] ], "#boosh div[test=fg]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "equals", "value": "fg", "namespace": null, "ignoreCase": null } ] ], "#boosh div[test]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "test", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#boosh span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#boosh,#boosh": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" } ] ], "#boosh,.apples,#boosh": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" } ], [ { "type": "attribute", "name": "class", "action": "element", "value": "apples", "namespace": null, "ignoreCase": "quirks" } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" } ] ], "#boosh>.a>#booshTest": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "booshTest", "namespace": null, "ignoreCase": "quirks" } ] ], "#booshTest": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "booshTest", "namespace": null, "ignoreCase": "quirks" } ] ], "#direct-descend > .direct-descend": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" } ] ], "#direct-descend > .direct-descend > .lvl2": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "lvl2", "namespace": null, "ignoreCase": "quirks" } ] ], "#dupContainer span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "dupContainer", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#dupL1": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "dupL1", "namespace": null, "ignoreCase": "quirks" } ] ], "#dupL2": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "dupL2", "namespace": null, "ignoreCase": "quirks" } ] ], "#emem": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "emem", "namespace": null, "ignoreCase": "quirks" } ] ], "#first ~ div": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "first", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "div", "namespace": null } ] ], "#firstUL > *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "firstUL", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "universal", "namespace": null } ] ], "#firstp #foobar": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "firstp", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "foobar", "namespace": null, "ignoreCase": "quirks" } ] ], "#firstp #simon1": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "firstp", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "simon1", "namespace": null, "ignoreCase": "quirks" } ] ], "#fixtures": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "fixtures", "namespace": null, "ignoreCase": "quirks" } ] ], "#fixtures a *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "fixtures", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "descendant" }, { "type": "universal", "namespace": null } ] ], "#fixtures h1": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "fixtures", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "h1", "namespace": null } ] ], "#foo": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "foo", "namespace": null, "ignoreCase": "quirks" } ] ], "#foo > *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "foo", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "universal", "namespace": null } ] ], "#foo a:not(.blog)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "foo", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "blog", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#foo a:not(.blog.link)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "foo", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "blog", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "link", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#foo a:not(.link)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "foo", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "link", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#foo\\:bar": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "foo:bar", "namespace": null, "ignoreCase": "quirks" } ] ], "#foo\\:bar span:not(:input)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "foo:bar", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "input", "data": null } ] ] } ] ], "#form": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" } ] ], "#form #first": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "first", "namespace": null, "ignoreCase": "quirks" } ] ], "#form :checkbox": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "checkbox", "data": null } ] ], "#form :checkbox:checked": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "checkbox", "data": null }, { "type": "pseudo", "name": "checked", "data": null } ] ], "#form :input": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "input", "data": null } ] ], "#form :radio": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "radio", "data": null } ] ], "#form :radio:checked": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "radio", "data": null }, { "type": "pseudo", "name": "checked", "data": null } ] ], "#form :radio:checked, #form :checkbox:checked": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "radio", "data": null }, { "type": "pseudo", "name": "checked", "data": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "checkbox", "data": null }, { "type": "pseudo", "name": "checked", "data": null } ] ], "#form :text": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "text", "data": null } ] ], "#form > #option1a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "option1a", "namespace": null, "ignoreCase": "quirks" } ] ], "#form > #radio1": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "radio1", "namespace": null, "ignoreCase": "quirks" } ] ], "#form [for=action]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "for", "action": "equals", "value": "action", "namespace": null, "ignoreCase": null } ] ], "#form input[type='radio'], #form input[type=\"hidden\"]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "radio", "namespace": null, "ignoreCase": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "hidden", "namespace": null, "ignoreCase": null } ] ], "#form input[type='radio'], #form input[type='hidden']": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "radio", "namespace": null, "ignoreCase": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "hidden", "namespace": null, "ignoreCase": null } ] ], "#form input[type='radio'], #form input[type=hidden]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "radio", "namespace": null, "ignoreCase": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "hidden", "namespace": null, "ignoreCase": null } ] ], "#form input[type=search]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "search", "namespace": null, "ignoreCase": null } ] ], "#form input[type=text]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "text", "namespace": null, "ignoreCase": null } ] ], "#form option:checked": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "checked", "data": null } ] ], "#form option:not(:contains(Nothing),#option1b,:selected)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "contains", "data": "Nothing" } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "option1b", "namespace": null, "ignoreCase": "quirks" } ], [ { "type": "pseudo", "name": "selected", "data": null } ] ] } ] ], "#form option:not(:not(:selected))[id^='option3']": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "selected", "data": null } ] ] } ] ] }, { "type": "attribute", "name": "id", "action": "start", "value": "option3", "namespace": null, "ignoreCase": null } ] ], "#form option:selected": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "selected", "data": null } ] ], "#form select:has(option:first-child:contains('o'))": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "select", "namespace": null }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null }, { "type": "pseudo", "name": "contains", "data": "o" } ] ] } ] ], "#form select:not(.select1):contains(Nothing) > option:not(option)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "select", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "select1", "namespace": null, "ignoreCase": "quirks" } ] ] }, { "type": "pseudo", "name": "contains", "data": "Nothing" }, { "type": "child" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "option", "namespace": null } ] ] } ] ], "#form select:not([multiple])": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "select", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "multiple", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ] } ] ], "#form select:not([name='select1'])": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "select", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": null } ] ] } ] ], "#form select:not([name=select1])": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "select", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": null } ] ] } ] ], "#grandfather > div:not(#uncle) #son": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "grandfather", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "uncle", "namespace": null, "ignoreCase": "quirks" } ] ] }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "son", "namespace": null, "ignoreCase": "quirks" } ] ], "#groups ~ a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "groups", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "a", "namespace": null } ] ], "#hidden1:enabled": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "hidden1", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "enabled", "data": null } ] ], "#hsoob": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "hsoob", "namespace": null, "ignoreCase": "quirks" } ] ], "#hsoob #spanny": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "hsoob", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "spanny", "namespace": null, "ignoreCase": "quirks" } ] ], "#hsoob .a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "hsoob", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" } ] ], "#hsoob > div > .h": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "hsoob", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "h", "namespace": null, "ignoreCase": "quirks" } ] ], "#hsoob div": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "hsoob", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], "#hsoob div div": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "hsoob", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], "#hsoob div.a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "hsoob", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" } ] ], "#hsoob span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "hsoob", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#idTest": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "idTest", "namespace": null, "ignoreCase": "quirks" } ] ], "#item_1": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "item_1", "namespace": null, "ignoreCase": "quirks" } ] ], "#item_3": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "item_3", "namespace": null, "ignoreCase": "quirks" } ] ], "#length ~ input": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "length", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "input", "namespace": null } ] ], "#lengthtest": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "lengthtest", "namespace": null, "ignoreCase": "quirks" } ] ], "#level1 *:first-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "#level1 *:last-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "#level1 *:only-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "only-child", "data": null } ] ], "#level1 *[id$=\"_1\"]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "attribute", "name": "id", "action": "end", "value": "_1", "namespace": null, "ignoreCase": null } ] ], "#level1 *[id$=_1]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "attribute", "name": "id", "action": "end", "value": "_1", "namespace": null, "ignoreCase": null } ] ], "#level1 *[id*=\"2\"]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "attribute", "name": "id", "action": "any", "value": "2", "namespace": null, "ignoreCase": null } ] ], "#level1 *[id^=\"level2_\"]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "attribute", "name": "id", "action": "start", "value": "level2_", "namespace": null, "ignoreCase": null } ] ], "#level1 *[id^=level2_]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "attribute", "name": "id", "action": "start", "value": "level2_", "namespace": null, "ignoreCase": null } ] ], "#level1 > span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#level1 div:last-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "#level1 span:first-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "#level1:first-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "#level1:only-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "only-child", "data": null } ] ], "#level1>*:first-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "#level1>*:last-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "#level1>*:only-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "only-child", "data": null } ] ], "#level1>div:first-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "#level1>div:last-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "#level1>span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#level1>span:last-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level1", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "span", "namespace": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "#level2_1 + *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "universal", "namespace": null } ] ], "#level2_1 + span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#level2_1 > *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "universal", "namespace": null } ] ], "#level2_1 ~ *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "universal", "namespace": null } ] ], "#level2_1 ~ span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#level2_1+span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#level2_2 + span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#level2_2 :only-child:not(:first-child)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "only-child", "data": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "first-child", "data": null } ] ] } ] ], "#level2_2 :only-child:not(:last-child)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "only-child", "data": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "last-child", "data": null } ] ] } ] ], "#level2_2 ~ span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level2_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#level3_1 + *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level3_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "universal", "namespace": null } ] ], "#level3_1 + em": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level3_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "em", "namespace": null } ] ], "#level3_1 + span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level3_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#level3_1 ~ #level3_2": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level3_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "attribute", "name": "id", "action": "equals", "value": "level3_2", "namespace": null, "ignoreCase": "quirks" } ] ], "#level3_1 ~ em": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level3_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "em", "namespace": null } ] ], "#level3_1:empty": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level3_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "empty", "data": null } ] ], "#level3_2 + *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level3_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "universal", "namespace": null } ] ], "#level3_2 ~ *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "level3_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "universal", "namespace": null } ] ], "#link_2.internal": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "link_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" } ] ], "#link_2.internal.highlight": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "link_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "highlight", "namespace": null, "ignoreCase": "quirks" } ] ], "#link_2.internal.nonexistent": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "link_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "nonexistent", "namespace": null, "ignoreCase": "quirks" } ] ], "#list > li:nth-child(-n+2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "list", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "-n+2" } ] ], "#list > li:nth-child(n+2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "list", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "n+2" } ] ], "#list li:not(#item_1):not(#item_3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "list", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "item_1", "namespace": null, "ignoreCase": "quirks" } ] ] }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "item_3", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#list>li": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "list", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null } ] ], "#listWithTabIndex": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "listWithTabIndex", "namespace": null, "ignoreCase": "quirks" } ] ], "#liveHandlerOrder ~ div em:contains('1')": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "liveHandlerOrder", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "1" } ] ], "#lonelyBoosh": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "lonelyBoosh", "namespace": null, "ignoreCase": "quirks" } ] ], "#lonelyHsoob": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "lonelyHsoob", "namespace": null, "ignoreCase": "quirks" } ] ], "#moretests script[src]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "moretests", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "script", "namespace": null }, { "type": "attribute", "name": "src", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#name\\+value": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "name+value", "namespace": null, "ignoreCase": "quirks" } ] ], "#nonexistent:has(*), #ap:has(*)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "nonexistent", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ] ] } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "ap", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ], "#oooo": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "oooo", "namespace": null, "ignoreCase": "quirks" } ] ], "#order-matters .order-matters": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "order-matters", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "order-matters", "namespace": null, "ignoreCase": "quirks" } ] ], "#p *:nth-child(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3" } ] ], "#p a:first-of-type": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "first-of-type", "data": null } ] ], "#p a:last-of-type": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "last-of-type", "data": null } ] ], "#p a:not(:first-of-type)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "first-of-type", "data": null } ] ] } ] ], "#p a:not(:last-of-type)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "last-of-type", "data": null } ] ] } ] ], "#p a:not(:nth-last-of-type(1))": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "nth-last-of-type", "data": "1" } ] ] } ] ], "#p a:not(:nth-of-type(1))": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "nth-of-type", "data": "1" } ] ] } ] ], "#p a:not([rel$=\"nofollow\"]) > em": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "rel", "action": "end", "value": "nofollow", "namespace": null, "ignoreCase": null } ] ] }, { "type": "child" }, { "type": "tag", "name": "em", "namespace": null } ] ], "#p a:not([rel$=\"nofollow\"]) em": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "rel", "action": "end", "value": "nofollow", "namespace": null, "ignoreCase": null } ] ] }, { "type": "descendant" }, { "type": "tag", "name": "em", "namespace": null } ] ], "#p a:not([rel$=\"nofollow\"])>em": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "rel", "action": "end", "value": "nofollow", "namespace": null, "ignoreCase": null } ] ] }, { "type": "child" }, { "type": "tag", "name": "em", "namespace": null } ] ], "#p a:not([rel$=nofollow])": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "rel", "action": "end", "value": "nofollow", "namespace": null, "ignoreCase": null } ] ] } ] ], "#p a:not([rel^=external])": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "rel", "action": "start", "value": "external", "namespace": null, "ignoreCase": null } ] ] } ] ], "#p a:not([rel~=nofollow])": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "rel", "action": "element", "value": "nofollow", "namespace": null, "ignoreCase": null } ] ] } ] ], "#p a:nth-child(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3" } ] ], "#p a:nth-last-of-type(1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "nth-last-of-type", "data": "1" } ] ], "#p a:nth-of-type(1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "nth-of-type", "data": "1" } ] ], "#p a:nth-of-type(2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "p", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "nth-of-type", "data": "2" } ] ], "#pseudos :nth-child(+3n-2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-child", "data": "+3n-2" } ] ], "#pseudos :nth-child(-n+5)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-child", "data": "-n+5" } ] ], "#pseudos :nth-child(-n+6)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-child", "data": "-n+6" } ] ], "#pseudos :nth-child(3n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-child", "data": "3n" } ] ], "#pseudos :nth-child(3n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-child", "data": "3n+1" } ] ], "#pseudos :nth-child(3n+2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-child", "data": "3n+2" } ] ], "#pseudos :nth-child(odd)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-child", "data": "odd" } ] ], "#pseudos :nth-last-child(-n+5)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-child", "data": "-n+5" } ] ], "#pseudos :nth-last-child(-n+6)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-child", "data": "-n+6" } ] ], "#pseudos :nth-last-child(3n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-child", "data": "3n+1" } ] ], "#pseudos :nth-last-child(3n+2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-child", "data": "3n+2" } ] ], "#pseudos :nth-last-child(3n-2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-child", "data": "3n-2" } ] ], "#pseudos :nth-last-child(odd)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-child", "data": "odd" } ] ], "#pseudos a:first-of-type": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "first-of-type", "data": null } ] ], "#pseudos a:nth-last-of-type(3n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "nth-last-of-type", "data": "3n+1" } ] ], "#pseudos a:nth-of-type(1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "nth-of-type", "data": "1" } ] ], "#pseudos a:nth-of-type(3n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "nth-of-type", "data": "3n" } ] ], "#pseudos a:nth-of-type(3n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "nth-of-type", "data": "3n+1" } ] ], "#pseudos a:nth-of-type(odd)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "nth-of-type", "data": "odd" } ] ], "#pseudos a:only-of-type": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "only-of-type", "data": null } ] ], "#pseudos div:first-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "#pseudos div:last-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "#pseudos div:last-of-type": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "last-of-type", "data": null } ] ], "#pseudos div:nth-child(2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "2" } ] ], "#pseudos div:nth-child(even)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "even" } ] ], "#pseudos div:nth-child(odd)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "odd" } ] ], "#pseudos div:nth-last-child(6)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "6" } ] ], "#pseudos div:nth-last-child(even)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "even" } ] ], "#pseudos div:nth-last-child(odd)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "odd" } ] ], "#pseudos div:nth-last-of-type(3n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "nth-last-of-type", "data": "3n+1" } ] ], "#pseudos div:nth-last-of-type(5)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "nth-last-of-type", "data": "5" } ] ], "#pseudos div:nth-of-type(3n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "nth-of-type", "data": "3n+1" } ] ], "#pseudos:target": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "pseudos", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "target", "data": null } ] ], "#qunit-fixture": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" } ] ], "#qunit-fixture *[title]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "attribute", "name": "title", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture :not(:has(:has(*)))": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ] } ] ] } ] ], "#qunit-fixture > :nth-last-of-type(-n+2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "pseudo", "name": "nth-last-of-type", "data": "-n+2" } ] ], "#qunit-fixture > :nth-of-type(-n+2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "pseudo", "name": "nth-of-type", "data": "-n+2" } ] ], "#qunit-fixture > :only-of-type": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "pseudo", "name": "only-of-type", "data": null } ] ], "#qunit-fixture > p:first-of-type": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "first-of-type", "data": null } ] ], "#qunit-fixture > p:last-of-type": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "last-of-type", "data": null } ] ], "#qunit-fixture [title]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "title", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture a + a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "adjacent" }, { "type": "tag", "name": "a", "namespace": null } ] ], "#qunit-fixture a + a, code > a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "adjacent" }, { "type": "tag", "name": "a", "namespace": null } ], [ { "type": "tag", "name": "code", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null } ] ], "#qunit-fixture a +a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "adjacent" }, { "type": "tag", "name": "a", "namespace": null } ] ], "#qunit-fixture a+ a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "adjacent" }, { "type": "tag", "name": "a", "namespace": null } ] ], "#qunit-fixture a+a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "adjacent" }, { "type": "tag", "name": "a", "namespace": null } ] ], "#qunit-fixture a:last-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "#qunit-fixture a:only-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "only-child", "data": null } ] ], "#qunit-fixture a[ rel = 'bookmark' ]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "rel", "action": "equals", "value": "bookmark", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture a[ title ]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "title", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture a[TITLE]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "TITLE", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture a[href='http://www.google.com/']": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "equals", "value": "http://www.google.com/", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture a[rel='bookmark']": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "rel", "action": "equals", "value": "bookmark", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture a[rel=bookmark]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "rel", "action": "equals", "value": "bookmark", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture a[title]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "title", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture div:has(div:has(div:not([id])))": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "id", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ] } ] ] } ] ] } ] ], "#qunit-fixture div[id]:not(:has(div, span)):not(:has(*))": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "exists", "value": "", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "div", "namespace": null } ], [ { "type": "tag", "name": "span", "namespace": null } ] ] } ] ] }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ] } ] ], "#qunit-fixture form#form > *:nth-child(2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "form", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "2" } ] ], "#qunit-fixture form#form > :nth-child(2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "form", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "pseudo", "name": "nth-child", "data": "2" } ] ], "#qunit-fixture form[id]:not([action$='formaction']):not(:button)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "form", "namespace": null }, { "type": "attribute", "name": "id", "action": "exists", "value": "", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "action", "action": "end", "value": "formaction", "namespace": null, "ignoreCase": null } ] ] }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "button", "data": null } ] ] } ] ], "#qunit-fixture form[id]:not([action='form:action']):not(:button)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "form", "namespace": null }, { "type": "attribute", "name": "id", "action": "exists", "value": "", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "action", "action": "equals", "value": "form:action", "namespace": null, "ignoreCase": null } ] ] }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "button", "data": null } ] ] } ] ], "#qunit-fixture form[id]:not([action='form:action']:button):not(:input)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "form", "namespace": null }, { "type": "attribute", "name": "id", "action": "exists", "value": "", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "action", "action": "equals", "value": "form:action", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "button", "data": null } ] ] }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "input", "data": null } ] ] } ] ], "#qunit-fixture li[tabIndex=-1]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "tabIndex", "action": "equals", "value": "-1", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture option[value=1]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "attribute", "name": "value", "action": "equals", "value": "1", "namespace": null, "ignoreCase": null } ] ], "#qunit-fixture p": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "#qunit-fixture p\t": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "#qunit-fixture p\n": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "#qunit-fixture p\f": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "#qunit-fixture p\r": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "#qunit-fixture p ": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "#qunit-fixture p ~ div": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "sibling" }, { "type": "tag", "name": "div", "namespace": null } ] ], "#qunit-fixture p, #qunit-fixture p a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null } ] ], "#qunit-fixture p:FIRST-CHILD": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "#qunit-fixture p:first-child": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "#qunit-fixture p:has(:contains(mark)):has(code)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "pseudo", "name": "contains", "data": "mark" } ] ] }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "code", "namespace": null } ] ] } ] ], "#qunit-fixture p:has(:contains(mark)):has(code):contains(This link)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "pseudo", "name": "contains", "data": "mark" } ] ] }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "code", "namespace": null } ] ] }, { "type": "pseudo", "name": "contains", "data": "This link" } ] ], "#qunit-fixture p:not( a )": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ] ] } ] ], "#qunit-fixture p:not( p )": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "p", "namespace": null } ] ] } ] ], "#qunit-fixture p:not(#blargh)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "blargh", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#qunit-fixture p:not(.foo)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "foo", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#qunit-fixture p:not(:has(a), :nth-child(1))": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ] ] } ], [ { "type": "pseudo", "name": "nth-child", "data": "1" } ] ] } ] ], "#qunit-fixture p:not(:nth-child(1))": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "nth-child", "data": "1" } ] ] } ] ], "#qunit-fixture p:not(:nth-last-child(1))": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "nth-last-child", "data": "1" } ] ] } ] ], "#qunit-fixture p:not(a)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ] ] } ] ], "#qunit-fixture p:not(a, b)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ], [ { "type": "tag", "name": "b", "namespace": null } ] ] } ] ], "#qunit-fixture p:not(a, b, div)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ], [ { "type": "tag", "name": "b", "namespace": null } ], [ { "type": "tag", "name": "div", "namespace": null } ] ] } ] ], "#qunit-fixture p:not(div#blargh)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "blargh", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#qunit-fixture p:not(div.foo)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "foo", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#qunit-fixture p:not(p#blargh)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "blargh", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#qunit-fixture p:not(p.foo)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "foo", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "#qunit-fixture p:parent": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "parent", "data": null } ] ], "#seite1": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "seite1", "namespace": null, "ignoreCase": "quirks" } ] ], "#select1 *:nth-last-child(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3" } ] ], "#select1 :nth-last-child(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "nth-last-child", "data": "3" } ] ], "#select1 option:NTH-child(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3" } ] ], "#select1 option:NTH-last-child(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3" } ] ], "#select1 option:nth-child(+2n + 1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "+2n + 1" } ] ], "#select1 option:nth-child(-1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "-1" } ] ], "#select1 option:nth-child(-1n + 3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "-1n + 3" } ] ], "#select1 option:nth-child(-1n+3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "-1n+3" } ] ], "#select1 option:nth-child(-n+3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "-n+3" } ] ], "#select1 option:nth-child(1n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "1n" } ] ], "#select1 option:nth-child(1n+0)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "1n+0" } ] ], "#select1 option:nth-child(2n + 1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "2n + 1" } ] ], "#select1 option:nth-child(2n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "2n" } ] ], "#select1 option:nth-child(2n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "2n+1" } ] ], "#select1 option:nth-child(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3" } ] ], "#select1 option:nth-child(3n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3n" } ] ], "#select1 option:nth-child(3n+0)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3n+0" } ] ], "#select1 option:nth-child(3n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3n+1" } ] ], "#select1 option:nth-child(3n+2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3n+2" } ] ], "#select1 option:nth-child(3n+3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3n+3" } ] ], "#select1 option:nth-child(3n-1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3n-1" } ] ], "#select1 option:nth-child(3n-2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3n-2" } ] ], "#select1 option:nth-child(3n-3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "3n-3" } ] ], "#select1 option:nth-child(even)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "even" } ] ], "#select1 option:nth-child(n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "n" } ] ], "#select1 option:nth-child(odd)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "odd" } ] ], "#select1 option:nth-last-child(+2n + 1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "+2n + 1" } ] ], "#select1 option:nth-last-child(-1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "-1" } ] ], "#select1 option:nth-last-child(-1n + 3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "-1n + 3" } ] ], "#select1 option:nth-last-child(-1n+3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "-1n+3" } ] ], "#select1 option:nth-last-child(-n+3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "-n+3" } ] ], "#select1 option:nth-last-child(1n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "1n" } ] ], "#select1 option:nth-last-child(1n+0)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "1n+0" } ] ], "#select1 option:nth-last-child(2n + 1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "2n + 1" } ] ], "#select1 option:nth-last-child(2n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "2n" } ] ], "#select1 option:nth-last-child(2n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "2n+1" } ] ], "#select1 option:nth-last-child(3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3" } ] ], "#select1 option:nth-last-child(3n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3n" } ] ], "#select1 option:nth-last-child(3n+0)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3n+0" } ] ], "#select1 option:nth-last-child(3n+1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3n+1" } ] ], "#select1 option:nth-last-child(3n+2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3n+2" } ] ], "#select1 option:nth-last-child(3n+3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3n+3" } ] ], "#select1 option:nth-last-child(3n-1)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3n-1" } ] ], "#select1 option:nth-last-child(3n-2)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3n-2" } ] ], "#select1 option:nth-last-child(3n-3)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "3n-3" } ] ], "#select1 option:nth-last-child(even)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "even" } ] ], "#select1 option:nth-last-child(n)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "n" } ] ], "#select1 option:nth-last-child(odd)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "odd" } ] ], "#select1 option:selected": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "selected", "data": null } ] ], "#select1 option[value!='']": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "attribute", "name": "value", "action": "not", "value": "", "namespace": null, "ignoreCase": null } ] ], "#select1 option[value='']": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "attribute", "name": "value", "action": "equals", "value": "", "namespace": null, "ignoreCase": null } ] ], "#select2 option:selected": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select2", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "selected", "data": null } ] ], "#select2 option[selected='selected']": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select2", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "attribute", "name": "selected", "action": "equals", "value": "selected", "namespace": null, "ignoreCase": null } ] ], "#select2 option[selected]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select2", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "attribute", "name": "selected", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#select3 option:selected": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select3", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "selected", "data": null } ] ], "#sep": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "sep", "namespace": null, "ignoreCase": "quirks" } ] ], "#sibling-selector + .sibling-selector": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "sibling-selector", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling-selector", "namespace": null, "ignoreCase": "quirks" } ] ], "#sibling-selector + div.sibling-selector": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "sibling-selector", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling-selector", "namespace": null, "ignoreCase": "quirks" } ] ], "#sibling-selector ~ .sibling-selector": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "sibling-selector", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling-selector", "namespace": null, "ignoreCase": "quirks" } ] ], "#sibling-selector ~ div.sibling-selector": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "sibling-selector", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling-selector", "namespace": null, "ignoreCase": "quirks" } ] ], "#siblingTest > em *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "siblingTest", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "descendant" }, { "type": "universal", "namespace": null } ] ], "#siblingTest > em:contains('x') + em ~ span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "siblingTest", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "x" }, { "type": "adjacent" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "sibling" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#siblingTest > em:first-child + em ~ span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "siblingTest", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null }, { "type": "adjacent" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "sibling" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#siblingTest em *": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "siblingTest", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "descendant" }, { "type": "universal", "namespace": null } ] ], "#siblingTest em ~ em ~ em ~ span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "siblingTest", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "sibling" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "sibling" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "sibling" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#siblingfirst ~ em": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "siblingfirst", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "em", "namespace": null } ] ], "#spaced-tokens p em a": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "spaced-tokens", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "em", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null } ] ], "#spanny": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "spanny", "namespace": null, "ignoreCase": "quirks" } ] ], "#tName1": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "tName1", "namespace": null, "ignoreCase": "quirks" } ] ], "#tName1 span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "tName1", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#tName1-span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "tName1-span", "namespace": null, "ignoreCase": "quirks" } ] ], "#tName2": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "tName2", "namespace": null, "ignoreCase": "quirks" } ] ], "#tName2 span": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "tName2", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null } ] ], "#tName2ID": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "tName2ID", "namespace": null, "ignoreCase": "quirks" } ] ], "#test\\.foo\\[5\\]bar": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "test.foo[5]bar", "namespace": null, "ignoreCase": "quirks" } ] ], "#tmp_input :button": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "tmp_input", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "button", "data": null } ] ], "#tmp_input :reset": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "tmp_input", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "reset", "data": null } ] ], "#tmp_input :submit": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "tmp_input", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "pseudo", "name": "submit", "data": null } ] ], "#token-four": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "token-four", "namespace": null, "ignoreCase": "quirks" } ] ], "#troubleForm": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm", "namespace": null, "ignoreCase": "quirks" } ] ], "#troubleForm *:checked": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "checked", "data": null } ] ], "#troubleForm *[type=radio]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "radio", "namespace": null, "ignoreCase": null } ] ], "#troubleForm *[type]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "attribute", "name": "type", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#troubleForm > p > *:disabled": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "child" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "disabled", "data": null } ] ], "#troubleForm [type=radio]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "type", "action": "equals", "value": "radio", "namespace": null, "ignoreCase": null } ] ], "#troubleForm [type]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "type", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "#troubleForm2 input[name=\"brackets[5][]\"]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm2", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "brackets[5][]", "namespace": null, "ignoreCase": null } ] ], "#troubleForm2 input[name=\"brackets[5][]\"]:checked": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm2", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "brackets[5][]", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "checked", "data": null } ] ], "#troubleForm2 input[name=\"brackets[5][]\"][value=\"2\"]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "troubleForm2", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "brackets[5][]", "namespace": null, "ignoreCase": null }, { "type": "attribute", "name": "value", "action": "equals", "value": "2", "namespace": null, "ignoreCase": null } ] ], "#types_all": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "types_all", "namespace": null, "ignoreCase": "quirks" } ] ], "#uncle": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "uncle", "namespace": null, "ignoreCase": "quirks" } ] ], "#台北Táiběi": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "台北Táiběi", "namespace": null, "ignoreCase": "quirks" } ] ], "#台北Táiběi, #台北": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "台北Táiběi", "namespace": null, "ignoreCase": "quirks" } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "台北", "namespace": null, "ignoreCase": "quirks" } ] ], "*": [ [ { "type": "universal", "namespace": null } ] ], "* :not(*) foo": [ [ { "type": "universal", "namespace": null }, { "type": "descendant" }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "universal", "namespace": null } ] ] }, { "type": "descendant" }, { "type": "tag", "name": "foo", "namespace": null } ] ], "* < *": [ [ { "type": "universal", "namespace": null }, { "type": "parent" }, { "type": "universal", "namespace": null } ] ], "*, foo": [ [ { "type": "universal", "namespace": null } ], [ { "type": "tag", "name": "foo", "namespace": null } ] ], "*,:contains(!)": [ [ { "type": "universal", "namespace": null } ], [ { "type": "pseudo", "name": "contains", "data": "!" } ] ], "*:contains(humans)": [ [ { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "humans" } ] ], "*[id]": [ [ { "type": "universal", "namespace": null }, { "type": "attribute", "name": "id", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "*[name=iframe]": [ [ { "type": "universal", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "iframe", "namespace": null, "ignoreCase": null } ] ], "*[type=checkbox]": [ [ { "type": "universal", "namespace": null }, { "type": "attribute", "name": "type", "action": "equals", "value": "checkbox", "namespace": null, "ignoreCase": null } ] ], ".GROUPS": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "GROUPS", "namespace": null, "ignoreCase": "quirks" } ] ], ".a": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" } ] ], ".a #booshTest #spanny": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "booshTest", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "spanny", "namespace": null, "ignoreCase": "quirks" } ] ], ".a #spanny": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "spanny", "namespace": null, "ignoreCase": "quirks" } ] ], ".a .d + .sib": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "d", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "attribute", "name": "class", "action": "element", "value": "sib", "namespace": null, "ignoreCase": "quirks" } ] ], ".a .d ~ .sib[test=\"f g\"]": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "d", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "attribute", "name": "class", "action": "element", "value": "sib", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "test", "action": "equals", "value": "f g", "namespace": null, "ignoreCase": null } ] ], ".a > #booshTest": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "booshTest", "namespace": null, "ignoreCase": "quirks" } ] ], ".a span": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null } ] ], ".a.b #booshTest": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "b", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "booshTest", "namespace": null, "ignoreCase": "quirks" } ] ], ".a>#booshTest": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "booshTest", "namespace": null, "ignoreCase": "quirks" } ] ], ".blog": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "blog", "namespace": null, "ignoreCase": "quirks" } ] ], ".blog.link": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "blog", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "link", "namespace": null, "ignoreCase": "quirks" } ] ], ".brothers": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": "quirks" } ] ], ".class-with-dashes": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "class-with-dashes", "namespace": null, "ignoreCase": "quirks" } ] ], ".component": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "component", "namespace": null, "ignoreCase": "quirks" } ] ], ".container div:not(.excluded) div": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "container", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "excluded", "namespace": null, "ignoreCase": "quirks" } ] ] }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], ".d #oooo #emem": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "d", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "oooo", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "emem", "namespace": null, "ignoreCase": "quirks" } ] ], ".d ~ .sib": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "d", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "attribute", "name": "class", "action": "element", "value": "sib", "namespace": null, "ignoreCase": "quirks" } ] ], ".d.i #emem": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "d", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "i", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "emem", "namespace": null, "ignoreCase": "quirks" } ] ], ".direct-descend > .direct-descend .lvl2": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "lvl2", "namespace": null, "ignoreCase": "quirks" } ] ], ".direct-descend > .direct-descend > .direct-descend ~ .lvl2": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "attribute", "name": "class", "action": "element", "value": "lvl2", "namespace": null, "ignoreCase": "quirks" } ] ], ".direct-descend > .direct-descend div": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "direct-descend", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], ".e": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "e", "namespace": null, "ignoreCase": "quirks" } ] ], ".e.hasOwnProperty.toString": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "e", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "hasOwnProperty", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "toString", "namespace": null, "ignoreCase": "quirks" } ] ], ".excluded": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "excluded", "namespace": null, "ignoreCase": "quirks" } ] ], ".first": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "first", "namespace": null, "ignoreCase": "quirks" } ] ], ".foo": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "foo", "namespace": null, "ignoreCase": "quirks" } ] ], ".foo\\:bar": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "foo:bar", "namespace": null, "ignoreCase": "quirks" } ] ], ".fototab > .thumbnails > a": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "fototab", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "thumbnails", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null } ] ], ".internal#link_2": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "id", "action": "equals", "value": "link_2", "namespace": null, "ignoreCase": "quirks" } ] ], ".link": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "link", "namespace": null, "ignoreCase": "quirks" } ] ], ".nothiddendiv div:first-child": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "nothiddendiv", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], ".null": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "null", "namespace": null, "ignoreCase": "quirks" } ] ], ".null div": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "null", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], ".odd:not(div)": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "odd", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "div", "namespace": null } ] ] } ] ], ".parent .middle + .sibling": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "middle", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling", "namespace": null, "ignoreCase": "quirks" } ] ], ".parent .middle + h2": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "middle", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "h2", "namespace": null } ] ], ".parent .middle + h3": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "middle", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "h3", "namespace": null } ] ], ".parent .middle + h4": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "middle", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "h4", "namespace": null } ] ], ".parent .middle ~ .sibling": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "middle", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling", "namespace": null, "ignoreCase": "quirks" } ] ], ".parent .middle ~ h2": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "middle", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "h2", "namespace": null } ] ], ".parent .middle ~ h3": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "middle", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "h3", "namespace": null } ] ], ".parent .middle ~ h4": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "middle", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "h4", "namespace": null } ] ], ".parent .middle ~ h4.younger": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "middle", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "tag", "name": "h4", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "younger", "namespace": null, "ignoreCase": "quirks" } ] ], ".parent .oldest + .sibling": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "oldest", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling", "namespace": null, "ignoreCase": "quirks" } ] ], ".parent .oldest ~ .sibling": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "oldest", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling", "namespace": null, "ignoreCase": "quirks" } ] ], ".parent .youngest + .sibling": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "youngest", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling", "namespace": null, "ignoreCase": "quirks" } ] ], ".parent .youngest ~ .sibling": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "parent", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "youngest", "namespace": null, "ignoreCase": "quirks" }, { "type": "sibling" }, { "type": "attribute", "name": "class", "action": "element", "value": "sibling", "namespace": null, "ignoreCase": "quirks" } ] ], ".second": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "second", "namespace": null, "ignoreCase": "quirks" } ] ], ".select1": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "select1", "namespace": null, "ignoreCase": "quirks" } ] ], ".test\\.foo\\[5\\]bar": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "test.foo[5]bar", "namespace": null, "ignoreCase": "quirks" } ] ], ".台北": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "台北", "namespace": null, "ignoreCase": "quirks" } ] ], ".台北Táiběi": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "台北Táiběi", "namespace": null, "ignoreCase": "quirks" } ] ], ".台北Táiběi, .台北": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "台北Táiběi", "namespace": null, "ignoreCase": "quirks" } ], [ { "type": "attribute", "name": "class", "action": "element", "value": "台北", "namespace": null, "ignoreCase": "quirks" } ] ], ".台北Táiběi.台北": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "台北Táiběi", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "台北", "namespace": null, "ignoreCase": "quirks" } ] ], ":Header": [ [ { "type": "pseudo", "name": "header", "data": null } ] ], ":button": [ [ { "type": "pseudo", "name": "button", "data": null } ] ], ":contains(Nothing),#option1b,:selected": [ [ { "type": "pseudo", "name": "contains", "data": "Nothing" } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "option1b", "namespace": null, "ignoreCase": "quirks" } ], [ { "type": "pseudo", "name": "selected", "data": null } ] ], ":contains(foo)": [ [ { "type": "pseudo", "name": "contains", "data": "foo" } ] ], ":contains(humans)": [ [ { "type": "pseudo", "name": "contains", "data": "humans" } ] ], ":contains(mark)": [ [ { "type": "pseudo", "name": "contains", "data": "mark" } ] ], ":empty": [ [ { "type": "pseudo", "name": "empty", "data": null } ] ], ":first-child": [ [ { "type": "pseudo", "name": "first-child", "data": null } ] ], ":first-child(n)": [ [ { "type": "pseudo", "name": "first-child", "data": "n" } ] ], ":first-last-child": [ [ { "type": "pseudo", "name": "first-last-child", "data": null } ] ], ":first-of-type": [ [ { "type": "pseudo", "name": "first-of-type", "data": null } ] ], ":has(*)": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ], ":has(*,:contains(!)),:contains(!)": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ], [ { "type": "pseudo", "name": "contains", "data": "!" } ] ] } ], [ { "type": "pseudo", "name": "contains", "data": "!" } ] ], ":has(:has(*))": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ] } ] ], ":has(:nth-child(-1n-1))": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "pseudo", "name": "nth-child", "data": "-1n-1" } ] ] } ] ], ":has(a),:nth-child(1)": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ] ] } ], [ { "type": "pseudo", "name": "nth-child", "data": "1" } ] ], ":has(div,span)": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "div", "namespace": null } ], [ { "type": "tag", "name": "span", "namespace": null } ] ] } ] ], ":has(option)": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "option", "namespace": null } ] ] } ] ], ":header": [ [ { "type": "pseudo", "name": "header", "data": null } ] ], ":humanoid": [ [ { "type": "pseudo", "name": "humanoid", "data": null } ] ], ":image,:input,:submit": [ [ { "type": "pseudo", "name": "image", "data": null } ], [ { "type": "pseudo", "name": "input", "data": null } ], [ { "type": "pseudo", "name": "submit", "data": null } ] ], ":input": [ [ { "type": "pseudo", "name": "input", "data": null } ] ], ":input:not(:image,:input,:submit)": [ [ { "type": "pseudo", "name": "input", "data": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "image", "data": null } ], [ { "type": "pseudo", "name": "input", "data": null } ], [ { "type": "pseudo", "name": "submit", "data": null } ] ] } ] ], ":input[data-pos=':first']": [ [ { "type": "pseudo", "name": "input", "data": null }, { "type": "attribute", "name": "data-pos", "action": "equals", "value": ":first", "namespace": null, "ignoreCase": null } ] ], ":last-child": [ [ { "type": "pseudo", "name": "last-child", "data": null } ] ], ":last-child(n)": [ [ { "type": "pseudo", "name": "last-child", "data": "n" } ] ], ":last-last-child": [ [ { "type": "pseudo", "name": "last-last-child", "data": null } ] ], ":last-of-type": [ [ { "type": "pseudo", "name": "last-of-type", "data": null } ] ], ":not(*)": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ], ":not(:not(*))": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ] } ] ], ":not(:not(:not(*)))": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ] } ] ] } ] ], ":not(:nth-child(-1n-1))": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "nth-child", "data": "-1n-1" } ] ] } ] ], ":not(:selected)": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "selected", "data": null } ] ] } ] ], ":not(code)": [ [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "code", "namespace": null } ] ] } ] ], ":nth-child": [ [ { "type": "pseudo", "name": "nth-child", "data": null } ] ], ":nth-child(- 1n)": [ [ { "type": "pseudo", "name": "nth-child", "data": "- 1n" } ] ], ":nth-child(-)": [ [ { "type": "pseudo", "name": "nth-child", "data": "-" } ] ], ":nth-child(-1 n)": [ [ { "type": "pseudo", "name": "nth-child", "data": "-1 n" } ] ], ":nth-child(-1n-1)": [ [ { "type": "pseudo", "name": "nth-child", "data": "-1n-1" } ] ], ":nth-child(1)": [ [ { "type": "pseudo", "name": "nth-child", "data": "1" } ] ], ":nth-child(2+0)": [ [ { "type": "pseudo", "name": "nth-child", "data": "2+0" } ] ], ":nth-child(2n+-0)": [ [ { "type": "pseudo", "name": "nth-child", "data": "2n+-0" } ] ], ":nth-child(asdf)": [ [ { "type": "pseudo", "name": "nth-child", "data": "asdf" } ] ], ":nth-last-child(1)": [ [ { "type": "pseudo", "name": "nth-last-child", "data": "1" } ] ], ":nth-last-last-child(1)": [ [ { "type": "pseudo", "name": "nth-last-last-child", "data": "1" } ] ], ":nth-last-of-type(-1)": [ [ { "type": "pseudo", "name": "nth-last-of-type", "data": "-1" } ] ], ":nth-last-of-type(1)": [ [ { "type": "pseudo", "name": "nth-last-of-type", "data": "1" } ] ], ":nth-of-type(-1)": [ [ { "type": "pseudo", "name": "nth-of-type", "data": "-1" } ] ], ":nth-of-type(1)": [ [ { "type": "pseudo", "name": "nth-of-type", "data": "1" } ] ], ":only-child(n)": [ [ { "type": "pseudo", "name": "only-child", "data": "n" } ] ], ":only-last-child": [ [ { "type": "pseudo", "name": "only-last-child", "data": null } ] ], ":parent": [ [ { "type": "pseudo", "name": "parent", "data": null } ] ], ":reset": [ [ { "type": "pseudo", "name": "reset", "data": null } ] ], ":root": [ [ { "type": "pseudo", "name": "root", "data": null } ] ], ":selected": [ [ { "type": "pseudo", "name": "selected", "data": null } ] ], ":submit": [ [ { "type": "pseudo", "name": "submit", "data": null } ] ], ":visble": [ [ { "type": "pseudo", "name": "visble", "data": null } ] ], ">.a>#booshTest": [ [ { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "a", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "booshTest", "namespace": null, "ignoreCase": "quirks" } ] ], "[action$='formaction']": [ [ { "type": "attribute", "name": "action", "action": "end", "value": "formaction", "namespace": null, "ignoreCase": null } ] ], "[action='form:action']": [ [ { "type": "attribute", "name": "action", "action": "equals", "value": "form:action", "namespace": null, "ignoreCase": null } ] ], "[action='form:action']:button": [ [ { "type": "attribute", "name": "action", "action": "equals", "value": "form:action", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "button", "data": null } ] ], "[attr=boosh]": [ [ { "type": "attribute", "name": "attr", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": null } ] ], "[attr=foo]": [ [ { "type": "attribute", "name": "attr", "action": "equals", "value": "foo", "namespace": null, "ignoreCase": null } ] ], "[attr]": [ [ { "type": "attribute", "name": "attr", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "[class*=component]": [ [ { "type": "attribute", "name": "class", "action": "any", "value": "component", "namespace": null, "ignoreCase": null } ] ], "[class~=brothers]": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": null } ] ], "[class~=internal]": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": null } ] ], "[constructor='foo']": [ [ { "type": "attribute", "name": "constructor", "action": "equals", "value": "foo", "namespace": null, "ignoreCase": null } ] ], "[constructor]": [ [ { "type": "attribute", "name": "constructor", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "[foo]": [ [ { "type": "attribute", "name": "foo", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "[foo^=\"bar\"]": [ [ { "type": "attribute", "name": "foo", "action": "start", "value": "bar", "namespace": null, "ignoreCase": null } ] ], "[href=\"#\"]": [ [ { "type": "attribute", "name": "href", "action": "equals", "value": "#", "namespace": null, "ignoreCase": null } ] ], "[href]": [ [ { "type": "attribute", "name": "href", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "[ a=b i ]": [ [ { "type": "attribute", "name": "a", "action": "equals", "value": "b", "namespace": null, "ignoreCase": true } ] ], "[id*=option1]": [ [ { "type": "attribute", "name": "id", "action": "any", "value": "option1", "namespace": null, "ignoreCase": null } ] ], "[id*=option1][type!=checkbox]": [ [ { "type": "attribute", "name": "id", "action": "any", "value": "option1", "namespace": null, "ignoreCase": null }, { "type": "attribute", "name": "type", "action": "not", "value": "checkbox", "namespace": null, "ignoreCase": null } ] ], "[id='select1'] *:not(:last-child), [id='select2'] *:not(:last-child)": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": null }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "last-child", "data": null } ] ] } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "select2", "namespace": null, "ignoreCase": null }, { "type": "descendant" }, { "type": "universal", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "last-child", "data": null } ] ] } ] ], "[id=option1a]": [ [ { "type": "attribute", "name": "id", "action": "equals", "value": "option1a", "namespace": null, "ignoreCase": null } ] ], "[id]": [ [ { "type": "attribute", "name": "id", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "[multiple]": [ [ { "type": "attribute", "name": "multiple", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "[name='id']": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "id", "namespace": null, "ignoreCase": null } ] ], "[name='select1']": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": null } ] ], "[name=div]": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "div", "namespace": null, "ignoreCase": null } ] ], "[name=example]": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "example", "namespace": null, "ignoreCase": null } ] ], "[name=prop2]": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "prop2", "namespace": null, "ignoreCase": null } ] ], "[name=select1]": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "select1", "namespace": null, "ignoreCase": null } ] ], "[name=tName1]": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "tName1", "namespace": null, "ignoreCase": null } ] ], "[name=tName2]": [ [ { "type": "attribute", "name": "name", "action": "equals", "value": "tName2", "namespace": null, "ignoreCase": null } ] ], "[rel$=\"nofollow\"]": [ [ { "type": "attribute", "name": "rel", "action": "end", "value": "nofollow", "namespace": null, "ignoreCase": null } ] ], "[rel$=nofollow]": [ [ { "type": "attribute", "name": "rel", "action": "end", "value": "nofollow", "namespace": null, "ignoreCase": null } ] ], "[rel^=external]": [ [ { "type": "attribute", "name": "rel", "action": "start", "value": "external", "namespace": null, "ignoreCase": null } ] ], "[rel~=nofollow]": [ [ { "type": "attribute", "name": "rel", "action": "element", "value": "nofollow", "namespace": null, "ignoreCase": null } ] ], "[test=]": [ [ { "type": "attribute", "name": "test", "action": "equals", "value": "", "namespace": null, "ignoreCase": null } ] ], "[test^='']": [ [ { "type": "attribute", "name": "test", "action": "start", "value": "", "namespace": null, "ignoreCase": null } ] ], "[title]": [ [ { "type": "attribute", "name": "title", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "[type=checkbox]": [ [ { "type": "attribute", "name": "type", "action": "equals", "value": "checkbox", "namespace": null, "ignoreCase": null } ] ], "[type=radio]": [ [ { "type": "attribute", "name": "type", "action": "equals", "value": "radio", "namespace": null, "ignoreCase": null } ] ], "[watch='bar']": [ [ { "type": "attribute", "name": "watch", "action": "equals", "value": "bar", "namespace": null, "ignoreCase": null } ] ], "[watch]": [ [ { "type": "attribute", "name": "watch", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "[xml\\:test]": [ [ { "type": "attribute", "name": "xml:test", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "a": [ [ { "type": "tag", "name": "a", "namespace": null } ] ], "a#link_2.internal": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "link_2", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" } ] ], "a,b": [ [ { "type": "tag", "name": "a", "namespace": null } ], [ { "type": "tag", "name": "b", "namespace": null } ] ], "a,b,div": [ [ { "type": "tag", "name": "a", "namespace": null } ], [ { "type": "tag", "name": "b", "namespace": null } ], [ { "type": "tag", "name": "div", "namespace": null } ] ], "a,p": [ [ { "type": "tag", "name": "a", "namespace": null } ], [ { "type": "tag", "name": "p", "namespace": null } ] ], "a,p,b": [ [ { "type": "tag", "name": "a", "namespace": null } ], [ { "type": "tag", "name": "p", "namespace": null } ], [ { "type": "tag", "name": "b", "namespace": null } ] ], "a.GROUPS + code + a": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "GROUPS", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "code", "namespace": null }, { "type": "adjacent" }, { "type": "tag", "name": "a", "namespace": null } ] ], "a.blog": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "blog", "namespace": null, "ignoreCase": "quirks" } ] ], "a.blog:not(.link)": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "blog", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "link", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "a.highlight.internal": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "highlight", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" } ] ], "a.highlight.internal.nonexistent": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "highlight", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "nonexistent", "namespace": null, "ignoreCase": "quirks" } ] ], "a.internal": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" } ] ], "a.internal#link_2": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "id", "action": "equals", "value": "link_2", "namespace": null, "ignoreCase": "quirks" } ] ], "a.internal.highlight": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "highlight", "namespace": null, "ignoreCase": "quirks" } ] ], "a.odd": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "odd", "namespace": null, "ignoreCase": "quirks" } ] ], "a:contains(\"(Link)\")": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "(Link)" } ] ], "a:contains('')": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "" } ] ], "a:contains('Google Groups (Link)')": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "Google Groups (Link)" } ] ], "a:contains((Link))": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "(Link)" } ] ], "a:contains(Google Groups (Link))": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "Google Groups (Link)" } ] ], "a:contains(Google Groups)": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "Google Groups" } ] ], "a:contains(Google)": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "Google" } ] ], "a:not([href=\"#\"])": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "href", "action": "equals", "value": "#", "namespace": null, "ignoreCase": null } ] ] } ] ], "a[class*=blog]:not(:has(*, :contains(!)), :contains(!)), br:contains(]), p:contains(]), :not(:empty):not(:parent)": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "any", "value": "blog", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ], [ { "type": "pseudo", "name": "contains", "data": "!" } ] ] } ], [ { "type": "pseudo", "name": "contains", "data": "!" } ] ] } ], [ { "type": "tag", "name": "br", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "]" } ], [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "]" } ], [ { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "empty", "data": null } ] ] }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "parent", "data": null } ] ] } ] ], "a[class~=\"internal\"]": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": null } ] ], "a[class~=external]:not([href=\"#\"])": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "external", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "href", "action": "equals", "value": "#", "namespace": null, "ignoreCase": null } ] ] } ] ], "a[class~=external][href=\"#\"]": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "external", "namespace": null, "ignoreCase": null }, { "type": "attribute", "name": "href", "action": "equals", "value": "#", "namespace": null, "ignoreCase": null } ] ], "a[class~=internal]": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "internal", "namespace": null, "ignoreCase": null } ] ], "a[href $= 'org/']": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "end", "value": "org/", "namespace": null, "ignoreCase": null } ] ], "a[href *= 'google']": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "any", "value": "google", "namespace": null, "ignoreCase": null } ] ], "a[href ^= 'http://www']": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "start", "value": "http://www", "namespace": null, "ignoreCase": null } ] ], "a[href*=#]": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "any", "value": "#", "namespace": null, "ignoreCase": null } ] ], "a[href=\"#\"]": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "equals", "value": "#", "namespace": null, "ignoreCase": null } ] ], "a[href]": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "a[rel^=\"external\"]": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "rel", "action": "start", "value": "external", "namespace": null, "ignoreCase": null } ] ], "a[rel^='external']": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "rel", "action": "start", "value": "external", "namespace": null, "ignoreCase": null } ] ], "a[rel^=external]": [ [ { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "rel", "action": "start", "value": "external", "namespace": null, "ignoreCase": null } ] ], "body": [ [ { "type": "tag", "name": "body", "namespace": null } ] ], "body div div div": [ [ { "type": "tag", "name": "body", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], "body#body": [ [ { "type": "tag", "name": "body", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "body", "namespace": null, "ignoreCase": "quirks" } ] ], "body>div div div": [ [ { "type": "tag", "name": "body", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], "cite[title=\"hello world!\"]": [ [ { "type": "tag", "name": "cite", "namespace": null }, { "type": "attribute", "name": "title", "action": "equals", "value": "hello world!", "namespace": null, "ignoreCase": null } ] ], "code": [ [ { "type": "tag", "name": "code", "namespace": null } ] ], "code > *": [ [ { "type": "tag", "name": "code", "namespace": null }, { "type": "child" }, { "type": "universal", "namespace": null } ] ], "component": [ [ { "type": "tag", "name": "component", "namespace": null } ] ], "component#seite1": [ [ { "type": "tag", "name": "component", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "seite1", "namespace": null, "ignoreCase": "quirks" } ] ], "div": [ [ { "type": "tag", "name": "div", "namespace": null } ] ], "div #foo\\:bar": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "foo:bar", "namespace": null, "ignoreCase": "quirks" } ] ], "div #test\\.foo\\[5\\]bar": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "test.foo[5]bar", "namespace": null, "ignoreCase": "quirks" } ] ], "div #台北": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "台北", "namespace": null, "ignoreCase": "quirks" } ] ], "div .foo\\:bar": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "foo:bar", "namespace": null, "ignoreCase": "quirks" } ] ], "div .test\\.foo\\[5\\]bar": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "test.foo[5]bar", "namespace": null, "ignoreCase": "quirks" } ] ], "div .tokens[title=\"one two three #%\"]": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "tokens", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "title", "action": "equals", "value": "one two three #%", "namespace": null, "ignoreCase": null } ] ], "div .tokens[title=\"one two three #%\"] a[href$=foo] div": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "tokens", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "title", "action": "equals", "value": "one two three #%", "namespace": null, "ignoreCase": null }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "end", "value": "foo", "namespace": null, "ignoreCase": null }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], "div .tokens[title=\"one two\"]": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "tokens", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "title", "action": "equals", "value": "one two", "namespace": null, "ignoreCase": null } ] ], "div .tokens[title=\"one\"]": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "tokens", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "title", "action": "equals", "value": "one", "namespace": null, "ignoreCase": null } ] ], "div .tokens[title='one two three #%'] a": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "tokens", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "title", "action": "equals", "value": "one two three #%", "namespace": null, "ignoreCase": null }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null } ] ], "div .台北Táiběi": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "台北Táiběi", "namespace": null, "ignoreCase": "quirks" } ] ], "div > #nonexistent": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "nonexistent", "namespace": null, "ignoreCase": "quirks" } ] ], "div > div #tName1": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "id", "action": "equals", "value": "tName1", "namespace": null, "ignoreCase": "quirks" } ] ], "div > span": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "span", "namespace": null } ] ], "div ~ #level2_3": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "sibling" }, { "type": "attribute", "name": "id", "action": "equals", "value": "level2_3", "namespace": null, "ignoreCase": "quirks" } ] ], "div ~ #level3_2": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "sibling" }, { "type": "attribute", "name": "id", "action": "equals", "value": "level3_2", "namespace": null, "ignoreCase": "quirks" } ] ], "div#attr-child-boosh[attr=boosh]": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "attr-child-boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "attr", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": null } ] ], "div#attr-test3.found.you[title=\"whatup duders\"]": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "attr-test3", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "found", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "you", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "title", "action": "equals", "value": "whatup duders", "namespace": null, "ignoreCase": null } ] ], "div#blargh": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "blargh", "namespace": null, "ignoreCase": "quirks" } ] ], "div#fixtures > div a": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "fixtures", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null } ] ], "div#fixtures div ~ a div": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "fixtures", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "sibling" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "div", "namespace": null } ] ], "div#fixtures p": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "fixtures", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "div#fixtures>div a": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "fixtures", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null } ] ], "div#form": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "form", "namespace": null, "ignoreCase": "quirks" } ] ], "div#grandfather > div": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "grandfather", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "div", "namespace": null } ] ], "div,span": [ [ { "type": "tag", "name": "div", "namespace": null } ], [ { "type": "tag", "name": "span", "namespace": null } ] ], "div.blah > p > a": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "blah", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "p", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null } ] ], "div.brothers": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": "quirks" } ] ], "div.brothers + div": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "div", "namespace": null } ] ], "div.brothers + div.brothers": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": "quirks" } ] ], "div.brothers:not(.brothers)": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": "quirks" }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "div.foo": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "foo", "namespace": null, "ignoreCase": "quirks" } ] ], "div.foo > span > a": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "foo", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "span", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null } ] ], "div:has(div:not([id]))": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "id", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ] } ] ] } ] ], "div:not(.brothers)": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": "quirks" } ] ] } ] ], "div:not([class~=brothers])": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": null } ] ] } ] ], "div:not([id])": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "attribute", "name": "id", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ] } ] ], "div[class$=men]": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "end", "value": "men", "namespace": null, "ignoreCase": null } ] ], "div[class*=\"ers m\"]": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "any", "value": "ers m", "namespace": null, "ignoreCase": null } ] ], "div[class^=bro]": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "start", "value": "bro", "namespace": null, "ignoreCase": null } ] ], "div[class~=brothers]": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": null } ] ], "div[class~=brothers].brothers": [ [ { "type": "tag", "name": "div", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": null }, { "type": "attribute", "name": "class", "action": "element", "value": "brothers", "namespace": null, "ignoreCase": "quirks" } ] ], "dl\tol": [ [ { "type": "tag", "name": "dl", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "ol", "namespace": null } ] ], "dl ol": [ [ { "type": "tag", "name": "dl", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "ol", "namespace": null } ] ], "elem:not(:has(*))": [ [ { "type": "tag", "name": "elem", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "has", "data": [ [ { "type": "universal", "namespace": null } ] ] } ] ] } ] ], "em[nopass~=\"copyright\"]": [ [ { "type": "tag", "name": "em", "namespace": null }, { "type": "attribute", "name": "nopass", "action": "element", "value": "copyright", "namespace": null, "ignoreCase": null } ] ], "em[rel~=\"copyright\"]": [ [ { "type": "tag", "name": "em", "namespace": null }, { "type": "attribute", "name": "rel", "action": "element", "value": "copyright", "namespace": null, "ignoreCase": null } ] ], "foo_bar": [ [ { "type": "tag", "name": "foo_bar", "namespace": null } ] ], "form": [ [ { "type": "tag", "name": "form", "namespace": null } ] ], "form > #foo\\:bar": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "foo:bar", "namespace": null, "ignoreCase": "quirks" } ] ], "form > #test\\.foo\\[5\\]bar": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "test.foo[5]bar", "namespace": null, "ignoreCase": "quirks" } ] ], "form > #台北": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "child" }, { "type": "attribute", "name": "id", "action": "equals", "value": "台北", "namespace": null, "ignoreCase": "quirks" } ] ], "form > .foo\\:bar": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "foo:bar", "namespace": null, "ignoreCase": "quirks" } ] ], "form > .test\\.foo\\[5\\]bar": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "test.foo[5]bar", "namespace": null, "ignoreCase": "quirks" } ] ], "form > .台北Táiběi": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "child" }, { "type": "attribute", "name": "class", "action": "element", "value": "台北Táiběi", "namespace": null, "ignoreCase": "quirks" } ] ], "form label[for]": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "label", "namespace": null }, { "type": "attribute", "name": "for", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "form:nth-last-child( 5 )": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": " 5 " } ] ], "form:nth-last-child(5)": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "5" } ] ], "form[title*=\"commas,\"], input[value=\"#commaOne,#commaTwo\"]": [ [ { "type": "tag", "name": "form", "namespace": null }, { "type": "attribute", "name": "title", "action": "any", "value": "commas,", "namespace": null, "ignoreCase": null } ], [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "value", "action": "equals", "value": "#commaOne,#commaTwo", "namespace": null, "ignoreCase": null } ] ], "h1": [ [ { "type": "tag", "name": "h1", "namespace": null } ] ], "h1 ~ ul": [ [ { "type": "tag", "name": "h1", "namespace": null }, { "type": "sibling" }, { "type": "tag", "name": "ul", "namespace": null } ] ], "h1[CLASS]": [ [ { "type": "tag", "name": "h1", "namespace": null }, { "type": "attribute", "name": "CLASS", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "h1[class]": [ [ { "type": "tag", "name": "h1", "namespace": null }, { "type": "attribute", "name": "class", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "h2\t,\r#qunit-fixture p\n": [ [ { "type": "tag", "name": "h2", "namespace": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "h2 , #qunit-fixture p": [ [ { "type": "tag", "name": "h2", "namespace": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "h2, #qunit-fixture p": [ [ { "type": "tag", "name": "h2", "namespace": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "h2, h1": [ [ { "type": "tag", "name": "h2", "namespace": null } ], [ { "type": "tag", "name": "h1", "namespace": null } ] ], "h2,#qunit-fixture p": [ [ { "type": "tag", "name": "h2", "namespace": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "h2,#qunit-fixture p ": [ [ { "type": "tag", "name": "h2", "namespace": null } ], [ { "type": "attribute", "name": "id", "action": "equals", "value": "qunit-fixture", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "html": [ [ { "type": "tag", "name": "html", "namespace": null } ] ], "input": [ [ { "type": "tag", "name": "input", "namespace": null } ] ], "input[data-attr='\\01D306A']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "data-attr", "action": "equals", "value": "𝌆A", "namespace": null, "ignoreCase": null } ] ], "input[data-comma=\"0,1\"]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "data-comma", "action": "equals", "value": "0,1", "namespace": null, "ignoreCase": null } ] ], "input[data-comma='0,1']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "data-comma", "action": "equals", "value": "0,1", "namespace": null, "ignoreCase": null } ] ], "input[data-pos=':first']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "data-pos", "action": "equals", "value": ":first", "namespace": null, "ignoreCase": null } ] ], "input[data-pos=\\:first]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "data-pos", "action": "equals", "value": ":first", "namespace": null, "ignoreCase": null } ] ], "input[id='idTest']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "idTest", "namespace": null, "ignoreCase": null } ] ], "input[id=types_all]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "types_all", "namespace": null, "ignoreCase": null } ] ], "input[name$='[bar]']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "end", "value": "[bar]", "namespace": null, "ignoreCase": null } ] ], "input[name$='bar]']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "end", "value": "bar]", "namespace": null, "ignoreCase": null } ] ], "input[name$='foo[bar]']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "end", "value": "foo[bar]", "namespace": null, "ignoreCase": null } ] ], "input[name*='[bar]']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "any", "value": "[bar]", "namespace": null, "ignoreCase": null } ] ], "input[name*='foo[bar]']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "any", "value": "foo[bar]", "namespace": null, "ignoreCase": null } ] ], "input[name=\"action\"]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "action", "namespace": null, "ignoreCase": null } ] ], "input[name='action']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "action", "namespace": null, "ignoreCase": null } ] ], "input[name='foo[bar]']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "foo[bar]", "namespace": null, "ignoreCase": null } ] ], "input[name='types[]']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "types[]", "namespace": null, "ignoreCase": null } ] ], "input[name=action]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "action", "namespace": null, "ignoreCase": null } ] ], "input[name=foo\\ bar]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "foo bar", "namespace": null, "ignoreCase": null } ] ], "input[name=foo\\.baz]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "foo.baz", "namespace": null, "ignoreCase": null } ] ], "input[name=foo\\[baz\\]]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "foo[baz]", "namespace": null, "ignoreCase": null } ] ], "input[name^='foo[']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "start", "value": "foo[", "namespace": null, "ignoreCase": null } ] ], "input[name^='foo[bar]']": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "name", "action": "start", "value": "foo[bar]", "namespace": null, "ignoreCase": null } ] ], "input[title=\"Don't click me\"]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "title", "action": "equals", "value": "Don't click me", "namespace": null, "ignoreCase": null } ] ], "input[value=Test]": [ [ { "type": "tag", "name": "input", "namespace": null }, { "type": "attribute", "name": "value", "action": "equals", "value": "Test", "namespace": null, "ignoreCase": null } ] ], "li": [ [ { "type": "tag", "name": "li", "namespace": null } ] ], "li ~ li": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "sibling" }, { "type": "tag", "name": "li", "namespace": null } ] ], "li#attr-child-boosh[attr=boosh]": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "attr-child-boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "attr", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": null } ] ], "li#item_1.first": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "item_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "first", "namespace": null, "ignoreCase": "quirks" } ] ], "li#item_1.first.nonexistent": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "item_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "first", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "nonexistent", "namespace": null, "ignoreCase": "quirks" } ] ], "li#item_1.nonexistent": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "item_1", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "element", "value": "nonexistent", "namespace": null, "ignoreCase": "quirks" } ] ], "li#item_3[class]": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "item_3", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "class", "action": "exists", "value": "", "namespace": null, "ignoreCase": null } ] ], "li:contains(hello)": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "hello" } ] ], "li:contains(human)": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "human" } ] ], "li:contains(humans)": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "humans" } ] ], "li:not(:first-child)": [ [ { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "pseudo", "name": "first-child", "data": null } ] ] } ] ], "meta property thing": [ [ { "type": "tag", "name": "meta", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "property", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "thing", "namespace": null } ] ], "nonexistent": [ [ { "type": "tag", "name": "nonexistent", "namespace": null } ] ], "ol > li[attr=\"boosh\"]:last-child": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "attr", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "ol li": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "li", "namespace": null } ] ], "ol ol li#attr-child-boosh[attr=boosh]": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "ol", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "attr-child-boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "attr", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": null } ] ], "ol#list li#attr-child-boosh[attr=boosh]": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "list", "namespace": null, "ignoreCase": "quirks" }, { "type": "descendant" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "attr-child-boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "attr", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": null } ] ], "ol#list>li#attr-child-boosh[attr=boosh]": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "list", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "attr-child-boosh", "namespace": null, "ignoreCase": "quirks" }, { "type": "attribute", "name": "attr", "action": "equals", "value": "boosh", "namespace": null, "ignoreCase": null } ] ], "ol:contains(human)": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "human" } ] ], "ol:contains(humans)": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "humans" } ] ], "ol:empty": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "pseudo", "name": "empty", "data": null } ] ], "ol>li": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null } ] ], "ol>li+li": [ [ { "type": "tag", "name": "ol", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "adjacent" }, { "type": "tag", "name": "li", "namespace": null } ] ], "option": [ [ { "type": "tag", "name": "option", "namespace": null } ] ], "option:first-child:contains('o')": [ [ { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null }, { "type": "pseudo", "name": "contains", "data": "o" } ] ], "p": [ [ { "type": "tag", "name": "p", "namespace": null } ] ], "p + p": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "adjacent" }, { "type": "tag", "name": "p", "namespace": null } ] ], "p .blog": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "descendant" }, { "type": "attribute", "name": "class", "action": "element", "value": "blog", "namespace": null, "ignoreCase": "quirks" } ] ], "p < div": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "parent" }, { "type": "tag", "name": "div", "namespace": null } ] ], "p > * > *": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "child" }, { "type": "universal", "namespace": null }, { "type": "child" }, { "type": "universal", "namespace": null } ] ], "p > a": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null } ] ], "p > a.blog": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "blog", "namespace": null, "ignoreCase": "quirks" } ] ], "p >a": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null } ] ], "p a[href*=#]": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "any", "value": "#", "namespace": null, "ignoreCase": null } ] ], "p a[href^=#]": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "a", "namespace": null }, { "type": "attribute", "name": "href", "action": "start", "value": "#", "namespace": null, "ignoreCase": null } ] ], "p#blargh": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "blargh", "namespace": null, "ignoreCase": "quirks" } ] ], "p#firstp + p": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "firstp", "namespace": null, "ignoreCase": "quirks" }, { "type": "adjacent" }, { "type": "tag", "name": "p", "namespace": null } ] ], "p#strong": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "strong", "namespace": null, "ignoreCase": "quirks" } ] ], "p, div p": [ [ { "type": "tag", "name": "p", "namespace": null } ], [ { "type": "tag", "name": "div", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "p", "namespace": null } ] ], "p,a": [ [ { "type": "tag", "name": "p", "namespace": null } ], [ { "type": "tag", "name": "a", "namespace": null } ] ], "p.first > a": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "first", "namespace": null, "ignoreCase": "quirks" }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null } ] ], "p.foo": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "foo", "namespace": null, "ignoreCase": "quirks" } ] ], "p.odd": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "odd", "namespace": null, "ignoreCase": "quirks" } ] ], "p:contains(bar)": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "bar" } ] ], "p:contains(id=\"foo\")[id!=')']": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "id=\"foo\"" }, { "type": "attribute", "name": "id", "action": "not", "value": ")", "namespace": null, "ignoreCase": null } ] ], "p:contains(id=\"foo\")[id!=\\)]": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "contains", "data": "id=\"foo\"" }, { "type": "attribute", "name": "id", "action": "not", "value": ")", "namespace": null, "ignoreCase": null } ] ], "p:first-child": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "p:has( a )": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ] ] } ] ], "p:has(a)": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "has", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ] ] } ] ], "p:last-child": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "p:not(a,p)": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ], [ { "type": "tag", "name": "p", "namespace": null } ] ] } ] ], "p:not(a,p,b)": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "a", "namespace": null } ], [ { "type": "tag", "name": "p", "namespace": null } ], [ { "type": "tag", "name": "b", "namespace": null } ] ] } ] ], "p:not(p)": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "p", "namespace": null } ] ] } ] ], "p:not(p,a)": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "not", "data": [ [ { "type": "tag", "name": "p", "namespace": null } ], [ { "type": "tag", "name": "a", "namespace": null } ] ] } ] ], "p:nth-child( 1 )": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": " 1 " } ] ], "p:nth-child(1)": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "1" } ] ], "p:nth-child(2)": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "2" } ] ], "p> a": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null } ] ], "p>a": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "a", "namespace": null } ] ], "p[lang=en] + p": [ [ { "type": "tag", "name": "p", "namespace": null }, { "type": "attribute", "name": "lang", "action": "equals", "value": "en", "namespace": null, "ignoreCase": null }, { "type": "adjacent" }, { "type": "tag", "name": "p", "namespace": null } ] ], "param": [ [ { "type": "tag", "name": "param", "namespace": null } ] ], "property[name=prop2]": [ [ { "type": "tag", "name": "property", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "prop2", "namespace": null, "ignoreCase": null } ] ], "select": [ [ { "type": "tag", "name": "select", "namespace": null } ] ], "select[name='select2'] option:selected": [ [ { "type": "tag", "name": "select", "namespace": null }, { "type": "attribute", "name": "name", "action": "equals", "value": "select2", "namespace": null, "ignoreCase": null }, { "type": "descendant" }, { "type": "tag", "name": "option", "namespace": null }, { "type": "pseudo", "name": "selected", "data": null } ] ], "soap\\:Envelope": [ [ { "type": "tag", "name": "soap:Envelope", "namespace": null } ] ], "span": [ [ { "type": "tag", "name": "span", "namespace": null } ] ], "span > span": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "span", "namespace": null } ] ], "span span": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "descendant" }, { "type": "tag", "name": "span", "namespace": null } ] ], "span ~ #level3_2": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "sibling" }, { "type": "attribute", "name": "id", "action": "equals", "value": "level3_2", "namespace": null, "ignoreCase": "quirks" } ] ], "span#dupL1": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "dupL1", "namespace": null, "ignoreCase": "quirks" } ] ], "span.span_bar": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "span_bar", "namespace": null, "ignoreCase": "quirks" } ] ], "span.span_foo": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "span_foo", "namespace": null, "ignoreCase": "quirks" } ] ], "span.span_wtf": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "attribute", "name": "class", "action": "element", "value": "span_wtf", "namespace": null, "ignoreCase": "quirks" } ] ], "span:empty > *": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "pseudo", "name": "empty", "data": null }, { "type": "child" }, { "type": "universal", "namespace": null } ] ], "span:first-child": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "span:nth-child(5)": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "5" } ] ], "span[lang=中文]": [ [ { "type": "tag", "name": "span", "namespace": null }, { "type": "attribute", "name": "lang", "action": "equals", "value": "中文", "namespace": null, "ignoreCase": null } ] ], "strong": [ [ { "type": "tag", "name": "strong", "namespace": null } ] ], "strong#strong": [ [ { "type": "tag", "name": "strong", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "strong", "namespace": null, "ignoreCase": "quirks" } ] ], "tostring#toString": [ [ { "type": "tag", "name": "tostring", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "toString", "namespace": null, "ignoreCase": "quirks" } ] ], "ul > li": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null } ] ], "ul > li:first-child": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "first-child", "data": null } ] ], "ul > li:last-child": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "last-child", "data": null } ] ], "ul > li:nth-child(1)": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "1" } ] ], "ul > li:nth-child(2n)": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "2n" } ] ], "ul > li:nth-child(2n+1)": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "2n+1" } ] ], "ul > li:nth-child(even)": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "even" } ] ], "ul > li:nth-child(n)": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "n" } ] ], "ul > li:nth-child(n-128)": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "n-128" } ] ], "ul > li:nth-child(odd)": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-child", "data": "odd" } ] ], "ul > li:nth-last-child(1)": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null }, { "type": "pseudo", "name": "nth-last-child", "data": "1" } ] ], "ul#first": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "attribute", "name": "id", "action": "equals", "value": "first", "namespace": null, "ignoreCase": "quirks" } ] ], "ul:empty": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "pseudo", "name": "empty", "data": null } ] ], "ul>li": [ [ { "type": "tag", "name": "ul", "namespace": null }, { "type": "child" }, { "type": "tag", "name": "li", "namespace": null } ] ] } css-what-6.1.0/src/__fixtures__/tests.ts000066400000000000000000000621321422132521400202150ustar00rootroot00000000000000import { Selector, SelectorType, AttributeAction, IgnoreCaseMode } from ".."; export const tests: [ selector: string, expected: Selector[][], message: string ][] = [ // Tag names [ "div", [ [ { type: SelectorType.Tag, namespace: null, name: "div", }, ], ], "simple tag", ], [ "*", [ [ { type: SelectorType.Universal, namespace: null, }, ], ], "universal", ], // Traversal [ "div div", [ [ { type: SelectorType.Tag, namespace: null, name: "div", }, { type: SelectorType.Descendant, }, { type: SelectorType.Tag, namespace: null, name: "div", }, ], ], "descendant", ], [ "div\t \n \tdiv", [ [ { type: SelectorType.Tag, namespace: null, name: "div", }, { type: SelectorType.Descendant, }, { type: SelectorType.Tag, namespace: null, name: "div", }, ], ], "descendant /w whitespace", ], [ "div + div", [ [ { type: SelectorType.Tag, namespace: null, name: "div", }, { type: SelectorType.Adjacent, }, { type: SelectorType.Tag, namespace: null, name: "div", }, ], ], "adjacent", ], [ "div ~ div", [ [ { type: SelectorType.Tag, namespace: null, name: "div", }, { type: SelectorType.Sibling, }, { type: SelectorType.Tag, namespace: null, name: "div", }, ], ], "sibling", ], [ "p < div", [ [ { type: SelectorType.Tag, namespace: null, name: "p", }, { type: SelectorType.Parent, }, { type: SelectorType.Tag, namespace: null, name: "div", }, ], ], "parent", ], // Escaped whitespace [ "#\\ > a ", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "id", ignoreCase: IgnoreCaseMode.QuirksMode, value: " ", }, { type: SelectorType.Child, }, { type: SelectorType.Tag, namespace: null, name: "a", }, ], ], "Space between escaped space and combinator", ], [ ".\\ ", [ [ { type: SelectorType.Attribute, namespace: null, name: "class", action: AttributeAction.Element, ignoreCase: IgnoreCaseMode.QuirksMode, value: " ", }, ], ], "Space after escaped space", ], [ ".m™²³", [ [ { type: SelectorType.Attribute, namespace: null, name: "class", action: AttributeAction.Element, ignoreCase: IgnoreCaseMode.QuirksMode, value: "m™²³", }, ], ], "Special charecters in selector", ], [ "\\61 ", [ [ { type: SelectorType.Tag, namespace: null, name: "a", }, ], ], "Numeric escape with space (BMP)", ], [ "\\1d306\\01d306", [ [ { type: SelectorType.Tag, namespace: null, name: "\uD834\uDF06\uD834\uDF06", }, ], ], "Numeric escape (outside BMP)", ], [ "#\\26 B", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "id", ignoreCase: IgnoreCaseMode.QuirksMode, value: "&B", }, ], ], "id selector with escape sequence", ], // Attributes [ '[name^="foo["]', [ [ { type: SelectorType.Attribute, namespace: null, name: "name", ignoreCase: IgnoreCaseMode.Unknown, action: AttributeAction.Start, value: "foo[", }, ], ], "quoted attribute", ], [ '[name^="foo[bar]"]', [ [ { type: SelectorType.Attribute, namespace: null, name: "name", ignoreCase: IgnoreCaseMode.Unknown, action: AttributeAction.Start, value: "foo[bar]", }, ], ], "quoted attribute", ], [ '[name$="[bar]"]', [ [ { type: SelectorType.Attribute, namespace: null, name: "name", ignoreCase: IgnoreCaseMode.Unknown, action: AttributeAction.End, value: "[bar]", }, ], ], "quoted attribute", ], [ '[href *= "google"]', [ [ { type: SelectorType.Attribute, namespace: null, name: "href", ignoreCase: IgnoreCaseMode.Unknown, action: AttributeAction.Any, value: "google", }, ], ], "quoted attribute with spaces", ], [ '[value="\nsome text\n"]', [ [ { type: SelectorType.Attribute, namespace: null, name: "value", ignoreCase: IgnoreCaseMode.Unknown, action: AttributeAction.Equals, value: "\nsome text\n", }, ], ], "quoted attribute with internal newline", ], [ "[name=foo\\.baz]", [ [ { type: SelectorType.Attribute, namespace: null, name: "name", ignoreCase: IgnoreCaseMode.Unknown, action: AttributeAction.Equals, value: "foo.baz", }, ], ], "attribute with escaped dot", ], [ "[name=foo\\[bar\\]]", [ [ { type: SelectorType.Attribute, namespace: null, name: "name", ignoreCase: IgnoreCaseMode.Unknown, action: AttributeAction.Equals, value: "foo[bar]", }, ], ], "attribute with escaped square brackets", ], [ "[xml\\:test]", [ [ { type: SelectorType.Attribute, namespace: null, name: "xml:test", action: AttributeAction.Exists, value: "", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "escaped attribute", ], [ "[name='foo ~ < > , bar' i]", [ [ { type: SelectorType.Attribute, namespace: null, name: "name", action: AttributeAction.Equals, value: "foo ~ < > , bar", ignoreCase: IgnoreCaseMode.IgnoreCase, }, ], ], "attribute with previously normalized characters", ], // ID starting with a dot [ "#.identifier", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "id", ignoreCase: IgnoreCaseMode.QuirksMode, value: ".identifier", }, ], ], "ID starting with a dot", ], // Pseudo elements [ "::foo", [ [ { type: SelectorType.PseudoElement, name: "foo", data: null, }, ], ], "pseudo-element", ], [ "::foo()", [ [ { type: SelectorType.PseudoElement, name: "foo", data: "", }, ], ], "pseudo-element", ], [ "::foo(bar())", [ [ { type: SelectorType.PseudoElement, name: "foo", data: "bar()", }, ], ], "pseudo-element", ], // Pseudo selectors [ ":foo", [ [ { type: SelectorType.Pseudo, name: "foo", data: null, }, ], ], "pseudo selector without any data", ], [ ":bar(baz)", [ [ { type: SelectorType.Pseudo, name: "bar", data: "baz", }, ], ], "pseudo selector with data", ], [ ':contains("(foo)")', [ [ { type: SelectorType.Pseudo, name: "contains", data: "(foo)", }, ], ], "pseudo selector with data", ], [ ":where(a)", [ [ { type: SelectorType.Pseudo, name: "where", data: [ [ { type: SelectorType.Tag, namespace: null, name: "a", }, ], ], }, ], ], "pseudo selector with data", ], [ ':contains("(a((foo\\\\\\))))")', [ [ { type: SelectorType.Pseudo, name: "contains", data: "(a((foo))))", }, ], ], "pseudo selector with escaped data", ], [ ":icontains('')", [ [ { type: SelectorType.Pseudo, name: "icontains", data: "", }, ], ], "pseudo selector with quote-stripped data", ], [ ':contains("(foo)")', [ [ { type: SelectorType.Pseudo, name: "contains", data: "(foo)", }, ], ], "pseudo selector with data", ], // Multiple selectors [ "a , b", [ [ { type: SelectorType.Tag, namespace: null, name: "a", }, ], [ { type: SelectorType.Tag, namespace: null, name: "b", }, ], ], "multiple selectors", ], [ ":host(h1, p)", [ [ { type: SelectorType.Pseudo, name: "host", data: [ [ { type: SelectorType.Tag, namespace: null, name: "h1", }, ], [ { type: SelectorType.Tag, namespace: null, name: "p", }, ], ], }, ], ], "pseudo selector with data", ], /* * Bad attributes (taken from Sizzle) * https://github.com/jquery/sizzle/blob/af163873d7cdfc57f18b16c04b1915209533f0b1/test/unit/selector.js#L602-L651 */ [ "[id=types_all]", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "id", ignoreCase: IgnoreCaseMode.Unknown, value: "types_all", }, ], ], "Underscores don't need escaping", ], [ "[name=foo\\ bar]", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "name", value: "foo bar", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Escaped space", ], [ "[name=foo\\.baz]", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "name", value: "foo.baz", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Escaped dot", ], [ "[name=foo\\[baz\\]]", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "name", value: "foo[baz]", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Escaped brackets", ], [ "[data-attr='foo_baz\\']']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "foo_baz']", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Escaped quote + right bracket", ], [ "[data-attr='\\'']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "'", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Quoted quote", ], [ "[data-attr='\\\\']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "\\", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Quoted backslash", ], [ "[data-attr='\\\\\\'']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "\\'", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Quoted backslash quote", ], [ "[data-attr='\\\\\\\\']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "\\\\", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Quoted backslash backslash", ], [ "[data-attr='\\5C\\\\']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "\\\\", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Quoted backslash backslash (numeric escape)", ], [ "[data-attr='\\5C \\\\']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "\\\\", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Quoted backslash backslash (numeric escape with trailing space)", ], [ "[data-attr='\\5C\t\\\\']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "\\\\", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Quoted backslash backslash (numeric escape with trailing tab)", ], [ "[data-attr='\\04e00']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "\u4e00", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Long numeric escape (BMP)", ], [ "[data-attr='\\01D306A']", [ [ { type: SelectorType.Attribute, namespace: null, action: AttributeAction.Equals, name: "data-attr", value: "\uD834\uDF06A", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Long numeric escape (non-BMP)", ], [ "fOo[baR]", [ [ { name: "fOo", type: SelectorType.Tag, namespace: null, }, { action: AttributeAction.Exists, name: "baR", type: SelectorType.Attribute, namespace: null, value: "", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "Mixed case tag and attribute name", ], // Namespaces [ "foo|bar", [ [ { name: "bar", type: SelectorType.Tag, namespace: "foo", }, ], ], "basic tag namespace", ], [ "*|bar", [ [ { name: "bar", type: SelectorType.Tag, namespace: "*", }, ], ], "star tag namespace", ], [ "|bar", [ [ { name: "bar", type: SelectorType.Tag, namespace: "", }, ], ], "without namespace", ], [ "*|*", [ [ { type: SelectorType.Universal, namespace: "*", }, ], ], "universal with namespace", ], [ "[foo|bar]", [ [ { action: AttributeAction.Exists, name: "bar", type: SelectorType.Attribute, namespace: "foo", value: "", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "basic attribute namespace, existential", ], [ "[|bar]", [ [ { action: AttributeAction.Exists, name: "bar", type: SelectorType.Attribute, namespace: null, value: "", ignoreCase: IgnoreCaseMode.Unknown, }, ], ], "without namespace, existential", ], [ "[foo|bar='baz' i]", [ [ { action: AttributeAction.Equals, ignoreCase: IgnoreCaseMode.IgnoreCase, name: "bar", type: SelectorType.Attribute, namespace: "foo", value: "baz", }, ], ], "basic attribute namespace, equality", ], [ "[*|bar='baz' i]", [ [ { action: AttributeAction.Equals, ignoreCase: IgnoreCaseMode.IgnoreCase, name: "bar", type: SelectorType.Attribute, namespace: "*", value: "baz", }, ], ], "star attribute namespace", ], [ "[type='a' S]", [ [ { action: AttributeAction.Equals, ignoreCase: IgnoreCaseMode.CaseSensitive, name: "type", type: SelectorType.Attribute, value: "a", namespace: null, }, ], ], "case-sensitive attribute selector", ], [ "foo || bar", [ [ { name: "foo", namespace: null, type: SelectorType.Tag, }, { type: SelectorType.ColumnCombinator, }, { name: "bar", namespace: null, type: SelectorType.Tag, }, ], ], "column combinator", ], [ "foo||bar", [ [ { name: "foo", namespace: null, type: SelectorType.Tag, }, { type: SelectorType.ColumnCombinator, }, { name: "bar", namespace: null, type: SelectorType.Tag, }, ], ], "column combinator without whitespace", ], ]; css-what-6.1.0/src/index.ts000066400000000000000000000001601422132521400155060ustar00rootroot00000000000000export * from "./types"; export { isTraversal, parse } from "./parse"; export { stringify } from "./stringify"; css-what-6.1.0/src/parse.spec.ts000066400000000000000000000030411422132521400164430ustar00rootroot00000000000000import { readFileSync } from "fs"; import { parse } from "."; import { tests } from "./__fixtures__/tests"; const broken = [ "[", "(", "{", "()", "<>", "{}", ",", ",a", "a,", "[id=012345678901234567890123456789", "input[name=foo b]", "input[name!foo]", "input[name|]", "input[name=']", "input[name=foo[baz]]", ':has("p")', ":has(p", ":foo(p()", "#", "##foo", "/*", ]; describe("Parse", () => { describe("Own tests", () => { for (const [selector, expected, message] of tests) { test(message, () => expect(parse(selector)).toStrictEqual(expected) ); } }); describe("Collected selectors (qwery, sizzle, nwmatcher)", () => { const out = JSON.parse( readFileSync(`${__dirname}/__fixtures__/out.json`, "utf8") ); for (const s of Object.keys(out)) { test(s, () => { expect(parse(s)).toStrictEqual(out[s]); }); } }); describe("Broken selectors", () => { for (const selector of broken) { it(`should not parse — ${selector}`, () => { expect(() => parse(selector)).toThrow(Error); }); } }); it("should ignore comments", () => { expect(parse("/* comment1 */ /**/ foo /*comment2*/")).toEqual([ [{ name: "foo", namespace: null, type: "tag" }], ]); expect(() => parse("/*/")).toThrowError("Comment was not terminated"); }); }); css-what-6.1.0/src/parse.ts000066400000000000000000000444531422132521400155260ustar00rootroot00000000000000import { Selector, SelectorType, AttributeSelector, Traversal, AttributeAction, TraversalType, DataType, } from "./types"; const reName = /^[^\\#]?(?:\\(?:[\da-f]{1,6}\s?|.)|[\w\-\u00b0-\uFFFF])+/; const reEscape = /\\([\da-f]{1,6}\s?|(\s)|.)/gi; const enum CharCode { LeftParenthesis = 40, RightParenthesis = 41, LeftSquareBracket = 91, RightSquareBracket = 93, Comma = 44, Period = 46, Colon = 58, SingleQuote = 39, DoubleQuote = 34, Plus = 43, Tilde = 126, QuestionMark = 63, ExclamationMark = 33, Slash = 47, Star = 42, Equal = 61, Dollar = 36, Pipe = 124, Circumflex = 94, Asterisk = 42, GreaterThan = 62, LessThan = 60, Hash = 35, LowerI = 105, LowerS = 115, BackSlash = 92, // Whitespace Space = 32, Tab = 9, NewLine = 10, FormFeed = 12, CarriageReturn = 13, } const actionTypes = new Map([ [CharCode.Tilde, AttributeAction.Element], [CharCode.Circumflex, AttributeAction.Start], [CharCode.Dollar, AttributeAction.End], [CharCode.Asterisk, AttributeAction.Any], [CharCode.ExclamationMark, AttributeAction.Not], [CharCode.Pipe, AttributeAction.Hyphen], ]); // Pseudos, whose data property is parsed as well. const unpackPseudos = new Set([ "has", "not", "matches", "is", "where", "host", "host-context", ]); /** * Checks whether a specific selector is a traversal. * This is useful eg. in swapping the order of elements that * are not traversals. * * @param selector Selector to check. */ export function isTraversal(selector: Selector): selector is Traversal { switch (selector.type) { case SelectorType.Adjacent: case SelectorType.Child: case SelectorType.Descendant: case SelectorType.Parent: case SelectorType.Sibling: case SelectorType.ColumnCombinator: return true; default: return false; } } const stripQuotesFromPseudos = new Set(["contains", "icontains"]); // Unescape function taken from https://github.com/jquery/sizzle/blob/master/src/sizzle.js#L152 function funescape(_: string, escaped: string, escapedWhitespace?: string) { const high = parseInt(escaped, 16) - 0x10000; // NaN means non-codepoint return high !== high || escapedWhitespace ? escaped : high < 0 ? // BMP codepoint String.fromCharCode(high + 0x10000) : // Supplemental Plane codepoint (surrogate pair) String.fromCharCode((high >> 10) | 0xd800, (high & 0x3ff) | 0xdc00); } function unescapeCSS(str: string) { return str.replace(reEscape, funescape); } function isQuote(c: number): boolean { return c === CharCode.SingleQuote || c === CharCode.DoubleQuote; } function isWhitespace(c: number): boolean { return ( c === CharCode.Space || c === CharCode.Tab || c === CharCode.NewLine || c === CharCode.FormFeed || c === CharCode.CarriageReturn ); } /** * Parses `selector`, optionally with the passed `options`. * * @param selector Selector to parse. * @param options Options for parsing. * @returns Returns a two-dimensional array. * The first dimension represents selectors separated by commas (eg. `sub1, sub2`), * the second contains the relevant tokens for that selector. */ export function parse(selector: string): Selector[][] { const subselects: Selector[][] = []; const endIndex = parseSelector(subselects, `${selector}`, 0); if (endIndex < selector.length) { throw new Error(`Unmatched selector: ${selector.slice(endIndex)}`); } return subselects; } function parseSelector( subselects: Selector[][], selector: string, selectorIndex: number ): number { let tokens: Selector[] = []; function getName(offset: number): string { const match = selector.slice(selectorIndex + offset).match(reName); if (!match) { throw new Error( `Expected name, found ${selector.slice(selectorIndex)}` ); } const [name] = match; selectorIndex += offset + name.length; return unescapeCSS(name); } function stripWhitespace(offset: number) { selectorIndex += offset; while ( selectorIndex < selector.length && isWhitespace(selector.charCodeAt(selectorIndex)) ) { selectorIndex++; } } function readValueWithParenthesis(): string { selectorIndex += 1; const start = selectorIndex; let counter = 1; for ( ; counter > 0 && selectorIndex < selector.length; selectorIndex++ ) { if ( selector.charCodeAt(selectorIndex) === CharCode.LeftParenthesis && !isEscaped(selectorIndex) ) { counter++; } else if ( selector.charCodeAt(selectorIndex) === CharCode.RightParenthesis && !isEscaped(selectorIndex) ) { counter--; } } if (counter) { throw new Error("Parenthesis not matched"); } return unescapeCSS(selector.slice(start, selectorIndex - 1)); } function isEscaped(pos: number): boolean { let slashCount = 0; while (selector.charCodeAt(--pos) === CharCode.BackSlash) slashCount++; return (slashCount & 1) === 1; } function ensureNotTraversal() { if (tokens.length > 0 && isTraversal(tokens[tokens.length - 1])) { throw new Error("Did not expect successive traversals."); } } function addTraversal(type: TraversalType) { if ( tokens.length > 0 && tokens[tokens.length - 1].type === SelectorType.Descendant ) { tokens[tokens.length - 1].type = type; return; } ensureNotTraversal(); tokens.push({ type }); } function addSpecialAttribute(name: string, action: AttributeAction) { tokens.push({ type: SelectorType.Attribute, name, action, value: getName(1), namespace: null, ignoreCase: "quirks", }); } /** * We have finished parsing the current part of the selector. * * Remove descendant tokens at the end if they exist, * and return the last index, so that parsing can be * picked up from here. */ function finalizeSubselector() { if ( tokens.length && tokens[tokens.length - 1].type === SelectorType.Descendant ) { tokens.pop(); } if (tokens.length === 0) { throw new Error("Empty sub-selector"); } subselects.push(tokens); } stripWhitespace(0); if (selector.length === selectorIndex) { return selectorIndex; } loop: while (selectorIndex < selector.length) { const firstChar = selector.charCodeAt(selectorIndex); switch (firstChar) { // Whitespace case CharCode.Space: case CharCode.Tab: case CharCode.NewLine: case CharCode.FormFeed: case CharCode.CarriageReturn: { if ( tokens.length === 0 || tokens[0].type !== SelectorType.Descendant ) { ensureNotTraversal(); tokens.push({ type: SelectorType.Descendant }); } stripWhitespace(1); break; } // Traversals case CharCode.GreaterThan: { addTraversal(SelectorType.Child); stripWhitespace(1); break; } case CharCode.LessThan: { addTraversal(SelectorType.Parent); stripWhitespace(1); break; } case CharCode.Tilde: { addTraversal(SelectorType.Sibling); stripWhitespace(1); break; } case CharCode.Plus: { addTraversal(SelectorType.Adjacent); stripWhitespace(1); break; } // Special attribute selectors: .class, #id case CharCode.Period: { addSpecialAttribute("class", AttributeAction.Element); break; } case CharCode.Hash: { addSpecialAttribute("id", AttributeAction.Equals); break; } case CharCode.LeftSquareBracket: { stripWhitespace(1); // Determine attribute name and namespace let name: string; let namespace: string | null = null; if (selector.charCodeAt(selectorIndex) === CharCode.Pipe) { // Equivalent to no namespace name = getName(1); } else if (selector.startsWith("*|", selectorIndex)) { namespace = "*"; name = getName(2); } else { name = getName(0); if ( selector.charCodeAt(selectorIndex) === CharCode.Pipe && selector.charCodeAt(selectorIndex + 1) !== CharCode.Equal ) { namespace = name; name = getName(1); } } stripWhitespace(0); // Determine comparison operation let action: AttributeAction = AttributeAction.Exists; const possibleAction = actionTypes.get( selector.charCodeAt(selectorIndex) ); if (possibleAction) { action = possibleAction; if ( selector.charCodeAt(selectorIndex + 1) !== CharCode.Equal ) { throw new Error("Expected `=`"); } stripWhitespace(2); } else if ( selector.charCodeAt(selectorIndex) === CharCode.Equal ) { action = AttributeAction.Equals; stripWhitespace(1); } // Determine value let value = ""; let ignoreCase: boolean | null = null; if (action !== "exists") { if (isQuote(selector.charCodeAt(selectorIndex))) { const quote = selector.charCodeAt(selectorIndex); let sectionEnd = selectorIndex + 1; while ( sectionEnd < selector.length && (selector.charCodeAt(sectionEnd) !== quote || isEscaped(sectionEnd)) ) { sectionEnd += 1; } if (selector.charCodeAt(sectionEnd) !== quote) { throw new Error("Attribute value didn't end"); } value = unescapeCSS( selector.slice(selectorIndex + 1, sectionEnd) ); selectorIndex = sectionEnd + 1; } else { const valueStart = selectorIndex; while ( selectorIndex < selector.length && ((!isWhitespace( selector.charCodeAt(selectorIndex) ) && selector.charCodeAt(selectorIndex) !== CharCode.RightSquareBracket) || isEscaped(selectorIndex)) ) { selectorIndex += 1; } value = unescapeCSS( selector.slice(valueStart, selectorIndex) ); } stripWhitespace(0); // See if we have a force ignore flag const forceIgnore = selector.charCodeAt(selectorIndex) | 0x20; // If the forceIgnore flag is set (either `i` or `s`), use that value if (forceIgnore === CharCode.LowerS) { ignoreCase = false; stripWhitespace(1); } else if (forceIgnore === CharCode.LowerI) { ignoreCase = true; stripWhitespace(1); } } if ( selector.charCodeAt(selectorIndex) !== CharCode.RightSquareBracket ) { throw new Error("Attribute selector didn't terminate"); } selectorIndex += 1; const attributeSelector: AttributeSelector = { type: SelectorType.Attribute, name, action, value, namespace, ignoreCase, }; tokens.push(attributeSelector); break; } case CharCode.Colon: { if (selector.charCodeAt(selectorIndex + 1) === CharCode.Colon) { tokens.push({ type: SelectorType.PseudoElement, name: getName(2).toLowerCase(), data: selector.charCodeAt(selectorIndex) === CharCode.LeftParenthesis ? readValueWithParenthesis() : null, }); continue; } const name = getName(1).toLowerCase(); let data: DataType = null; if ( selector.charCodeAt(selectorIndex) === CharCode.LeftParenthesis ) { if (unpackPseudos.has(name)) { if (isQuote(selector.charCodeAt(selectorIndex + 1))) { throw new Error( `Pseudo-selector ${name} cannot be quoted` ); } data = []; selectorIndex = parseSelector( data, selector, selectorIndex + 1 ); if ( selector.charCodeAt(selectorIndex) !== CharCode.RightParenthesis ) { throw new Error( `Missing closing parenthesis in :${name} (${selector})` ); } selectorIndex += 1; } else { data = readValueWithParenthesis(); if (stripQuotesFromPseudos.has(name)) { const quot = data.charCodeAt(0); if ( quot === data.charCodeAt(data.length - 1) && isQuote(quot) ) { data = data.slice(1, -1); } } data = unescapeCSS(data); } } tokens.push({ type: SelectorType.Pseudo, name, data }); break; } case CharCode.Comma: { finalizeSubselector(); tokens = []; stripWhitespace(1); break; } default: { if (selector.startsWith("/*", selectorIndex)) { const endIndex = selector.indexOf("*/", selectorIndex + 2); if (endIndex < 0) { throw new Error("Comment was not terminated"); } selectorIndex = endIndex + 2; // Remove leading whitespace if (tokens.length === 0) { stripWhitespace(0); } break; } let namespace = null; let name: string; if (firstChar === CharCode.Asterisk) { selectorIndex += 1; name = "*"; } else if (firstChar === CharCode.Pipe) { name = ""; if ( selector.charCodeAt(selectorIndex + 1) === CharCode.Pipe ) { addTraversal(SelectorType.ColumnCombinator); stripWhitespace(2); break; } } else if (reName.test(selector.slice(selectorIndex))) { name = getName(0); } else { break loop; } if ( selector.charCodeAt(selectorIndex) === CharCode.Pipe && selector.charCodeAt(selectorIndex + 1) !== CharCode.Pipe ) { namespace = name; if ( selector.charCodeAt(selectorIndex + 1) === CharCode.Asterisk ) { name = "*"; selectorIndex += 2; } else { name = getName(1); } } tokens.push( name === "*" ? { type: SelectorType.Universal, namespace } : { type: SelectorType.Tag, name, namespace } ); } } } finalizeSubselector(); return selectorIndex; } css-what-6.1.0/src/stringify.spec.ts000066400000000000000000000013351422132521400173530ustar00rootroot00000000000000import { readFileSync } from "fs"; import { parse, stringify } from "."; import { tests } from "./__fixtures__/tests"; describe("Stringify & re-parse", () => { describe("Own tests", () => { for (const [selector, expected, message] of tests) { test(`${message} (${selector})`, () => { expect(parse(stringify(expected))).toStrictEqual(expected); }); } }); it("Collected Selectors (qwery, sizzle, nwmatcher)", () => { const out = JSON.parse( readFileSync(`${__dirname}/__fixtures__/out.json`, "utf8") ); for (const s of Object.keys(out)) { expect(parse(stringify(out[s]))).toStrictEqual(out[s]); } }); }); css-what-6.1.0/src/stringify.ts000066400000000000000000000121521422132521400164210ustar00rootroot00000000000000import { Selector, SelectorType, AttributeAction } from "./types"; const attribValChars = ["\\", '"']; const pseudoValChars = [...attribValChars, "(", ")"]; const charsToEscapeInAttributeValue = new Set( attribValChars.map((c) => c.charCodeAt(0)) ); const charsToEscapeInPseudoValue = new Set( pseudoValChars.map((c) => c.charCodeAt(0)) ); const charsToEscapeInName = new Set( [ ...pseudoValChars, "~", "^", "$", "*", "+", "!", "|", ":", "[", "]", " ", ".", ].map((c) => c.charCodeAt(0)) ); /** * Turns `selector` back into a string. * * @param selector Selector to stringify. */ export function stringify(selector: Selector[][]): string { return selector .map((token) => token.map(stringifyToken).join("")) .join(", "); } function stringifyToken( token: Selector, index: number, arr: Selector[] ): string { switch (token.type) { // Simple types case SelectorType.Child: return index === 0 ? "> " : " > "; case SelectorType.Parent: return index === 0 ? "< " : " < "; case SelectorType.Sibling: return index === 0 ? "~ " : " ~ "; case SelectorType.Adjacent: return index === 0 ? "+ " : " + "; case SelectorType.Descendant: return " "; case SelectorType.ColumnCombinator: return index === 0 ? "|| " : " || "; case SelectorType.Universal: // Return an empty string if the selector isn't needed. return token.namespace === "*" && index + 1 < arr.length && "name" in arr[index + 1] ? "" : `${getNamespace(token.namespace)}*`; case SelectorType.Tag: return getNamespacedName(token); case SelectorType.PseudoElement: return `::${escapeName(token.name, charsToEscapeInName)}${ token.data === null ? "" : `(${escapeName(token.data, charsToEscapeInPseudoValue)})` }`; case SelectorType.Pseudo: return `:${escapeName(token.name, charsToEscapeInName)}${ token.data === null ? "" : `(${ typeof token.data === "string" ? escapeName( token.data, charsToEscapeInPseudoValue ) : stringify(token.data) })` }`; case SelectorType.Attribute: { if ( token.name === "id" && token.action === AttributeAction.Equals && token.ignoreCase === "quirks" && !token.namespace ) { return `#${escapeName(token.value, charsToEscapeInName)}`; } if ( token.name === "class" && token.action === AttributeAction.Element && token.ignoreCase === "quirks" && !token.namespace ) { return `.${escapeName(token.value, charsToEscapeInName)}`; } const name = getNamespacedName(token); if (token.action === AttributeAction.Exists) { return `[${name}]`; } return `[${name}${getActionValue(token.action)}="${escapeName( token.value, charsToEscapeInAttributeValue )}"${ token.ignoreCase === null ? "" : token.ignoreCase ? " i" : " s" }]`; } } } function getActionValue(action: AttributeAction): string { switch (action) { case AttributeAction.Equals: return ""; case AttributeAction.Element: return "~"; case AttributeAction.Start: return "^"; case AttributeAction.End: return "$"; case AttributeAction.Any: return "*"; case AttributeAction.Not: return "!"; case AttributeAction.Hyphen: return "|"; case AttributeAction.Exists: throw new Error("Shouldn't be here"); } } function getNamespacedName(token: { name: string; namespace: string | null; }): string { return `${getNamespace(token.namespace)}${escapeName( token.name, charsToEscapeInName )}`; } function getNamespace(namespace: string | null): string { return namespace !== null ? `${ namespace === "*" ? "*" : escapeName(namespace, charsToEscapeInName) }|` : ""; } function escapeName(str: string, charsToEscape: Set): string { let lastIdx = 0; let ret = ""; for (let i = 0; i < str.length; i++) { if (charsToEscape.has(str.charCodeAt(i))) { ret += `${str.slice(lastIdx, i)}\\${str.charAt(i)}`; lastIdx = i + 1; } } return ret.length > 0 ? ret + str.slice(lastIdx) : str; } css-what-6.1.0/src/types.ts000066400000000000000000000036721422132521400155560ustar00rootroot00000000000000export type Selector = | PseudoSelector | PseudoElement | AttributeSelector | TagSelector | UniversalSelector | Traversal; export enum SelectorType { Attribute = "attribute", Pseudo = "pseudo", PseudoElement = "pseudo-element", Tag = "tag", Universal = "universal", // Traversals Adjacent = "adjacent", Child = "child", Descendant = "descendant", Parent = "parent", Sibling = "sibling", ColumnCombinator = "column-combinator", } /** * Modes for ignore case. * * This could be updated to an enum, and the object is * the current stand-in that will allow code to be updated * without big changes. */ export const IgnoreCaseMode = { Unknown: null, QuirksMode: "quirks", IgnoreCase: true, CaseSensitive: false, } as const; export interface AttributeSelector { type: SelectorType.Attribute; name: string; action: AttributeAction; value: string; ignoreCase: "quirks" | boolean | null; namespace: string | null; } export type DataType = Selector[][] | null | string; export interface PseudoSelector { type: SelectorType.Pseudo; name: string; data: DataType; } export interface PseudoElement { type: SelectorType.PseudoElement; name: string; data: string | null; } export interface TagSelector { type: SelectorType.Tag; name: string; namespace: string | null; } export interface UniversalSelector { type: SelectorType.Universal; namespace: string | null; } export interface Traversal { type: TraversalType; } export enum AttributeAction { Any = "any", Element = "element", End = "end", Equals = "equals", Exists = "exists", Hyphen = "hyphen", Not = "not", Start = "start", } export type TraversalType = | SelectorType.Adjacent | SelectorType.Child | SelectorType.Descendant | SelectorType.Parent | SelectorType.Sibling | SelectorType.ColumnCombinator; css-what-6.1.0/src/wpt.spec.ts000066400000000000000000000155551422132521400161600ustar00rootroot00000000000000/** * @fileoverview CSS Selector parsing tests from WPT * @see https://github.com/web-platform-tests/wpt/tree/0bb883967c888261a8372923fd61eb5ad14305b2/css/selectors/parsing * @license BSD-3-Clause (https://github.com/web-platform-tests/wpt/blob/master/LICENSE.md) */ import { parse, stringify } from "."; function test_valid_selector( selector: string, serialized: string | string[] = selector ) { const result = stringify(parse(selector)); if (Array.isArray(serialized)) { // Should be a part of the array expect(serialized).toContain(result); } else { expect(result).toStrictEqual(serialized); } } function test_invalid_selector(selector: string) { expect(() => parse(selector)).toThrow(Error); } describe("Web Platform Tests", () => { it("Attribute selectors", () => { // Attribute presence and value selectors test_valid_selector("[att]"); test_valid_selector("[att=val]", '[att="val"]'); test_valid_selector("[att~=val]", '[att~="val"]'); test_valid_selector("[att|=val]", '[att|="val"]'); test_valid_selector("h1[title]"); test_valid_selector("span[class='example']", 'span[class="example"]'); test_valid_selector("a[hreflang=fr]", 'a[hreflang="fr"]'); test_valid_selector("a[hreflang|='en']", 'a[hreflang|="en"]'); // Substring matching attribute selectors test_valid_selector("[att^=val]", '[att^="val"]'); test_valid_selector("[att$=val]", '[att$="val"]'); test_valid_selector("[att*=val]", '[att*="val"]'); test_valid_selector('object[type^="image/"]'); test_valid_selector('a[href$=".html"]'); test_valid_selector('p[title*="hello"]'); // From Attribute selectors and namespaces examples in spec: test_valid_selector("[*|att]"); test_valid_selector("[|att]", "[att]"); }); it("Child combinators", () => { test_valid_selector("body > p"); test_valid_selector("div ol>li p", "div ol > li p"); }); it("Class selectors", () => { test_valid_selector("*.pastoral", ["*.pastoral", ".pastoral"]); test_valid_selector(".pastoral", ["*.pastoral", ".pastoral"]); test_valid_selector("h1.pastoral"); test_valid_selector("p.pastoral.marine"); }); it("Descendant combinator", () => { test_valid_selector("h1 em"); test_valid_selector("div * p"); test_valid_selector("div p *[href]", ["div p *[href]", "div p [href]"]); }); it(":focus-visible pseudo-class", () => { test_valid_selector(":focus-visible"); test_valid_selector("a:focus-visible"); test_valid_selector(":focus:not(:focus-visible)"); }); it("The relational pseudo-class", () => { test_valid_selector(":has(a)"); test_valid_selector(":has(#a)"); test_valid_selector(":has(.a)"); test_valid_selector(":has([a])"); test_valid_selector(':has([a="b"])'); test_valid_selector(':has([a|="b"])'); test_valid_selector(":has(:hover)"); test_valid_selector("*:has(.a)", ["*:has(.a)", ":has(.a)"]); test_valid_selector(".a:has(.b)"); test_valid_selector(".a:has(> .b)"); test_valid_selector(".a:has(~ .b)"); test_valid_selector(".a:has(+ .b)"); test_valid_selector(".a:has(.b) .c"); test_valid_selector(".a .b:has(.c)"); test_valid_selector(".a .b:has(.c .d)"); test_valid_selector(".a .b:has(.c .d) .e"); test_valid_selector(".a:has(.b:has(.c))"); test_valid_selector(".a:has(.b:is(.c .d))"); test_valid_selector(".a:has(.b:is(.c:has(.d) .e))"); test_valid_selector(".a:is(.b:has(.c) .d)"); test_valid_selector(".a:not(:has(.b))"); test_valid_selector(".a:has(:not(.b))"); test_valid_selector(".a:has(.b):has(.c)"); test_valid_selector("*|*:has(*)", ":has(*)"); test_valid_selector(":has(*|*)"); test_invalid_selector(".a:has()"); }); it("ID selectors", () => { test_valid_selector("h1#chapter1"); test_valid_selector("#chapter1"); test_valid_selector("*#z98y", ["*#z98y", "#z98y"]); }); it("The Matches-Any Pseudo-class: ':is()'", () => { test_valid_selector( ":is(ul,ol,.list) > [hidden]", ":is(ul, ol, .list) > [hidden]" ); test_valid_selector(":is(:hover,:focus)", ":is(:hover, :focus)"); test_valid_selector("a:is(:not(:hover))"); test_valid_selector(":is(#a)"); test_valid_selector(".a.b ~ :is(.c.d ~ .e.f)"); test_valid_selector(".a.b ~ .c.d:is(span.e + .f, .g.h > .i.j .k)"); }); it("The negation pseudo-class", () => { test_valid_selector("button:not([disabled])"); test_valid_selector("*:not(foo)", ["*:not(foo)", ":not(foo)"]); test_valid_selector(":not(:link):not(:visited)"); test_valid_selector("*|*:not(*)", ":not(*)"); test_valid_selector(":not(:hover)"); test_valid_selector(":not(*|*)"); test_valid_selector("foo:not(bar)"); test_valid_selector(":not(:not(foo))"); test_valid_selector(":not(.a .b)"); test_valid_selector(":not(.a + .b)"); test_valid_selector(":not(.a .b ~ c)"); test_valid_selector(":not(span.a, div.b)"); test_valid_selector(":not(.a .b ~ c, .d .e)"); test_valid_selector(":not(:host)"); test_valid_selector(":not(:host(.a))"); test_valid_selector(":host(:not(.a))"); test_valid_selector(":not(:host(:not(.a)))"); test_valid_selector( ":not([disabled][selected])", ":not([disabled][selected])" ); test_valid_selector( ":not([disabled],[selected])", ":not([disabled], [selected])" ); test_invalid_selector(":not()"); test_invalid_selector(":not(:not())"); }); it("Sibling combinators", () => { test_valid_selector("math + p"); test_valid_selector("h1.opener + h2"); test_valid_selector("h1 ~ pre"); }); it("Universal selector", () => { test_valid_selector("*"); test_valid_selector("div :first-child", [ "div *:first-child", "div :first-child", ]); test_valid_selector("div *:first-child", [ "div *:first-child", "div :first-child", ]); }); it("The Specificity-adjustment Pseudo-class: ':where()'", () => { test_valid_selector( ":where(ul,ol,.list) > [hidden]", ":where(ul, ol, .list) > [hidden]" ); test_valid_selector(":where(:hover,:focus)", ":where(:hover, :focus)"); test_valid_selector("a:where(:not(:hover))"); test_valid_selector(":where(#a)"); test_valid_selector(".a.b ~ :where(.c.d ~ .e.f)"); test_valid_selector(".a.b ~ .c.d:where(span.e + .f, .g.h > .i.j .k)"); }); }); css-what-6.1.0/tsconfig.es.json000066400000000000000000000002741422132521400163630ustar00rootroot00000000000000{ "extends": "./tsconfig.json", "compilerOptions": { "target": "ES2019", "module": "es2015", "outDir": "lib/es", "moduleResolution": "node" } } css-what-6.1.0/tsconfig.eslint.json000066400000000000000000000001201422132521400172400ustar00rootroot00000000000000{ "extends": "./tsconfig.json", "include": ["src"], "exclude": [] } css-what-6.1.0/tsconfig.json000066400000000000000000000036251422132521400157600ustar00rootroot00000000000000{ "compilerOptions": { /* Basic Options */ "target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, // "lib": [], /* Specify library files to be included in the compilation. */ "declaration": true /* Generates corresponding '.d.ts' file. */, "declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */, // "sourceMap": true, /* Generates corresponding '.map' file. */ "outDir": "lib/commonjs" /* Redirect output structure to the directory. */, // "importHelpers": true, /* Import emit helpers from 'tslib'. */ /* Strict Type-Checking Options */ "strict": true /* Enable all strict type-checking options. */, /* Additional Checks */ "noUnusedLocals": true /* Report errors on unused locals. */, "noUnusedParameters": true /* Report errors on unused parameters. */, "noImplicitReturns": true /* Report error when not all code paths in function return a value. */, "noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */, /* Module Resolution Options */ // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, "resolveJsonModule": true }, "include": ["src"], "exclude": [ "**/*.spec.ts", "**/__fixtures__/*", "**/__tests__/*", "**/__snapshots__/*" ] }