diff --git a/tests/wcag-compliance/node_modules/get-stream/buffer-stream.js b/tests/wcag-compliance/node_modules/get-stream/buffer-stream.js
deleted file mode 100644
index 2dd7574..0000000
--- a/tests/wcag-compliance/node_modules/get-stream/buffer-stream.js
+++ /dev/null
@@ -1,52 +0,0 @@
-'use strict';
-const {PassThrough: PassThroughStream} = require('stream');
-
-module.exports = options => {
- options = {...options};
-
- const {array} = options;
- let {encoding} = options;
- const isBuffer = encoding === 'buffer';
- let objectMode = false;
-
- if (array) {
- objectMode = !(encoding || isBuffer);
- } else {
- encoding = encoding || 'utf8';
- }
-
- if (isBuffer) {
- encoding = null;
- }
-
- const stream = new PassThroughStream({objectMode});
-
- if (encoding) {
- stream.setEncoding(encoding);
- }
-
- let length = 0;
- const chunks = [];
-
- stream.on('data', chunk => {
- chunks.push(chunk);
-
- if (objectMode) {
- length = chunks.length;
- } else {
- length += chunk.length;
- }
- });
-
- stream.getBufferedValue = () => {
- if (array) {
- return chunks;
- }
-
- return isBuffer ? Buffer.concat(chunks, length) : chunks.join('');
- };
-
- stream.getBufferedLength = () => length;
-
- return stream;
-};
diff --git a/tests/wcag-compliance/node_modules/get-stream/index.d.ts b/tests/wcag-compliance/node_modules/get-stream/index.d.ts
deleted file mode 100644
index 9485b2b..0000000
--- a/tests/wcag-compliance/node_modules/get-stream/index.d.ts
+++ /dev/null
@@ -1,105 +0,0 @@
-///
-import {Stream} from 'stream';
-
-declare class MaxBufferErrorClass extends Error {
- readonly name: 'MaxBufferError';
- constructor();
-}
-
-declare namespace getStream {
- interface Options {
- /**
- Maximum length of the returned string. If it exceeds this value before the stream ends, the promise will be rejected with a `MaxBufferError` error.
-
- @default Infinity
- */
- readonly maxBuffer?: number;
- }
-
- interface OptionsWithEncoding extends Options {
- /**
- [Encoding](https://nodejs.org/api/buffer.html#buffer_buffer) of the incoming stream.
-
- @default 'utf8'
- */
- readonly encoding?: EncodingType;
- }
-
- type MaxBufferError = MaxBufferErrorClass;
-}
-
-declare const getStream: {
- /**
- Get the `stream` as a string.
-
- @returns A promise that resolves when the end event fires on the stream, indicating that there is no more data to be read. The stream is switched to flowing mode.
-
- @example
- ```
- import * as fs from 'fs';
- import getStream = require('get-stream');
-
- (async () => {
- const stream = fs.createReadStream('unicorn.txt');
-
- console.log(await getStream(stream));
- // ,,))))))));,
- // __)))))))))))))),
- // \|/ -\(((((''''((((((((.
- // -*-==//////(('' . `)))))),
- // /|\ ))| o ;-. '((((( ,(,
- // ( `| / ) ;))))' ,_))^;(~
- // | | | ,))((((_ _____------~~~-. %,;(;(>';'~
- // o_); ; )))(((` ~---~ `:: \ %%~~)(v;(`('~
- // ; ''''```` `: `:::|\,__,%% );`'; ~
- // | _ ) / `:|`----' `-'
- // ______/\/~ | / /
- // /~;;.____/;;' / ___--,-( `;;;/
- // / // _;______;'------~~~~~ /;;/\ /
- // // | | / ; \;;,\
- // (<_ | ; /',/-----' _>
- // \_| ||_ //~;~~~~~~~~~
- // `\_| (,~~
- // \~\
- // ~~
- })();
- ```
- */
- (stream: Stream, options?: getStream.OptionsWithEncoding): Promise;
-
- /**
- Get the `stream` as a buffer.
-
- It honors the `maxBuffer` option as above, but it refers to byte length rather than string length.
- */
- buffer(
- stream: Stream,
- options?: getStream.Options
- ): Promise;
-
- /**
- Get the `stream` as an array of values.
-
- It honors both the `maxBuffer` and `encoding` options. The behavior changes slightly based on the encoding chosen:
-
- - When `encoding` is unset, it assumes an [object mode stream](https://nodesource.com/blog/understanding-object-streams/) and collects values emitted from `stream` unmodified. In this case `maxBuffer` refers to the number of items in the array (not the sum of their sizes).
- - When `encoding` is set to `buffer`, it collects an array of buffers. `maxBuffer` refers to the summed byte lengths of every buffer in the array.
- - When `encoding` is set to anything else, it collects an array of strings. `maxBuffer` refers to the summed character lengths of every string in the array.
- */
- array(
- stream: Stream,
- options?: getStream.Options
- ): Promise;
- array(
- stream: Stream,
- options: getStream.OptionsWithEncoding<'buffer'>
- ): Promise;
- array(
- stream: Stream,
- options: getStream.OptionsWithEncoding
- ): Promise;
-
- MaxBufferError: typeof MaxBufferErrorClass;
-};
-
-export = getStream;
diff --git a/tests/wcag-compliance/node_modules/get-stream/index.js b/tests/wcag-compliance/node_modules/get-stream/index.js
deleted file mode 100644
index 1c5d028..0000000
--- a/tests/wcag-compliance/node_modules/get-stream/index.js
+++ /dev/null
@@ -1,61 +0,0 @@
-'use strict';
-const {constants: BufferConstants} = require('buffer');
-const stream = require('stream');
-const {promisify} = require('util');
-const bufferStream = require('./buffer-stream');
-
-const streamPipelinePromisified = promisify(stream.pipeline);
-
-class MaxBufferError extends Error {
- constructor() {
- super('maxBuffer exceeded');
- this.name = 'MaxBufferError';
- }
-}
-
-async function getStream(inputStream, options) {
- if (!inputStream) {
- throw new Error('Expected a stream');
- }
-
- options = {
- maxBuffer: Infinity,
- ...options
- };
-
- const {maxBuffer} = options;
- const stream = bufferStream(options);
-
- await new Promise((resolve, reject) => {
- const rejectPromise = error => {
- // Don't retrieve an oversized buffer.
- if (error && stream.getBufferedLength() <= BufferConstants.MAX_LENGTH) {
- error.bufferedData = stream.getBufferedValue();
- }
-
- reject(error);
- };
-
- (async () => {
- try {
- await streamPipelinePromisified(inputStream, stream);
- resolve();
- } catch (error) {
- rejectPromise(error);
- }
- })();
-
- stream.on('data', () => {
- if (stream.getBufferedLength() > maxBuffer) {
- rejectPromise(new MaxBufferError());
- }
- });
- });
-
- return stream.getBufferedValue();
-}
-
-module.exports = getStream;
-module.exports.buffer = (stream, options) => getStream(stream, {...options, encoding: 'buffer'});
-module.exports.array = (stream, options) => getStream(stream, {...options, array: true});
-module.exports.MaxBufferError = MaxBufferError;
diff --git a/tests/wcag-compliance/node_modules/get-stream/license b/tests/wcag-compliance/node_modules/get-stream/license
deleted file mode 100644
index fa7ceba..0000000
--- a/tests/wcag-compliance/node_modules/get-stream/license
+++ /dev/null
@@ -1,9 +0,0 @@
-MIT License
-
-Copyright (c) Sindre Sorhus (https://sindresorhus.com)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/tests/wcag-compliance/node_modules/get-stream/package.json b/tests/wcag-compliance/node_modules/get-stream/package.json
deleted file mode 100644
index bd47a75..0000000
--- a/tests/wcag-compliance/node_modules/get-stream/package.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "name": "get-stream",
- "version": "6.0.1",
- "description": "Get a stream as a string, buffer, or array",
- "license": "MIT",
- "repository": "sindresorhus/get-stream",
- "funding": "https://github.com/sponsors/sindresorhus",
- "author": {
- "name": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "https://sindresorhus.com"
- },
- "engines": {
- "node": ">=10"
- },
- "scripts": {
- "test": "xo && ava && tsd"
- },
- "files": [
- "index.js",
- "index.d.ts",
- "buffer-stream.js"
- ],
- "keywords": [
- "get",
- "stream",
- "promise",
- "concat",
- "string",
- "text",
- "buffer",
- "read",
- "data",
- "consume",
- "readable",
- "readablestream",
- "array",
- "object"
- ],
- "devDependencies": {
- "@types/node": "^14.0.27",
- "ava": "^2.4.0",
- "into-stream": "^5.0.0",
- "tsd": "^0.13.1",
- "xo": "^0.24.0"
- }
-}
diff --git a/tests/wcag-compliance/node_modules/get-stream/readme.md b/tests/wcag-compliance/node_modules/get-stream/readme.md
deleted file mode 100644
index 70b01fd..0000000
--- a/tests/wcag-compliance/node_modules/get-stream/readme.md
+++ /dev/null
@@ -1,124 +0,0 @@
-# get-stream
-
-> Get a stream as a string, buffer, or array
-
-## Install
-
-```
-$ npm install get-stream
-```
-
-## Usage
-
-```js
-const fs = require('fs');
-const getStream = require('get-stream');
-
-(async () => {
- const stream = fs.createReadStream('unicorn.txt');
-
- console.log(await getStream(stream));
- /*
- ,,))))))));,
- __)))))))))))))),
- \|/ -\(((((''''((((((((.
- -*-==//////(('' . `)))))),
- /|\ ))| o ;-. '((((( ,(,
- ( `| / ) ;))))' ,_))^;(~
- | | | ,))((((_ _____------~~~-. %,;(;(>';'~
- o_); ; )))(((` ~---~ `:: \ %%~~)(v;(`('~
- ; ''''```` `: `:::|\,__,%% );`'; ~
- | _ ) / `:|`----' `-'
- ______/\/~ | / /
- /~;;.____/;;' / ___--,-( `;;;/
- / // _;______;'------~~~~~ /;;/\ /
- // | | / ; \;;,\
- (<_ | ; /',/-----' _>
- \_| ||_ //~;~~~~~~~~~
- `\_| (,~~
- \~\
- ~~
- */
-})();
-```
-
-## API
-
-The methods returns a promise that resolves when the `end` event fires on the stream, indicating that there is no more data to be read. The stream is switched to flowing mode.
-
-### getStream(stream, options?)
-
-Get the `stream` as a string.
-
-#### options
-
-Type: `object`
-
-##### encoding
-
-Type: `string`\
-Default: `'utf8'`
-
-[Encoding](https://nodejs.org/api/buffer.html#buffer_buffer) of the incoming stream.
-
-##### maxBuffer
-
-Type: `number`\
-Default: `Infinity`
-
-Maximum length of the returned string. If it exceeds this value before the stream ends, the promise will be rejected with a `getStream.MaxBufferError` error.
-
-### getStream.buffer(stream, options?)
-
-Get the `stream` as a buffer.
-
-It honors the `maxBuffer` option as above, but it refers to byte length rather than string length.
-
-### getStream.array(stream, options?)
-
-Get the `stream` as an array of values.
-
-It honors both the `maxBuffer` and `encoding` options. The behavior changes slightly based on the encoding chosen:
-
-- When `encoding` is unset, it assumes an [object mode stream](https://nodesource.com/blog/understanding-object-streams/) and collects values emitted from `stream` unmodified. In this case `maxBuffer` refers to the number of items in the array (not the sum of their sizes).
-
-- When `encoding` is set to `buffer`, it collects an array of buffers. `maxBuffer` refers to the summed byte lengths of every buffer in the array.
-
-- When `encoding` is set to anything else, it collects an array of strings. `maxBuffer` refers to the summed character lengths of every string in the array.
-
-## Errors
-
-If the input stream emits an `error` event, the promise will be rejected with the error. The buffered data will be attached to the `bufferedData` property of the error.
-
-```js
-(async () => {
- try {
- await getStream(streamThatErrorsAtTheEnd('unicorn'));
- } catch (error) {
- console.log(error.bufferedData);
- //=> 'unicorn'
- }
-})()
-```
-
-## FAQ
-
-### How is this different from [`concat-stream`](https://github.com/maxogden/concat-stream)?
-
-This module accepts a stream instead of being one and returns a promise instead of using a callback. The API is simpler and it only supports returning a string, buffer, or array. It doesn't have a fragile type inference. You explicitly choose what you want. And it doesn't depend on the huge `readable-stream` package.
-
-## Related
-
-- [get-stdin](https://github.com/sindresorhus/get-stdin) - Get stdin as a string or buffer
-
----
-
-
diff --git a/tests/wcag-compliance/node_modules/human-signals/LICENSE b/tests/wcag-compliance/node_modules/human-signals/LICENSE
deleted file mode 100644
index 365f976..0000000
--- a/tests/wcag-compliance/node_modules/human-signals/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright 2021 ehmicky
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
diff --git a/tests/wcag-compliance/node_modules/human-signals/README.md b/tests/wcag-compliance/node_modules/human-signals/README.md
deleted file mode 100644
index 08a2ac1..0000000
--- a/tests/wcag-compliance/node_modules/human-signals/README.md
+++ /dev/null
@@ -1,164 +0,0 @@
-[![Codecov](https://img.shields.io/codecov/c/github/ehmicky/human-signals.svg?label=tested&logo=codecov)](https://codecov.io/gh/ehmicky/human-signals)
-[![Build](https://github.com/ehmicky/human-signals/workflows/Build/badge.svg)](https://github.com/ehmicky/human-signals/actions)
-[![Node](https://img.shields.io/node/v/human-signals.svg?logo=node.js)](https://www.npmjs.com/package/human-signals)
-[![Twitter](https://img.shields.io/badge/%E2%80%8B-twitter-4cc61e.svg?logo=twitter)](https://twitter.com/intent/follow?screen_name=ehmicky)
-[![Medium](https://img.shields.io/badge/%E2%80%8B-medium-4cc61e.svg?logo=medium)](https://medium.com/@ehmicky)
-
-Human-friendly process signals.
-
-This is a map of known process signals with some information about each signal.
-
-Unlike
-[`os.constants.signals`](https://nodejs.org/api/os.html#os_signal_constants)
-this includes:
-
-- human-friendly [descriptions](#description)
-- [default actions](#action), including whether they [can be prevented](#forced)
-- whether the signal is [supported](#supported) by the current OS
-
-# Example
-
-```js
-import { signalsByName, signalsByNumber } from 'human-signals'
-
-console.log(signalsByName.SIGINT)
-// {
-// name: 'SIGINT',
-// number: 2,
-// description: 'User interruption with CTRL-C',
-// supported: true,
-// action: 'terminate',
-// forced: false,
-// standard: 'ansi'
-// }
-
-console.log(signalsByNumber[8])
-// {
-// name: 'SIGFPE',
-// number: 8,
-// description: 'Floating point arithmetic error',
-// supported: true,
-// action: 'core',
-// forced: false,
-// standard: 'ansi'
-// }
-```
-
-# Install
-
-```bash
-npm install human-signals
-```
-
-This package is an ES module and must be loaded using
-[an `import` or `import()` statement](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c),
-not `require()`.
-
-# Usage
-
-## signalsByName
-
-_Type_: `object`
-
-Object whose keys are signal [names](#name) and values are
-[signal objects](#signal).
-
-## signalsByNumber
-
-_Type_: `object`
-
-Object whose keys are signal [numbers](#number) and values are
-[signal objects](#signal).
-
-## signal
-
-_Type_: `object`
-
-Signal object with the following properties.
-
-### name
-
-_Type_: `string`
-
-Standard name of the signal, for example `'SIGINT'`.
-
-### number
-
-_Type_: `number`
-
-Code number of the signal, for example `2`. While most `number` are
-cross-platform, some are different between different OS.
-
-### description
-
-_Type_: `string`
-
-Human-friendly description for the signal, for example
-`'User interruption with CTRL-C'`.
-
-### supported
-
-_Type_: `boolean`
-
-Whether the current OS can handle this signal in Node.js using
-[`process.on(name, handler)`](https://nodejs.org/api/process.html#process_signal_events).
-
-The list of supported signals
-[is OS-specific](https://github.com/ehmicky/cross-platform-node-guide/blob/main/docs/6_networking_ipc/signals.md#cross-platform-signals).
-
-### action
-
-_Type_: `string`\
-_Enum_: `'terminate'`, `'core'`, `'ignore'`, `'pause'`, `'unpause'`
-
-What is the default action for this signal when it is not handled.
-
-### forced
-
-_Type_: `boolean`
-
-Whether the signal's default action cannot be prevented. This is `true` for
-`SIGTERM`, `SIGKILL` and `SIGSTOP`.
-
-### standard
-
-_Type_: `string`\
-_Enum_: `'ansi'`, `'posix'`, `'bsd'`, `'systemv'`, `'other'`
-
-Which standard defined that signal.
-
-# Support
-
-For any question, _don't hesitate_ to [submit an issue on GitHub](../../issues).
-
-Everyone is welcome regardless of personal background. We enforce a
-[Code of conduct](CODE_OF_CONDUCT.md) in order to promote a positive and
-inclusive environment.
-
-# Contributing
-
-This project was made with ❤️. The simplest way to give back is by starring and
-sharing it online.
-
-If the documentation is unclear or has a typo, please click on the page's `Edit`
-button (pencil icon) and suggest a correction.
-
-If you would like to help us fix a bug or add a new feature, please check our
-[guidelines](CONTRIBUTING.md). Pull requests are welcome!
-
-Thanks go to our wonderful contributors:
-
-
-
-
-
diff --git a/tests/wcag-compliance/node_modules/npm-run-path/index.d.ts b/tests/wcag-compliance/node_modules/npm-run-path/index.d.ts
deleted file mode 100644
index fad851b..0000000
--- a/tests/wcag-compliance/node_modules/npm-run-path/index.d.ts
+++ /dev/null
@@ -1,84 +0,0 @@
-export interface RunPathOptions {
- /**
- Working directory.
-
- @default process.cwd()
- */
- readonly cwd?: string | URL;
-
- /**
- PATH to be appended. Default: [`PATH`](https://github.com/sindresorhus/path-key).
-
- Set it to an empty string to exclude the default PATH.
- */
- readonly path?: string;
-
- /**
- Path to the Node.js executable to use in child processes if that is different from the current one. Its directory is pushed to the front of PATH.
-
- This can be either an absolute path or a path relative to the `cwd` option.
-
- @default process.execPath
- */
- readonly execPath?: string;
-}
-
-export type ProcessEnv = Record;
-
-export interface EnvOptions {
- /**
- The working directory.
-
- @default process.cwd()
- */
- readonly cwd?: string | URL;
-
- /**
- Accepts an object of environment variables, like `process.env`, and modifies the PATH using the correct [PATH key](https://github.com/sindresorhus/path-key). Use this if you're modifying the PATH for use in the `child_process` options.
- */
- readonly env?: ProcessEnv;
-
- /**
- The path to the current Node.js executable. Its directory is pushed to the front of PATH.
-
- This can be either an absolute path or a path relative to the `cwd` option.
-
- @default process.execPath
- */
- readonly execPath?: string;
-}
-
-/**
-Get your [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) prepended with locally installed binaries.
-
-@returns The augmented path string.
-
-@example
-```
-import childProcess from 'node:child_process';
-import {npmRunPath} from 'npm-run-path';
-
-console.log(process.env.PATH);
-//=> '/usr/local/bin'
-
-console.log(npmRunPath());
-//=> '/Users/sindresorhus/dev/foo/node_modules/.bin:/Users/sindresorhus/dev/node_modules/.bin:/Users/sindresorhus/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/usr/local/bin'
-```
-*/
-export function npmRunPath(options?: RunPathOptions): string;
-
-/**
-@returns The augmented [`process.env`](https://nodejs.org/api/process.html#process_process_env) object.
-
-@example
-```
-import childProcess from 'node:child_process';
-import {npmRunPathEnv} from 'npm-run-path';
-
-// `foo` is a locally installed binary
-childProcess.execFileSync('foo', {
- env: npmRunPathEnv()
-});
-```
-*/
-export function npmRunPathEnv(options?: EnvOptions): ProcessEnv;
diff --git a/tests/wcag-compliance/node_modules/npm-run-path/index.js b/tests/wcag-compliance/node_modules/npm-run-path/index.js
deleted file mode 100644
index 77dfae2..0000000
--- a/tests/wcag-compliance/node_modules/npm-run-path/index.js
+++ /dev/null
@@ -1,38 +0,0 @@
-import process from 'node:process';
-import path from 'node:path';
-import url from 'node:url';
-import pathKey from 'path-key';
-
-export function npmRunPath(options = {}) {
- const {
- cwd = process.cwd(),
- path: path_ = process.env[pathKey()],
- execPath = process.execPath,
- } = options;
-
- let previous;
- const cwdString = cwd instanceof URL ? url.fileURLToPath(cwd) : cwd;
- let cwdPath = path.resolve(cwdString);
- const result = [];
-
- while (previous !== cwdPath) {
- result.push(path.join(cwdPath, 'node_modules/.bin'));
- previous = cwdPath;
- cwdPath = path.resolve(cwdPath, '..');
- }
-
- // Ensure the running `node` binary is used.
- result.push(path.resolve(cwdString, execPath, '..'));
-
- return [...result, path_].join(path.delimiter);
-}
-
-export function npmRunPathEnv({env = process.env, ...options} = {}) {
- env = {...env};
-
- const path = pathKey({env});
- options.path = env[path];
- env[path] = npmRunPath(options);
-
- return env;
-}
diff --git a/tests/wcag-compliance/node_modules/npm-run-path/license b/tests/wcag-compliance/node_modules/npm-run-path/license
deleted file mode 100644
index fa7ceba..0000000
--- a/tests/wcag-compliance/node_modules/npm-run-path/license
+++ /dev/null
@@ -1,9 +0,0 @@
-MIT License
-
-Copyright (c) Sindre Sorhus (https://sindresorhus.com)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/index.d.ts b/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/index.d.ts
deleted file mode 100644
index f411d62..0000000
--- a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/index.d.ts
+++ /dev/null
@@ -1,31 +0,0 @@
-export interface Options {
- /**
- Use a custom environment variables object.
-
- Default: [`process.env`](https://nodejs.org/api/process.html#process_process_env).
- */
- readonly env?: Record;
-
- /**
- Get the PATH key for a specific platform.
-
- Default: [`process.platform`](https://nodejs.org/api/process.html#process_process_platform).
- */
- readonly platform?: NodeJS.Platform;
-}
-
-/**
-Get the [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable key cross-platform.
-
-@example
-```
-import pathKey from 'path-key';
-
-const key = pathKey();
-//=> 'PATH'
-
-const PATH = process.env[key];
-//=> '/usr/local/bin:/usr/bin:/bin'
-```
-*/
-export default function pathKey(options?: Options): string;
diff --git a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/index.js b/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/index.js
deleted file mode 100644
index 2c02914..0000000
--- a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/index.js
+++ /dev/null
@@ -1,12 +0,0 @@
-export default function pathKey(options = {}) {
- const {
- env = process.env,
- platform = process.platform
- } = options;
-
- if (platform !== 'win32') {
- return 'PATH';
- }
-
- return Object.keys(env).reverse().find(key => key.toUpperCase() === 'PATH') || 'Path';
-}
diff --git a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/license b/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/license
deleted file mode 100644
index fa7ceba..0000000
--- a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/license
+++ /dev/null
@@ -1,9 +0,0 @@
-MIT License
-
-Copyright (c) Sindre Sorhus (https://sindresorhus.com)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/package.json b/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/package.json
deleted file mode 100644
index 609070d..0000000
--- a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/package.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "name": "path-key",
- "version": "4.0.0",
- "description": "Get the PATH environment variable key cross-platform",
- "license": "MIT",
- "repository": "sindresorhus/path-key",
- "funding": "https://github.com/sponsors/sindresorhus",
- "author": {
- "name": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "https://sindresorhus.com"
- },
- "type": "module",
- "exports": "./index.js",
- "engines": {
- "node": ">=12"
- },
- "scripts": {
- "test": "xo && ava && tsd"
- },
- "files": [
- "index.js",
- "index.d.ts"
- ],
- "keywords": [
- "path",
- "key",
- "environment",
- "env",
- "variable",
- "get",
- "cross-platform",
- "windows"
- ],
- "devDependencies": {
- "@types/node": "^14.14.37",
- "ava": "^3.15.0",
- "tsd": "^0.14.0",
- "xo": "^0.38.2"
- }
-}
diff --git a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/readme.md b/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/readme.md
deleted file mode 100644
index aa22506..0000000
--- a/tests/wcag-compliance/node_modules/npm-run-path/node_modules/path-key/readme.md
+++ /dev/null
@@ -1,57 +0,0 @@
-# path-key
-
-> Get the [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable key cross-platform
-
-It's usually `PATH` but on Windows it can be any casing like `Path`...
-
-## Install
-
-```
-$ npm install path-key
-```
-
-## Usage
-
-```js
-import pathKey from 'path-key';
-
-const key = pathKey();
-//=> 'PATH'
-
-const PATH = process.env[key];
-//=> '/usr/local/bin:/usr/bin:/bin'
-```
-
-## API
-
-### pathKey(options?)
-
-#### options
-
-Type: `object`
-
-##### env
-
-Type: `object`\
-Default: [`process.env`](https://nodejs.org/api/process.html#process_process_env)
-
-Use a custom environment variables object.
-
-#### platform
-
-Type: `string`\
-Default: [`process.platform`](https://nodejs.org/api/process.html#process_process_platform)
-
-Get the PATH key for a specific platform.
-
----
-
-
diff --git a/tests/wcag-compliance/node_modules/onetime/index.d.ts b/tests/wcag-compliance/node_modules/onetime/index.d.ts
deleted file mode 100644
index 3c80803..0000000
--- a/tests/wcag-compliance/node_modules/onetime/index.d.ts
+++ /dev/null
@@ -1,59 +0,0 @@
-export interface Options {
- /**
- Throw an error when called more than once.
-
- @default false
- */
- readonly throw?: boolean;
-}
-
-declare const onetime: {
- /**
- Ensure a function is only called once. When called multiple times it will return the return value from the first call.
-
- @param fn - Function that should only be called once.
- @returns A function that only calls `fn` once.
-
- @example
- ```
- import onetime from 'onetime';
-
- let index = 0;
-
- const foo = onetime(() => ++index);
-
- foo(); //=> 1
- foo(); //=> 1
- foo(); //=> 1
-
- onetime.callCount(foo); //=> 3
- ```
- */
- (
- fn: (...arguments: ArgumentsType) => ReturnType,
- options?: Options
- ): (...arguments: ArgumentsType) => ReturnType;
-
- /**
- Get the number of times `fn` has been called.
-
- @param fn - Function to get call count from.
- @returns A number representing how many times `fn` has been called.
-
- @example
- ```
- import onetime from 'onetime';
-
- const foo = onetime(() => {});
- foo();
- foo();
- foo();
-
- console.log(onetime.callCount(foo));
- //=> 3
- ```
- */
- callCount(fn: (...arguments: any[]) => unknown): number;
-};
-
-export default onetime;
diff --git a/tests/wcag-compliance/node_modules/onetime/index.js b/tests/wcag-compliance/node_modules/onetime/index.js
deleted file mode 100644
index eae4f33..0000000
--- a/tests/wcag-compliance/node_modules/onetime/index.js
+++ /dev/null
@@ -1,41 +0,0 @@
-import mimicFunction from 'mimic-fn';
-
-const calledFunctions = new WeakMap();
-
-const onetime = (function_, options = {}) => {
- if (typeof function_ !== 'function') {
- throw new TypeError('Expected a function');
- }
-
- let returnValue;
- let callCount = 0;
- const functionName = function_.displayName || function_.name || '';
-
- const onetime = function (...arguments_) {
- calledFunctions.set(onetime, ++callCount);
-
- if (callCount === 1) {
- returnValue = function_.apply(this, arguments_);
- function_ = null;
- } else if (options.throw === true) {
- throw new Error(`Function \`${functionName}\` can only be called once`);
- }
-
- return returnValue;
- };
-
- mimicFunction(onetime, function_);
- calledFunctions.set(onetime, callCount);
-
- return onetime;
-};
-
-onetime.callCount = function_ => {
- if (!calledFunctions.has(function_)) {
- throw new Error(`The given function \`${function_.name}\` is not wrapped by the \`onetime\` package`);
- }
-
- return calledFunctions.get(function_);
-};
-
-export default onetime;
diff --git a/tests/wcag-compliance/node_modules/onetime/license b/tests/wcag-compliance/node_modules/onetime/license
deleted file mode 100644
index fa7ceba..0000000
--- a/tests/wcag-compliance/node_modules/onetime/license
+++ /dev/null
@@ -1,9 +0,0 @@
-MIT License
-
-Copyright (c) Sindre Sorhus (https://sindresorhus.com)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/tests/wcag-compliance/node_modules/onetime/package.json b/tests/wcag-compliance/node_modules/onetime/package.json
deleted file mode 100644
index 475a1e3..0000000
--- a/tests/wcag-compliance/node_modules/onetime/package.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "name": "onetime",
- "version": "6.0.0",
- "description": "Ensure a function is only called once",
- "license": "MIT",
- "repository": "sindresorhus/onetime",
- "funding": "https://github.com/sponsors/sindresorhus",
- "author": {
- "name": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "https://sindresorhus.com"
- },
- "type": "module",
- "exports": "./index.js",
- "engines": {
- "node": ">=12"
- },
- "scripts": {
- "test": "xo && ava && tsd"
- },
- "files": [
- "index.js",
- "index.d.ts"
- ],
- "keywords": [
- "once",
- "function",
- "one",
- "onetime",
- "func",
- "fn",
- "single",
- "call",
- "called",
- "prevent"
- ],
- "dependencies": {
- "mimic-fn": "^4.0.0"
- },
- "devDependencies": {
- "ava": "^3.15.0",
- "tsd": "^0.14.0",
- "xo": "^0.38.2"
- }
-}
diff --git a/tests/wcag-compliance/node_modules/onetime/readme.md b/tests/wcag-compliance/node_modules/onetime/readme.md
deleted file mode 100644
index e2b26fb..0000000
--- a/tests/wcag-compliance/node_modules/onetime/readme.md
+++ /dev/null
@@ -1,94 +0,0 @@
-# onetime
-
-> Ensure a function is only called once
-
-When called multiple times it will return the return value from the first call.
-
-*Unlike the module [once](https://github.com/isaacs/once), this one isn't naughty and extending `Function.prototype`.*
-
-## Install
-
-```
-$ npm install onetime
-```
-
-## Usage
-
-```js
-import onetime from 'onetime';
-
-let index = 0;
-
-const foo = onetime(() => ++index);
-
-foo(); //=> 1
-foo(); //=> 1
-foo(); //=> 1
-
-onetime.callCount(foo); //=> 3
-```
-
-```js
-import onetime from 'onetime';
-
-const foo = onetime(() => {}, {throw: true});
-
-foo();
-
-foo();
-//=> Error: Function `foo` can only be called once
-```
-
-## API
-
-### onetime(fn, options?)
-
-Returns a function that only calls `fn` once.
-
-#### fn
-
-Type: `Function`
-
-Function that should only be called once.
-
-#### options
-
-Type: `object`
-
-##### throw
-
-Type: `boolean`\
-Default: `false`
-
-Throw an error when called more than once.
-
-### onetime.callCount(fn)
-
-Returns a number representing how many times `fn` has been called.
-
-Note: It throws an error if you pass in a function that is not wrapped by `onetime`.
-
-```js
-import onetime from 'onetime';
-
-const foo = onetime(() => {});
-
-foo();
-foo();
-foo();
-
-console.log(onetime.callCount(foo));
-//=> 3
-```
-
-#### fn
-
-Type: `Function`
-
-Function to get call count from.
-
-## onetime for enterprise
-
-Available as part of the Tidelift Subscription.
-
-The maintainers of onetime 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-onetime?utm_source=npm-onetime&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
diff --git a/tests/wcag-compliance/node_modules/path-key/index.d.ts b/tests/wcag-compliance/node_modules/path-key/index.d.ts
deleted file mode 100644
index 7c575d1..0000000
--- a/tests/wcag-compliance/node_modules/path-key/index.d.ts
+++ /dev/null
@@ -1,40 +0,0 @@
-///
-
-declare namespace pathKey {
- interface Options {
- /**
- Use a custom environment variables object. Default: [`process.env`](https://nodejs.org/api/process.html#process_process_env).
- */
- readonly env?: {[key: string]: string | undefined};
-
- /**
- Get the PATH key for a specific platform. Default: [`process.platform`](https://nodejs.org/api/process.html#process_process_platform).
- */
- readonly platform?: NodeJS.Platform;
- }
-}
-
-declare const pathKey: {
- /**
- Get the [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable key cross-platform.
-
- @example
- ```
- import pathKey = require('path-key');
-
- const key = pathKey();
- //=> 'PATH'
-
- const PATH = process.env[key];
- //=> '/usr/local/bin:/usr/bin:/bin'
- ```
- */
- (options?: pathKey.Options): string;
-
- // TODO: Remove this for the next major release, refactor the whole definition to:
- // declare function pathKey(options?: pathKey.Options): string;
- // export = pathKey;
- default: typeof pathKey;
-};
-
-export = pathKey;
diff --git a/tests/wcag-compliance/node_modules/path-key/index.js b/tests/wcag-compliance/node_modules/path-key/index.js
deleted file mode 100644
index 0cf6415..0000000
--- a/tests/wcag-compliance/node_modules/path-key/index.js
+++ /dev/null
@@ -1,16 +0,0 @@
-'use strict';
-
-const pathKey = (options = {}) => {
- const environment = options.env || process.env;
- const platform = options.platform || process.platform;
-
- if (platform !== 'win32') {
- return 'PATH';
- }
-
- return Object.keys(environment).reverse().find(key => key.toUpperCase() === 'PATH') || 'Path';
-};
-
-module.exports = pathKey;
-// TODO: Remove this for the next major release
-module.exports.default = pathKey;
diff --git a/tests/wcag-compliance/node_modules/path-key/license b/tests/wcag-compliance/node_modules/path-key/license
deleted file mode 100644
index e7af2f7..0000000
--- a/tests/wcag-compliance/node_modules/path-key/license
+++ /dev/null
@@ -1,9 +0,0 @@
-MIT License
-
-Copyright (c) Sindre Sorhus (sindresorhus.com)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/tests/wcag-compliance/node_modules/path-key/package.json b/tests/wcag-compliance/node_modules/path-key/package.json
deleted file mode 100644
index c8cbd38..0000000
--- a/tests/wcag-compliance/node_modules/path-key/package.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "name": "path-key",
- "version": "3.1.1",
- "description": "Get the PATH environment variable key cross-platform",
- "license": "MIT",
- "repository": "sindresorhus/path-key",
- "author": {
- "name": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "sindresorhus.com"
- },
- "engines": {
- "node": ">=8"
- },
- "scripts": {
- "test": "xo && ava && tsd"
- },
- "files": [
- "index.js",
- "index.d.ts"
- ],
- "keywords": [
- "path",
- "key",
- "environment",
- "env",
- "variable",
- "var",
- "get",
- "cross-platform",
- "windows"
- ],
- "devDependencies": {
- "@types/node": "^11.13.0",
- "ava": "^1.4.1",
- "tsd": "^0.7.2",
- "xo": "^0.24.0"
- }
-}
diff --git a/tests/wcag-compliance/node_modules/path-key/readme.md b/tests/wcag-compliance/node_modules/path-key/readme.md
deleted file mode 100644
index a9052d7..0000000
--- a/tests/wcag-compliance/node_modules/path-key/readme.md
+++ /dev/null
@@ -1,61 +0,0 @@
-# path-key [![Build Status](https://travis-ci.org/sindresorhus/path-key.svg?branch=master)](https://travis-ci.org/sindresorhus/path-key)
-
-> Get the [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable key cross-platform
-
-It's usually `PATH`, but on Windows it can be any casing like `Path`...
-
-
-## Install
-
-```
-$ npm install path-key
-```
-
-
-## Usage
-
-```js
-const pathKey = require('path-key');
-
-const key = pathKey();
-//=> 'PATH'
-
-const PATH = process.env[key];
-//=> '/usr/local/bin:/usr/bin:/bin'
-```
-
-
-## API
-
-### pathKey(options?)
-
-#### options
-
-Type: `object`
-
-##### env
-
-Type: `object`
-Default: [`process.env`](https://nodejs.org/api/process.html#process_process_env)
-
-Use a custom environment variables object.
-
-#### platform
-
-Type: `string`
-Default: [`process.platform`](https://nodejs.org/api/process.html#process_process_platform)
-
-Get the PATH key for a specific platform.
-
-
----
-
-