VK All in One Expansion Unit - Version 9.71.0.25

Version Description

Download this release

Release Info

Developer kurudrive
Plugin Icon 128x128 VK All in One Expansion Unit
Version 9.71.0.25
Comparing to
See all releases

Code changes from version 9.71.0.0 to 9.71.0.25

Files changed (45) hide show
  1. bin/deploy.sh +0 -23
  2. bin/dist +0 -22
  3. bin/install-wp-tests.sh +0 -155
  4. composer.json +0 -20
  5. composer.lock +0 -2448
  6. inc/term-color/readme.md +0 -20
  7. package-lock.json +10 -11976
  8. readme.txt +3 -0
  9. tests/bootstrap.php +0 -83
  10. tests/test-child-page-index.php +0 -95
  11. tests/test-css-customize.php +0 -110
  12. tests/test-cta-default-display.php +0 -54
  13. tests/test-cta.php +0 -90
  14. tests/test-head-title.php +0 -148
  15. tests/test-insert-item-meta-box-display.php +0 -110
  16. tests/test-isert-ads.php +0 -73
  17. tests/test-meta-keywords.php +0 -88
  18. tests/test-package_manager.php +0 -147
  19. tests/test-page-list-ancestor.php +0 -110
  20. tests/test-parent-meta-box-display.php +0 -106
  21. tests/test-sample.php +0 -20
  22. tests/test-sns-btn-style.php +0 -116
  23. tests/test-sns-btns.php +0 -72
  24. tests/test-sns-title.php +0 -1298
  25. tests/test-template-tags.php +0 -61
  26. tests/test-widget-btn.php +0 -56
  27. tests/test-widget-new-post.php +0 -70
  28. tests/test-widget-page.php +0 -164
  29. tests/test-widget-profile.php +0 -179
  30. tests/test-widget-title.php +0 -51
  31. vendor/autoload.php +1 -1
  32. vendor/composer/ClassLoader.php +1 -1
  33. vendor/composer/autoload_classmap.php +2 -625
  34. vendor/composer/autoload_files.php +0 -14
  35. vendor/composer/autoload_psr4.php +0 -9
  36. vendor/composer/autoload_real.php +4 -22
  37. vendor/composer/autoload_static.php +6 -699
  38. vendor/composer/installed.json +2 -2510
  39. vendor/composer/installed.php +7 -361
  40. vendor/vektor-inc/vk-breadcrumb/.gitignore +0 -2
  41. vendor/vektor-inc/vk-breadcrumb/composer.json +0 -19
  42. vendor/vektor-inc/vk-breadcrumb/composer.lock +0 -56
  43. vendor/vektor-inc/vk-helpers/.gitignore +0 -1
  44. vendor/vektor-inc/vk-helpers/composer.json +0 -17
  45. vkExUnit.php +1 -1
bin/deploy.sh DELETED
@@ -1,23 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- # if [[ "false" != "$TRAVIS_PULL_REQUEST" ]]; then
4
- # echo "Not deploying pull requests."
5
- # exit
6
- # fi
7
- if [[ "master" != "$TRAVIS_BRANCH" ]]; then
8
- echo "Not on the 'master' branch. abort."
9
- exit 0
10
- fi
11
-
12
- set -ex
13
-
14
- ## -b オプションはチェックアウト
15
- git clone -b dist --quiet "https://github.com/${TRAVIS_REPO_SLUG}.git" dist
16
- npm run dist
17
- cd dist
18
- ## すべての変更を含むワークツリーの内容をインデックスに追加.
19
- git add -A
20
- git commit -m "Update from travis $TRAVIS_COMMIT"
21
- git push --quiet "https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git" dist 2> /dev/null
22
-
23
- exit 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bin/dist DELETED
@@ -1,22 +0,0 @@
1
- #!/bin/bash
2
-
3
- set -ex
4
-
5
- PLUGIN_NAME='vk-all-in-one-expansion-unit'
6
- PLUGIN_DIR=$(cd $(dirname $(dirname $0)); pwd)
7
- CURRENT_VERSION=$(cat "${PLUGIN_DIR}/vkExUnit.php"|grep -i 'version *:'|head -n 1|sed -E 's/^[ *]*Version: *([^ ]*) *$/\1/i')
8
-
9
- dist_dir="${PLUGIN_DIR}/dist"
10
- src_dir="${dist_dir}/${PLUGIN_NAME}"
11
- ZIPBALL="${dist_dir}/${PLUGIN_NAME}_v${CURRENT_VERSION}.zip"
12
-
13
- [[ -e "${dist_dir}" ]] || mkdir "${dist_dir}"
14
- [[ -e "${ZIPBALL}" ]] && rm -r "${ZIPBALL}"
15
-
16
- rsync -av "${PLUGIN_DIR}/" "${src_dir}/" --exclude="dist/" --exclude-from='.svnignore'
17
-
18
- cd "${dist_dir}"
19
-
20
- zip -r "${ZIPBALL}" "${PLUGIN_NAME}/"
21
-
22
- exit 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bin/install-wp-tests.sh DELETED
@@ -1,155 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- if [ $# -lt 3 ]; then
4
- echo "usage: $0 <db-name> <db-user> <db-pass> [db-host] [wp-version] [skip-database-creation]"
5
- exit 1
6
- fi
7
-
8
- DB_NAME=$1
9
- DB_USER=$2
10
- DB_PASS=$3
11
- DB_HOST=${4-localhost}
12
- WP_VERSION=${5-latest}
13
- SKIP_DB_CREATE=${6-false}
14
-
15
- TMPDIR=${TMPDIR-/tmp}
16
- TMPDIR=$(echo $TMPDIR | sed -e "s/\/$//")
17
- WP_TESTS_DIR=${WP_TESTS_DIR-$TMPDIR/wordpress-tests-lib}
18
- WP_CORE_DIR=${WP_CORE_DIR-$TMPDIR/wordpress/}
19
-
20
- download() {
21
- if [ `which curl` ]; then
22
- curl -s "$1" > "$2";
23
- elif [ `which wget` ]; then
24
- wget -nv -O "$2" "$1"
25
- fi
26
- }
27
-
28
- if [[ $WP_VERSION =~ ^[0-9]+\.[0-9]+\-(beta|RC)[0-9]+$ ]]; then
29
- WP_BRANCH=${WP_VERSION%\-*}
30
- WP_TESTS_TAG="branches/$WP_BRANCH"
31
-
32
- elif [[ $WP_VERSION =~ ^[0-9]+\.[0-9]+$ ]]; then
33
- WP_TESTS_TAG="branches/$WP_VERSION"
34
- elif [[ $WP_VERSION =~ [0-9]+\.[0-9]+\.[0-9]+ ]]; then
35
- if [[ $WP_VERSION =~ [0-9]+\.[0-9]+\.[0] ]]; then
36
- # version x.x.0 means the first release of the major version, so strip off the .0 and download version x.x
37
- WP_TESTS_TAG="tags/${WP_VERSION%??}"
38
- else
39
- WP_TESTS_TAG="tags/$WP_VERSION"
40
- fi
41
- elif [[ $WP_VERSION == 'nightly' || $WP_VERSION == 'trunk' ]]; then
42
- WP_TESTS_TAG="trunk"
43
- else
44
- # http serves a single offer, whereas https serves multiple. we only want one
45
- download http://api.wordpress.org/core/version-check/1.7/ /tmp/wp-latest.json
46
- grep '[0-9]+\.[0-9]+(\.[0-9]+)?' /tmp/wp-latest.json
47
- LATEST_VERSION=$(grep -o '"version":"[^"]*' /tmp/wp-latest.json | sed 's/"version":"//')
48
- if [[ -z "$LATEST_VERSION" ]]; then
49
- echo "Latest WordPress version could not be found"
50
- exit 1
51
- fi
52
- WP_TESTS_TAG="tags/$LATEST_VERSION"
53
- fi
54
- set -ex
55
-
56
- install_wp() {
57
-
58
- if [ -d $WP_CORE_DIR ]; then
59
- return;
60
- fi
61
-
62
- mkdir -p $WP_CORE_DIR
63
-
64
- if [[ $WP_VERSION == 'nightly' || $WP_VERSION == 'trunk' ]]; then
65
- mkdir -p $TMPDIR/wordpress-nightly
66
- download https://wordpress.org/nightly-builds/wordpress-latest.zip $TMPDIR/wordpress-nightly/wordpress-nightly.zip
67
- unzip -q $TMPDIR/wordpress-nightly/wordpress-nightly.zip -d $TMPDIR/wordpress-nightly/
68
- mv $TMPDIR/wordpress-nightly/wordpress/* $WP_CORE_DIR
69
- else
70
- if [ $WP_VERSION == 'latest' ]; then
71
- local ARCHIVE_NAME='latest'
72
- elif [[ $WP_VERSION =~ [0-9]+\.[0-9]+ ]]; then
73
- # https serves multiple offers, whereas http serves single.
74
- download https://api.wordpress.org/core/version-check/1.7/ $TMPDIR/wp-latest.json
75
- if [[ $WP_VERSION =~ [0-9]+\.[0-9]+\.[0] ]]; then
76
- # version x.x.0 means the first release of the major version, so strip off the .0 and download version x.x
77
- LATEST_VERSION=${WP_VERSION%??}
78
- else
79
- # otherwise, scan the releases and get the most up to date minor version of the major release
80
- local VERSION_ESCAPED=`echo $WP_VERSION | sed 's/\./\\\\./g'`
81
- LATEST_VERSION=$(grep -o '"version":"'$VERSION_ESCAPED'[^"]*' $TMPDIR/wp-latest.json | sed 's/"version":"//' | head -1)
82
- fi
83
- if [[ -z "$LATEST_VERSION" ]]; then
84
- local ARCHIVE_NAME="wordpress-$WP_VERSION"
85
- else
86
- local ARCHIVE_NAME="wordpress-$LATEST_VERSION"
87
- fi
88
- else
89
- local ARCHIVE_NAME="wordpress-$WP_VERSION"
90
- fi
91
- download https://wordpress.org/${ARCHIVE_NAME}.tar.gz $TMPDIR/wordpress.tar.gz
92
- tar --strip-components=1 -zxmf $TMPDIR/wordpress.tar.gz -C $WP_CORE_DIR
93
- fi
94
-
95
- download https://raw.github.com/markoheijnen/wp-mysqli/master/db.php $WP_CORE_DIR/wp-content/db.php
96
- }
97
-
98
- install_test_suite() {
99
- # portable in-place argument for both GNU sed and Mac OSX sed
100
- if [[ $(uname -s) == 'Darwin' ]]; then
101
- local ioption='-i.bak'
102
- else
103
- local ioption='-i'
104
- fi
105
-
106
- # set up testing suite if it doesn't yet exist
107
- if [ ! -d $WP_TESTS_DIR ]; then
108
- # set up testing suite
109
- mkdir -p $WP_TESTS_DIR
110
- svn co --quiet https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/includes/ $WP_TESTS_DIR/includes
111
- svn co --quiet https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/data/ $WP_TESTS_DIR/data
112
- fi
113
-
114
- if [ ! -f wp-tests-config.php ]; then
115
- download https://develop.svn.wordpress.org/${WP_TESTS_TAG}/wp-tests-config-sample.php "$WP_TESTS_DIR"/wp-tests-config.php
116
- # remove all forward slashes in the end
117
- WP_CORE_DIR=$(echo $WP_CORE_DIR | sed "s:/\+$::")
118
- sed $ioption "s:dirname( __FILE__ ) . '/src/':'$WP_CORE_DIR/':" "$WP_TESTS_DIR"/wp-tests-config.php
119
- sed $ioption "s/youremptytestdbnamehere/$DB_NAME/" "$WP_TESTS_DIR"/wp-tests-config.php
120
- sed $ioption "s/yourusernamehere/$DB_USER/" "$WP_TESTS_DIR"/wp-tests-config.php
121
- sed $ioption "s/yourpasswordhere/$DB_PASS/" "$WP_TESTS_DIR"/wp-tests-config.php
122
- sed $ioption "s|localhost|${DB_HOST}|" "$WP_TESTS_DIR"/wp-tests-config.php
123
- fi
124
-
125
- }
126
-
127
- install_db() {
128
-
129
- if [ ${SKIP_DB_CREATE} = "true" ]; then
130
- return 0
131
- fi
132
-
133
- # parse DB_HOST for port or socket references
134
- local PARTS=(${DB_HOST//\:/ })
135
- local DB_HOSTNAME=${PARTS[0]};
136
- local DB_SOCK_OR_PORT=${PARTS[1]};
137
- local EXTRA=""
138
-
139
- if ! [ -z $DB_HOSTNAME ] ; then
140
- if [ $(echo $DB_SOCK_OR_PORT | grep -e '^[0-9]\{1,\}$') ]; then
141
- EXTRA=" --host=$DB_HOSTNAME --port=$DB_SOCK_OR_PORT --protocol=tcp"
142
- elif ! [ -z $DB_SOCK_OR_PORT ] ; then
143
- EXTRA=" --socket=$DB_SOCK_OR_PORT"
144
- elif ! [ -z $DB_HOSTNAME ] ; then
145
- EXTRA=" --host=$DB_HOSTNAME --protocol=tcp"
146
- fi
147
- fi
148
-
149
- # create database
150
- mysqladmin create $DB_NAME --user="$DB_USER" --password="$DB_PASS"$EXTRA
151
- }
152
-
153
- install_wp
154
- install_test_suite
155
- install_db
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
composer.json DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "name": "vektor-inc/vk-all-in-one-expansion-unit",
3
- "type": "project",
4
- "authors": [
5
- {
6
- "name": "Vektor-inc",
7
- "email": "info@vektor-inc.co.jp"
8
- }
9
- ],
10
- "require-dev": {
11
- "vektor-inc/vk-wp-unit-test-tools": "^0.10.0",
12
- "sirbrillig/phpcs-variable-analysis": "^2.8",
13
- "wp-phpunit/wp-phpunit": "^5.4",
14
- "yoast/phpunit-polyfills": "^1.0"
15
- },
16
- "require": {
17
- "vektor-inc/vk-helpers": "^0.0.2",
18
- "vektor-inc/vk-breadcrumb": "^0.0.4"
19
- }
20
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
composer.lock DELETED
@@ -1,2448 +0,0 @@
1
- {
2
- "_readme": [
3
- "This file locks the dependencies of your project to a known state",
4
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
- "This file is @generated automatically"
6
- ],
7
- "content-hash": "c4e700a27f8a1d4d60a3bc97ef69a02b",
8
- "packages": [
9
- {
10
- "name": "vektor-inc/vk-breadcrumb",
11
- "version": "0.0.4",
12
- "source": {
13
- "type": "git",
14
- "url": "https://github.com/vektor-inc/vk-breadcrumb.git",
15
- "reference": "d323e0597729824532d21795f1a986dbde89ab4e"
16
- },
17
- "dist": {
18
- "type": "zip",
19
- "url": "https://api.github.com/repos/vektor-inc/vk-breadcrumb/zipball/d323e0597729824532d21795f1a986dbde89ab4e",
20
- "reference": "d323e0597729824532d21795f1a986dbde89ab4e",
21
- "shasum": ""
22
- },
23
- "require": {
24
- "vektor-inc/vk-helpers": "^0.0.2"
25
- },
26
- "type": "library",
27
- "autoload": {
28
- "psr-4": {
29
- "VektorInc\\VK_Breadcrumb\\": "src/"
30
- }
31
- },
32
- "notification-url": "https://packagist.org/downloads/",
33
- "license": [
34
- "GPL-2.0+"
35
- ],
36
- "authors": [
37
- {
38
- "name": "Vektor,Inc.",
39
- "email": "kurudrive@gmail.com"
40
- }
41
- ],
42
- "description": "WordPress Bread Crumb Class",
43
- "support": {
44
- "issues": "https://github.com/vektor-inc/vk-breadcrumb/issues",
45
- "source": "https://github.com/vektor-inc/vk-breadcrumb/tree/0.0.4"
46
- },
47
- "time": "2022-02-09T05:38:27+00:00"
48
- },
49
- {
50
- "name": "vektor-inc/vk-helpers",
51
- "version": "0.0.2",
52
- "source": {
53
- "type": "git",
54
- "url": "https://github.com/vektor-inc/vk-helpers.git",
55
- "reference": "320155b9df7f9f57a889e144dd8b379184ac15ec"
56
- },
57
- "dist": {
58
- "type": "zip",
59
- "url": "https://api.github.com/repos/vektor-inc/vk-helpers/zipball/320155b9df7f9f57a889e144dd8b379184ac15ec",
60
- "reference": "320155b9df7f9f57a889e144dd8b379184ac15ec",
61
- "shasum": ""
62
- },
63
- "type": "library",
64
- "autoload": {
65
- "psr-4": {
66
- "VektorInc\\VK_Helpers\\": "src/"
67
- }
68
- },
69
- "notification-url": "https://packagist.org/downloads/",
70
- "license": [
71
- "GPL-2.0+"
72
- ],
73
- "authors": [
74
- {
75
- "name": "Vektor,Inc.",
76
- "email": "kurudrive@gmail.com"
77
- }
78
- ],
79
- "description": "WordPress Helpers Class",
80
- "support": {
81
- "issues": "https://github.com/vektor-inc/vk-helpers/issues",
82
- "source": "https://github.com/vektor-inc/vk-helpers/tree/0.0.2"
83
- },
84
- "time": "2022-02-08T18:38:08+00:00"
85
- }
86
- ],
87
- "packages-dev": [
88
- {
89
- "name": "doctrine/instantiator",
90
- "version": "1.4.0",
91
- "source": {
92
- "type": "git",
93
- "url": "https://github.com/doctrine/instantiator.git",
94
- "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
95
- },
96
- "dist": {
97
- "type": "zip",
98
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
99
- "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
100
- "shasum": ""
101
- },
102
- "require": {
103
- "php": "^7.1 || ^8.0"
104
- },
105
- "require-dev": {
106
- "doctrine/coding-standard": "^8.0",
107
- "ext-pdo": "*",
108
- "ext-phar": "*",
109
- "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
110
- "phpstan/phpstan": "^0.12",
111
- "phpstan/phpstan-phpunit": "^0.12",
112
- "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
113
- },
114
- "type": "library",
115
- "autoload": {
116
- "psr-4": {
117
- "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
118
- }
119
- },
120
- "notification-url": "https://packagist.org/downloads/",
121
- "license": [
122
- "MIT"
123
- ],
124
- "authors": [
125
- {
126
- "name": "Marco Pivetta",
127
- "email": "ocramius@gmail.com",
128
- "homepage": "https://ocramius.github.io/"
129
- }
130
- ],
131
- "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
132
- "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
133
- "keywords": [
134
- "constructor",
135
- "instantiate"
136
- ],
137
- "support": {
138
- "issues": "https://github.com/doctrine/instantiator/issues",
139
- "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
140
- },
141
- "funding": [
142
- {
143
- "url": "https://www.doctrine-project.org/sponsorship.html",
144
- "type": "custom"
145
- },
146
- {
147
- "url": "https://www.patreon.com/phpdoctrine",
148
- "type": "patreon"
149
- },
150
- {
151
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
152
- "type": "tidelift"
153
- }
154
- ],
155
- "time": "2020-11-10T18:47:58+00:00"
156
- },
157
- {
158
- "name": "myclabs/deep-copy",
159
- "version": "1.10.2",
160
- "source": {
161
- "type": "git",
162
- "url": "https://github.com/myclabs/DeepCopy.git",
163
- "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
164
- },
165
- "dist": {
166
- "type": "zip",
167
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
168
- "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
169
- "shasum": ""
170
- },
171
- "require": {
172
- "php": "^7.1 || ^8.0"
173
- },
174
- "replace": {
175
- "myclabs/deep-copy": "self.version"
176
- },
177
- "require-dev": {
178
- "doctrine/collections": "^1.0",
179
- "doctrine/common": "^2.6",
180
- "phpunit/phpunit": "^7.1"
181
- },
182
- "type": "library",
183
- "autoload": {
184
- "files": [
185
- "src/DeepCopy/deep_copy.php"
186
- ],
187
- "psr-4": {
188
- "DeepCopy\\": "src/DeepCopy/"
189
- }
190
- },
191
- "notification-url": "https://packagist.org/downloads/",
192
- "license": [
193
- "MIT"
194
- ],
195
- "description": "Create deep copies (clones) of your objects",
196
- "keywords": [
197
- "clone",
198
- "copy",
199
- "duplicate",
200
- "object",
201
- "object graph"
202
- ],
203
- "support": {
204
- "issues": "https://github.com/myclabs/DeepCopy/issues",
205
- "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
206
- },
207
- "funding": [
208
- {
209
- "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
210
- "type": "tidelift"
211
- }
212
- ],
213
- "time": "2020-11-13T09:40:50+00:00"
214
- },
215
- {
216
- "name": "nikic/php-parser",
217
- "version": "v4.13.2",
218
- "source": {
219
- "type": "git",
220
- "url": "https://github.com/nikic/PHP-Parser.git",
221
- "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
222
- },
223
- "dist": {
224
- "type": "zip",
225
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
226
- "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
227
- "shasum": ""
228
- },
229
- "require": {
230
- "ext-tokenizer": "*",
231
- "php": ">=7.0"
232
- },
233
- "require-dev": {
234
- "ircmaxell/php-yacc": "^0.0.7",
235
- "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
236
- },
237
- "bin": [
238
- "bin/php-parse"
239
- ],
240
- "type": "library",
241
- "extra": {
242
- "branch-alias": {
243
- "dev-master": "4.9-dev"
244
- }
245
- },
246
- "autoload": {
247
- "psr-4": {
248
- "PhpParser\\": "lib/PhpParser"
249
- }
250
- },
251
- "notification-url": "https://packagist.org/downloads/",
252
- "license": [
253
- "BSD-3-Clause"
254
- ],
255
- "authors": [
256
- {
257
- "name": "Nikita Popov"
258
- }
259
- ],
260
- "description": "A PHP parser written in PHP",
261
- "keywords": [
262
- "parser",
263
- "php"
264
- ],
265
- "support": {
266
- "issues": "https://github.com/nikic/PHP-Parser/issues",
267
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
268
- },
269
- "time": "2021-11-30T19:35:32+00:00"
270
- },
271
- {
272
- "name": "phar-io/manifest",
273
- "version": "2.0.3",
274
- "source": {
275
- "type": "git",
276
- "url": "https://github.com/phar-io/manifest.git",
277
- "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
278
- },
279
- "dist": {
280
- "type": "zip",
281
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
282
- "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
283
- "shasum": ""
284
- },
285
- "require": {
286
- "ext-dom": "*",
287
- "ext-phar": "*",
288
- "ext-xmlwriter": "*",
289
- "phar-io/version": "^3.0.1",
290
- "php": "^7.2 || ^8.0"
291
- },
292
- "type": "library",
293
- "extra": {
294
- "branch-alias": {
295
- "dev-master": "2.0.x-dev"
296
- }
297
- },
298
- "autoload": {
299
- "classmap": [
300
- "src/"
301
- ]
302
- },
303
- "notification-url": "https://packagist.org/downloads/",
304
- "license": [
305
- "BSD-3-Clause"
306
- ],
307
- "authors": [
308
- {
309
- "name": "Arne Blankerts",
310
- "email": "arne@blankerts.de",
311
- "role": "Developer"
312
- },
313
- {
314
- "name": "Sebastian Heuer",
315
- "email": "sebastian@phpeople.de",
316
- "role": "Developer"
317
- },
318
- {
319
- "name": "Sebastian Bergmann",
320
- "email": "sebastian@phpunit.de",
321
- "role": "Developer"
322
- }
323
- ],
324
- "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
325
- "support": {
326
- "issues": "https://github.com/phar-io/manifest/issues",
327
- "source": "https://github.com/phar-io/manifest/tree/2.0.3"
328
- },
329
- "time": "2021-07-20T11:28:43+00:00"
330
- },
331
- {
332
- "name": "phar-io/version",
333
- "version": "3.1.1",
334
- "source": {
335
- "type": "git",
336
- "url": "https://github.com/phar-io/version.git",
337
- "reference": "15a90844ad40f127afd244c0cad228de2a80052a"
338
- },
339
- "dist": {
340
- "type": "zip",
341
- "url": "https://api.github.com/repos/phar-io/version/zipball/15a90844ad40f127afd244c0cad228de2a80052a",
342
- "reference": "15a90844ad40f127afd244c0cad228de2a80052a",
343
- "shasum": ""
344
- },
345
- "require": {
346
- "php": "^7.2 || ^8.0"
347
- },
348
- "type": "library",
349
- "autoload": {
350
- "classmap": [
351
- "src/"
352
- ]
353
- },
354
- "notification-url": "https://packagist.org/downloads/",
355
- "license": [
356
- "BSD-3-Clause"
357
- ],
358
- "authors": [
359
- {
360
- "name": "Arne Blankerts",
361
- "email": "arne@blankerts.de",
362
- "role": "Developer"
363
- },
364
- {
365
- "name": "Sebastian Heuer",
366
- "email": "sebastian@phpeople.de",
367
- "role": "Developer"
368
- },
369
- {
370
- "name": "Sebastian Bergmann",
371
- "email": "sebastian@phpunit.de",
372
- "role": "Developer"
373
- }
374
- ],
375
- "description": "Library for handling version information and constraints",
376
- "support": {
377
- "issues": "https://github.com/phar-io/version/issues",
378
- "source": "https://github.com/phar-io/version/tree/3.1.1"
379
- },
380
- "time": "2022-02-07T21:56:48+00:00"
381
- },
382
- {
383
- "name": "phpdocumentor/reflection-common",
384
- "version": "2.2.0",
385
- "source": {
386
- "type": "git",
387
- "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
388
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
389
- },
390
- "dist": {
391
- "type": "zip",
392
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
393
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
394
- "shasum": ""
395
- },
396
- "require": {
397
- "php": "^7.2 || ^8.0"
398
- },
399
- "type": "library",
400
- "extra": {
401
- "branch-alias": {
402
- "dev-2.x": "2.x-dev"
403
- }
404
- },
405
- "autoload": {
406
- "psr-4": {
407
- "phpDocumentor\\Reflection\\": "src/"
408
- }
409
- },
410
- "notification-url": "https://packagist.org/downloads/",
411
- "license": [
412
- "MIT"
413
- ],
414
- "authors": [
415
- {
416
- "name": "Jaap van Otterdijk",
417
- "email": "opensource@ijaap.nl"
418
- }
419
- ],
420
- "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
421
- "homepage": "http://www.phpdoc.org",
422
- "keywords": [
423
- "FQSEN",
424
- "phpDocumentor",
425
- "phpdoc",
426
- "reflection",
427
- "static analysis"
428
- ],
429
- "support": {
430
- "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
431
- "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
432
- },
433
- "time": "2020-06-27T09:03:43+00:00"
434
- },
435
- {
436
- "name": "phpdocumentor/reflection-docblock",
437
- "version": "5.3.0",
438
- "source": {
439
- "type": "git",
440
- "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
441
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
442
- },
443
- "dist": {
444
- "type": "zip",
445
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
446
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
447
- "shasum": ""
448
- },
449
- "require": {
450
- "ext-filter": "*",
451
- "php": "^7.2 || ^8.0",
452
- "phpdocumentor/reflection-common": "^2.2",
453
- "phpdocumentor/type-resolver": "^1.3",
454
- "webmozart/assert": "^1.9.1"
455
- },
456
- "require-dev": {
457
- "mockery/mockery": "~1.3.2",
458
- "psalm/phar": "^4.8"
459
- },
460
- "type": "library",
461
- "extra": {
462
- "branch-alias": {
463
- "dev-master": "5.x-dev"
464
- }
465
- },
466
- "autoload": {
467
- "psr-4": {
468
- "phpDocumentor\\Reflection\\": "src"
469
- }
470
- },
471
- "notification-url": "https://packagist.org/downloads/",
472
- "license": [
473
- "MIT"
474
- ],
475
- "authors": [
476
- {
477
- "name": "Mike van Riel",
478
- "email": "me@mikevanriel.com"
479
- },
480
- {
481
- "name": "Jaap van Otterdijk",
482
- "email": "account@ijaap.nl"
483
- }
484
- ],
485
- "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
486
- "support": {
487
- "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
488
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
489
- },
490
- "time": "2021-10-19T17:43:47+00:00"
491
- },
492
- {
493
- "name": "phpdocumentor/type-resolver",
494
- "version": "1.6.0",
495
- "source": {
496
- "type": "git",
497
- "url": "https://github.com/phpDocumentor/TypeResolver.git",
498
- "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
499
- },
500
- "dist": {
501
- "type": "zip",
502
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
503
- "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
504
- "shasum": ""
505
- },
506
- "require": {
507
- "php": "^7.2 || ^8.0",
508
- "phpdocumentor/reflection-common": "^2.0"
509
- },
510
- "require-dev": {
511
- "ext-tokenizer": "*",
512
- "psalm/phar": "^4.8"
513
- },
514
- "type": "library",
515
- "extra": {
516
- "branch-alias": {
517
- "dev-1.x": "1.x-dev"
518
- }
519
- },
520
- "autoload": {
521
- "psr-4": {
522
- "phpDocumentor\\Reflection\\": "src"
523
- }
524
- },
525
- "notification-url": "https://packagist.org/downloads/",
526
- "license": [
527
- "MIT"
528
- ],
529
- "authors": [
530
- {
531
- "name": "Mike van Riel",
532
- "email": "me@mikevanriel.com"
533
- }
534
- ],
535
- "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
536
- "support": {
537
- "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
538
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
539
- },
540
- "time": "2022-01-04T19:58:01+00:00"
541
- },
542
- {
543
- "name": "phpspec/prophecy",
544
- "version": "v1.15.0",
545
- "source": {
546
- "type": "git",
547
- "url": "https://github.com/phpspec/prophecy.git",
548
- "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
549
- },
550
- "dist": {
551
- "type": "zip",
552
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
553
- "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
554
- "shasum": ""
555
- },
556
- "require": {
557
- "doctrine/instantiator": "^1.2",
558
- "php": "^7.2 || ~8.0, <8.2",
559
- "phpdocumentor/reflection-docblock": "^5.2",
560
- "sebastian/comparator": "^3.0 || ^4.0",
561
- "sebastian/recursion-context": "^3.0 || ^4.0"
562
- },
563
- "require-dev": {
564
- "phpspec/phpspec": "^6.0 || ^7.0",
565
- "phpunit/phpunit": "^8.0 || ^9.0"
566
- },
567
- "type": "library",
568
- "extra": {
569
- "branch-alias": {
570
- "dev-master": "1.x-dev"
571
- }
572
- },
573
- "autoload": {
574
- "psr-4": {
575
- "Prophecy\\": "src/Prophecy"
576
- }
577
- },
578
- "notification-url": "https://packagist.org/downloads/",
579
- "license": [
580
- "MIT"
581
- ],
582
- "authors": [
583
- {
584
- "name": "Konstantin Kudryashov",
585
- "email": "ever.zet@gmail.com",
586
- "homepage": "http://everzet.com"
587
- },
588
- {
589
- "name": "Marcello Duarte",
590
- "email": "marcello.duarte@gmail.com"
591
- }
592
- ],
593
- "description": "Highly opinionated mocking framework for PHP 5.3+",
594
- "homepage": "https://github.com/phpspec/prophecy",
595
- "keywords": [
596
- "Double",
597
- "Dummy",
598
- "fake",
599
- "mock",
600
- "spy",
601
- "stub"
602
- ],
603
- "support": {
604
- "issues": "https://github.com/phpspec/prophecy/issues",
605
- "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
606
- },
607
- "time": "2021-12-08T12:19:24+00:00"
608
- },
609
- {
610
- "name": "phpunit/php-code-coverage",
611
- "version": "9.2.10",
612
- "source": {
613
- "type": "git",
614
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
615
- "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687"
616
- },
617
- "dist": {
618
- "type": "zip",
619
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/d5850aaf931743067f4bfc1ae4cbd06468400687",
620
- "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687",
621
- "shasum": ""
622
- },
623
- "require": {
624
- "ext-dom": "*",
625
- "ext-libxml": "*",
626
- "ext-xmlwriter": "*",
627
- "nikic/php-parser": "^4.13.0",
628
- "php": ">=7.3",
629
- "phpunit/php-file-iterator": "^3.0.3",
630
- "phpunit/php-text-template": "^2.0.2",
631
- "sebastian/code-unit-reverse-lookup": "^2.0.2",
632
- "sebastian/complexity": "^2.0",
633
- "sebastian/environment": "^5.1.2",
634
- "sebastian/lines-of-code": "^1.0.3",
635
- "sebastian/version": "^3.0.1",
636
- "theseer/tokenizer": "^1.2.0"
637
- },
638
- "require-dev": {
639
- "phpunit/phpunit": "^9.3"
640
- },
641
- "suggest": {
642
- "ext-pcov": "*",
643
- "ext-xdebug": "*"
644
- },
645
- "type": "library",
646
- "extra": {
647
- "branch-alias": {
648
- "dev-master": "9.2-dev"
649
- }
650
- },
651
- "autoload": {
652
- "classmap": [
653
- "src/"
654
- ]
655
- },
656
- "notification-url": "https://packagist.org/downloads/",
657
- "license": [
658
- "BSD-3-Clause"
659
- ],
660
- "authors": [
661
- {
662
- "name": "Sebastian Bergmann",
663
- "email": "sebastian@phpunit.de",
664
- "role": "lead"
665
- }
666
- ],
667
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
668
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
669
- "keywords": [
670
- "coverage",
671
- "testing",
672
- "xunit"
673
- ],
674
- "support": {
675
- "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
676
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.10"
677
- },
678
- "funding": [
679
- {
680
- "url": "https://github.com/sebastianbergmann",
681
- "type": "github"
682
- }
683
- ],
684
- "time": "2021-12-05T09:12:13+00:00"
685
- },
686
- {
687
- "name": "phpunit/php-file-iterator",
688
- "version": "3.0.6",
689
- "source": {
690
- "type": "git",
691
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
692
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
693
- },
694
- "dist": {
695
- "type": "zip",
696
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
697
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
698
- "shasum": ""
699
- },
700
- "require": {
701
- "php": ">=7.3"
702
- },
703
- "require-dev": {
704
- "phpunit/phpunit": "^9.3"
705
- },
706
- "type": "library",
707
- "extra": {
708
- "branch-alias": {
709
- "dev-master": "3.0-dev"
710
- }
711
- },
712
- "autoload": {
713
- "classmap": [
714
- "src/"
715
- ]
716
- },
717
- "notification-url": "https://packagist.org/downloads/",
718
- "license": [
719
- "BSD-3-Clause"
720
- ],
721
- "authors": [
722
- {
723
- "name": "Sebastian Bergmann",
724
- "email": "sebastian@phpunit.de",
725
- "role": "lead"
726
- }
727
- ],
728
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
729
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
730
- "keywords": [
731
- "filesystem",
732
- "iterator"
733
- ],
734
- "support": {
735
- "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
736
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
737
- },
738
- "funding": [
739
- {
740
- "url": "https://github.com/sebastianbergmann",
741
- "type": "github"
742
- }
743
- ],
744
- "time": "2021-12-02T12:48:52+00:00"
745
- },
746
- {
747
- "name": "phpunit/php-invoker",
748
- "version": "3.1.1",
749
- "source": {
750
- "type": "git",
751
- "url": "https://github.com/sebastianbergmann/php-invoker.git",
752
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
753
- },
754
- "dist": {
755
- "type": "zip",
756
- "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
757
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
758
- "shasum": ""
759
- },
760
- "require": {
761
- "php": ">=7.3"
762
- },
763
- "require-dev": {
764
- "ext-pcntl": "*",
765
- "phpunit/phpunit": "^9.3"
766
- },
767
- "suggest": {
768
- "ext-pcntl": "*"
769
- },
770
- "type": "library",
771
- "extra": {
772
- "branch-alias": {
773
- "dev-master": "3.1-dev"
774
- }
775
- },
776
- "autoload": {
777
- "classmap": [
778
- "src/"
779
- ]
780
- },
781
- "notification-url": "https://packagist.org/downloads/",
782
- "license": [
783
- "BSD-3-Clause"
784
- ],
785
- "authors": [
786
- {
787
- "name": "Sebastian Bergmann",
788
- "email": "sebastian@phpunit.de",
789
- "role": "lead"
790
- }
791
- ],
792
- "description": "Invoke callables with a timeout",
793
- "homepage": "https://github.com/sebastianbergmann/php-invoker/",
794
- "keywords": [
795
- "process"
796
- ],
797
- "support": {
798
- "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
799
- "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
800
- },
801
- "funding": [
802
- {
803
- "url": "https://github.com/sebastianbergmann",
804
- "type": "github"
805
- }
806
- ],
807
- "time": "2020-09-28T05:58:55+00:00"
808
- },
809
- {
810
- "name": "phpunit/php-text-template",
811
- "version": "2.0.4",
812
- "source": {
813
- "type": "git",
814
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
815
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
816
- },
817
- "dist": {
818
- "type": "zip",
819
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
820
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
821
- "shasum": ""
822
- },
823
- "require": {
824
- "php": ">=7.3"
825
- },
826
- "require-dev": {
827
- "phpunit/phpunit": "^9.3"
828
- },
829
- "type": "library",
830
- "extra": {
831
- "branch-alias": {
832
- "dev-master": "2.0-dev"
833
- }
834
- },
835
- "autoload": {
836
- "classmap": [
837
- "src/"
838
- ]
839
- },
840
- "notification-url": "https://packagist.org/downloads/",
841
- "license": [
842
- "BSD-3-Clause"
843
- ],
844
- "authors": [
845
- {
846
- "name": "Sebastian Bergmann",
847
- "email": "sebastian@phpunit.de",
848
- "role": "lead"
849
- }
850
- ],
851
- "description": "Simple template engine.",
852
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
853
- "keywords": [
854
- "template"
855
- ],
856
- "support": {
857
- "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
858
- "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
859
- },
860
- "funding": [
861
- {
862
- "url": "https://github.com/sebastianbergmann",
863
- "type": "github"
864
- }
865
- ],
866
- "time": "2020-10-26T05:33:50+00:00"
867
- },
868
- {
869
- "name": "phpunit/php-timer",
870
- "version": "5.0.3",
871
- "source": {
872
- "type": "git",
873
- "url": "https://github.com/sebastianbergmann/php-timer.git",
874
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
875
- },
876
- "dist": {
877
- "type": "zip",
878
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
879
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
880
- "shasum": ""
881
- },
882
- "require": {
883
- "php": ">=7.3"
884
- },
885
- "require-dev": {
886
- "phpunit/phpunit": "^9.3"
887
- },
888
- "type": "library",
889
- "extra": {
890
- "branch-alias": {
891
- "dev-master": "5.0-dev"
892
- }
893
- },
894
- "autoload": {
895
- "classmap": [
896
- "src/"
897
- ]
898
- },
899
- "notification-url": "https://packagist.org/downloads/",
900
- "license": [
901
- "BSD-3-Clause"
902
- ],
903
- "authors": [
904
- {
905
- "name": "Sebastian Bergmann",
906
- "email": "sebastian@phpunit.de",
907
- "role": "lead"
908
- }
909
- ],
910
- "description": "Utility class for timing",
911
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
912
- "keywords": [
913
- "timer"
914
- ],
915
- "support": {
916
- "issues": "https://github.com/sebastianbergmann/php-timer/issues",
917
- "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
918
- },
919
- "funding": [
920
- {
921
- "url": "https://github.com/sebastianbergmann",
922
- "type": "github"
923
- }
924
- ],
925
- "time": "2020-10-26T13:16:10+00:00"
926
- },
927
- {
928
- "name": "phpunit/phpunit",
929
- "version": "9.5.13",
930
- "source": {
931
- "type": "git",
932
- "url": "https://github.com/sebastianbergmann/phpunit.git",
933
- "reference": "597cb647654ede35e43b137926dfdfef0fb11743"
934
- },
935
- "dist": {
936
- "type": "zip",
937
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/597cb647654ede35e43b137926dfdfef0fb11743",
938
- "reference": "597cb647654ede35e43b137926dfdfef0fb11743",
939
- "shasum": ""
940
- },
941
- "require": {
942
- "doctrine/instantiator": "^1.3.1",
943
- "ext-dom": "*",
944
- "ext-json": "*",
945
- "ext-libxml": "*",
946
- "ext-mbstring": "*",
947
- "ext-xml": "*",
948
- "ext-xmlwriter": "*",
949
- "myclabs/deep-copy": "^1.10.1",
950
- "phar-io/manifest": "^2.0.3",
951
- "phar-io/version": "^3.0.2",
952
- "php": ">=7.3",
953
- "phpspec/prophecy": "^1.12.1",
954
- "phpunit/php-code-coverage": "^9.2.7",
955
- "phpunit/php-file-iterator": "^3.0.5",
956
- "phpunit/php-invoker": "^3.1.1",
957
- "phpunit/php-text-template": "^2.0.3",
958
- "phpunit/php-timer": "^5.0.2",
959
- "sebastian/cli-parser": "^1.0.1",
960
- "sebastian/code-unit": "^1.0.6",
961
- "sebastian/comparator": "^4.0.5",
962
- "sebastian/diff": "^4.0.3",
963
- "sebastian/environment": "^5.1.3",
964
- "sebastian/exporter": "^4.0.3",
965
- "sebastian/global-state": "^5.0.1",
966
- "sebastian/object-enumerator": "^4.0.3",
967
- "sebastian/resource-operations": "^3.0.3",
968
- "sebastian/type": "^2.3.4",
969
- "sebastian/version": "^3.0.2"
970
- },
971
- "require-dev": {
972
- "ext-pdo": "*",
973
- "phpspec/prophecy-phpunit": "^2.0.1"
974
- },
975
- "suggest": {
976
- "ext-soap": "*",
977
- "ext-xdebug": "*"
978
- },
979
- "bin": [
980
- "phpunit"
981
- ],
982
- "type": "library",
983
- "extra": {
984
- "branch-alias": {
985
- "dev-master": "9.5-dev"
986
- }
987
- },
988
- "autoload": {
989
- "files": [
990
- "src/Framework/Assert/Functions.php"
991
- ],
992
- "classmap": [
993
- "src/"
994
- ]
995
- },
996
- "notification-url": "https://packagist.org/downloads/",
997
- "license": [
998
- "BSD-3-Clause"
999
- ],
1000
- "authors": [
1001
- {
1002
- "name": "Sebastian Bergmann",
1003
- "email": "sebastian@phpunit.de",
1004
- "role": "lead"
1005
- }
1006
- ],
1007
- "description": "The PHP Unit Testing framework.",
1008
- "homepage": "https://phpunit.de/",
1009
- "keywords": [
1010
- "phpunit",
1011
- "testing",
1012
- "xunit"
1013
- ],
1014
- "support": {
1015
- "issues": "https://github.com/sebastianbergmann/phpunit/issues",
1016
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.13"
1017
- },
1018
- "funding": [
1019
- {
1020
- "url": "https://phpunit.de/sponsors.html",
1021
- "type": "custom"
1022
- },
1023
- {
1024
- "url": "https://github.com/sebastianbergmann",
1025
- "type": "github"
1026
- }
1027
- ],
1028
- "time": "2022-01-24T07:33:35+00:00"
1029
- },
1030
- {
1031
- "name": "sebastian/cli-parser",
1032
- "version": "1.0.1",
1033
- "source": {
1034
- "type": "git",
1035
- "url": "https://github.com/sebastianbergmann/cli-parser.git",
1036
- "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
1037
- },
1038
- "dist": {
1039
- "type": "zip",
1040
- "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
1041
- "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
1042
- "shasum": ""
1043
- },
1044
- "require": {
1045
- "php": ">=7.3"
1046
- },
1047
- "require-dev": {
1048
- "phpunit/phpunit": "^9.3"
1049
- },
1050
- "type": "library",
1051
- "extra": {
1052
- "branch-alias": {
1053
- "dev-master": "1.0-dev"
1054
- }
1055
- },
1056
- "autoload": {
1057
- "classmap": [
1058
- "src/"
1059
- ]
1060
- },
1061
- "notification-url": "https://packagist.org/downloads/",
1062
- "license": [
1063
- "BSD-3-Clause"
1064
- ],
1065
- "authors": [
1066
- {
1067
- "name": "Sebastian Bergmann",
1068
- "email": "sebastian@phpunit.de",
1069
- "role": "lead"
1070
- }
1071
- ],
1072
- "description": "Library for parsing CLI options",
1073
- "homepage": "https://github.com/sebastianbergmann/cli-parser",
1074
- "support": {
1075
- "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
1076
- "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
1077
- },
1078
- "funding": [
1079
- {
1080
- "url": "https://github.com/sebastianbergmann",
1081
- "type": "github"
1082
- }
1083
- ],
1084
- "time": "2020-09-28T06:08:49+00:00"
1085
- },
1086
- {
1087
- "name": "sebastian/code-unit",
1088
- "version": "1.0.8",
1089
- "source": {
1090
- "type": "git",
1091
- "url": "https://github.com/sebastianbergmann/code-unit.git",
1092
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
1093
- },
1094
- "dist": {
1095
- "type": "zip",
1096
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
1097
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
1098
- "shasum": ""
1099
- },
1100
- "require": {
1101
- "php": ">=7.3"
1102
- },
1103
- "require-dev": {
1104
- "phpunit/phpunit": "^9.3"
1105
- },
1106
- "type": "library",
1107
- "extra": {
1108
- "branch-alias": {
1109
- "dev-master": "1.0-dev"
1110
- }
1111
- },
1112
- "autoload": {
1113
- "classmap": [
1114
- "src/"
1115
- ]
1116
- },
1117
- "notification-url": "https://packagist.org/downloads/",
1118
- "license": [
1119
- "BSD-3-Clause"
1120
- ],
1121
- "authors": [
1122
- {
1123
- "name": "Sebastian Bergmann",
1124
- "email": "sebastian@phpunit.de",
1125
- "role": "lead"
1126
- }
1127
- ],
1128
- "description": "Collection of value objects that represent the PHP code units",
1129
- "homepage": "https://github.com/sebastianbergmann/code-unit",
1130
- "support": {
1131
- "issues": "https://github.com/sebastianbergmann/code-unit/issues",
1132
- "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
1133
- },
1134
- "funding": [
1135
- {
1136
- "url": "https://github.com/sebastianbergmann",
1137
- "type": "github"
1138
- }
1139
- ],
1140
- "time": "2020-10-26T13:08:54+00:00"
1141
- },
1142
- {
1143
- "name": "sebastian/code-unit-reverse-lookup",
1144
- "version": "2.0.3",
1145
- "source": {
1146
- "type": "git",
1147
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
1148
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
1149
- },
1150
- "dist": {
1151
- "type": "zip",
1152
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
1153
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
1154
- "shasum": ""
1155
- },
1156
- "require": {
1157
- "php": ">=7.3"
1158
- },
1159
- "require-dev": {
1160
- "phpunit/phpunit": "^9.3"
1161
- },
1162
- "type": "library",
1163
- "extra": {
1164
- "branch-alias": {
1165
- "dev-master": "2.0-dev"
1166
- }
1167
- },
1168
- "autoload": {
1169
- "classmap": [
1170
- "src/"
1171
- ]
1172
- },
1173
- "notification-url": "https://packagist.org/downloads/",
1174
- "license": [
1175
- "BSD-3-Clause"
1176
- ],
1177
- "authors": [
1178
- {
1179
- "name": "Sebastian Bergmann",
1180
- "email": "sebastian@phpunit.de"
1181
- }
1182
- ],
1183
- "description": "Looks up which function or method a line of code belongs to",
1184
- "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
1185
- "support": {
1186
- "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
1187
- "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
1188
- },
1189
- "funding": [
1190
- {
1191
- "url": "https://github.com/sebastianbergmann",
1192
- "type": "github"
1193
- }
1194
- ],
1195
- "time": "2020-09-28T05:30:19+00:00"
1196
- },
1197
- {
1198
- "name": "sebastian/comparator",
1199
- "version": "4.0.6",
1200
- "source": {
1201
- "type": "git",
1202
- "url": "https://github.com/sebastianbergmann/comparator.git",
1203
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
1204
- },
1205
- "dist": {
1206
- "type": "zip",
1207
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
1208
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
1209
- "shasum": ""
1210
- },
1211
- "require": {
1212
- "php": ">=7.3",
1213
- "sebastian/diff": "^4.0",
1214
- "sebastian/exporter": "^4.0"
1215
- },
1216
- "require-dev": {
1217
- "phpunit/phpunit": "^9.3"
1218
- },
1219
- "type": "library",
1220
- "extra": {
1221
- "branch-alias": {
1222
- "dev-master": "4.0-dev"
1223
- }
1224
- },
1225
- "autoload": {
1226
- "classmap": [
1227
- "src/"
1228
- ]
1229
- },
1230
- "notification-url": "https://packagist.org/downloads/",
1231
- "license": [
1232
- "BSD-3-Clause"
1233
- ],
1234
- "authors": [
1235
- {
1236
- "name": "Sebastian Bergmann",
1237
- "email": "sebastian@phpunit.de"
1238
- },
1239
- {
1240
- "name": "Jeff Welch",
1241
- "email": "whatthejeff@gmail.com"
1242
- },
1243
- {
1244
- "name": "Volker Dusch",
1245
- "email": "github@wallbash.com"
1246
- },
1247
- {
1248
- "name": "Bernhard Schussek",
1249
- "email": "bschussek@2bepublished.at"
1250
- }
1251
- ],
1252
- "description": "Provides the functionality to compare PHP values for equality",
1253
- "homepage": "https://github.com/sebastianbergmann/comparator",
1254
- "keywords": [
1255
- "comparator",
1256
- "compare",
1257
- "equality"
1258
- ],
1259
- "support": {
1260
- "issues": "https://github.com/sebastianbergmann/comparator/issues",
1261
- "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
1262
- },
1263
- "funding": [
1264
- {
1265
- "url": "https://github.com/sebastianbergmann",
1266
- "type": "github"
1267
- }
1268
- ],
1269
- "time": "2020-10-26T15:49:45+00:00"
1270
- },
1271
- {
1272
- "name": "sebastian/complexity",
1273
- "version": "2.0.2",
1274
- "source": {
1275
- "type": "git",
1276
- "url": "https://github.com/sebastianbergmann/complexity.git",
1277
- "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
1278
- },
1279
- "dist": {
1280
- "type": "zip",
1281
- "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
1282
- "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
1283
- "shasum": ""
1284
- },
1285
- "require": {
1286
- "nikic/php-parser": "^4.7",
1287
- "php": ">=7.3"
1288
- },
1289
- "require-dev": {
1290
- "phpunit/phpunit": "^9.3"
1291
- },
1292
- "type": "library",
1293
- "extra": {
1294
- "branch-alias": {
1295
- "dev-master": "2.0-dev"
1296
- }
1297
- },
1298
- "autoload": {
1299
- "classmap": [
1300
- "src/"
1301
- ]
1302
- },
1303
- "notification-url": "https://packagist.org/downloads/",
1304
- "license": [
1305
- "BSD-3-Clause"
1306
- ],
1307
- "authors": [
1308
- {
1309
- "name": "Sebastian Bergmann",
1310
- "email": "sebastian@phpunit.de",
1311
- "role": "lead"
1312
- }
1313
- ],
1314
- "description": "Library for calculating the complexity of PHP code units",
1315
- "homepage": "https://github.com/sebastianbergmann/complexity",
1316
- "support": {
1317
- "issues": "https://github.com/sebastianbergmann/complexity/issues",
1318
- "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
1319
- },
1320
- "funding": [
1321
- {
1322
- "url": "https://github.com/sebastianbergmann",
1323
- "type": "github"
1324
- }
1325
- ],
1326
- "time": "2020-10-26T15:52:27+00:00"
1327
- },
1328
- {
1329
- "name": "sebastian/diff",
1330
- "version": "4.0.4",
1331
- "source": {
1332
- "type": "git",
1333
- "url": "https://github.com/sebastianbergmann/diff.git",
1334
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
1335
- },
1336
- "dist": {
1337
- "type": "zip",
1338
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
1339
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
1340
- "shasum": ""
1341
- },
1342
- "require": {
1343
- "php": ">=7.3"
1344
- },
1345
- "require-dev": {
1346
- "phpunit/phpunit": "^9.3",
1347
- "symfony/process": "^4.2 || ^5"
1348
- },
1349
- "type": "library",
1350
- "extra": {
1351
- "branch-alias": {
1352
- "dev-master": "4.0-dev"
1353
- }
1354
- },
1355
- "autoload": {
1356
- "classmap": [
1357
- "src/"
1358
- ]
1359
- },
1360
- "notification-url": "https://packagist.org/downloads/",
1361
- "license": [
1362
- "BSD-3-Clause"
1363
- ],
1364
- "authors": [
1365
- {
1366
- "name": "Sebastian Bergmann",
1367
- "email": "sebastian@phpunit.de"
1368
- },
1369
- {
1370
- "name": "Kore Nordmann",
1371
- "email": "mail@kore-nordmann.de"
1372
- }
1373
- ],
1374
- "description": "Diff implementation",
1375
- "homepage": "https://github.com/sebastianbergmann/diff",
1376
- "keywords": [
1377
- "diff",
1378
- "udiff",
1379
- "unidiff",
1380
- "unified diff"
1381
- ],
1382
- "support": {
1383
- "issues": "https://github.com/sebastianbergmann/diff/issues",
1384
- "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
1385
- },
1386
- "funding": [
1387
- {
1388
- "url": "https://github.com/sebastianbergmann",
1389
- "type": "github"
1390
- }
1391
- ],
1392
- "time": "2020-10-26T13:10:38+00:00"
1393
- },
1394
- {
1395
- "name": "sebastian/environment",
1396
- "version": "5.1.3",
1397
- "source": {
1398
- "type": "git",
1399
- "url": "https://github.com/sebastianbergmann/environment.git",
1400
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
1401
- },
1402
- "dist": {
1403
- "type": "zip",
1404
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
1405
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
1406
- "shasum": ""
1407
- },
1408
- "require": {
1409
- "php": ">=7.3"
1410
- },
1411
- "require-dev": {
1412
- "phpunit/phpunit": "^9.3"
1413
- },
1414
- "suggest": {
1415
- "ext-posix": "*"
1416
- },
1417
- "type": "library",
1418
- "extra": {
1419
- "branch-alias": {
1420
- "dev-master": "5.1-dev"
1421
- }
1422
- },
1423
- "autoload": {
1424
- "classmap": [
1425
- "src/"
1426
- ]
1427
- },
1428
- "notification-url": "https://packagist.org/downloads/",
1429
- "license": [
1430
- "BSD-3-Clause"
1431
- ],
1432
- "authors": [
1433
- {
1434
- "name": "Sebastian Bergmann",
1435
- "email": "sebastian@phpunit.de"
1436
- }
1437
- ],
1438
- "description": "Provides functionality to handle HHVM/PHP environments",
1439
- "homepage": "http://www.github.com/sebastianbergmann/environment",
1440
- "keywords": [
1441
- "Xdebug",
1442
- "environment",
1443
- "hhvm"
1444
- ],
1445
- "support": {
1446
- "issues": "https://github.com/sebastianbergmann/environment/issues",
1447
- "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
1448
- },
1449
- "funding": [
1450
- {
1451
- "url": "https://github.com/sebastianbergmann",
1452
- "type": "github"
1453
- }
1454
- ],
1455
- "time": "2020-09-28T05:52:38+00:00"
1456
- },
1457
- {
1458
- "name": "sebastian/exporter",
1459
- "version": "4.0.4",
1460
- "source": {
1461
- "type": "git",
1462
- "url": "https://github.com/sebastianbergmann/exporter.git",
1463
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
1464
- },
1465
- "dist": {
1466
- "type": "zip",
1467
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
1468
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
1469
- "shasum": ""
1470
- },
1471
- "require": {
1472
- "php": ">=7.3",
1473
- "sebastian/recursion-context": "^4.0"
1474
- },
1475
- "require-dev": {
1476
- "ext-mbstring": "*",
1477
- "phpunit/phpunit": "^9.3"
1478
- },
1479
- "type": "library",
1480
- "extra": {
1481
- "branch-alias": {
1482
- "dev-master": "4.0-dev"
1483
- }
1484
- },
1485
- "autoload": {
1486
- "classmap": [
1487
- "src/"
1488
- ]
1489
- },
1490
- "notification-url": "https://packagist.org/downloads/",
1491
- "license": [
1492
- "BSD-3-Clause"
1493
- ],
1494
- "authors": [
1495
- {
1496
- "name": "Sebastian Bergmann",
1497
- "email": "sebastian@phpunit.de"
1498
- },
1499
- {
1500
- "name": "Jeff Welch",
1501
- "email": "whatthejeff@gmail.com"
1502
- },
1503
- {
1504
- "name": "Volker Dusch",
1505
- "email": "github@wallbash.com"
1506
- },
1507
- {
1508
- "name": "Adam Harvey",
1509
- "email": "aharvey@php.net"
1510
- },
1511
- {
1512
- "name": "Bernhard Schussek",
1513
- "email": "bschussek@gmail.com"
1514
- }
1515
- ],
1516
- "description": "Provides the functionality to export PHP variables for visualization",
1517
- "homepage": "https://www.github.com/sebastianbergmann/exporter",
1518
- "keywords": [
1519
- "export",
1520
- "exporter"
1521
- ],
1522
- "support": {
1523
- "issues": "https://github.com/sebastianbergmann/exporter/issues",
1524
- "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
1525
- },
1526
- "funding": [
1527
- {
1528
- "url": "https://github.com/sebastianbergmann",
1529
- "type": "github"
1530
- }
1531
- ],
1532
- "time": "2021-11-11T14:18:36+00:00"
1533
- },
1534
- {
1535
- "name": "sebastian/global-state",
1536
- "version": "5.0.5",
1537
- "source": {
1538
- "type": "git",
1539
- "url": "https://github.com/sebastianbergmann/global-state.git",
1540
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
1541
- },
1542
- "dist": {
1543
- "type": "zip",
1544
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
1545
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
1546
- "shasum": ""
1547
- },
1548
- "require": {
1549
- "php": ">=7.3",
1550
- "sebastian/object-reflector": "^2.0",
1551
- "sebastian/recursion-context": "^4.0"
1552
- },
1553
- "require-dev": {
1554
- "ext-dom": "*",
1555
- "phpunit/phpunit": "^9.3"
1556
- },
1557
- "suggest": {
1558
- "ext-uopz": "*"
1559
- },
1560
- "type": "library",
1561
- "extra": {
1562
- "branch-alias": {
1563
- "dev-master": "5.0-dev"
1564
- }
1565
- },
1566
- "autoload": {
1567
- "classmap": [
1568
- "src/"
1569
- ]
1570
- },
1571
- "notification-url": "https://packagist.org/downloads/",
1572
- "license": [
1573
- "BSD-3-Clause"
1574
- ],
1575
- "authors": [
1576
- {
1577
- "name": "Sebastian Bergmann",
1578
- "email": "sebastian@phpunit.de"
1579
- }
1580
- ],
1581
- "description": "Snapshotting of global state",
1582
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
1583
- "keywords": [
1584
- "global state"
1585
- ],
1586
- "support": {
1587
- "issues": "https://github.com/sebastianbergmann/global-state/issues",
1588
- "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
1589
- },
1590
- "funding": [
1591
- {
1592
- "url": "https://github.com/sebastianbergmann",
1593
- "type": "github"
1594
- }
1595
- ],
1596
- "time": "2022-02-14T08:28:10+00:00"
1597
- },
1598
- {
1599
- "name": "sebastian/lines-of-code",
1600
- "version": "1.0.3",
1601
- "source": {
1602
- "type": "git",
1603
- "url": "https://github.com/sebastianbergmann/lines-of-code.git",
1604
- "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
1605
- },
1606
- "dist": {
1607
- "type": "zip",
1608
- "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
1609
- "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
1610
- "shasum": ""
1611
- },
1612
- "require": {
1613
- "nikic/php-parser": "^4.6",
1614
- "php": ">=7.3"
1615
- },
1616
- "require-dev": {
1617
- "phpunit/phpunit": "^9.3"
1618
- },
1619
- "type": "library",
1620
- "extra": {
1621
- "branch-alias": {
1622
- "dev-master": "1.0-dev"
1623
- }
1624
- },
1625
- "autoload": {
1626
- "classmap": [
1627
- "src/"
1628
- ]
1629
- },
1630
- "notification-url": "https://packagist.org/downloads/",
1631
- "license": [
1632
- "BSD-3-Clause"
1633
- ],
1634
- "authors": [
1635
- {
1636
- "name": "Sebastian Bergmann",
1637
- "email": "sebastian@phpunit.de",
1638
- "role": "lead"
1639
- }
1640
- ],
1641
- "description": "Library for counting the lines of code in PHP source code",
1642
- "homepage": "https://github.com/sebastianbergmann/lines-of-code",
1643
- "support": {
1644
- "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
1645
- "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
1646
- },
1647
- "funding": [
1648
- {
1649
- "url": "https://github.com/sebastianbergmann",
1650
- "type": "github"
1651
- }
1652
- ],
1653
- "time": "2020-11-28T06:42:11+00:00"
1654
- },
1655
- {
1656
- "name": "sebastian/object-enumerator",
1657
- "version": "4.0.4",
1658
- "source": {
1659
- "type": "git",
1660
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
1661
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
1662
- },
1663
- "dist": {
1664
- "type": "zip",
1665
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
1666
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
1667
- "shasum": ""
1668
- },
1669
- "require": {
1670
- "php": ">=7.3",
1671
- "sebastian/object-reflector": "^2.0",
1672
- "sebastian/recursion-context": "^4.0"
1673
- },
1674
- "require-dev": {
1675
- "phpunit/phpunit": "^9.3"
1676
- },
1677
- "type": "library",
1678
- "extra": {
1679
- "branch-alias": {
1680
- "dev-master": "4.0-dev"
1681
- }
1682
- },
1683
- "autoload": {
1684
- "classmap": [
1685
- "src/"
1686
- ]
1687
- },
1688
- "notification-url": "https://packagist.org/downloads/",
1689
- "license": [
1690
- "BSD-3-Clause"
1691
- ],
1692
- "authors": [
1693
- {
1694
- "name": "Sebastian Bergmann",
1695
- "email": "sebastian@phpunit.de"
1696
- }
1697
- ],
1698
- "description": "Traverses array structures and object graphs to enumerate all referenced objects",
1699
- "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
1700
- "support": {
1701
- "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
1702
- "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
1703
- },
1704
- "funding": [
1705
- {
1706
- "url": "https://github.com/sebastianbergmann",
1707
- "type": "github"
1708
- }
1709
- ],
1710
- "time": "2020-10-26T13:12:34+00:00"
1711
- },
1712
- {
1713
- "name": "sebastian/object-reflector",
1714
- "version": "2.0.4",
1715
- "source": {
1716
- "type": "git",
1717
- "url": "https://github.com/sebastianbergmann/object-reflector.git",
1718
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
1719
- },
1720
- "dist": {
1721
- "type": "zip",
1722
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
1723
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
1724
- "shasum": ""
1725
- },
1726
- "require": {
1727
- "php": ">=7.3"
1728
- },
1729
- "require-dev": {
1730
- "phpunit/phpunit": "^9.3"
1731
- },
1732
- "type": "library",
1733
- "extra": {
1734
- "branch-alias": {
1735
- "dev-master": "2.0-dev"
1736
- }
1737
- },
1738
- "autoload": {
1739
- "classmap": [
1740
- "src/"
1741
- ]
1742
- },
1743
- "notification-url": "https://packagist.org/downloads/",
1744
- "license": [
1745
- "BSD-3-Clause"
1746
- ],
1747
- "authors": [
1748
- {
1749
- "name": "Sebastian Bergmann",
1750
- "email": "sebastian@phpunit.de"
1751
- }
1752
- ],
1753
- "description": "Allows reflection of object attributes, including inherited and non-public ones",
1754
- "homepage": "https://github.com/sebastianbergmann/object-reflector/",
1755
- "support": {
1756
- "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
1757
- "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
1758
- },
1759
- "funding": [
1760
- {
1761
- "url": "https://github.com/sebastianbergmann",
1762
- "type": "github"
1763
- }
1764
- ],
1765
- "time": "2020-10-26T13:14:26+00:00"
1766
- },
1767
- {
1768
- "name": "sebastian/recursion-context",
1769
- "version": "4.0.4",
1770
- "source": {
1771
- "type": "git",
1772
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
1773
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
1774
- },
1775
- "dist": {
1776
- "type": "zip",
1777
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
1778
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
1779
- "shasum": ""
1780
- },
1781
- "require": {
1782
- "php": ">=7.3"
1783
- },
1784
- "require-dev": {
1785
- "phpunit/phpunit": "^9.3"
1786
- },
1787
- "type": "library",
1788
- "extra": {
1789
- "branch-alias": {
1790
- "dev-master": "4.0-dev"
1791
- }
1792
- },
1793
- "autoload": {
1794
- "classmap": [
1795
- "src/"
1796
- ]
1797
- },
1798
- "notification-url": "https://packagist.org/downloads/",
1799
- "license": [
1800
- "BSD-3-Clause"
1801
- ],
1802
- "authors": [
1803
- {
1804
- "name": "Sebastian Bergmann",
1805
- "email": "sebastian@phpunit.de"
1806
- },
1807
- {
1808
- "name": "Jeff Welch",
1809
- "email": "whatthejeff@gmail.com"
1810
- },
1811
- {
1812
- "name": "Adam Harvey",
1813
- "email": "aharvey@php.net"
1814
- }
1815
- ],
1816
- "description": "Provides functionality to recursively process PHP variables",
1817
- "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
1818
- "support": {
1819
- "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
1820
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
1821
- },
1822
- "funding": [
1823
- {
1824
- "url": "https://github.com/sebastianbergmann",
1825
- "type": "github"
1826
- }
1827
- ],
1828
- "time": "2020-10-26T13:17:30+00:00"
1829
- },
1830
- {
1831
- "name": "sebastian/resource-operations",
1832
- "version": "3.0.3",
1833
- "source": {
1834
- "type": "git",
1835
- "url": "https://github.com/sebastianbergmann/resource-operations.git",
1836
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
1837
- },
1838
- "dist": {
1839
- "type": "zip",
1840
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
1841
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
1842
- "shasum": ""
1843
- },
1844
- "require": {
1845
- "php": ">=7.3"
1846
- },
1847
- "require-dev": {
1848
- "phpunit/phpunit": "^9.0"
1849
- },
1850
- "type": "library",
1851
- "extra": {
1852
- "branch-alias": {
1853
- "dev-master": "3.0-dev"
1854
- }
1855
- },
1856
- "autoload": {
1857
- "classmap": [
1858
- "src/"
1859
- ]
1860
- },
1861
- "notification-url": "https://packagist.org/downloads/",
1862
- "license": [
1863
- "BSD-3-Clause"
1864
- ],
1865
- "authors": [
1866
- {
1867
- "name": "Sebastian Bergmann",
1868
- "email": "sebastian@phpunit.de"
1869
- }
1870
- ],
1871
- "description": "Provides a list of PHP built-in functions that operate on resources",
1872
- "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
1873
- "support": {
1874
- "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
1875
- "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
1876
- },
1877
- "funding": [
1878
- {
1879
- "url": "https://github.com/sebastianbergmann",
1880
- "type": "github"
1881
- }
1882
- ],
1883
- "time": "2020-09-28T06:45:17+00:00"
1884
- },
1885
- {
1886
- "name": "sebastian/type",
1887
- "version": "2.3.4",
1888
- "source": {
1889
- "type": "git",
1890
- "url": "https://github.com/sebastianbergmann/type.git",
1891
- "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
1892
- },
1893
- "dist": {
1894
- "type": "zip",
1895
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
1896
- "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
1897
- "shasum": ""
1898
- },
1899
- "require": {
1900
- "php": ">=7.3"
1901
- },
1902
- "require-dev": {
1903
- "phpunit/phpunit": "^9.3"
1904
- },
1905
- "type": "library",
1906
- "extra": {
1907
- "branch-alias": {
1908
- "dev-master": "2.3-dev"
1909
- }
1910
- },
1911
- "autoload": {
1912
- "classmap": [
1913
- "src/"
1914
- ]
1915
- },
1916
- "notification-url": "https://packagist.org/downloads/",
1917
- "license": [
1918
- "BSD-3-Clause"
1919
- ],
1920
- "authors": [
1921
- {
1922
- "name": "Sebastian Bergmann",
1923
- "email": "sebastian@phpunit.de",
1924
- "role": "lead"
1925
- }
1926
- ],
1927
- "description": "Collection of value objects that represent the types of the PHP type system",
1928
- "homepage": "https://github.com/sebastianbergmann/type",
1929
- "support": {
1930
- "issues": "https://github.com/sebastianbergmann/type/issues",
1931
- "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
1932
- },
1933
- "funding": [
1934
- {
1935
- "url": "https://github.com/sebastianbergmann",
1936
- "type": "github"
1937
- }
1938
- ],
1939
- "time": "2021-06-15T12:49:02+00:00"
1940
- },
1941
- {
1942
- "name": "sebastian/version",
1943
- "version": "3.0.2",
1944
- "source": {
1945
- "type": "git",
1946
- "url": "https://github.com/sebastianbergmann/version.git",
1947
- "reference": "c6c1022351a901512170118436c764e473f6de8c"
1948
- },
1949
- "dist": {
1950
- "type": "zip",
1951
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
1952
- "reference": "c6c1022351a901512170118436c764e473f6de8c",
1953
- "shasum": ""
1954
- },
1955
- "require": {
1956
- "php": ">=7.3"
1957
- },
1958
- "type": "library",
1959
- "extra": {
1960
- "branch-alias": {
1961
- "dev-master": "3.0-dev"
1962
- }
1963
- },
1964
- "autoload": {
1965
- "classmap": [
1966
- "src/"
1967
- ]
1968
- },
1969
- "notification-url": "https://packagist.org/downloads/",
1970
- "license": [
1971
- "BSD-3-Clause"
1972
- ],
1973
- "authors": [
1974
- {
1975
- "name": "Sebastian Bergmann",
1976
- "email": "sebastian@phpunit.de",
1977
- "role": "lead"
1978
- }
1979
- ],
1980
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
1981
- "homepage": "https://github.com/sebastianbergmann/version",
1982
- "support": {
1983
- "issues": "https://github.com/sebastianbergmann/version/issues",
1984
- "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
1985
- },
1986
- "funding": [
1987
- {
1988
- "url": "https://github.com/sebastianbergmann",
1989
- "type": "github"
1990
- }
1991
- ],
1992
- "time": "2020-09-28T06:39:44+00:00"
1993
- },
1994
- {
1995
- "name": "sirbrillig/phpcs-variable-analysis",
1996
- "version": "v2.11.2",
1997
- "source": {
1998
- "type": "git",
1999
- "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git",
2000
- "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e"
2001
- },
2002
- "dist": {
2003
- "type": "zip",
2004
- "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3fad28475bfbdbf8aa5c440f8a8f89824983d85e",
2005
- "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e",
2006
- "shasum": ""
2007
- },
2008
- "require": {
2009
- "php": ">=5.4.0",
2010
- "squizlabs/php_codesniffer": "^3.5"
2011
- },
2012
- "require-dev": {
2013
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
2014
- "limedeck/phpunit-detailed-printer": "^3.1 || ^4.0 || ^5.0",
2015
- "phpstan/phpstan": "^0.11.8",
2016
- "phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^8.0",
2017
- "sirbrillig/phpcs-import-detection": "^1.1"
2018
- },
2019
- "type": "phpcodesniffer-standard",
2020
- "autoload": {
2021
- "psr-4": {
2022
- "VariableAnalysis\\": "VariableAnalysis/"
2023
- }
2024
- },
2025
- "notification-url": "https://packagist.org/downloads/",
2026
- "license": [
2027
- "BSD-2-Clause"
2028
- ],
2029
- "authors": [
2030
- {
2031
- "name": "Sam Graham",
2032
- "email": "php-codesniffer-variableanalysis@illusori.co.uk"
2033
- },
2034
- {
2035
- "name": "Payton Swick",
2036
- "email": "payton@foolord.com"
2037
- }
2038
- ],
2039
- "description": "A PHPCS sniff to detect problems with variables.",
2040
- "support": {
2041
- "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues",
2042
- "source": "https://github.com/sirbrillig/phpcs-variable-analysis",
2043
- "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki"
2044
- },
2045
- "time": "2021-07-06T23:45:17+00:00"
2046
- },
2047
- {
2048
- "name": "squizlabs/php_codesniffer",
2049
- "version": "3.6.2",
2050
- "source": {
2051
- "type": "git",
2052
- "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
2053
- "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a"
2054
- },
2055
- "dist": {
2056
- "type": "zip",
2057
- "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/5e4e71592f69da17871dba6e80dd51bce74a351a",
2058
- "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a",
2059
- "shasum": ""
2060
- },
2061
- "require": {
2062
- "ext-simplexml": "*",
2063
- "ext-tokenizer": "*",
2064
- "ext-xmlwriter": "*",
2065
- "php": ">=5.4.0"
2066
- },
2067
- "require-dev": {
2068
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
2069
- },
2070
- "bin": [
2071
- "bin/phpcs",
2072
- "bin/phpcbf"
2073
- ],
2074
- "type": "library",
2075
- "extra": {
2076
- "branch-alias": {
2077
- "dev-master": "3.x-dev"
2078
- }
2079
- },
2080
- "notification-url": "https://packagist.org/downloads/",
2081
- "license": [
2082
- "BSD-3-Clause"
2083
- ],
2084
- "authors": [
2085
- {
2086
- "name": "Greg Sherwood",
2087
- "role": "lead"
2088
- }
2089
- ],
2090
- "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
2091
- "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
2092
- "keywords": [
2093
- "phpcs",
2094
- "standards"
2095
- ],
2096
- "support": {
2097
- "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
2098
- "source": "https://github.com/squizlabs/PHP_CodeSniffer",
2099
- "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
2100
- },
2101
- "time": "2021-12-12T21:44:58+00:00"
2102
- },
2103
- {
2104
- "name": "symfony/polyfill-ctype",
2105
- "version": "v1.24.0",
2106
- "source": {
2107
- "type": "git",
2108
- "url": "https://github.com/symfony/polyfill-ctype.git",
2109
- "reference": "30885182c981ab175d4d034db0f6f469898070ab"
2110
- },
2111
- "dist": {
2112
- "type": "zip",
2113
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
2114
- "reference": "30885182c981ab175d4d034db0f6f469898070ab",
2115
- "shasum": ""
2116
- },
2117
- "require": {
2118
- "php": ">=7.1"
2119
- },
2120
- "provide": {
2121
- "ext-ctype": "*"
2122
- },
2123
- "suggest": {
2124
- "ext-ctype": "For best performance"
2125
- },
2126
- "type": "library",
2127
- "extra": {
2128
- "branch-alias": {
2129
- "dev-main": "1.23-dev"
2130
- },
2131
- "thanks": {
2132
- "name": "symfony/polyfill",
2133
- "url": "https://github.com/symfony/polyfill"
2134
- }
2135
- },
2136
- "autoload": {
2137
- "psr-4": {
2138
- "Symfony\\Polyfill\\Ctype\\": ""
2139
- },
2140
- "files": [
2141
- "bootstrap.php"
2142
- ]
2143
- },
2144
- "notification-url": "https://packagist.org/downloads/",
2145
- "license": [
2146
- "MIT"
2147
- ],
2148
- "authors": [
2149
- {
2150
- "name": "Gert de Pagter",
2151
- "email": "BackEndTea@gmail.com"
2152
- },
2153
- {
2154
- "name": "Symfony Community",
2155
- "homepage": "https://symfony.com/contributors"
2156
- }
2157
- ],
2158
- "description": "Symfony polyfill for ctype functions",
2159
- "homepage": "https://symfony.com",
2160
- "keywords": [
2161
- "compatibility",
2162
- "ctype",
2163
- "polyfill",
2164
- "portable"
2165
- ],
2166
- "support": {
2167
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
2168
- },
2169
- "funding": [
2170
- {
2171
- "url": "https://symfony.com/sponsor",
2172
- "type": "custom"
2173
- },
2174
- {
2175
- "url": "https://github.com/fabpot",
2176
- "type": "github"
2177
- },
2178
- {
2179
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2180
- "type": "tidelift"
2181
- }
2182
- ],
2183
- "time": "2021-10-20T20:35:02+00:00"
2184
- },
2185
- {
2186
- "name": "theseer/tokenizer",
2187
- "version": "1.2.1",
2188
- "source": {
2189
- "type": "git",
2190
- "url": "https://github.com/theseer/tokenizer.git",
2191
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
2192
- },
2193
- "dist": {
2194
- "type": "zip",
2195
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
2196
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
2197
- "shasum": ""
2198
- },
2199
- "require": {
2200
- "ext-dom": "*",
2201
- "ext-tokenizer": "*",
2202
- "ext-xmlwriter": "*",
2203
- "php": "^7.2 || ^8.0"
2204
- },
2205
- "type": "library",
2206
- "autoload": {
2207
- "classmap": [
2208
- "src/"
2209
- ]
2210
- },
2211
- "notification-url": "https://packagist.org/downloads/",
2212
- "license": [
2213
- "BSD-3-Clause"
2214
- ],
2215
- "authors": [
2216
- {
2217
- "name": "Arne Blankerts",
2218
- "email": "arne@blankerts.de",
2219
- "role": "Developer"
2220
- }
2221
- ],
2222
- "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
2223
- "support": {
2224
- "issues": "https://github.com/theseer/tokenizer/issues",
2225
- "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
2226
- },
2227
- "funding": [
2228
- {
2229
- "url": "https://github.com/theseer",
2230
- "type": "github"
2231
- }
2232
- ],
2233
- "time": "2021-07-28T10:34:58+00:00"
2234
- },
2235
- {
2236
- "name": "vektor-inc/vk-wp-unit-test-tools",
2237
- "version": "0.10.0",
2238
- "source": {
2239
- "type": "git",
2240
- "url": "https://github.com/vektor-inc/vk-wp-unit-test-tools.git",
2241
- "reference": "5ce9eb397ba1ec76193664e6877288ffa22b9422"
2242
- },
2243
- "dist": {
2244
- "type": "zip",
2245
- "url": "https://api.github.com/repos/vektor-inc/vk-wp-unit-test-tools/zipball/5ce9eb397ba1ec76193664e6877288ffa22b9422",
2246
- "reference": "5ce9eb397ba1ec76193664e6877288ffa22b9422",
2247
- "shasum": ""
2248
- },
2249
- "type": "library",
2250
- "autoload": {
2251
- "psr-4": {
2252
- "VK_WP_Unit_Test_Tools\\": "src/"
2253
- }
2254
- },
2255
- "notification-url": "https://packagist.org/downloads/",
2256
- "license": [
2257
- "MIT"
2258
- ],
2259
- "authors": [
2260
- {
2261
- "name": "kurudrive",
2262
- "email": "kurudrive@gmail.com"
2263
- }
2264
- ],
2265
- "description": "WordPress PHPUnit test tools",
2266
- "support": {
2267
- "issues": "https://github.com/vektor-inc/vk-wp-unit-test-tools/issues",
2268
- "source": "https://github.com/vektor-inc/vk-wp-unit-test-tools/tree/0.10.0"
2269
- },
2270
- "time": "2021-09-03T10:14:12+00:00"
2271
- },
2272
- {
2273
- "name": "webmozart/assert",
2274
- "version": "1.10.0",
2275
- "source": {
2276
- "type": "git",
2277
- "url": "https://github.com/webmozarts/assert.git",
2278
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
2279
- },
2280
- "dist": {
2281
- "type": "zip",
2282
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
2283
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
2284
- "shasum": ""
2285
- },
2286
- "require": {
2287
- "php": "^7.2 || ^8.0",
2288
- "symfony/polyfill-ctype": "^1.8"
2289
- },
2290
- "conflict": {
2291
- "phpstan/phpstan": "<0.12.20",
2292
- "vimeo/psalm": "<4.6.1 || 4.6.2"
2293
- },
2294
- "require-dev": {
2295
- "phpunit/phpunit": "^8.5.13"
2296
- },
2297
- "type": "library",
2298
- "extra": {
2299
- "branch-alias": {
2300
- "dev-master": "1.10-dev"
2301
- }
2302
- },
2303
- "autoload": {
2304
- "psr-4": {
2305
- "Webmozart\\Assert\\": "src/"
2306
- }
2307
- },
2308
- "notification-url": "https://packagist.org/downloads/",
2309
- "license": [
2310
- "MIT"
2311
- ],
2312
- "authors": [
2313
- {
2314
- "name": "Bernhard Schussek",
2315
- "email": "bschussek@gmail.com"
2316
- }
2317
- ],
2318
- "description": "Assertions to validate method input/output with nice error messages.",
2319
- "keywords": [
2320
- "assert",
2321
- "check",
2322
- "validate"
2323
- ],
2324
- "support": {
2325
- "issues": "https://github.com/webmozarts/assert/issues",
2326
- "source": "https://github.com/webmozarts/assert/tree/1.10.0"
2327
- },
2328
- "time": "2021-03-09T10:59:23+00:00"
2329
- },
2330
- {
2331
- "name": "wp-phpunit/wp-phpunit",
2332
- "version": "5.9.0",
2333
- "source": {
2334
- "type": "git",
2335
- "url": "https://github.com/wp-phpunit/wp-phpunit.git",
2336
- "reference": "02d98f9d5f15442489b5d98c1f4c486901e3e110"
2337
- },
2338
- "dist": {
2339
- "type": "zip",
2340
- "url": "https://api.github.com/repos/wp-phpunit/wp-phpunit/zipball/02d98f9d5f15442489b5d98c1f4c486901e3e110",
2341
- "reference": "02d98f9d5f15442489b5d98c1f4c486901e3e110",
2342
- "shasum": ""
2343
- },
2344
- "type": "library",
2345
- "autoload": {
2346
- "files": [
2347
- "__loaded.php"
2348
- ]
2349
- },
2350
- "notification-url": "https://packagist.org/downloads/",
2351
- "license": [
2352
- "GPL-2.0-or-later"
2353
- ],
2354
- "authors": [
2355
- {
2356
- "name": "Evan Mattson",
2357
- "email": "me@aaemnnost.tv"
2358
- },
2359
- {
2360
- "name": "WordPress Community",
2361
- "homepage": "https://wordpress.org/about/"
2362
- }
2363
- ],
2364
- "description": "WordPress core PHPUnit library",
2365
- "homepage": "https://github.com/wp-phpunit",
2366
- "keywords": [
2367
- "phpunit",
2368
- "test",
2369
- "wordpress"
2370
- ],
2371
- "support": {
2372
- "docs": "https://github.com/wp-phpunit/docs",
2373
- "issues": "https://github.com/wp-phpunit/issues",
2374
- "source": "https://github.com/wp-phpunit/wp-phpunit"
2375
- },
2376
- "time": "2022-01-25T20:37:14+00:00"
2377
- },
2378
- {
2379
- "name": "yoast/phpunit-polyfills",
2380
- "version": "1.0.3",
2381
- "source": {
2382
- "type": "git",
2383
- "url": "https://github.com/Yoast/PHPUnit-Polyfills.git",
2384
- "reference": "5ea3536428944955f969bc764bbe09738e151ada"
2385
- },
2386
- "dist": {
2387
- "type": "zip",
2388
- "url": "https://api.github.com/repos/Yoast/PHPUnit-Polyfills/zipball/5ea3536428944955f969bc764bbe09738e151ada",
2389
- "reference": "5ea3536428944955f969bc764bbe09738e151ada",
2390
- "shasum": ""
2391
- },
2392
- "require": {
2393
- "php": ">=5.4",
2394
- "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
2395
- },
2396
- "require-dev": {
2397
- "yoast/yoastcs": "^2.2.0"
2398
- },
2399
- "type": "library",
2400
- "extra": {
2401
- "branch-alias": {
2402
- "dev-main": "1.x-dev",
2403
- "dev-develop": "1.x-dev"
2404
- }
2405
- },
2406
- "autoload": {
2407
- "files": [
2408
- "phpunitpolyfills-autoload.php"
2409
- ]
2410
- },
2411
- "notification-url": "https://packagist.org/downloads/",
2412
- "license": [
2413
- "BSD-3-Clause"
2414
- ],
2415
- "authors": [
2416
- {
2417
- "name": "Team Yoast",
2418
- "email": "support@yoast.com",
2419
- "homepage": "https://yoast.com"
2420
- },
2421
- {
2422
- "name": "Contributors",
2423
- "homepage": "https://github.com/Yoast/PHPUnit-Polyfills/graphs/contributors"
2424
- }
2425
- ],
2426
- "description": "Set of polyfills for changed PHPUnit functionality to allow for creating PHPUnit cross-version compatible tests",
2427
- "homepage": "https://github.com/Yoast/PHPUnit-Polyfills",
2428
- "keywords": [
2429
- "phpunit",
2430
- "polyfill",
2431
- "testing"
2432
- ],
2433
- "support": {
2434
- "issues": "https://github.com/Yoast/PHPUnit-Polyfills/issues",
2435
- "source": "https://github.com/Yoast/PHPUnit-Polyfills"
2436
- },
2437
- "time": "2021-11-23T01:37:03+00:00"
2438
- }
2439
- ],
2440
- "aliases": [],
2441
- "minimum-stability": "stable",
2442
- "stability-flags": [],
2443
- "prefer-stable": false,
2444
- "prefer-lowest": false,
2445
- "platform": [],
2446
- "platform-dev": [],
2447
- "plugin-api-version": "2.1.0"
2448
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/term-color/readme.md DELETED
@@ -1,20 +0,0 @@
1
- ## 使い方
2
-
3
- 1. term-color-config.php を term-color を使用するプラグインディレクトリに複製
4
- 1. term-color-config.php の中身をプラグインの情報にあわせて書き換える
5
- 1. プラグインが最初に読み込むPHPファイルなどから require_once( 'inc/term-color-config.php' ); などで読み込む
6
- 1. termの色を表示したいテンプレートに以下のように記述
7
-
8
- ~~~
9
- $taxonomies = get_the_taxonomies();
10
- if ($taxonomies):
11
- // get $taxonomy name
12
- $taxonomy = key( $taxonomies );
13
- $terms = get_the_terms( get_the_ID(),$taxonomy );
14
- $term_name = esc_html($terms[0]->name);
15
- $term_color = Vk_term_color::get_term_color( $terms[0]->term_id );
16
- $term_color = ( $term_color ) ? ' style="background-color:'.$term_color.'"': '';
17
- $term_link = esc_url( get_term_link( $terms[0]->term_id, $taxonomy ) );
18
- $term = '<a class="padCate"'.$term_color.' href="'.$term_link.'">'.$term_name.'</a>';
19
- endif;
20
- ~~~
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package-lock.json CHANGED
@@ -1,11974 +1,8 @@
1
  {
2
  "name": "vk-all-in-one-expansion-unit",
3
  "version": "9.11.3",
4
- "lockfileVersion": 2,
5
  "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "vk-all-in-one-expansion-unit",
9
- "version": "9.11.3",
10
- "license": "GPL-2.0-only",
11
- "dependencies": {
12
- "smoothscroll-polyfill": "^0.4.4"
13
- },
14
- "devDependencies": {
15
- "@babel/core": "^7.16.5",
16
- "@babel/preset-env": "^7.16.5",
17
- "@wordpress/babel-plugin-makepot": "^4.2.0",
18
- "@wordpress/env": "^4.1.3",
19
- "babel-plugin-transform-react-jsx": "^6.24.1",
20
- "child_process": "^1.0.2",
21
- "gulp": "^4.0.2",
22
- "gulp-autoprefixer": "^8.0.0",
23
- "gulp-babel": "^8.0.0",
24
- "gulp-clean-css": "^4.3.0",
25
- "gulp-concat": "^2.6.1",
26
- "gulp-cssmin": "^0.2.0",
27
- "gulp-merge-media-queries": "^0.2.1",
28
- "gulp-plumber": "^1.2.1",
29
- "gulp-rename": "^2.0.0",
30
- "gulp-replace": "^1.1.3",
31
- "gulp-sass": "^5.0.0",
32
- "gulp-uglify": "^3.0.2",
33
- "npm-check-updates": "^12.0.5",
34
- "po2json": "^1.0.0-beta-3",
35
- "run-sequence": "^2.2.1",
36
- "sass": "^1.45.1"
37
- }
38
- },
39
- "node_modules/@babel/code-frame": {
40
- "version": "7.16.0",
41
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz",
42
- "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==",
43
- "dev": true,
44
- "dependencies": {
45
- "@babel/highlight": "^7.16.0"
46
- },
47
- "engines": {
48
- "node": ">=6.9.0"
49
- }
50
- },
51
- "node_modules/@babel/compat-data": {
52
- "version": "7.16.4",
53
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz",
54
- "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==",
55
- "dev": true,
56
- "engines": {
57
- "node": ">=6.9.0"
58
- }
59
- },
60
- "node_modules/@babel/core": {
61
- "version": "7.16.5",
62
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.5.tgz",
63
- "integrity": "sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ==",
64
- "dev": true,
65
- "dependencies": {
66
- "@babel/code-frame": "^7.16.0",
67
- "@babel/generator": "^7.16.5",
68
- "@babel/helper-compilation-targets": "^7.16.3",
69
- "@babel/helper-module-transforms": "^7.16.5",
70
- "@babel/helpers": "^7.16.5",
71
- "@babel/parser": "^7.16.5",
72
- "@babel/template": "^7.16.0",
73
- "@babel/traverse": "^7.16.5",
74
- "@babel/types": "^7.16.0",
75
- "convert-source-map": "^1.7.0",
76
- "debug": "^4.1.0",
77
- "gensync": "^1.0.0-beta.2",
78
- "json5": "^2.1.2",
79
- "semver": "^6.3.0",
80
- "source-map": "^0.5.0"
81
- },
82
- "engines": {
83
- "node": ">=6.9.0"
84
- },
85
- "funding": {
86
- "type": "opencollective",
87
- "url": "https://opencollective.com/babel"
88
- }
89
- },
90
- "node_modules/@babel/generator": {
91
- "version": "7.16.5",
92
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.5.tgz",
93
- "integrity": "sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA==",
94
- "dev": true,
95
- "dependencies": {
96
- "@babel/types": "^7.16.0",
97
- "jsesc": "^2.5.1",
98
- "source-map": "^0.5.0"
99
- },
100
- "engines": {
101
- "node": ">=6.9.0"
102
- }
103
- },
104
- "node_modules/@babel/helper-annotate-as-pure": {
105
- "version": "7.16.0",
106
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz",
107
- "integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==",
108
- "dev": true,
109
- "dependencies": {
110
- "@babel/types": "^7.16.0"
111
- },
112
- "engines": {
113
- "node": ">=6.9.0"
114
- }
115
- },
116
- "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
117
- "version": "7.16.5",
118
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.5.tgz",
119
- "integrity": "sha512-3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA==",
120
- "dev": true,
121
- "dependencies": {
122
- "@babel/helper-explode-assignable-expression": "^7.16.0",
123
- "@babel/types": "^7.16.0"
124
- },
125
- "engines": {
126
- "node": ">=6.9.0"
127
- }
128
- },
129
- "node_modules/@babel/helper-compilation-targets": {
130
- "version": "7.16.3",
131
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz",
132
- "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==",
133
- "dev": true,
134
- "dependencies": {
135
- "@babel/compat-data": "^7.16.0",
136
- "@babel/helper-validator-option": "^7.14.5",
137
- "browserslist": "^4.17.5",
138
- "semver": "^6.3.0"
139
- },
140
- "engines": {
141
- "node": ">=6.9.0"
142
- },
143
- "peerDependencies": {
144
- "@babel/core": "^7.0.0"
145
- }
146
- },
147
- "node_modules/@babel/helper-create-class-features-plugin": {
148
- "version": "7.16.5",
149
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.5.tgz",
150
- "integrity": "sha512-NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg==",
151
- "dev": true,
152
- "dependencies": {
153
- "@babel/helper-annotate-as-pure": "^7.16.0",
154
- "@babel/helper-environment-visitor": "^7.16.5",
155
- "@babel/helper-function-name": "^7.16.0",
156
- "@babel/helper-member-expression-to-functions": "^7.16.5",
157
- "@babel/helper-optimise-call-expression": "^7.16.0",
158
- "@babel/helper-replace-supers": "^7.16.5",
159
- "@babel/helper-split-export-declaration": "^7.16.0"
160
- },
161
- "engines": {
162
- "node": ">=6.9.0"
163
- },
164
- "peerDependencies": {
165
- "@babel/core": "^7.0.0"
166
- }
167
- },
168
- "node_modules/@babel/helper-create-regexp-features-plugin": {
169
- "version": "7.16.0",
170
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz",
171
- "integrity": "sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==",
172
- "dev": true,
173
- "dependencies": {
174
- "@babel/helper-annotate-as-pure": "^7.16.0",
175
- "regexpu-core": "^4.7.1"
176
- },
177
- "engines": {
178
- "node": ">=6.9.0"
179
- },
180
- "peerDependencies": {
181
- "@babel/core": "^7.0.0"
182
- }
183
- },
184
- "node_modules/@babel/helper-define-polyfill-provider": {
185
- "version": "0.3.0",
186
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz",
187
- "integrity": "sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==",
188
- "dev": true,
189
- "dependencies": {
190
- "@babel/helper-compilation-targets": "^7.13.0",
191
- "@babel/helper-module-imports": "^7.12.13",
192
- "@babel/helper-plugin-utils": "^7.13.0",
193
- "@babel/traverse": "^7.13.0",
194
- "debug": "^4.1.1",
195
- "lodash.debounce": "^4.0.8",
196
- "resolve": "^1.14.2",
197
- "semver": "^6.1.2"
198
- },
199
- "peerDependencies": {
200
- "@babel/core": "^7.4.0-0"
201
- }
202
- },
203
- "node_modules/@babel/helper-environment-visitor": {
204
- "version": "7.16.5",
205
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz",
206
- "integrity": "sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg==",
207
- "dev": true,
208
- "dependencies": {
209
- "@babel/types": "^7.16.0"
210
- },
211
- "engines": {
212
- "node": ">=6.9.0"
213
- }
214
- },
215
- "node_modules/@babel/helper-explode-assignable-expression": {
216
- "version": "7.16.0",
217
- "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz",
218
- "integrity": "sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==",
219
- "dev": true,
220
- "dependencies": {
221
- "@babel/types": "^7.16.0"
222
- },
223
- "engines": {
224
- "node": ">=6.9.0"
225
- }
226
- },
227
- "node_modules/@babel/helper-function-name": {
228
- "version": "7.16.0",
229
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz",
230
- "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==",
231
- "dev": true,
232
- "dependencies": {
233
- "@babel/helper-get-function-arity": "^7.16.0",
234
- "@babel/template": "^7.16.0",
235
- "@babel/types": "^7.16.0"
236
- },
237
- "engines": {
238
- "node": ">=6.9.0"
239
- }
240
- },
241
- "node_modules/@babel/helper-get-function-arity": {
242
- "version": "7.16.0",
243
- "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz",
244
- "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==",
245
- "dev": true,
246
- "dependencies": {
247
- "@babel/types": "^7.16.0"
248
- },
249
- "engines": {
250
- "node": ">=6.9.0"
251
- }
252
- },
253
- "node_modules/@babel/helper-hoist-variables": {
254
- "version": "7.16.0",
255
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz",
256
- "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==",
257
- "dev": true,
258
- "dependencies": {
259
- "@babel/types": "^7.16.0"
260
- },
261
- "engines": {
262
- "node": ">=6.9.0"
263
- }
264
- },
265
- "node_modules/@babel/helper-member-expression-to-functions": {
266
- "version": "7.16.5",
267
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.5.tgz",
268
- "integrity": "sha512-7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw==",
269
- "dev": true,
270
- "dependencies": {
271
- "@babel/types": "^7.16.0"
272
- },
273
- "engines": {
274
- "node": ">=6.9.0"
275
- }
276
- },
277
- "node_modules/@babel/helper-module-imports": {
278
- "version": "7.16.0",
279
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz",
280
- "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==",
281
- "dev": true,
282
- "dependencies": {
283
- "@babel/types": "^7.16.0"
284
- },
285
- "engines": {
286
- "node": ">=6.9.0"
287
- }
288
- },
289
- "node_modules/@babel/helper-module-transforms": {
290
- "version": "7.16.5",
291
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz",
292
- "integrity": "sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ==",
293
- "dev": true,
294
- "dependencies": {
295
- "@babel/helper-environment-visitor": "^7.16.5",
296
- "@babel/helper-module-imports": "^7.16.0",
297
- "@babel/helper-simple-access": "^7.16.0",
298
- "@babel/helper-split-export-declaration": "^7.16.0",
299
- "@babel/helper-validator-identifier": "^7.15.7",
300
- "@babel/template": "^7.16.0",
301
- "@babel/traverse": "^7.16.5",
302
- "@babel/types": "^7.16.0"
303
- },
304
- "engines": {
305
- "node": ">=6.9.0"
306
- }
307
- },
308
- "node_modules/@babel/helper-optimise-call-expression": {
309
- "version": "7.16.0",
310
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz",
311
- "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==",
312
- "dev": true,
313
- "dependencies": {
314
- "@babel/types": "^7.16.0"
315
- },
316
- "engines": {
317
- "node": ">=6.9.0"
318
- }
319
- },
320
- "node_modules/@babel/helper-plugin-utils": {
321
- "version": "7.16.5",
322
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz",
323
- "integrity": "sha512-59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ==",
324
- "dev": true,
325
- "engines": {
326
- "node": ">=6.9.0"
327
- }
328
- },
329
- "node_modules/@babel/helper-remap-async-to-generator": {
330
- "version": "7.16.5",
331
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.5.tgz",
332
- "integrity": "sha512-X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw==",
333
- "dev": true,
334
- "dependencies": {
335
- "@babel/helper-annotate-as-pure": "^7.16.0",
336
- "@babel/helper-wrap-function": "^7.16.5",
337
- "@babel/types": "^7.16.0"
338
- },
339
- "engines": {
340
- "node": ">=6.9.0"
341
- }
342
- },
343
- "node_modules/@babel/helper-replace-supers": {
344
- "version": "7.16.5",
345
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.5.tgz",
346
- "integrity": "sha512-ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ==",
347
- "dev": true,
348
- "dependencies": {
349
- "@babel/helper-environment-visitor": "^7.16.5",
350
- "@babel/helper-member-expression-to-functions": "^7.16.5",
351
- "@babel/helper-optimise-call-expression": "^7.16.0",
352
- "@babel/traverse": "^7.16.5",
353
- "@babel/types": "^7.16.0"
354
- },
355
- "engines": {
356
- "node": ">=6.9.0"
357
- }
358
- },
359
- "node_modules/@babel/helper-simple-access": {
360
- "version": "7.16.0",
361
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz",
362
- "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==",
363
- "dev": true,
364
- "dependencies": {
365
- "@babel/types": "^7.16.0"
366
- },
367
- "engines": {
368
- "node": ">=6.9.0"
369
- }
370
- },
371
- "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
372
- "version": "7.16.0",
373
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz",
374
- "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==",
375
- "dev": true,
376
- "dependencies": {
377
- "@babel/types": "^7.16.0"
378
- },
379
- "engines": {
380
- "node": ">=6.9.0"
381
- }
382
- },
383
- "node_modules/@babel/helper-split-export-declaration": {
384
- "version": "7.16.0",
385
- "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz",
386
- "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==",
387
- "dev": true,
388
- "dependencies": {
389
- "@babel/types": "^7.16.0"
390
- },
391
- "engines": {
392
- "node": ">=6.9.0"
393
- }
394
- },
395
- "node_modules/@babel/helper-validator-identifier": {
396
- "version": "7.15.7",
397
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
398
- "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==",
399
- "dev": true,
400
- "engines": {
401
- "node": ">=6.9.0"
402
- }
403
- },
404
- "node_modules/@babel/helper-validator-option": {
405
- "version": "7.14.5",
406
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz",
407
- "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==",
408
- "dev": true,
409
- "engines": {
410
- "node": ">=6.9.0"
411
- }
412
- },
413
- "node_modules/@babel/helper-wrap-function": {
414
- "version": "7.16.5",
415
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.5.tgz",
416
- "integrity": "sha512-2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA==",
417
- "dev": true,
418
- "dependencies": {
419
- "@babel/helper-function-name": "^7.16.0",
420
- "@babel/template": "^7.16.0",
421
- "@babel/traverse": "^7.16.5",
422
- "@babel/types": "^7.16.0"
423
- },
424
- "engines": {
425
- "node": ">=6.9.0"
426
- }
427
- },
428
- "node_modules/@babel/helpers": {
429
- "version": "7.16.5",
430
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.5.tgz",
431
- "integrity": "sha512-TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw==",
432
- "dev": true,
433
- "dependencies": {
434
- "@babel/template": "^7.16.0",
435
- "@babel/traverse": "^7.16.5",
436
- "@babel/types": "^7.16.0"
437
- },
438
- "engines": {
439
- "node": ">=6.9.0"
440
- }
441
- },
442
- "node_modules/@babel/highlight": {
443
- "version": "7.16.0",
444
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz",
445
- "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==",
446
- "dev": true,
447
- "dependencies": {
448
- "@babel/helper-validator-identifier": "^7.15.7",
449
- "chalk": "^2.0.0",
450
- "js-tokens": "^4.0.0"
451
- },
452
- "engines": {
453
- "node": ">=6.9.0"
454
- }
455
- },
456
- "node_modules/@babel/parser": {
457
- "version": "7.16.6",
458
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.6.tgz",
459
- "integrity": "sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==",
460
- "dev": true,
461
- "bin": {
462
- "parser": "bin/babel-parser.js"
463
- },
464
- "engines": {
465
- "node": ">=6.0.0"
466
- }
467
- },
468
- "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
469
- "version": "7.16.2",
470
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz",
471
- "integrity": "sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==",
472
- "dev": true,
473
- "dependencies": {
474
- "@babel/helper-plugin-utils": "^7.14.5"
475
- },
476
- "engines": {
477
- "node": ">=6.9.0"
478
- },
479
- "peerDependencies": {
480
- "@babel/core": "^7.0.0"
481
- }
482
- },
483
- "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
484
- "version": "7.16.0",
485
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz",
486
- "integrity": "sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==",
487
- "dev": true,
488
- "dependencies": {
489
- "@babel/helper-plugin-utils": "^7.14.5",
490
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
491
- "@babel/plugin-proposal-optional-chaining": "^7.16.0"
492
- },
493
- "engines": {
494
- "node": ">=6.9.0"
495
- },
496
- "peerDependencies": {
497
- "@babel/core": "^7.13.0"
498
- }
499
- },
500
- "node_modules/@babel/plugin-proposal-async-generator-functions": {
501
- "version": "7.16.5",
502
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.5.tgz",
503
- "integrity": "sha512-C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA==",
504
- "dev": true,
505
- "dependencies": {
506
- "@babel/helper-plugin-utils": "^7.16.5",
507
- "@babel/helper-remap-async-to-generator": "^7.16.5",
508
- "@babel/plugin-syntax-async-generators": "^7.8.4"
509
- },
510
- "engines": {
511
- "node": ">=6.9.0"
512
- },
513
- "peerDependencies": {
514
- "@babel/core": "^7.0.0-0"
515
- }
516
- },
517
- "node_modules/@babel/plugin-proposal-class-properties": {
518
- "version": "7.16.5",
519
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.5.tgz",
520
- "integrity": "sha512-pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A==",
521
- "dev": true,
522
- "dependencies": {
523
- "@babel/helper-create-class-features-plugin": "^7.16.5",
524
- "@babel/helper-plugin-utils": "^7.16.5"
525
- },
526
- "engines": {
527
- "node": ">=6.9.0"
528
- },
529
- "peerDependencies": {
530
- "@babel/core": "^7.0.0-0"
531
- }
532
- },
533
- "node_modules/@babel/plugin-proposal-class-static-block": {
534
- "version": "7.16.5",
535
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.5.tgz",
536
- "integrity": "sha512-EEFzuLZcm/rNJ8Q5krK+FRKdVkd6FjfzT9tuSZql9sQn64K0hHA2KLJ0DqVot9/iV6+SsuadC5yI39zWnm+nmQ==",
537
- "dev": true,
538
- "dependencies": {
539
- "@babel/helper-create-class-features-plugin": "^7.16.5",
540
- "@babel/helper-plugin-utils": "^7.16.5",
541
- "@babel/plugin-syntax-class-static-block": "^7.14.5"
542
- },
543
- "engines": {
544
- "node": ">=6.9.0"
545
- },
546
- "peerDependencies": {
547
- "@babel/core": "^7.12.0"
548
- }
549
- },
550
- "node_modules/@babel/plugin-proposal-dynamic-import": {
551
- "version": "7.16.5",
552
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.5.tgz",
553
- "integrity": "sha512-P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ==",
554
- "dev": true,
555
- "dependencies": {
556
- "@babel/helper-plugin-utils": "^7.16.5",
557
- "@babel/plugin-syntax-dynamic-import": "^7.8.3"
558
- },
559
- "engines": {
560
- "node": ">=6.9.0"
561
- },
562
- "peerDependencies": {
563
- "@babel/core": "^7.0.0-0"
564
- }
565
- },
566
- "node_modules/@babel/plugin-proposal-export-namespace-from": {
567
- "version": "7.16.5",
568
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.5.tgz",
569
- "integrity": "sha512-i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw==",
570
- "dev": true,
571
- "dependencies": {
572
- "@babel/helper-plugin-utils": "^7.16.5",
573
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3"
574
- },
575
- "engines": {
576
- "node": ">=6.9.0"
577
- },
578
- "peerDependencies": {
579
- "@babel/core": "^7.0.0-0"
580
- }
581
- },
582
- "node_modules/@babel/plugin-proposal-json-strings": {
583
- "version": "7.16.5",
584
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.5.tgz",
585
- "integrity": "sha512-QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ==",
586
- "dev": true,
587
- "dependencies": {
588
- "@babel/helper-plugin-utils": "^7.16.5",
589
- "@babel/plugin-syntax-json-strings": "^7.8.3"
590
- },
591
- "engines": {
592
- "node": ">=6.9.0"
593
- },
594
- "peerDependencies": {
595
- "@babel/core": "^7.0.0-0"
596
- }
597
- },
598
- "node_modules/@babel/plugin-proposal-logical-assignment-operators": {
599
- "version": "7.16.5",
600
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.5.tgz",
601
- "integrity": "sha512-xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA==",
602
- "dev": true,
603
- "dependencies": {
604
- "@babel/helper-plugin-utils": "^7.16.5",
605
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
606
- },
607
- "engines": {
608
- "node": ">=6.9.0"
609
- },
610
- "peerDependencies": {
611
- "@babel/core": "^7.0.0-0"
612
- }
613
- },
614
- "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
615
- "version": "7.16.5",
616
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.5.tgz",
617
- "integrity": "sha512-YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg==",
618
- "dev": true,
619
- "dependencies": {
620
- "@babel/helper-plugin-utils": "^7.16.5",
621
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
622
- },
623
- "engines": {
624
- "node": ">=6.9.0"
625
- },
626
- "peerDependencies": {
627
- "@babel/core": "^7.0.0-0"
628
- }
629
- },
630
- "node_modules/@babel/plugin-proposal-numeric-separator": {
631
- "version": "7.16.5",
632
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.5.tgz",
633
- "integrity": "sha512-DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw==",
634
- "dev": true,
635
- "dependencies": {
636
- "@babel/helper-plugin-utils": "^7.16.5",
637
- "@babel/plugin-syntax-numeric-separator": "^7.10.4"
638
- },
639
- "engines": {
640
- "node": ">=6.9.0"
641
- },
642
- "peerDependencies": {
643
- "@babel/core": "^7.0.0-0"
644
- }
645
- },
646
- "node_modules/@babel/plugin-proposal-object-rest-spread": {
647
- "version": "7.16.5",
648
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.5.tgz",
649
- "integrity": "sha512-UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw==",
650
- "dev": true,
651
- "dependencies": {
652
- "@babel/compat-data": "^7.16.4",
653
- "@babel/helper-compilation-targets": "^7.16.3",
654
- "@babel/helper-plugin-utils": "^7.16.5",
655
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
656
- "@babel/plugin-transform-parameters": "^7.16.5"
657
- },
658
- "engines": {
659
- "node": ">=6.9.0"
660
- },
661
- "peerDependencies": {
662
- "@babel/core": "^7.0.0-0"
663
- }
664
- },
665
- "node_modules/@babel/plugin-proposal-optional-catch-binding": {
666
- "version": "7.16.5",
667
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.5.tgz",
668
- "integrity": "sha512-ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ==",
669
- "dev": true,
670
- "dependencies": {
671
- "@babel/helper-plugin-utils": "^7.16.5",
672
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
673
- },
674
- "engines": {
675
- "node": ">=6.9.0"
676
- },
677
- "peerDependencies": {
678
- "@babel/core": "^7.0.0-0"
679
- }
680
- },
681
- "node_modules/@babel/plugin-proposal-optional-chaining": {
682
- "version": "7.16.5",
683
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz",
684
- "integrity": "sha512-kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A==",
685
- "dev": true,
686
- "dependencies": {
687
- "@babel/helper-plugin-utils": "^7.16.5",
688
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0",
689
- "@babel/plugin-syntax-optional-chaining": "^7.8.3"
690
- },
691
- "engines": {
692
- "node": ">=6.9.0"
693
- },
694
- "peerDependencies": {
695
- "@babel/core": "^7.0.0-0"
696
- }
697
- },
698
- "node_modules/@babel/plugin-proposal-private-methods": {
699
- "version": "7.16.5",
700
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.5.tgz",
701
- "integrity": "sha512-+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA==",
702
- "dev": true,
703
- "dependencies": {
704
- "@babel/helper-create-class-features-plugin": "^7.16.5",
705
- "@babel/helper-plugin-utils": "^7.16.5"
706
- },
707
- "engines": {
708
- "node": ">=6.9.0"
709
- },
710
- "peerDependencies": {
711
- "@babel/core": "^7.0.0-0"
712
- }
713
- },
714
- "node_modules/@babel/plugin-proposal-private-property-in-object": {
715
- "version": "7.16.5",
716
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.5.tgz",
717
- "integrity": "sha512-+YGh5Wbw0NH3y/E5YMu6ci5qTDmAEVNoZ3I54aB6nVEOZ5BQ7QJlwKq5pYVucQilMByGn/bvX0af+uNaPRCabA==",
718
- "dev": true,
719
- "dependencies": {
720
- "@babel/helper-annotate-as-pure": "^7.16.0",
721
- "@babel/helper-create-class-features-plugin": "^7.16.5",
722
- "@babel/helper-plugin-utils": "^7.16.5",
723
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
724
- },
725
- "engines": {
726
- "node": ">=6.9.0"
727
- },
728
- "peerDependencies": {
729
- "@babel/core": "^7.0.0-0"
730
- }
731
- },
732
- "node_modules/@babel/plugin-proposal-unicode-property-regex": {
733
- "version": "7.16.5",
734
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.5.tgz",
735
- "integrity": "sha512-s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg==",
736
- "dev": true,
737
- "dependencies": {
738
- "@babel/helper-create-regexp-features-plugin": "^7.16.0",
739
- "@babel/helper-plugin-utils": "^7.16.5"
740
- },
741
- "engines": {
742
- "node": ">=4"
743
- },
744
- "peerDependencies": {
745
- "@babel/core": "^7.0.0-0"
746
- }
747
- },
748
- "node_modules/@babel/plugin-syntax-async-generators": {
749
- "version": "7.8.4",
750
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
751
- "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
752
- "dev": true,
753
- "dependencies": {
754
- "@babel/helper-plugin-utils": "^7.8.0"
755
- },
756
- "peerDependencies": {
757
- "@babel/core": "^7.0.0-0"
758
- }
759
- },
760
- "node_modules/@babel/plugin-syntax-class-properties": {
761
- "version": "7.12.13",
762
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
763
- "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
764
- "dev": true,
765
- "dependencies": {
766
- "@babel/helper-plugin-utils": "^7.12.13"
767
- },
768
- "peerDependencies": {
769
- "@babel/core": "^7.0.0-0"
770
- }
771
- },
772
- "node_modules/@babel/plugin-syntax-class-static-block": {
773
- "version": "7.14.5",
774
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
775
- "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
776
- "dev": true,
777
- "dependencies": {
778
- "@babel/helper-plugin-utils": "^7.14.5"
779
- },
780
- "engines": {
781
- "node": ">=6.9.0"
782
- },
783
- "peerDependencies": {
784
- "@babel/core": "^7.0.0-0"
785
- }
786
- },
787
- "node_modules/@babel/plugin-syntax-dynamic-import": {
788
- "version": "7.8.3",
789
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
790
- "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
791
- "dev": true,
792
- "dependencies": {
793
- "@babel/helper-plugin-utils": "^7.8.0"
794
- },
795
- "peerDependencies": {
796
- "@babel/core": "^7.0.0-0"
797
- }
798
- },
799
- "node_modules/@babel/plugin-syntax-export-namespace-from": {
800
- "version": "7.8.3",
801
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
802
- "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
803
- "dev": true,
804
- "dependencies": {
805
- "@babel/helper-plugin-utils": "^7.8.3"
806
- },
807
- "peerDependencies": {
808
- "@babel/core": "^7.0.0-0"
809
- }
810
- },
811
- "node_modules/@babel/plugin-syntax-json-strings": {
812
- "version": "7.8.3",
813
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
814
- "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
815
- "dev": true,
816
- "dependencies": {
817
- "@babel/helper-plugin-utils": "^7.8.0"
818
- },
819
- "peerDependencies": {
820
- "@babel/core": "^7.0.0-0"
821
- }
822
- },
823
- "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
824
- "version": "7.10.4",
825
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
826
- "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
827
- "dev": true,
828
- "dependencies": {
829
- "@babel/helper-plugin-utils": "^7.10.4"
830
- },
831
- "peerDependencies": {
832
- "@babel/core": "^7.0.0-0"
833
- }
834
- },
835
- "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
836
- "version": "7.8.3",
837
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
838
- "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
839
- "dev": true,
840
- "dependencies": {
841
- "@babel/helper-plugin-utils": "^7.8.0"
842
- },
843
- "peerDependencies": {
844
- "@babel/core": "^7.0.0-0"
845
- }
846
- },
847
- "node_modules/@babel/plugin-syntax-numeric-separator": {
848
- "version": "7.10.4",
849
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
850
- "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
851
- "dev": true,
852
- "dependencies": {
853
- "@babel/helper-plugin-utils": "^7.10.4"
854
- },
855
- "peerDependencies": {
856
- "@babel/core": "^7.0.0-0"
857
- }
858
- },
859
- "node_modules/@babel/plugin-syntax-object-rest-spread": {
860
- "version": "7.8.3",
861
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
862
- "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
863
- "dev": true,
864
- "dependencies": {
865
- "@babel/helper-plugin-utils": "^7.8.0"
866
- },
867
- "peerDependencies": {
868
- "@babel/core": "^7.0.0-0"
869
- }
870
- },
871
- "node_modules/@babel/plugin-syntax-optional-catch-binding": {
872
- "version": "7.8.3",
873
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
874
- "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
875
- "dev": true,
876
- "dependencies": {
877
- "@babel/helper-plugin-utils": "^7.8.0"
878
- },
879
- "peerDependencies": {
880
- "@babel/core": "^7.0.0-0"
881
- }
882
- },
883
- "node_modules/@babel/plugin-syntax-optional-chaining": {
884
- "version": "7.8.3",
885
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
886
- "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
887
- "dev": true,
888
- "dependencies": {
889
- "@babel/helper-plugin-utils": "^7.8.0"
890
- },
891
- "peerDependencies": {
892
- "@babel/core": "^7.0.0-0"
893
- }
894
- },
895
- "node_modules/@babel/plugin-syntax-private-property-in-object": {
896
- "version": "7.14.5",
897
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
898
- "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
899
- "dev": true,
900
- "dependencies": {
901
- "@babel/helper-plugin-utils": "^7.14.5"
902
- },
903
- "engines": {
904
- "node": ">=6.9.0"
905
- },
906
- "peerDependencies": {
907
- "@babel/core": "^7.0.0-0"
908
- }
909
- },
910
- "node_modules/@babel/plugin-syntax-top-level-await": {
911
- "version": "7.14.5",
912
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
913
- "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
914
- "dev": true,
915
- "dependencies": {
916
- "@babel/helper-plugin-utils": "^7.14.5"
917
- },
918
- "engines": {
919
- "node": ">=6.9.0"
920
- },
921
- "peerDependencies": {
922
- "@babel/core": "^7.0.0-0"
923
- }
924
- },
925
- "node_modules/@babel/plugin-transform-arrow-functions": {
926
- "version": "7.16.5",
927
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.5.tgz",
928
- "integrity": "sha512-8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ==",
929
- "dev": true,
930
- "dependencies": {
931
- "@babel/helper-plugin-utils": "^7.16.5"
932
- },
933
- "engines": {
934
- "node": ">=6.9.0"
935
- },
936
- "peerDependencies": {
937
- "@babel/core": "^7.0.0-0"
938
- }
939
- },
940
- "node_modules/@babel/plugin-transform-async-to-generator": {
941
- "version": "7.16.5",
942
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.5.tgz",
943
- "integrity": "sha512-TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w==",
944
- "dev": true,
945
- "dependencies": {
946
- "@babel/helper-module-imports": "^7.16.0",
947
- "@babel/helper-plugin-utils": "^7.16.5",
948
- "@babel/helper-remap-async-to-generator": "^7.16.5"
949
- },
950
- "engines": {
951
- "node": ">=6.9.0"
952
- },
953
- "peerDependencies": {
954
- "@babel/core": "^7.0.0-0"
955
- }
956
- },
957
- "node_modules/@babel/plugin-transform-block-scoped-functions": {
958
- "version": "7.16.5",
959
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.5.tgz",
960
- "integrity": "sha512-BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw==",
961
- "dev": true,
962
- "dependencies": {
963
- "@babel/helper-plugin-utils": "^7.16.5"
964
- },
965
- "engines": {
966
- "node": ">=6.9.0"
967
- },
968
- "peerDependencies": {
969
- "@babel/core": "^7.0.0-0"
970
- }
971
- },
972
- "node_modules/@babel/plugin-transform-block-scoping": {
973
- "version": "7.16.5",
974
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.5.tgz",
975
- "integrity": "sha512-JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ==",
976
- "dev": true,
977
- "dependencies": {
978
- "@babel/helper-plugin-utils": "^7.16.5"
979
- },
980
- "engines": {
981
- "node": ">=6.9.0"
982
- },
983
- "peerDependencies": {
984
- "@babel/core": "^7.0.0-0"
985
- }
986
- },
987
- "node_modules/@babel/plugin-transform-classes": {
988
- "version": "7.16.5",
989
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.5.tgz",
990
- "integrity": "sha512-DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA==",
991
- "dev": true,
992
- "dependencies": {
993
- "@babel/helper-annotate-as-pure": "^7.16.0",
994
- "@babel/helper-environment-visitor": "^7.16.5",
995
- "@babel/helper-function-name": "^7.16.0",
996
- "@babel/helper-optimise-call-expression": "^7.16.0",
997
- "@babel/helper-plugin-utils": "^7.16.5",
998
- "@babel/helper-replace-supers": "^7.16.5",
999
- "@babel/helper-split-export-declaration": "^7.16.0",
1000
- "globals": "^11.1.0"
1001
- },
1002
- "engines": {
1003
- "node": ">=6.9.0"
1004
- },
1005
- "peerDependencies": {
1006
- "@babel/core": "^7.0.0-0"
1007
- }
1008
- },
1009
- "node_modules/@babel/plugin-transform-computed-properties": {
1010
- "version": "7.16.5",
1011
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.5.tgz",
1012
- "integrity": "sha512-n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg==",
1013
- "dev": true,
1014
- "dependencies": {
1015
- "@babel/helper-plugin-utils": "^7.16.5"
1016
- },
1017
- "engines": {
1018
- "node": ">=6.9.0"
1019
- },
1020
- "peerDependencies": {
1021
- "@babel/core": "^7.0.0-0"
1022
- }
1023
- },
1024
- "node_modules/@babel/plugin-transform-destructuring": {
1025
- "version": "7.16.5",
1026
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.5.tgz",
1027
- "integrity": "sha512-GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg==",
1028
- "dev": true,
1029
- "dependencies": {
1030
- "@babel/helper-plugin-utils": "^7.16.5"
1031
- },
1032
- "engines": {
1033
- "node": ">=6.9.0"
1034
- },
1035
- "peerDependencies": {
1036
- "@babel/core": "^7.0.0-0"
1037
- }
1038
- },
1039
- "node_modules/@babel/plugin-transform-dotall-regex": {
1040
- "version": "7.16.5",
1041
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.5.tgz",
1042
- "integrity": "sha512-iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw==",
1043
- "dev": true,
1044
- "dependencies": {
1045
- "@babel/helper-create-regexp-features-plugin": "^7.16.0",
1046
- "@babel/helper-plugin-utils": "^7.16.5"
1047
- },
1048
- "engines": {
1049
- "node": ">=6.9.0"
1050
- },
1051
- "peerDependencies": {
1052
- "@babel/core": "^7.0.0-0"
1053
- }
1054
- },
1055
- "node_modules/@babel/plugin-transform-duplicate-keys": {
1056
- "version": "7.16.5",
1057
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.5.tgz",
1058
- "integrity": "sha512-81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg==",
1059
- "dev": true,
1060
- "dependencies": {
1061
- "@babel/helper-plugin-utils": "^7.16.5"
1062
- },
1063
- "engines": {
1064
- "node": ">=6.9.0"
1065
- },
1066
- "peerDependencies": {
1067
- "@babel/core": "^7.0.0-0"
1068
- }
1069
- },
1070
- "node_modules/@babel/plugin-transform-exponentiation-operator": {
1071
- "version": "7.16.5",
1072
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.5.tgz",
1073
- "integrity": "sha512-12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA==",
1074
- "dev": true,
1075
- "dependencies": {
1076
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.5",
1077
- "@babel/helper-plugin-utils": "^7.16.5"
1078
- },
1079
- "engines": {
1080
- "node": ">=6.9.0"
1081
- },
1082
- "peerDependencies": {
1083
- "@babel/core": "^7.0.0-0"
1084
- }
1085
- },
1086
- "node_modules/@babel/plugin-transform-for-of": {
1087
- "version": "7.16.5",
1088
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.5.tgz",
1089
- "integrity": "sha512-+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw==",
1090
- "dev": true,
1091
- "dependencies": {
1092
- "@babel/helper-plugin-utils": "^7.16.5"
1093
- },
1094
- "engines": {
1095
- "node": ">=6.9.0"
1096
- },
1097
- "peerDependencies": {
1098
- "@babel/core": "^7.0.0-0"
1099
- }
1100
- },
1101
- "node_modules/@babel/plugin-transform-function-name": {
1102
- "version": "7.16.5",
1103
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.5.tgz",
1104
- "integrity": "sha512-Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ==",
1105
- "dev": true,
1106
- "dependencies": {
1107
- "@babel/helper-function-name": "^7.16.0",
1108
- "@babel/helper-plugin-utils": "^7.16.5"
1109
- },
1110
- "engines": {
1111
- "node": ">=6.9.0"
1112
- },
1113
- "peerDependencies": {
1114
- "@babel/core": "^7.0.0-0"
1115
- }
1116
- },
1117
- "node_modules/@babel/plugin-transform-literals": {
1118
- "version": "7.16.5",
1119
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.5.tgz",
1120
- "integrity": "sha512-B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw==",
1121
- "dev": true,
1122
- "dependencies": {
1123
- "@babel/helper-plugin-utils": "^7.16.5"
1124
- },
1125
- "engines": {
1126
- "node": ">=6.9.0"
1127
- },
1128
- "peerDependencies": {
1129
- "@babel/core": "^7.0.0-0"
1130
- }
1131
- },
1132
- "node_modules/@babel/plugin-transform-member-expression-literals": {
1133
- "version": "7.16.5",
1134
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.5.tgz",
1135
- "integrity": "sha512-d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ==",
1136
- "dev": true,
1137
- "dependencies": {
1138
- "@babel/helper-plugin-utils": "^7.16.5"
1139
- },
1140
- "engines": {
1141
- "node": ">=6.9.0"
1142
- },
1143
- "peerDependencies": {
1144
- "@babel/core": "^7.0.0-0"
1145
- }
1146
- },
1147
- "node_modules/@babel/plugin-transform-modules-amd": {
1148
- "version": "7.16.5",
1149
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.5.tgz",
1150
- "integrity": "sha512-oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ==",
1151
- "dev": true,
1152
- "dependencies": {
1153
- "@babel/helper-module-transforms": "^7.16.5",
1154
- "@babel/helper-plugin-utils": "^7.16.5",
1155
- "babel-plugin-dynamic-import-node": "^2.3.3"
1156
- },
1157
- "engines": {
1158
- "node": ">=6.9.0"
1159
- },
1160
- "peerDependencies": {
1161
- "@babel/core": "^7.0.0-0"
1162
- }
1163
- },
1164
- "node_modules/@babel/plugin-transform-modules-commonjs": {
1165
- "version": "7.16.5",
1166
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.5.tgz",
1167
- "integrity": "sha512-ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ==",
1168
- "dev": true,
1169
- "dependencies": {
1170
- "@babel/helper-module-transforms": "^7.16.5",
1171
- "@babel/helper-plugin-utils": "^7.16.5",
1172
- "@babel/helper-simple-access": "^7.16.0",
1173
- "babel-plugin-dynamic-import-node": "^2.3.3"
1174
- },
1175
- "engines": {
1176
- "node": ">=6.9.0"
1177
- },
1178
- "peerDependencies": {
1179
- "@babel/core": "^7.0.0-0"
1180
- }
1181
- },
1182
- "node_modules/@babel/plugin-transform-modules-systemjs": {
1183
- "version": "7.16.5",
1184
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.5.tgz",
1185
- "integrity": "sha512-53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA==",
1186
- "dev": true,
1187
- "dependencies": {
1188
- "@babel/helper-hoist-variables": "^7.16.0",
1189
- "@babel/helper-module-transforms": "^7.16.5",
1190
- "@babel/helper-plugin-utils": "^7.16.5",
1191
- "@babel/helper-validator-identifier": "^7.15.7",
1192
- "babel-plugin-dynamic-import-node": "^2.3.3"
1193
- },
1194
- "engines": {
1195
- "node": ">=6.9.0"
1196
- },
1197
- "peerDependencies": {
1198
- "@babel/core": "^7.0.0-0"
1199
- }
1200
- },
1201
- "node_modules/@babel/plugin-transform-modules-umd": {
1202
- "version": "7.16.5",
1203
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.5.tgz",
1204
- "integrity": "sha512-qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw==",
1205
- "dev": true,
1206
- "dependencies": {
1207
- "@babel/helper-module-transforms": "^7.16.5",
1208
- "@babel/helper-plugin-utils": "^7.16.5"
1209
- },
1210
- "engines": {
1211
- "node": ">=6.9.0"
1212
- },
1213
- "peerDependencies": {
1214
- "@babel/core": "^7.0.0-0"
1215
- }
1216
- },
1217
- "node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
1218
- "version": "7.16.5",
1219
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.5.tgz",
1220
- "integrity": "sha512-/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA==",
1221
- "dev": true,
1222
- "dependencies": {
1223
- "@babel/helper-create-regexp-features-plugin": "^7.16.0"
1224
- },
1225
- "engines": {
1226
- "node": ">=6.9.0"
1227
- },
1228
- "peerDependencies": {
1229
- "@babel/core": "^7.0.0"
1230
- }
1231
- },
1232
- "node_modules/@babel/plugin-transform-new-target": {
1233
- "version": "7.16.5",
1234
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.5.tgz",
1235
- "integrity": "sha512-ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg==",
1236
- "dev": true,
1237
- "dependencies": {
1238
- "@babel/helper-plugin-utils": "^7.16.5"
1239
- },
1240
- "engines": {
1241
- "node": ">=6.9.0"
1242
- },
1243
- "peerDependencies": {
1244
- "@babel/core": "^7.0.0-0"
1245
- }
1246
- },
1247
- "node_modules/@babel/plugin-transform-object-super": {
1248
- "version": "7.16.5",
1249
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.5.tgz",
1250
- "integrity": "sha512-tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg==",
1251
- "dev": true,
1252
- "dependencies": {
1253
- "@babel/helper-plugin-utils": "^7.16.5",
1254
- "@babel/helper-replace-supers": "^7.16.5"
1255
- },
1256
- "engines": {
1257
- "node": ">=6.9.0"
1258
- },
1259
- "peerDependencies": {
1260
- "@babel/core": "^7.0.0-0"
1261
- }
1262
- },
1263
- "node_modules/@babel/plugin-transform-parameters": {
1264
- "version": "7.16.5",
1265
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.5.tgz",
1266
- "integrity": "sha512-B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA==",
1267
- "dev": true,
1268
- "dependencies": {
1269
- "@babel/helper-plugin-utils": "^7.16.5"
1270
- },
1271
- "engines": {
1272
- "node": ">=6.9.0"
1273
- },
1274
- "peerDependencies": {
1275
- "@babel/core": "^7.0.0-0"
1276
- }
1277
- },
1278
- "node_modules/@babel/plugin-transform-property-literals": {
1279
- "version": "7.16.5",
1280
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.5.tgz",
1281
- "integrity": "sha512-+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg==",
1282
- "dev": true,
1283
- "dependencies": {
1284
- "@babel/helper-plugin-utils": "^7.16.5"
1285
- },
1286
- "engines": {
1287
- "node": ">=6.9.0"
1288
- },
1289
- "peerDependencies": {
1290
- "@babel/core": "^7.0.0-0"
1291
- }
1292
- },
1293
- "node_modules/@babel/plugin-transform-regenerator": {
1294
- "version": "7.16.5",
1295
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.5.tgz",
1296
- "integrity": "sha512-2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg==",
1297
- "dev": true,
1298
- "dependencies": {
1299
- "regenerator-transform": "^0.14.2"
1300
- },
1301
- "engines": {
1302
- "node": ">=6.9.0"
1303
- },
1304
- "peerDependencies": {
1305
- "@babel/core": "^7.0.0-0"
1306
- }
1307
- },
1308
- "node_modules/@babel/plugin-transform-reserved-words": {
1309
- "version": "7.16.5",
1310
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.5.tgz",
1311
- "integrity": "sha512-aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw==",
1312
- "dev": true,
1313
- "dependencies": {
1314
- "@babel/helper-plugin-utils": "^7.16.5"
1315
- },
1316
- "engines": {
1317
- "node": ">=6.9.0"
1318
- },
1319
- "peerDependencies": {
1320
- "@babel/core": "^7.0.0-0"
1321
- }
1322
- },
1323
- "node_modules/@babel/plugin-transform-shorthand-properties": {
1324
- "version": "7.16.5",
1325
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.5.tgz",
1326
- "integrity": "sha512-ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg==",
1327
- "dev": true,
1328
- "dependencies": {
1329
- "@babel/helper-plugin-utils": "^7.16.5"
1330
- },
1331
- "engines": {
1332
- "node": ">=6.9.0"
1333
- },
1334
- "peerDependencies": {
1335
- "@babel/core": "^7.0.0-0"
1336
- }
1337
- },
1338
- "node_modules/@babel/plugin-transform-spread": {
1339
- "version": "7.16.5",
1340
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.5.tgz",
1341
- "integrity": "sha512-5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw==",
1342
- "dev": true,
1343
- "dependencies": {
1344
- "@babel/helper-plugin-utils": "^7.16.5",
1345
- "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0"
1346
- },
1347
- "engines": {
1348
- "node": ">=6.9.0"
1349
- },
1350
- "peerDependencies": {
1351
- "@babel/core": "^7.0.0-0"
1352
- }
1353
- },
1354
- "node_modules/@babel/plugin-transform-sticky-regex": {
1355
- "version": "7.16.5",
1356
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.5.tgz",
1357
- "integrity": "sha512-usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg==",
1358
- "dev": true,
1359
- "dependencies": {
1360
- "@babel/helper-plugin-utils": "^7.16.5"
1361
- },
1362
- "engines": {
1363
- "node": ">=6.9.0"
1364
- },
1365
- "peerDependencies": {
1366
- "@babel/core": "^7.0.0-0"
1367
- }
1368
- },
1369
- "node_modules/@babel/plugin-transform-template-literals": {
1370
- "version": "7.16.5",
1371
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.5.tgz",
1372
- "integrity": "sha512-gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ==",
1373
- "dev": true,
1374
- "dependencies": {
1375
- "@babel/helper-plugin-utils": "^7.16.5"
1376
- },
1377
- "engines": {
1378
- "node": ">=6.9.0"
1379
- },
1380
- "peerDependencies": {
1381
- "@babel/core": "^7.0.0-0"
1382
- }
1383
- },
1384
- "node_modules/@babel/plugin-transform-typeof-symbol": {
1385
- "version": "7.16.5",
1386
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.5.tgz",
1387
- "integrity": "sha512-ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ==",
1388
- "dev": true,
1389
- "dependencies": {
1390
- "@babel/helper-plugin-utils": "^7.16.5"
1391
- },
1392
- "engines": {
1393
- "node": ">=6.9.0"
1394
- },
1395
- "peerDependencies": {
1396
- "@babel/core": "^7.0.0-0"
1397
- }
1398
- },
1399
- "node_modules/@babel/plugin-transform-unicode-escapes": {
1400
- "version": "7.16.5",
1401
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.5.tgz",
1402
- "integrity": "sha512-shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q==",
1403
- "dev": true,
1404
- "dependencies": {
1405
- "@babel/helper-plugin-utils": "^7.16.5"
1406
- },
1407
- "engines": {
1408
- "node": ">=6.9.0"
1409
- },
1410
- "peerDependencies": {
1411
- "@babel/core": "^7.0.0-0"
1412
- }
1413
- },
1414
- "node_modules/@babel/plugin-transform-unicode-regex": {
1415
- "version": "7.16.5",
1416
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.5.tgz",
1417
- "integrity": "sha512-GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw==",
1418
- "dev": true,
1419
- "dependencies": {
1420
- "@babel/helper-create-regexp-features-plugin": "^7.16.0",
1421
- "@babel/helper-plugin-utils": "^7.16.5"
1422
- },
1423
- "engines": {
1424
- "node": ">=6.9.0"
1425
- },
1426
- "peerDependencies": {
1427
- "@babel/core": "^7.0.0-0"
1428
- }
1429
- },
1430
- "node_modules/@babel/preset-env": {
1431
- "version": "7.16.5",
1432
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.5.tgz",
1433
- "integrity": "sha512-MiJJW5pwsktG61NDxpZ4oJ1CKxM1ncam9bzRtx9g40/WkLRkxFP6mhpkYV0/DxcciqoiHicx291+eUQrXb/SfQ==",
1434
- "dev": true,
1435
- "dependencies": {
1436
- "@babel/compat-data": "^7.16.4",
1437
- "@babel/helper-compilation-targets": "^7.16.3",
1438
- "@babel/helper-plugin-utils": "^7.16.5",
1439
- "@babel/helper-validator-option": "^7.14.5",
1440
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.2",
1441
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.0",
1442
- "@babel/plugin-proposal-async-generator-functions": "^7.16.5",
1443
- "@babel/plugin-proposal-class-properties": "^7.16.5",
1444
- "@babel/plugin-proposal-class-static-block": "^7.16.5",
1445
- "@babel/plugin-proposal-dynamic-import": "^7.16.5",
1446
- "@babel/plugin-proposal-export-namespace-from": "^7.16.5",
1447
- "@babel/plugin-proposal-json-strings": "^7.16.5",
1448
- "@babel/plugin-proposal-logical-assignment-operators": "^7.16.5",
1449
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.5",
1450
- "@babel/plugin-proposal-numeric-separator": "^7.16.5",
1451
- "@babel/plugin-proposal-object-rest-spread": "^7.16.5",
1452
- "@babel/plugin-proposal-optional-catch-binding": "^7.16.5",
1453
- "@babel/plugin-proposal-optional-chaining": "^7.16.5",
1454
- "@babel/plugin-proposal-private-methods": "^7.16.5",
1455
- "@babel/plugin-proposal-private-property-in-object": "^7.16.5",
1456
- "@babel/plugin-proposal-unicode-property-regex": "^7.16.5",
1457
- "@babel/plugin-syntax-async-generators": "^7.8.4",
1458
- "@babel/plugin-syntax-class-properties": "^7.12.13",
1459
- "@babel/plugin-syntax-class-static-block": "^7.14.5",
1460
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
1461
- "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
1462
- "@babel/plugin-syntax-json-strings": "^7.8.3",
1463
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
1464
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
1465
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
1466
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
1467
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
1468
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
1469
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
1470
- "@babel/plugin-syntax-top-level-await": "^7.14.5",
1471
- "@babel/plugin-transform-arrow-functions": "^7.16.5",
1472
- "@babel/plugin-transform-async-to-generator": "^7.16.5",
1473
- "@babel/plugin-transform-block-scoped-functions": "^7.16.5",
1474
- "@babel/plugin-transform-block-scoping": "^7.16.5",
1475
- "@babel/plugin-transform-classes": "^7.16.5",
1476
- "@babel/plugin-transform-computed-properties": "^7.16.5",
1477
- "@babel/plugin-transform-destructuring": "^7.16.5",
1478
- "@babel/plugin-transform-dotall-regex": "^7.16.5",
1479
- "@babel/plugin-transform-duplicate-keys": "^7.16.5",
1480
- "@babel/plugin-transform-exponentiation-operator": "^7.16.5",
1481
- "@babel/plugin-transform-for-of": "^7.16.5",
1482
- "@babel/plugin-transform-function-name": "^7.16.5",
1483
- "@babel/plugin-transform-literals": "^7.16.5",
1484
- "@babel/plugin-transform-member-expression-literals": "^7.16.5",
1485
- "@babel/plugin-transform-modules-amd": "^7.16.5",
1486
- "@babel/plugin-transform-modules-commonjs": "^7.16.5",
1487
- "@babel/plugin-transform-modules-systemjs": "^7.16.5",
1488
- "@babel/plugin-transform-modules-umd": "^7.16.5",
1489
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.5",
1490
- "@babel/plugin-transform-new-target": "^7.16.5",
1491
- "@babel/plugin-transform-object-super": "^7.16.5",
1492
- "@babel/plugin-transform-parameters": "^7.16.5",
1493
- "@babel/plugin-transform-property-literals": "^7.16.5",
1494
- "@babel/plugin-transform-regenerator": "^7.16.5",
1495
- "@babel/plugin-transform-reserved-words": "^7.16.5",
1496
- "@babel/plugin-transform-shorthand-properties": "^7.16.5",
1497
- "@babel/plugin-transform-spread": "^7.16.5",
1498
- "@babel/plugin-transform-sticky-regex": "^7.16.5",
1499
- "@babel/plugin-transform-template-literals": "^7.16.5",
1500
- "@babel/plugin-transform-typeof-symbol": "^7.16.5",
1501
- "@babel/plugin-transform-unicode-escapes": "^7.16.5",
1502
- "@babel/plugin-transform-unicode-regex": "^7.16.5",
1503
- "@babel/preset-modules": "^0.1.5",
1504
- "@babel/types": "^7.16.0",
1505
- "babel-plugin-polyfill-corejs2": "^0.3.0",
1506
- "babel-plugin-polyfill-corejs3": "^0.4.0",
1507
- "babel-plugin-polyfill-regenerator": "^0.3.0",
1508
- "core-js-compat": "^3.19.1",
1509
- "semver": "^6.3.0"
1510
- },
1511
- "engines": {
1512
- "node": ">=6.9.0"
1513
- },
1514
- "peerDependencies": {
1515
- "@babel/core": "^7.0.0-0"
1516
- }
1517
- },
1518
- "node_modules/@babel/preset-modules": {
1519
- "version": "0.1.5",
1520
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
1521
- "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
1522
- "dev": true,
1523
- "dependencies": {
1524
- "@babel/helper-plugin-utils": "^7.0.0",
1525
- "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
1526
- "@babel/plugin-transform-dotall-regex": "^7.4.4",
1527
- "@babel/types": "^7.4.4",
1528
- "esutils": "^2.0.2"
1529
- },
1530
- "peerDependencies": {
1531
- "@babel/core": "^7.0.0-0"
1532
- }
1533
- },
1534
- "node_modules/@babel/runtime": {
1535
- "version": "7.16.5",
1536
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.5.tgz",
1537
- "integrity": "sha512-TXWihFIS3Pyv5hzR7j6ihmeLkZfrXGxAr5UfSl8CHf+6q/wpiYDkUau0czckpYG8QmnCIuPpdLtuA9VmuGGyMA==",
1538
- "dev": true,
1539
- "dependencies": {
1540
- "regenerator-runtime": "^0.13.4"
1541
- },
1542
- "engines": {
1543
- "node": ">=6.9.0"
1544
- }
1545
- },
1546
- "node_modules/@babel/runtime/node_modules/regenerator-runtime": {
1547
- "version": "0.13.9",
1548
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
1549
- "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==",
1550
- "dev": true
1551
- },
1552
- "node_modules/@babel/template": {
1553
- "version": "7.16.0",
1554
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz",
1555
- "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==",
1556
- "dev": true,
1557
- "dependencies": {
1558
- "@babel/code-frame": "^7.16.0",
1559
- "@babel/parser": "^7.16.0",
1560
- "@babel/types": "^7.16.0"
1561
- },
1562
- "engines": {
1563
- "node": ">=6.9.0"
1564
- }
1565
- },
1566
- "node_modules/@babel/traverse": {
1567
- "version": "7.16.5",
1568
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.5.tgz",
1569
- "integrity": "sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ==",
1570
- "dev": true,
1571
- "dependencies": {
1572
- "@babel/code-frame": "^7.16.0",
1573
- "@babel/generator": "^7.16.5",
1574
- "@babel/helper-environment-visitor": "^7.16.5",
1575
- "@babel/helper-function-name": "^7.16.0",
1576
- "@babel/helper-hoist-variables": "^7.16.0",
1577
- "@babel/helper-split-export-declaration": "^7.16.0",
1578
- "@babel/parser": "^7.16.5",
1579
- "@babel/types": "^7.16.0",
1580
- "debug": "^4.1.0",
1581
- "globals": "^11.1.0"
1582
- },
1583
- "engines": {
1584
- "node": ">=6.9.0"
1585
- }
1586
- },
1587
- "node_modules/@babel/types": {
1588
- "version": "7.16.0",
1589
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz",
1590
- "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==",
1591
- "dev": true,
1592
- "dependencies": {
1593
- "@babel/helper-validator-identifier": "^7.15.7",
1594
- "to-fast-properties": "^2.0.0"
1595
- },
1596
- "engines": {
1597
- "node": ">=6.9.0"
1598
- }
1599
- },
1600
- "node_modules/@gar/promisify": {
1601
- "version": "1.1.2",
1602
- "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz",
1603
- "integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==",
1604
- "dev": true
1605
- },
1606
- "node_modules/@kwsites/file-exists": {
1607
- "version": "1.1.1",
1608
- "resolved": "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz",
1609
- "integrity": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==",
1610
- "dev": true,
1611
- "dependencies": {
1612
- "debug": "^4.1.1"
1613
- }
1614
- },
1615
- "node_modules/@kwsites/promise-deferred": {
1616
- "version": "1.1.1",
1617
- "resolved": "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz",
1618
- "integrity": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==",
1619
- "dev": true
1620
- },
1621
- "node_modules/@nodelib/fs.scandir": {
1622
- "version": "2.1.5",
1623
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
1624
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
1625
- "dev": true,
1626
- "dependencies": {
1627
- "@nodelib/fs.stat": "2.0.5",
1628
- "run-parallel": "^1.1.9"
1629
- },
1630
- "engines": {
1631
- "node": ">= 8"
1632
- }
1633
- },
1634
- "node_modules/@nodelib/fs.stat": {
1635
- "version": "2.0.5",
1636
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
1637
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
1638
- "dev": true,
1639
- "engines": {
1640
- "node": ">= 8"
1641
- }
1642
- },
1643
- "node_modules/@nodelib/fs.walk": {
1644
- "version": "1.2.8",
1645
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
1646
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
1647
- "dev": true,
1648
- "dependencies": {
1649
- "@nodelib/fs.scandir": "2.1.5",
1650
- "fastq": "^1.6.0"
1651
- },
1652
- "engines": {
1653
- "node": ">= 8"
1654
- }
1655
- },
1656
- "node_modules/@npmcli/fs": {
1657
- "version": "1.1.0",
1658
- "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.0.tgz",
1659
- "integrity": "sha512-VhP1qZLXcrXRIaPoqb4YA55JQxLNF3jNR4T55IdOJa3+IFJKNYHtPvtXx8slmeMavj37vCzCfrqQM1vWLsYKLA==",
1660
- "dev": true,
1661
- "dependencies": {
1662
- "@gar/promisify": "^1.0.1",
1663
- "semver": "^7.3.5"
1664
- },
1665
- "engines": {
1666
- "node": "^12.13.0 || ^14.15.0 || >=16"
1667
- }
1668
- },
1669
- "node_modules/@npmcli/fs/node_modules/semver": {
1670
- "version": "7.3.5",
1671
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
1672
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
1673
- "dev": true,
1674
- "dependencies": {
1675
- "lru-cache": "^6.0.0"
1676
- },
1677
- "bin": {
1678
- "semver": "bin/semver.js"
1679
- },
1680
- "engines": {
1681
- "node": ">=10"
1682
- }
1683
- },
1684
- "node_modules/@npmcli/git": {
1685
- "version": "2.1.0",
1686
- "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz",
1687
- "integrity": "sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==",
1688
- "dev": true,
1689
- "dependencies": {
1690
- "@npmcli/promise-spawn": "^1.3.2",
1691
- "lru-cache": "^6.0.0",
1692
- "mkdirp": "^1.0.4",
1693
- "npm-pick-manifest": "^6.1.1",
1694
- "promise-inflight": "^1.0.1",
1695
- "promise-retry": "^2.0.1",
1696
- "semver": "^7.3.5",
1697
- "which": "^2.0.2"
1698
- }
1699
- },
1700
- "node_modules/@npmcli/git/node_modules/mkdirp": {
1701
- "version": "1.0.4",
1702
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
1703
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
1704
- "dev": true,
1705
- "bin": {
1706
- "mkdirp": "bin/cmd.js"
1707
- },
1708
- "engines": {
1709
- "node": ">=10"
1710
- }
1711
- },
1712
- "node_modules/@npmcli/git/node_modules/semver": {
1713
- "version": "7.3.5",
1714
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
1715
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
1716
- "dev": true,
1717
- "dependencies": {
1718
- "lru-cache": "^6.0.0"
1719
- },
1720
- "bin": {
1721
- "semver": "bin/semver.js"
1722
- },
1723
- "engines": {
1724
- "node": ">=10"
1725
- }
1726
- },
1727
- "node_modules/@npmcli/git/node_modules/which": {
1728
- "version": "2.0.2",
1729
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
1730
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
1731
- "dev": true,
1732
- "dependencies": {
1733
- "isexe": "^2.0.0"
1734
- },
1735
- "bin": {
1736
- "node-which": "bin/node-which"
1737
- },
1738
- "engines": {
1739
- "node": ">= 8"
1740
- }
1741
- },
1742
- "node_modules/@npmcli/installed-package-contents": {
1743
- "version": "1.0.7",
1744
- "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz",
1745
- "integrity": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==",
1746
- "dev": true,
1747
- "dependencies": {
1748
- "npm-bundled": "^1.1.1",
1749
- "npm-normalize-package-bin": "^1.0.1"
1750
- },
1751
- "bin": {
1752
- "installed-package-contents": "index.js"
1753
- },
1754
- "engines": {
1755
- "node": ">= 10"
1756
- }
1757
- },
1758
- "node_modules/@npmcli/move-file": {
1759
- "version": "1.1.2",
1760
- "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
1761
- "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
1762
- "dev": true,
1763
- "dependencies": {
1764
- "mkdirp": "^1.0.4",
1765
- "rimraf": "^3.0.2"
1766
- },
1767
- "engines": {
1768
- "node": ">=10"
1769
- }
1770
- },
1771
- "node_modules/@npmcli/move-file/node_modules/mkdirp": {
1772
- "version": "1.0.4",
1773
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
1774
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
1775
- "dev": true,
1776
- "bin": {
1777
- "mkdirp": "bin/cmd.js"
1778
- },
1779
- "engines": {
1780
- "node": ">=10"
1781
- }
1782
- },
1783
- "node_modules/@npmcli/node-gyp": {
1784
- "version": "1.0.3",
1785
- "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz",
1786
- "integrity": "sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==",
1787
- "dev": true
1788
- },
1789
- "node_modules/@npmcli/promise-spawn": {
1790
- "version": "1.3.2",
1791
- "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz",
1792
- "integrity": "sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==",
1793
- "dev": true,
1794
- "dependencies": {
1795
- "infer-owner": "^1.0.4"
1796
- }
1797
- },
1798
- "node_modules/@npmcli/run-script": {
1799
- "version": "2.0.0",
1800
- "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-2.0.0.tgz",
1801
- "integrity": "sha512-fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig==",
1802
- "dev": true,
1803
- "dependencies": {
1804
- "@npmcli/node-gyp": "^1.0.2",
1805
- "@npmcli/promise-spawn": "^1.3.2",
1806
- "node-gyp": "^8.2.0",
1807
- "read-package-json-fast": "^2.0.1"
1808
- }
1809
- },
1810
- "node_modules/@sindresorhus/is": {
1811
- "version": "2.1.1",
1812
- "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-2.1.1.tgz",
1813
- "integrity": "sha512-/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg==",
1814
- "dev": true,
1815
- "engines": {
1816
- "node": ">=10"
1817
- },
1818
- "funding": {
1819
- "url": "https://github.com/sindresorhus/is?sponsor=1"
1820
- }
1821
- },
1822
- "node_modules/@szmarczak/http-timer": {
1823
- "version": "4.0.5",
1824
- "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz",
1825
- "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==",
1826
- "dev": true,
1827
- "dependencies": {
1828
- "defer-to-connect": "^2.0.0"
1829
- },
1830
- "engines": {
1831
- "node": ">=10"
1832
- }
1833
- },
1834
- "node_modules/@tootallnate/once": {
1835
- "version": "1.1.2",
1836
- "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
1837
- "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
1838
- "dev": true,
1839
- "engines": {
1840
- "node": ">= 6"
1841
- }
1842
- },
1843
- "node_modules/@types/cacheable-request": {
1844
- "version": "6.0.1",
1845
- "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz",
1846
- "integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==",
1847
- "dev": true,
1848
- "dependencies": {
1849
- "@types/http-cache-semantics": "*",
1850
- "@types/keyv": "*",
1851
- "@types/node": "*",
1852
- "@types/responselike": "*"
1853
- }
1854
- },
1855
- "node_modules/@types/expect": {
1856
- "version": "1.20.4",
1857
- "resolved": "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz",
1858
- "integrity": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==",
1859
- "dev": true
1860
- },
1861
- "node_modules/@types/http-cache-semantics": {
1862
- "version": "4.0.0",
1863
- "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz",
1864
- "integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==",
1865
- "dev": true
1866
- },
1867
- "node_modules/@types/keyv": {
1868
- "version": "3.1.1",
1869
- "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz",
1870
- "integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==",
1871
- "dev": true,
1872
- "dependencies": {
1873
- "@types/node": "*"
1874
- }
1875
- },
1876
- "node_modules/@types/node": {
1877
- "version": "14.18.2",
1878
- "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.2.tgz",
1879
- "integrity": "sha512-fqtSN5xn/bBzDxMT77C1rJg6CsH/R49E7qsGuvdPJa20HtV5zSTuLJPNfnlyVH3wauKnkHdLggTVkOW/xP9oQg==",
1880
- "dev": true
1881
- },
1882
- "node_modules/@types/responselike": {
1883
- "version": "1.0.0",
1884
- "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz",
1885
- "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==",
1886
- "dev": true,
1887
- "dependencies": {
1888
- "@types/node": "*"
1889
- }
1890
- },
1891
- "node_modules/@types/vinyl": {
1892
- "version": "2.0.6",
1893
- "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.6.tgz",
1894
- "integrity": "sha512-ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g==",
1895
- "dev": true,
1896
- "dependencies": {
1897
- "@types/expect": "^1.20.4",
1898
- "@types/node": "*"
1899
- }
1900
- },
1901
- "node_modules/@wordpress/babel-plugin-makepot": {
1902
- "version": "4.2.0",
1903
- "resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-makepot/-/babel-plugin-makepot-4.2.0.tgz",
1904
- "integrity": "sha512-AkB5I+OGfvCarKTwTIkK8ZjdIqvmYEnsLQAa6USUosdraFGbgKMSZBDhL1VuyC7LqQ2eIu7RyClLukoAN1L0GA==",
1905
- "dev": true,
1906
- "dependencies": {
1907
- "gettext-parser": "^1.3.1",
1908
- "lodash": "^4.17.21"
1909
- },
1910
- "engines": {
1911
- "node": ">=12"
1912
- },
1913
- "peerDependencies": {
1914
- "@babel/core": "^7.12.9"
1915
- }
1916
- },
1917
- "node_modules/@wordpress/env": {
1918
- "version": "4.1.3",
1919
- "resolved": "https://registry.npmjs.org/@wordpress/env/-/env-4.1.3.tgz",
1920
- "integrity": "sha512-mU+MayYal+GghtbV5yGvBZPpVqm1L9ozcWqqiC9sLyMGrYKWWTMf0TRTaKBSo5DoJ4DNVCVbJkRS3MzGuCfSbQ==",
1921
- "dev": true,
1922
- "dependencies": {
1923
- "chalk": "^4.0.0",
1924
- "copy-dir": "^1.3.0",
1925
- "docker-compose": "^0.22.2",
1926
- "extract-zip": "^1.6.7",
1927
- "got": "^10.7.0",
1928
- "inquirer": "^7.1.0",
1929
- "js-yaml": "^3.13.1",
1930
- "ora": "^4.0.2",
1931
- "rimraf": "^3.0.2",
1932
- "simple-git": "^2.35.0",
1933
- "terminal-link": "^2.0.0",
1934
- "yargs": "^14.0.0"
1935
- },
1936
- "bin": {
1937
- "wp-env": "bin/wp-env"
1938
- }
1939
- },
1940
- "node_modules/@wordpress/env/node_modules/ansi-styles": {
1941
- "version": "4.3.0",
1942
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1943
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1944
- "dev": true,
1945
- "dependencies": {
1946
- "color-convert": "^2.0.1"
1947
- },
1948
- "engines": {
1949
- "node": ">=8"
1950
- },
1951
- "funding": {
1952
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1953
- }
1954
- },
1955
- "node_modules/@wordpress/env/node_modules/chalk": {
1956
- "version": "4.1.0",
1957
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
1958
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
1959
- "dev": true,
1960
- "dependencies": {
1961
- "ansi-styles": "^4.1.0",
1962
- "supports-color": "^7.1.0"
1963
- },
1964
- "engines": {
1965
- "node": ">=10"
1966
- },
1967
- "funding": {
1968
- "url": "https://github.com/chalk/chalk?sponsor=1"
1969
- }
1970
- },
1971
- "node_modules/@wordpress/env/node_modules/color-convert": {
1972
- "version": "2.0.1",
1973
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1974
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1975
- "dev": true,
1976
- "dependencies": {
1977
- "color-name": "~1.1.4"
1978
- },
1979
- "engines": {
1980
- "node": ">=7.0.0"
1981
- }
1982
- },
1983
- "node_modules/@wordpress/env/node_modules/color-name": {
1984
- "version": "1.1.4",
1985
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1986
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1987
- "dev": true
1988
- },
1989
- "node_modules/@wordpress/env/node_modules/has-flag": {
1990
- "version": "4.0.0",
1991
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1992
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1993
- "dev": true,
1994
- "engines": {
1995
- "node": ">=8"
1996
- }
1997
- },
1998
- "node_modules/@wordpress/env/node_modules/supports-color": {
1999
- "version": "7.2.0",
2000
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2001
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2002
- "dev": true,
2003
- "dependencies": {
2004
- "has-flag": "^4.0.0"
2005
- },
2006
- "engines": {
2007
- "node": ">=8"
2008
- }
2009
- },
2010
- "node_modules/abbrev": {
2011
- "version": "1.1.1",
2012
- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
2013
- "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
2014
- "dev": true
2015
- },
2016
- "node_modules/agent-base": {
2017
- "version": "6.0.2",
2018
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
2019
- "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
2020
- "dev": true,
2021
- "dependencies": {
2022
- "debug": "4"
2023
- },
2024
- "engines": {
2025
- "node": ">= 6.0.0"
2026
- }
2027
- },
2028
- "node_modules/agentkeepalive": {
2029
- "version": "4.1.4",
2030
- "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.1.4.tgz",
2031
- "integrity": "sha512-+V/rGa3EuU74H6wR04plBb7Ks10FbtUQgRj/FQOG7uUIEuaINI+AiqJR1k6t3SVNs7o7ZjIdus6706qqzVq8jQ==",
2032
- "dev": true,
2033
- "dependencies": {
2034
- "debug": "^4.1.0",
2035
- "depd": "^1.1.2",
2036
- "humanize-ms": "^1.2.1"
2037
- },
2038
- "engines": {
2039
- "node": ">= 8.0.0"
2040
- }
2041
- },
2042
- "node_modules/aggregate-error": {
2043
- "version": "3.1.0",
2044
- "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
2045
- "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
2046
- "dev": true,
2047
- "dependencies": {
2048
- "clean-stack": "^2.0.0",
2049
- "indent-string": "^4.0.0"
2050
- },
2051
- "engines": {
2052
- "node": ">=8"
2053
- }
2054
- },
2055
- "node_modules/amdefine": {
2056
- "version": "1.0.1",
2057
- "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
2058
- "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
2059
- "dev": true,
2060
- "engines": {
2061
- "node": ">=0.4.2"
2062
- }
2063
- },
2064
- "node_modules/ansi-align": {
2065
- "version": "3.0.0",
2066
- "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz",
2067
- "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==",
2068
- "dev": true,
2069
- "dependencies": {
2070
- "string-width": "^3.0.0"
2071
- }
2072
- },
2073
- "node_modules/ansi-align/node_modules/ansi-regex": {
2074
- "version": "4.1.0",
2075
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
2076
- "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
2077
- "dev": true,
2078
- "engines": {
2079
- "node": ">=6"
2080
- }
2081
- },
2082
- "node_modules/ansi-align/node_modules/emoji-regex": {
2083
- "version": "7.0.3",
2084
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
2085
- "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
2086
- "dev": true
2087
- },
2088
- "node_modules/ansi-align/node_modules/is-fullwidth-code-point": {
2089
- "version": "2.0.0",
2090
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
2091
- "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
2092
- "dev": true,
2093
- "engines": {
2094
- "node": ">=4"
2095
- }
2096
- },
2097
- "node_modules/ansi-align/node_modules/string-width": {
2098
- "version": "3.1.0",
2099
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
2100
- "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
2101
- "dev": true,
2102
- "dependencies": {
2103
- "emoji-regex": "^7.0.1",
2104
- "is-fullwidth-code-point": "^2.0.0",
2105
- "strip-ansi": "^5.1.0"
2106
- },
2107
- "engines": {
2108
- "node": ">=6"
2109
- }
2110
- },
2111
- "node_modules/ansi-align/node_modules/strip-ansi": {
2112
- "version": "5.2.0",
2113
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
2114
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
2115
- "dev": true,
2116
- "dependencies": {
2117
- "ansi-regex": "^4.1.0"
2118
- },
2119
- "engines": {
2120
- "node": ">=6"
2121
- }
2122
- },
2123
- "node_modules/ansi-colors": {
2124
- "version": "1.1.0",
2125
- "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz",
2126
- "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==",
2127
- "dev": true,
2128
- "dependencies": {
2129
- "ansi-wrap": "^0.1.0"
2130
- },
2131
- "engines": {
2132
- "node": ">=0.10.0"
2133
- }
2134
- },
2135
- "node_modules/ansi-cyan": {
2136
- "version": "0.1.1",
2137
- "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz",
2138
- "integrity": "sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=",
2139
- "dev": true,
2140
- "dependencies": {
2141
- "ansi-wrap": "0.1.0"
2142
- },
2143
- "engines": {
2144
- "node": ">=0.10.0"
2145
- }
2146
- },
2147
- "node_modules/ansi-escapes": {
2148
- "version": "4.3.2",
2149
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
2150
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
2151
- "dev": true,
2152
- "dependencies": {
2153
- "type-fest": "^0.21.3"
2154
- },
2155
- "engines": {
2156
- "node": ">=8"
2157
- },
2158
- "funding": {
2159
- "url": "https://github.com/sponsors/sindresorhus"
2160
- }
2161
- },
2162
- "node_modules/ansi-escapes/node_modules/type-fest": {
2163
- "version": "0.21.3",
2164
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
2165
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
2166
- "dev": true,
2167
- "engines": {
2168
- "node": ">=10"
2169
- },
2170
- "funding": {
2171
- "url": "https://github.com/sponsors/sindresorhus"
2172
- }
2173
- },
2174
- "node_modules/ansi-gray": {
2175
- "version": "0.1.1",
2176
- "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz",
2177
- "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=",
2178
- "dev": true,
2179
- "dependencies": {
2180
- "ansi-wrap": "0.1.0"
2181
- },
2182
- "engines": {
2183
- "node": ">=0.10.0"
2184
- }
2185
- },
2186
- "node_modules/ansi-red": {
2187
- "version": "0.1.1",
2188
- "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz",
2189
- "integrity": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=",
2190
- "dev": true,
2191
- "dependencies": {
2192
- "ansi-wrap": "0.1.0"
2193
- },
2194
- "engines": {
2195
- "node": ">=0.10.0"
2196
- }
2197
- },
2198
- "node_modules/ansi-regex": {
2199
- "version": "5.0.1",
2200
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
2201
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
2202
- "dev": true,
2203
- "engines": {
2204
- "node": ">=8"
2205
- }
2206
- },
2207
- "node_modules/ansi-styles": {
2208
- "version": "3.2.1",
2209
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
2210
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
2211
- "dev": true,
2212
- "dependencies": {
2213
- "color-convert": "^1.9.0"
2214
- },
2215
- "engines": {
2216
- "node": ">=4"
2217
- }
2218
- },
2219
- "node_modules/ansi-wrap": {
2220
- "version": "0.1.0",
2221
- "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
2222
- "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=",
2223
- "dev": true,
2224
- "engines": {
2225
- "node": ">=0.10.0"
2226
- }
2227
- },
2228
- "node_modules/anymatch": {
2229
- "version": "2.0.0",
2230
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
2231
- "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
2232
- "dev": true,
2233
- "dependencies": {
2234
- "micromatch": "^3.1.4",
2235
- "normalize-path": "^2.1.1"
2236
- }
2237
- },
2238
- "node_modules/anymatch/node_modules/normalize-path": {
2239
- "version": "2.1.1",
2240
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
2241
- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
2242
- "dev": true,
2243
- "dependencies": {
2244
- "remove-trailing-separator": "^1.0.1"
2245
- },
2246
- "engines": {
2247
- "node": ">=0.10.0"
2248
- }
2249
- },
2250
- "node_modules/append-buffer": {
2251
- "version": "1.0.2",
2252
- "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz",
2253
- "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=",
2254
- "dev": true,
2255
- "dependencies": {
2256
- "buffer-equal": "^1.0.0"
2257
- },
2258
- "engines": {
2259
- "node": ">=0.10.0"
2260
- }
2261
- },
2262
- "node_modules/aproba": {
2263
- "version": "2.0.0",
2264
- "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
2265
- "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
2266
- "dev": true
2267
- },
2268
- "node_modules/archy": {
2269
- "version": "1.0.0",
2270
- "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
2271
- "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=",
2272
- "dev": true
2273
- },
2274
- "node_modules/are-we-there-yet": {
2275
- "version": "2.0.0",
2276
- "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
2277
- "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
2278
- "dev": true,
2279
- "dependencies": {
2280
- "delegates": "^1.0.0",
2281
- "readable-stream": "^3.6.0"
2282
- },
2283
- "engines": {
2284
- "node": ">=10"
2285
- }
2286
- },
2287
- "node_modules/are-we-there-yet/node_modules/readable-stream": {
2288
- "version": "3.6.0",
2289
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
2290
- "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
2291
- "dev": true,
2292
- "dependencies": {
2293
- "inherits": "^2.0.3",
2294
- "string_decoder": "^1.1.1",
2295
- "util-deprecate": "^1.0.1"
2296
- },
2297
- "engines": {
2298
- "node": ">= 6"
2299
- }
2300
- },
2301
- "node_modules/argparse": {
2302
- "version": "1.0.10",
2303
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
2304
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
2305
- "dev": true,
2306
- "dependencies": {
2307
- "sprintf-js": "~1.0.2"
2308
- }
2309
- },
2310
- "node_modules/arr-diff": {
2311
- "version": "4.0.0",
2312
- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
2313
- "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
2314
- "dev": true,
2315
- "engines": {
2316
- "node": ">=0.10.0"
2317
- }
2318
- },
2319
- "node_modules/arr-filter": {
2320
- "version": "1.1.2",
2321
- "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz",
2322
- "integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=",
2323
- "dev": true,
2324
- "dependencies": {
2325
- "make-iterator": "^1.0.0"
2326
- },
2327
- "engines": {
2328
- "node": ">=0.10.0"
2329
- }
2330
- },
2331
- "node_modules/arr-flatten": {
2332
- "version": "1.1.0",
2333
- "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
2334
- "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
2335
- "dev": true,
2336
- "engines": {
2337
- "node": ">=0.10.0"
2338
- }
2339
- },
2340
- "node_modules/arr-map": {
2341
- "version": "2.0.2",
2342
- "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz",
2343
- "integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=",
2344
- "dev": true,
2345
- "dependencies": {
2346
- "make-iterator": "^1.0.0"
2347
- },
2348
- "engines": {
2349
- "node": ">=0.10.0"
2350
- }
2351
- },
2352
- "node_modules/arr-union": {
2353
- "version": "3.1.0",
2354
- "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
2355
- "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
2356
- "dev": true,
2357
- "engines": {
2358
- "node": ">=0.10.0"
2359
- }
2360
- },
2361
- "node_modules/array-each": {
2362
- "version": "1.0.1",
2363
- "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz",
2364
- "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=",
2365
- "dev": true,
2366
- "engines": {
2367
- "node": ">=0.10.0"
2368
- }
2369
- },
2370
- "node_modules/array-find-index": {
2371
- "version": "1.0.2",
2372
- "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
2373
- "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=",
2374
- "dev": true,
2375
- "engines": {
2376
- "node": ">=0.10.0"
2377
- }
2378
- },
2379
- "node_modules/array-initial": {
2380
- "version": "1.1.0",
2381
- "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz",
2382
- "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=",
2383
- "dev": true,
2384
- "dependencies": {
2385
- "array-slice": "^1.0.0",
2386
- "is-number": "^4.0.0"
2387
- },
2388
- "engines": {
2389
- "node": ">=0.10.0"
2390
- }
2391
- },
2392
- "node_modules/array-initial/node_modules/is-number": {
2393
- "version": "4.0.0",
2394
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
2395
- "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==",
2396
- "dev": true,
2397
- "engines": {
2398
- "node": ">=0.10.0"
2399
- }
2400
- },
2401
- "node_modules/array-last": {
2402
- "version": "1.3.0",
2403
- "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz",
2404
- "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==",
2405
- "dev": true,
2406
- "dependencies": {
2407
- "is-number": "^4.0.0"
2408
- },
2409
- "engines": {
2410
- "node": ">=0.10.0"
2411
- }
2412
- },
2413
- "node_modules/array-last/node_modules/is-number": {
2414
- "version": "4.0.0",
2415
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
2416
- "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==",
2417
- "dev": true,
2418
- "engines": {
2419
- "node": ">=0.10.0"
2420
- }
2421
- },
2422
- "node_modules/array-slice": {
2423
- "version": "1.1.0",
2424
- "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz",
2425
- "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==",
2426
- "dev": true,
2427
- "engines": {
2428
- "node": ">=0.10.0"
2429
- }
2430
- },
2431
- "node_modules/array-sort": {
2432
- "version": "1.0.0",
2433
- "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz",
2434
- "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==",
2435
- "dev": true,
2436
- "dependencies": {
2437
- "default-compare": "^1.0.0",
2438
- "get-value": "^2.0.6",
2439
- "kind-of": "^5.0.2"
2440
- },
2441
- "engines": {
2442
- "node": ">=0.10.0"
2443
- }
2444
- },
2445
- "node_modules/array-sort/node_modules/kind-of": {
2446
- "version": "5.1.0",
2447
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
2448
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
2449
- "dev": true,
2450
- "engines": {
2451
- "node": ">=0.10.0"
2452
- }
2453
- },
2454
- "node_modules/array-union": {
2455
- "version": "2.1.0",
2456
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
2457
- "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
2458
- "dev": true,
2459
- "engines": {
2460
- "node": ">=8"
2461
- }
2462
- },
2463
- "node_modules/array-unique": {
2464
- "version": "0.3.2",
2465
- "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
2466
- "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
2467
- "dev": true,
2468
- "engines": {
2469
- "node": ">=0.10.0"
2470
- }
2471
- },
2472
- "node_modules/assign-symbols": {
2473
- "version": "1.0.0",
2474
- "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
2475
- "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
2476
- "dev": true,
2477
- "engines": {
2478
- "node": ">=0.10.0"
2479
- }
2480
- },
2481
- "node_modules/async-done": {
2482
- "version": "1.3.2",
2483
- "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz",
2484
- "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==",
2485
- "dev": true,
2486
- "dependencies": {
2487
- "end-of-stream": "^1.1.0",
2488
- "once": "^1.3.2",
2489
- "process-nextick-args": "^2.0.0",
2490
- "stream-exhaust": "^1.0.1"
2491
- },
2492
- "engines": {
2493
- "node": ">= 0.10"
2494
- }
2495
- },
2496
- "node_modules/async-each": {
2497
- "version": "1.0.3",
2498
- "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
2499
- "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==",
2500
- "dev": true
2501
- },
2502
- "node_modules/async-settle": {
2503
- "version": "1.0.0",
2504
- "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz",
2505
- "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=",
2506
- "dev": true,
2507
- "dependencies": {
2508
- "async-done": "^1.2.2"
2509
- },
2510
- "engines": {
2511
- "node": ">= 0.10"
2512
- }
2513
- },
2514
- "node_modules/atob": {
2515
- "version": "2.1.2",
2516
- "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
2517
- "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
2518
- "dev": true,
2519
- "bin": {
2520
- "atob": "bin/atob.js"
2521
- },
2522
- "engines": {
2523
- "node": ">= 4.5.0"
2524
- }
2525
- },
2526
- "node_modules/autoprefixer": {
2527
- "version": "10.4.0",
2528
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.0.tgz",
2529
- "integrity": "sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA==",
2530
- "dev": true,
2531
- "dependencies": {
2532
- "browserslist": "^4.17.5",
2533
- "caniuse-lite": "^1.0.30001272",
2534
- "fraction.js": "^4.1.1",
2535
- "normalize-range": "^0.1.2",
2536
- "picocolors": "^1.0.0",
2537
- "postcss-value-parser": "^4.1.0"
2538
- },
2539
- "bin": {
2540
- "autoprefixer": "bin/autoprefixer"
2541
- },
2542
- "engines": {
2543
- "node": "^10 || ^12 || >=14"
2544
- },
2545
- "funding": {
2546
- "type": "opencollective",
2547
- "url": "https://opencollective.com/postcss/"
2548
- },
2549
- "peerDependencies": {
2550
- "postcss": "^8.1.0"
2551
- }
2552
- },
2553
- "node_modules/babel-helper-builder-react-jsx": {
2554
- "version": "6.26.0",
2555
- "resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz",
2556
- "integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=",
2557
- "dev": true,
2558
- "dependencies": {
2559
- "babel-runtime": "^6.26.0",
2560
- "babel-types": "^6.26.0",
2561
- "esutils": "^2.0.2"
2562
- }
2563
- },
2564
- "node_modules/babel-plugin-dynamic-import-node": {
2565
- "version": "2.3.3",
2566
- "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
2567
- "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
2568
- "dev": true,
2569
- "dependencies": {
2570
- "object.assign": "^4.1.0"
2571
- }
2572
- },
2573
- "node_modules/babel-plugin-polyfill-corejs2": {
2574
- "version": "0.3.0",
2575
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz",
2576
- "integrity": "sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==",
2577
- "dev": true,
2578
- "dependencies": {
2579
- "@babel/compat-data": "^7.13.11",
2580
- "@babel/helper-define-polyfill-provider": "^0.3.0",
2581
- "semver": "^6.1.1"
2582
- },
2583
- "peerDependencies": {
2584
- "@babel/core": "^7.0.0-0"
2585
- }
2586
- },
2587
- "node_modules/babel-plugin-polyfill-corejs3": {
2588
- "version": "0.4.0",
2589
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz",
2590
- "integrity": "sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==",
2591
- "dev": true,
2592
- "dependencies": {
2593
- "@babel/helper-define-polyfill-provider": "^0.3.0",
2594
- "core-js-compat": "^3.18.0"
2595
- },
2596
- "peerDependencies": {
2597
- "@babel/core": "^7.0.0-0"
2598
- }
2599
- },
2600
- "node_modules/babel-plugin-polyfill-regenerator": {
2601
- "version": "0.3.0",
2602
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz",
2603
- "integrity": "sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==",
2604
- "dev": true,
2605
- "dependencies": {
2606
- "@babel/helper-define-polyfill-provider": "^0.3.0"
2607
- },
2608
- "peerDependencies": {
2609
- "@babel/core": "^7.0.0-0"
2610
- }
2611
- },
2612
- "node_modules/babel-plugin-syntax-jsx": {
2613
- "version": "6.18.0",
2614
- "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
2615
- "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=",
2616
- "dev": true
2617
- },
2618
- "node_modules/babel-plugin-transform-react-jsx": {
2619
- "version": "6.24.1",
2620
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz",
2621
- "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=",
2622
- "dev": true,
2623
- "dependencies": {
2624
- "babel-helper-builder-react-jsx": "^6.24.1",
2625
- "babel-plugin-syntax-jsx": "^6.8.0",
2626
- "babel-runtime": "^6.22.0"
2627
- }
2628
- },
2629
- "node_modules/babel-runtime": {
2630
- "version": "6.26.0",
2631
- "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
2632
- "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
2633
- "dev": true,
2634
- "dependencies": {
2635
- "core-js": "^2.4.0",
2636
- "regenerator-runtime": "^0.11.0"
2637
- }
2638
- },
2639
- "node_modules/babel-types": {
2640
- "version": "6.26.0",
2641
- "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
2642
- "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
2643
- "dev": true,
2644
- "dependencies": {
2645
- "babel-runtime": "^6.26.0",
2646
- "esutils": "^2.0.2",
2647
- "lodash": "^4.17.4",
2648
- "to-fast-properties": "^1.0.3"
2649
- }
2650
- },
2651
- "node_modules/babel-types/node_modules/to-fast-properties": {
2652
- "version": "1.0.3",
2653
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
2654
- "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=",
2655
- "dev": true,
2656
- "engines": {
2657
- "node": ">=0.10.0"
2658
- }
2659
- },
2660
- "node_modules/bach": {
2661
- "version": "1.2.0",
2662
- "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz",
2663
- "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=",
2664
- "dev": true,
2665
- "dependencies": {
2666
- "arr-filter": "^1.1.1",
2667
- "arr-flatten": "^1.0.1",
2668
- "arr-map": "^2.0.0",
2669
- "array-each": "^1.0.0",
2670
- "array-initial": "^1.0.0",
2671
- "array-last": "^1.1.1",
2672
- "async-done": "^1.2.2",
2673
- "async-settle": "^1.0.0",
2674
- "now-and-later": "^2.0.0"
2675
- },
2676
- "engines": {
2677
- "node": ">= 0.10"
2678
- }
2679
- },
2680
- "node_modules/balanced-match": {
2681
- "version": "1.0.0",
2682
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
2683
- "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
2684
- "dev": true
2685
- },
2686
- "node_modules/base": {
2687
- "version": "0.11.2",
2688
- "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
2689
- "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
2690
- "dev": true,
2691
- "dependencies": {
2692
- "cache-base": "^1.0.1",
2693
- "class-utils": "^0.3.5",
2694
- "component-emitter": "^1.2.1",
2695
- "define-property": "^1.0.0",
2696
- "isobject": "^3.0.1",
2697
- "mixin-deep": "^1.2.0",
2698
- "pascalcase": "^0.1.1"
2699
- },
2700
- "engines": {
2701
- "node": ">=0.10.0"
2702
- }
2703
- },
2704
- "node_modules/base/node_modules/define-property": {
2705
- "version": "1.0.0",
2706
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
2707
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
2708
- "dev": true,
2709
- "dependencies": {
2710
- "is-descriptor": "^1.0.0"
2711
- },
2712
- "engines": {
2713
- "node": ">=0.10.0"
2714
- }
2715
- },
2716
- "node_modules/base/node_modules/is-accessor-descriptor": {
2717
- "version": "1.0.0",
2718
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
2719
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
2720
- "dev": true,
2721
- "dependencies": {
2722
- "kind-of": "^6.0.0"
2723
- },
2724
- "engines": {
2725
- "node": ">=0.10.0"
2726
- }
2727
- },
2728
- "node_modules/base/node_modules/is-data-descriptor": {
2729
- "version": "1.0.0",
2730
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
2731
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
2732
- "dev": true,
2733
- "dependencies": {
2734
- "kind-of": "^6.0.0"
2735
- },
2736
- "engines": {
2737
- "node": ">=0.10.0"
2738
- }
2739
- },
2740
- "node_modules/base/node_modules/is-descriptor": {
2741
- "version": "1.0.2",
2742
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
2743
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
2744
- "dev": true,
2745
- "dependencies": {
2746
- "is-accessor-descriptor": "^1.0.0",
2747
- "is-data-descriptor": "^1.0.0",
2748
- "kind-of": "^6.0.2"
2749
- },
2750
- "engines": {
2751
- "node": ">=0.10.0"
2752
- }
2753
- },
2754
- "node_modules/binary-extensions": {
2755
- "version": "1.13.1",
2756
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
2757
- "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==",
2758
- "dev": true,
2759
- "engines": {
2760
- "node": ">=0.10.0"
2761
- }
2762
- },
2763
- "node_modules/binaryextensions": {
2764
- "version": "2.3.0",
2765
- "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-2.3.0.tgz",
2766
- "integrity": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==",
2767
- "dev": true,
2768
- "engines": {
2769
- "node": ">=0.8"
2770
- },
2771
- "funding": {
2772
- "url": "https://bevry.me/fund"
2773
- }
2774
- },
2775
- "node_modules/bindings": {
2776
- "version": "1.5.0",
2777
- "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
2778
- "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
2779
- "dev": true,
2780
- "optional": true,
2781
- "dependencies": {
2782
- "file-uri-to-path": "1.0.0"
2783
- }
2784
- },
2785
- "node_modules/boxen": {
2786
- "version": "5.0.0",
2787
- "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.0.0.tgz",
2788
- "integrity": "sha512-5bvsqw+hhgUi3oYGK0Vf4WpIkyemp60WBInn7+WNfoISzAqk/HX4L7WNROq38E6UR/y3YADpv6pEm4BfkeEAdA==",
2789
- "dev": true,
2790
- "dependencies": {
2791
- "ansi-align": "^3.0.0",
2792
- "camelcase": "^6.2.0",
2793
- "chalk": "^4.1.0",
2794
- "cli-boxes": "^2.2.1",
2795
- "string-width": "^4.2.0",
2796
- "type-fest": "^0.20.2",
2797
- "widest-line": "^3.1.0",
2798
- "wrap-ansi": "^7.0.0"
2799
- },
2800
- "engines": {
2801
- "node": ">=10"
2802
- },
2803
- "funding": {
2804
- "url": "https://github.com/sponsors/sindresorhus"
2805
- }
2806
- },
2807
- "node_modules/boxen/node_modules/ansi-styles": {
2808
- "version": "4.3.0",
2809
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2810
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2811
- "dev": true,
2812
- "dependencies": {
2813
- "color-convert": "^2.0.1"
2814
- },
2815
- "engines": {
2816
- "node": ">=8"
2817
- },
2818
- "funding": {
2819
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2820
- }
2821
- },
2822
- "node_modules/boxen/node_modules/camelcase": {
2823
- "version": "6.2.0",
2824
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz",
2825
- "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==",
2826
- "dev": true,
2827
- "engines": {
2828
- "node": ">=10"
2829
- },
2830
- "funding": {
2831
- "url": "https://github.com/sponsors/sindresorhus"
2832
- }
2833
- },
2834
- "node_modules/boxen/node_modules/chalk": {
2835
- "version": "4.1.0",
2836
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
2837
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
2838
- "dev": true,
2839
- "dependencies": {
2840
- "ansi-styles": "^4.1.0",
2841
- "supports-color": "^7.1.0"
2842
- },
2843
- "engines": {
2844
- "node": ">=10"
2845
- },
2846
- "funding": {
2847
- "url": "https://github.com/chalk/chalk?sponsor=1"
2848
- }
2849
- },
2850
- "node_modules/boxen/node_modules/color-convert": {
2851
- "version": "2.0.1",
2852
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2853
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2854
- "dev": true,
2855
- "dependencies": {
2856
- "color-name": "~1.1.4"
2857
- },
2858
- "engines": {
2859
- "node": ">=7.0.0"
2860
- }
2861
- },
2862
- "node_modules/boxen/node_modules/color-name": {
2863
- "version": "1.1.4",
2864
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2865
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
2866
- "dev": true
2867
- },
2868
- "node_modules/boxen/node_modules/has-flag": {
2869
- "version": "4.0.0",
2870
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2871
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2872
- "dev": true,
2873
- "engines": {
2874
- "node": ">=8"
2875
- }
2876
- },
2877
- "node_modules/boxen/node_modules/supports-color": {
2878
- "version": "7.2.0",
2879
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2880
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2881
- "dev": true,
2882
- "dependencies": {
2883
- "has-flag": "^4.0.0"
2884
- },
2885
- "engines": {
2886
- "node": ">=8"
2887
- }
2888
- },
2889
- "node_modules/boxen/node_modules/type-fest": {
2890
- "version": "0.20.2",
2891
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
2892
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
2893
- "dev": true,
2894
- "engines": {
2895
- "node": ">=10"
2896
- },
2897
- "funding": {
2898
- "url": "https://github.com/sponsors/sindresorhus"
2899
- }
2900
- },
2901
- "node_modules/brace-expansion": {
2902
- "version": "1.1.11",
2903
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
2904
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
2905
- "dev": true,
2906
- "dependencies": {
2907
- "balanced-match": "^1.0.0",
2908
- "concat-map": "0.0.1"
2909
- }
2910
- },
2911
- "node_modules/braces": {
2912
- "version": "2.3.2",
2913
- "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
2914
- "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
2915
- "dev": true,
2916
- "dependencies": {
2917
- "arr-flatten": "^1.1.0",
2918
- "array-unique": "^0.3.2",
2919
- "extend-shallow": "^2.0.1",
2920
- "fill-range": "^4.0.0",
2921
- "isobject": "^3.0.1",
2922
- "repeat-element": "^1.1.2",
2923
- "snapdragon": "^0.8.1",
2924
- "snapdragon-node": "^2.0.1",
2925
- "split-string": "^3.0.2",
2926
- "to-regex": "^3.0.1"
2927
- },
2928
- "engines": {
2929
- "node": ">=0.10.0"
2930
- }
2931
- },
2932
- "node_modules/braces/node_modules/extend-shallow": {
2933
- "version": "2.0.1",
2934
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
2935
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
2936
- "dev": true,
2937
- "dependencies": {
2938
- "is-extendable": "^0.1.0"
2939
- },
2940
- "engines": {
2941
- "node": ">=0.10.0"
2942
- }
2943
- },
2944
- "node_modules/browserslist": {
2945
- "version": "4.19.1",
2946
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz",
2947
- "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==",
2948
- "dev": true,
2949
- "dependencies": {
2950
- "caniuse-lite": "^1.0.30001286",
2951
- "electron-to-chromium": "^1.4.17",
2952
- "escalade": "^3.1.1",
2953
- "node-releases": "^2.0.1",
2954
- "picocolors": "^1.0.0"
2955
- },
2956
- "bin": {
2957
- "browserslist": "cli.js"
2958
- },
2959
- "engines": {
2960
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
2961
- },
2962
- "funding": {
2963
- "type": "opencollective",
2964
- "url": "https://opencollective.com/browserslist"
2965
- }
2966
- },
2967
- "node_modules/buffer-crc32": {
2968
- "version": "0.2.13",
2969
- "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
2970
- "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=",
2971
- "dev": true,
2972
- "engines": {
2973
- "node": "*"
2974
- }
2975
- },
2976
- "node_modules/buffer-equal": {
2977
- "version": "1.0.0",
2978
- "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz",
2979
- "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=",
2980
- "dev": true,
2981
- "engines": {
2982
- "node": ">=0.4.0"
2983
- }
2984
- },
2985
- "node_modules/buffer-from": {
2986
- "version": "1.1.1",
2987
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
2988
- "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==",
2989
- "dev": true
2990
- },
2991
- "node_modules/builtins": {
2992
- "version": "1.0.3",
2993
- "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz",
2994
- "integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=",
2995
- "dev": true
2996
- },
2997
- "node_modules/cacache": {
2998
- "version": "15.3.0",
2999
- "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz",
3000
- "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
3001
- "dev": true,
3002
- "dependencies": {
3003
- "@npmcli/fs": "^1.0.0",
3004
- "@npmcli/move-file": "^1.0.1",
3005
- "chownr": "^2.0.0",
3006
- "fs-minipass": "^2.0.0",
3007
- "glob": "^7.1.4",
3008
- "infer-owner": "^1.0.4",
3009
- "lru-cache": "^6.0.0",
3010
- "minipass": "^3.1.1",
3011
- "minipass-collect": "^1.0.2",
3012
- "minipass-flush": "^1.0.5",
3013
- "minipass-pipeline": "^1.2.2",
3014
- "mkdirp": "^1.0.3",
3015
- "p-map": "^4.0.0",
3016
- "promise-inflight": "^1.0.1",
3017
- "rimraf": "^3.0.2",
3018
- "ssri": "^8.0.1",
3019
- "tar": "^6.0.2",
3020
- "unique-filename": "^1.1.1"
3021
- },
3022
- "engines": {
3023
- "node": ">= 10"
3024
- }
3025
- },
3026
- "node_modules/cacache/node_modules/mkdirp": {
3027
- "version": "1.0.4",
3028
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
3029
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
3030
- "dev": true,
3031
- "bin": {
3032
- "mkdirp": "bin/cmd.js"
3033
- },
3034
- "engines": {
3035
- "node": ">=10"
3036
- }
3037
- },
3038
- "node_modules/cache-base": {
3039
- "version": "1.0.1",
3040
- "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
3041
- "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
3042
- "dev": true,
3043
- "dependencies": {
3044
- "collection-visit": "^1.0.0",
3045
- "component-emitter": "^1.2.1",
3046
- "get-value": "^2.0.6",
3047
- "has-value": "^1.0.0",
3048
- "isobject": "^3.0.1",
3049
- "set-value": "^2.0.0",
3050
- "to-object-path": "^0.3.0",
3051
- "union-value": "^1.0.0",
3052
- "unset-value": "^1.0.0"
3053
- },
3054
- "engines": {
3055
- "node": ">=0.10.0"
3056
- }
3057
- },
3058
- "node_modules/cacheable-lookup": {
3059
- "version": "2.0.1",
3060
- "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-2.0.1.tgz",
3061
- "integrity": "sha512-EMMbsiOTcdngM/K6gV/OxF2x0t07+vMOWxZNSCRQMjO2MY2nhZQ6OYhOOpyQrbhqsgtvKGI7hcq6xjnA92USjg==",
3062
- "dev": true,
3063
- "dependencies": {
3064
- "@types/keyv": "^3.1.1",
3065
- "keyv": "^4.0.0"
3066
- },
3067
- "engines": {
3068
- "node": ">=10"
3069
- }
3070
- },
3071
- "node_modules/cacheable-request": {
3072
- "version": "7.0.1",
3073
- "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz",
3074
- "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==",
3075
- "dev": true,
3076
- "dependencies": {
3077
- "clone-response": "^1.0.2",
3078
- "get-stream": "^5.1.0",
3079
- "http-cache-semantics": "^4.0.0",
3080
- "keyv": "^4.0.0",
3081
- "lowercase-keys": "^2.0.0",
3082
- "normalize-url": "^4.1.0",
3083
- "responselike": "^2.0.0"
3084
- },
3085
- "engines": {
3086
- "node": ">=8"
3087
- }
3088
- },
3089
- "node_modules/call-bind": {
3090
- "version": "1.0.2",
3091
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
3092
- "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
3093
- "dev": true,
3094
- "dependencies": {
3095
- "function-bind": "^1.1.1",
3096
- "get-intrinsic": "^1.0.2"
3097
- },
3098
- "funding": {
3099
- "url": "https://github.com/sponsors/ljharb"
3100
- }
3101
- },
3102
- "node_modules/camelcase": {
3103
- "version": "2.1.1",
3104
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
3105
- "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=",
3106
- "dev": true,
3107
- "engines": {
3108
- "node": ">=0.10.0"
3109
- }
3110
- },
3111
- "node_modules/camelcase-keys": {
3112
- "version": "2.1.0",
3113
- "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
3114
- "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=",
3115
- "dev": true,
3116
- "dependencies": {
3117
- "camelcase": "^2.0.0",
3118
- "map-obj": "^1.0.0"
3119
- },
3120
- "engines": {
3121
- "node": ">=0.10.0"
3122
- }
3123
- },
3124
- "node_modules/caniuse-lite": {
3125
- "version": "1.0.30001292",
3126
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001292.tgz",
3127
- "integrity": "sha512-jnT4Tq0Q4ma+6nncYQVe7d73kmDmE9C3OGTx3MvW7lBM/eY1S1DZTMBON7dqV481RhNiS5OxD7k9JQvmDOTirw==",
3128
- "dev": true,
3129
- "funding": {
3130
- "type": "opencollective",
3131
- "url": "https://opencollective.com/browserslist"
3132
- }
3133
- },
3134
- "node_modules/chalk": {
3135
- "version": "2.4.2",
3136
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
3137
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
3138
- "dev": true,
3139
- "dependencies": {
3140
- "ansi-styles": "^3.2.1",
3141
- "escape-string-regexp": "^1.0.5",
3142
- "supports-color": "^5.3.0"
3143
- },
3144
- "engines": {
3145
- "node": ">=4"
3146
- }
3147
- },
3148
- "node_modules/chardet": {
3149
- "version": "0.7.0",
3150
- "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
3151
- "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
3152
- "dev": true
3153
- },
3154
- "node_modules/child_process": {
3155
- "version": "1.0.2",
3156
- "resolved": "https://registry.npmjs.org/child_process/-/child_process-1.0.2.tgz",
3157
- "integrity": "sha1-sffn/HPSXn/R1FWtyU4UODAYK1o=",
3158
- "dev": true
3159
- },
3160
- "node_modules/chokidar": {
3161
- "version": "2.1.8",
3162
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
3163
- "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
3164
- "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies",
3165
- "dev": true,
3166
- "dependencies": {
3167
- "anymatch": "^2.0.0",
3168
- "async-each": "^1.0.1",
3169
- "braces": "^2.3.2",
3170
- "glob-parent": "^3.1.0",
3171
- "inherits": "^2.0.3",
3172
- "is-binary-path": "^1.0.0",
3173
- "is-glob": "^4.0.0",
3174
- "normalize-path": "^3.0.0",
3175
- "path-is-absolute": "^1.0.0",
3176
- "readdirp": "^2.2.1",
3177
- "upath": "^1.1.1"
3178
- },
3179
- "optionalDependencies": {
3180
- "fsevents": "^1.2.7"
3181
- }
3182
- },
3183
- "node_modules/chownr": {
3184
- "version": "2.0.0",
3185
- "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
3186
- "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
3187
- "dev": true,
3188
- "engines": {
3189
- "node": ">=10"
3190
- }
3191
- },
3192
- "node_modules/ci-info": {
3193
- "version": "2.0.0",
3194
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
3195
- "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
3196
- "dev": true
3197
- },
3198
- "node_modules/cint": {
3199
- "version": "8.2.1",
3200
- "resolved": "https://registry.npmjs.org/cint/-/cint-8.2.1.tgz",
3201
- "integrity": "sha1-cDhrG0jidz0NYxZqVa/5TvRFahI=",
3202
- "dev": true
3203
- },
3204
- "node_modules/class-utils": {
3205
- "version": "0.3.6",
3206
- "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
3207
- "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
3208
- "dev": true,
3209
- "dependencies": {
3210
- "arr-union": "^3.1.0",
3211
- "define-property": "^0.2.5",
3212
- "isobject": "^3.0.0",
3213
- "static-extend": "^0.1.1"
3214
- },
3215
- "engines": {
3216
- "node": ">=0.10.0"
3217
- }
3218
- },
3219
- "node_modules/class-utils/node_modules/define-property": {
3220
- "version": "0.2.5",
3221
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
3222
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
3223
- "dev": true,
3224
- "dependencies": {
3225
- "is-descriptor": "^0.1.0"
3226
- },
3227
- "engines": {
3228
- "node": ">=0.10.0"
3229
- }
3230
- },
3231
- "node_modules/clean-css": {
3232
- "version": "4.2.3",
3233
- "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz",
3234
- "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==",
3235
- "dev": true,
3236
- "dependencies": {
3237
- "source-map": "~0.6.0"
3238
- },
3239
- "engines": {
3240
- "node": ">= 4.0"
3241
- }
3242
- },
3243
- "node_modules/clean-css/node_modules/source-map": {
3244
- "version": "0.6.1",
3245
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
3246
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
3247
- "dev": true,
3248
- "engines": {
3249
- "node": ">=0.10.0"
3250
- }
3251
- },
3252
- "node_modules/clean-stack": {
3253
- "version": "2.2.0",
3254
- "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
3255
- "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
3256
- "dev": true,
3257
- "engines": {
3258
- "node": ">=6"
3259
- }
3260
- },
3261
- "node_modules/cli-boxes": {
3262
- "version": "2.2.1",
3263
- "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz",
3264
- "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==",
3265
- "dev": true,
3266
- "engines": {
3267
- "node": ">=6"
3268
- },
3269
- "funding": {
3270
- "url": "https://github.com/sponsors/sindresorhus"
3271
- }
3272
- },
3273
- "node_modules/cli-cursor": {
3274
- "version": "3.1.0",
3275
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
3276
- "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
3277
- "dev": true,
3278
- "dependencies": {
3279
- "restore-cursor": "^3.1.0"
3280
- },
3281
- "engines": {
3282
- "node": ">=8"
3283
- }
3284
- },
3285
- "node_modules/cli-spinners": {
3286
- "version": "2.6.0",
3287
- "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz",
3288
- "integrity": "sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==",
3289
- "dev": true,
3290
- "engines": {
3291
- "node": ">=6"
3292
- },
3293
- "funding": {
3294
- "url": "https://github.com/sponsors/sindresorhus"
3295
- }
3296
- },
3297
- "node_modules/cli-table": {
3298
- "version": "0.3.11",
3299
- "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz",
3300
- "integrity": "sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==",
3301
- "dev": true,
3302
- "dependencies": {
3303
- "colors": "1.0.3"
3304
- },
3305
- "engines": {
3306
- "node": ">= 0.2.0"
3307
- }
3308
- },
3309
- "node_modules/cli-width": {
3310
- "version": "3.0.0",
3311
- "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
3312
- "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
3313
- "dev": true,
3314
- "engines": {
3315
- "node": ">= 10"
3316
- }
3317
- },
3318
- "node_modules/cliui": {
3319
- "version": "5.0.0",
3320
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
3321
- "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
3322
- "dev": true,
3323
- "dependencies": {
3324
- "string-width": "^3.1.0",
3325
- "strip-ansi": "^5.2.0",
3326
- "wrap-ansi": "^5.1.0"
3327
- }
3328
- },
3329
- "node_modules/cliui/node_modules/ansi-regex": {
3330
- "version": "4.1.0",
3331
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
3332
- "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
3333
- "dev": true,
3334
- "engines": {
3335
- "node": ">=6"
3336
- }
3337
- },
3338
- "node_modules/cliui/node_modules/emoji-regex": {
3339
- "version": "7.0.3",
3340
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
3341
- "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
3342
- "dev": true
3343
- },
3344
- "node_modules/cliui/node_modules/is-fullwidth-code-point": {
3345
- "version": "2.0.0",
3346
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
3347
- "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
3348
- "dev": true,
3349
- "engines": {
3350
- "node": ">=4"
3351
- }
3352
- },
3353
- "node_modules/cliui/node_modules/string-width": {
3354
- "version": "3.1.0",
3355
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
3356
- "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
3357
- "dev": true,
3358
- "dependencies": {
3359
- "emoji-regex": "^7.0.1",
3360
- "is-fullwidth-code-point": "^2.0.0",
3361
- "strip-ansi": "^5.1.0"
3362
- },
3363
- "engines": {
3364
- "node": ">=6"
3365
- }
3366
- },
3367
- "node_modules/cliui/node_modules/strip-ansi": {
3368
- "version": "5.2.0",
3369
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
3370
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
3371
- "dev": true,
3372
- "dependencies": {
3373
- "ansi-regex": "^4.1.0"
3374
- },
3375
- "engines": {
3376
- "node": ">=6"
3377
- }
3378
- },
3379
- "node_modules/cliui/node_modules/wrap-ansi": {
3380
- "version": "5.1.0",
3381
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
3382
- "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
3383
- "dev": true,
3384
- "dependencies": {
3385
- "ansi-styles": "^3.2.0",
3386
- "string-width": "^3.0.0",
3387
- "strip-ansi": "^5.0.0"
3388
- },
3389
- "engines": {
3390
- "node": ">=6"
3391
- }
3392
- },
3393
- "node_modules/clone": {
3394
- "version": "2.1.2",
3395
- "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
3396
- "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
3397
- "dev": true,
3398
- "engines": {
3399
- "node": ">=0.8"
3400
- }
3401
- },
3402
- "node_modules/clone-buffer": {
3403
- "version": "1.0.0",
3404
- "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz",
3405
- "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=",
3406
- "dev": true,
3407
- "engines": {
3408
- "node": ">= 0.10"
3409
- }
3410
- },
3411
- "node_modules/clone-response": {
3412
- "version": "1.0.2",
3413
- "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
3414
- "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
3415
- "dev": true,
3416
- "dependencies": {
3417
- "mimic-response": "^1.0.0"
3418
- }
3419
- },
3420
- "node_modules/clone-response/node_modules/mimic-response": {
3421
- "version": "1.0.1",
3422
- "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
3423
- "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
3424
- "dev": true,
3425
- "engines": {
3426
- "node": ">=4"
3427
- }
3428
- },
3429
- "node_modules/clone-stats": {
3430
- "version": "1.0.0",
3431
- "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz",
3432
- "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=",
3433
- "dev": true
3434
- },
3435
- "node_modules/cloneable-readable": {
3436
- "version": "1.1.3",
3437
- "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz",
3438
- "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==",
3439
- "dev": true,
3440
- "dependencies": {
3441
- "inherits": "^2.0.1",
3442
- "process-nextick-args": "^2.0.0",
3443
- "readable-stream": "^2.3.5"
3444
- }
3445
- },
3446
- "node_modules/code-point-at": {
3447
- "version": "1.1.0",
3448
- "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
3449
- "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
3450
- "dev": true,
3451
- "engines": {
3452
- "node": ">=0.10.0"
3453
- }
3454
- },
3455
- "node_modules/collection-map": {
3456
- "version": "1.0.0",
3457
- "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz",
3458
- "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=",
3459
- "dev": true,
3460
- "dependencies": {
3461
- "arr-map": "^2.0.2",
3462
- "for-own": "^1.0.0",
3463
- "make-iterator": "^1.0.0"
3464
- },
3465
- "engines": {
3466
- "node": ">=0.10.0"
3467
- }
3468
- },
3469
- "node_modules/collection-visit": {
3470
- "version": "1.0.0",
3471
- "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
3472
- "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
3473
- "dev": true,
3474
- "dependencies": {
3475
- "map-visit": "^1.0.0",
3476
- "object-visit": "^1.0.0"
3477
- },
3478
- "engines": {
3479
- "node": ">=0.10.0"
3480
- }
3481
- },
3482
- "node_modules/color-convert": {
3483
- "version": "1.9.3",
3484
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
3485
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
3486
- "dev": true,
3487
- "dependencies": {
3488
- "color-name": "1.1.3"
3489
- }
3490
- },
3491
- "node_modules/color-name": {
3492
- "version": "1.1.3",
3493
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
3494
- "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
3495
- "dev": true
3496
- },
3497
- "node_modules/color-support": {
3498
- "version": "1.1.3",
3499
- "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
3500
- "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
3501
- "dev": true,
3502
- "bin": {
3503
- "color-support": "bin.js"
3504
- }
3505
- },
3506
- "node_modules/colors": {
3507
- "version": "1.0.3",
3508
- "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
3509
- "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=",
3510
- "dev": true,
3511
- "engines": {
3512
- "node": ">=0.1.90"
3513
- }
3514
- },
3515
- "node_modules/commander": {
3516
- "version": "8.3.0",
3517
- "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
3518
- "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
3519
- "dev": true,
3520
- "engines": {
3521
- "node": ">= 12"
3522
- }
3523
- },
3524
- "node_modules/component-emitter": {
3525
- "version": "1.3.0",
3526
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
3527
- "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==",
3528
- "dev": true
3529
- },
3530
- "node_modules/concat-map": {
3531
- "version": "0.0.1",
3532
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
3533
- "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
3534
- "dev": true
3535
- },
3536
- "node_modules/concat-stream": {
3537
- "version": "1.6.2",
3538
- "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
3539
- "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
3540
- "dev": true,
3541
- "engines": [
3542
- "node >= 0.8"
3543
- ],
3544
- "dependencies": {
3545
- "buffer-from": "^1.0.0",
3546
- "inherits": "^2.0.3",
3547
- "readable-stream": "^2.2.2",
3548
- "typedarray": "^0.0.6"
3549
- }
3550
- },
3551
- "node_modules/concat-with-sourcemaps": {
3552
- "version": "1.1.0",
3553
- "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz",
3554
- "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==",
3555
- "dev": true,
3556
- "dependencies": {
3557
- "source-map": "^0.6.1"
3558
- }
3559
- },
3560
- "node_modules/concat-with-sourcemaps/node_modules/source-map": {
3561
- "version": "0.6.1",
3562
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
3563
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
3564
- "dev": true,
3565
- "engines": {
3566
- "node": ">=0.10.0"
3567
- }
3568
- },
3569
- "node_modules/configstore": {
3570
- "version": "5.0.1",
3571
- "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz",
3572
- "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==",
3573
- "dev": true,
3574
- "dependencies": {
3575
- "dot-prop": "^5.2.0",
3576
- "graceful-fs": "^4.1.2",
3577
- "make-dir": "^3.0.0",
3578
- "unique-string": "^2.0.0",
3579
- "write-file-atomic": "^3.0.0",
3580
- "xdg-basedir": "^4.0.0"
3581
- },
3582
- "engines": {
3583
- "node": ">=8"
3584
- }
3585
- },
3586
- "node_modules/console-control-strings": {
3587
- "version": "1.1.0",
3588
- "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
3589
- "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
3590
- "dev": true
3591
- },
3592
- "node_modules/convert-source-map": {
3593
- "version": "1.7.0",
3594
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
3595
- "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
3596
- "dev": true,
3597
- "dependencies": {
3598
- "safe-buffer": "~5.1.1"
3599
- }
3600
- },
3601
- "node_modules/copy-descriptor": {
3602
- "version": "0.1.1",
3603
- "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
3604
- "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
3605
- "dev": true,
3606
- "engines": {
3607
- "node": ">=0.10.0"
3608
- }
3609
- },
3610
- "node_modules/copy-dir": {
3611
- "version": "1.3.0",
3612
- "resolved": "https://registry.npmjs.org/copy-dir/-/copy-dir-1.3.0.tgz",
3613
- "integrity": "sha512-Q4+qBFnN4bwGwvtXXzbp4P/4iNk0MaiGAzvQ8OiMtlLjkIKjmNN689uVzShSM0908q7GoFHXIPx4zi75ocoaHw==",
3614
- "dev": true
3615
- },
3616
- "node_modules/copy-props": {
3617
- "version": "2.0.5",
3618
- "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz",
3619
- "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==",
3620
- "dev": true,
3621
- "dependencies": {
3622
- "each-props": "^1.3.2",
3623
- "is-plain-object": "^5.0.0"
3624
- }
3625
- },
3626
- "node_modules/copy-props/node_modules/is-plain-object": {
3627
- "version": "5.0.0",
3628
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
3629
- "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
3630
- "dev": true,
3631
- "engines": {
3632
- "node": ">=0.10.0"
3633
- }
3634
- },
3635
- "node_modules/core-js": {
3636
- "version": "2.6.12",
3637
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz",
3638
- "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==",
3639
- "deprecated": "core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.",
3640
- "dev": true,
3641
- "hasInstallScript": true
3642
- },
3643
- "node_modules/core-js-compat": {
3644
- "version": "3.20.0",
3645
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.0.tgz",
3646
- "integrity": "sha512-relrah5h+sslXssTTOkvqcC/6RURifB0W5yhYBdBkaPYa5/2KBMiog3XiD+s3TwEHWxInWVv4Jx2/Lw0vng+IQ==",
3647
- "dev": true,
3648
- "dependencies": {
3649
- "browserslist": "^4.19.1",
3650
- "semver": "7.0.0"
3651
- },
3652
- "funding": {
3653
- "type": "opencollective",
3654
- "url": "https://opencollective.com/core-js"
3655
- }
3656
- },
3657
- "node_modules/core-js-compat/node_modules/semver": {
3658
- "version": "7.0.0",
3659
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
3660
- "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
3661
- "dev": true,
3662
- "bin": {
3663
- "semver": "bin/semver.js"
3664
- }
3665
- },
3666
- "node_modules/core-util-is": {
3667
- "version": "1.0.2",
3668
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
3669
- "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
3670
- "dev": true
3671
- },
3672
- "node_modules/crypto-random-string": {
3673
- "version": "2.0.0",
3674
- "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
3675
- "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==",
3676
- "dev": true,
3677
- "engines": {
3678
- "node": ">=8"
3679
- }
3680
- },
3681
- "node_modules/css-parse": {
3682
- "version": "1.7.0",
3683
- "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz",
3684
- "integrity": "sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs=",
3685
- "dev": true
3686
- },
3687
- "node_modules/currently-unhandled": {
3688
- "version": "0.4.1",
3689
- "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
3690
- "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
3691
- "dev": true,
3692
- "dependencies": {
3693
- "array-find-index": "^1.0.1"
3694
- },
3695
- "engines": {
3696
- "node": ">=0.10.0"
3697
- }
3698
- },
3699
- "node_modules/d": {
3700
- "version": "1.0.1",
3701
- "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz",
3702
- "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==",
3703
- "dev": true,
3704
- "dependencies": {
3705
- "es5-ext": "^0.10.50",
3706
- "type": "^1.0.1"
3707
- }
3708
- },
3709
- "node_modules/dateformat": {
3710
- "version": "1.0.12",
3711
- "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz",
3712
- "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=",
3713
- "dev": true,
3714
- "dependencies": {
3715
- "get-stdin": "^4.0.1",
3716
- "meow": "^3.3.0"
3717
- },
3718
- "bin": {
3719
- "dateformat": "bin/cli.js"
3720
- },
3721
- "engines": {
3722
- "node": "*"
3723
- }
3724
- },
3725
- "node_modules/debug": {
3726
- "version": "4.3.1",
3727
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
3728
- "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
3729
- "dev": true,
3730
- "dependencies": {
3731
- "ms": "2.1.2"
3732
- },
3733
- "engines": {
3734
- "node": ">=6.0"
3735
- },
3736
- "peerDependenciesMeta": {
3737
- "supports-color": {
3738
- "optional": true
3739
- }
3740
- }
3741
- },
3742
- "node_modules/decamelize": {
3743
- "version": "1.2.0",
3744
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
3745
- "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
3746
- "dev": true,
3747
- "engines": {
3748
- "node": ">=0.10.0"
3749
- }
3750
- },
3751
- "node_modules/decode-uri-component": {
3752
- "version": "0.2.0",
3753
- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
3754
- "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
3755
- "dev": true,
3756
- "engines": {
3757
- "node": ">=0.10"
3758
- }
3759
- },
3760
- "node_modules/decompress-response": {
3761
- "version": "5.0.0",
3762
- "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-5.0.0.tgz",
3763
- "integrity": "sha512-TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw==",
3764
- "dev": true,
3765
- "dependencies": {
3766
- "mimic-response": "^2.0.0"
3767
- },
3768
- "engines": {
3769
- "node": ">=10"
3770
- }
3771
- },
3772
- "node_modules/deep-extend": {
3773
- "version": "0.6.0",
3774
- "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
3775
- "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
3776
- "dev": true,
3777
- "engines": {
3778
- "node": ">=4.0.0"
3779
- }
3780
- },
3781
- "node_modules/default-compare": {
3782
- "version": "1.0.0",
3783
- "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz",
3784
- "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==",
3785
- "dev": true,
3786
- "dependencies": {
3787
- "kind-of": "^5.0.2"
3788
- },
3789
- "engines": {
3790
- "node": ">=0.10.0"
3791
- }
3792
- },
3793
- "node_modules/default-compare/node_modules/kind-of": {
3794
- "version": "5.1.0",
3795
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
3796
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
3797
- "dev": true,
3798
- "engines": {
3799
- "node": ">=0.10.0"
3800
- }
3801
- },
3802
- "node_modules/default-resolution": {
3803
- "version": "2.0.0",
3804
- "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz",
3805
- "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=",
3806
- "dev": true,
3807
- "engines": {
3808
- "node": ">= 0.10"
3809
- }
3810
- },
3811
- "node_modules/defaults": {
3812
- "version": "1.0.3",
3813
- "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
3814
- "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
3815
- "dev": true,
3816
- "dependencies": {
3817
- "clone": "^1.0.2"
3818
- }
3819
- },
3820
- "node_modules/defaults/node_modules/clone": {
3821
- "version": "1.0.4",
3822
- "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
3823
- "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
3824
- "dev": true,
3825
- "engines": {
3826
- "node": ">=0.8"
3827
- }
3828
- },
3829
- "node_modules/defer-to-connect": {
3830
- "version": "2.0.1",
3831
- "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
3832
- "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==",
3833
- "dev": true,
3834
- "engines": {
3835
- "node": ">=10"
3836
- }
3837
- },
3838
- "node_modules/define-properties": {
3839
- "version": "1.1.3",
3840
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
3841
- "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
3842
- "dev": true,
3843
- "dependencies": {
3844
- "object-keys": "^1.0.12"
3845
- },
3846
- "engines": {
3847
- "node": ">= 0.4"
3848
- }
3849
- },
3850
- "node_modules/define-property": {
3851
- "version": "2.0.2",
3852
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
3853
- "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
3854
- "dev": true,
3855
- "dependencies": {
3856
- "is-descriptor": "^1.0.2",
3857
- "isobject": "^3.0.1"
3858
- },
3859
- "engines": {
3860
- "node": ">=0.10.0"
3861
- }
3862
- },
3863
- "node_modules/define-property/node_modules/is-accessor-descriptor": {
3864
- "version": "1.0.0",
3865
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
3866
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
3867
- "dev": true,
3868
- "dependencies": {
3869
- "kind-of": "^6.0.0"
3870
- },
3871
- "engines": {
3872
- "node": ">=0.10.0"
3873
- }
3874
- },
3875
- "node_modules/define-property/node_modules/is-data-descriptor": {
3876
- "version": "1.0.0",
3877
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
3878
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
3879
- "dev": true,
3880
- "dependencies": {
3881
- "kind-of": "^6.0.0"
3882
- },
3883
- "engines": {
3884
- "node": ">=0.10.0"
3885
- }
3886
- },
3887
- "node_modules/define-property/node_modules/is-descriptor": {
3888
- "version": "1.0.2",
3889
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
3890
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
3891
- "dev": true,
3892
- "dependencies": {
3893
- "is-accessor-descriptor": "^1.0.0",
3894
- "is-data-descriptor": "^1.0.0",
3895
- "kind-of": "^6.0.2"
3896
- },
3897
- "engines": {
3898
- "node": ">=0.10.0"
3899
- }
3900
- },
3901
- "node_modules/delegates": {
3902
- "version": "1.0.0",
3903
- "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
3904
- "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
3905
- "dev": true
3906
- },
3907
- "node_modules/depd": {
3908
- "version": "1.1.2",
3909
- "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
3910
- "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
3911
- "dev": true,
3912
- "engines": {
3913
- "node": ">= 0.6"
3914
- }
3915
- },
3916
- "node_modules/detect-file": {
3917
- "version": "1.0.0",
3918
- "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz",
3919
- "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=",
3920
- "dev": true,
3921
- "engines": {
3922
- "node": ">=0.10.0"
3923
- }
3924
- },
3925
- "node_modules/dir-glob": {
3926
- "version": "3.0.1",
3927
- "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
3928
- "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
3929
- "dev": true,
3930
- "dependencies": {
3931
- "path-type": "^4.0.0"
3932
- },
3933
- "engines": {
3934
- "node": ">=8"
3935
- }
3936
- },
3937
- "node_modules/docker-compose": {
3938
- "version": "0.22.2",
3939
- "resolved": "https://registry.npmjs.org/docker-compose/-/docker-compose-0.22.2.tgz",
3940
- "integrity": "sha512-iXWb5+LiYmylIMFXvGTYsjI1F+Xyx78Jm/uj1dxwwZLbWkUdH6yOXY5Nr3RjbYX15EgbGJCq78d29CmWQQQMPg==",
3941
- "dev": true,
3942
- "engines": {
3943
- "node": ">= 6.0.0"
3944
- }
3945
- },
3946
- "node_modules/dot-prop": {
3947
- "version": "5.3.0",
3948
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
3949
- "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==",
3950
- "dev": true,
3951
- "dependencies": {
3952
- "is-obj": "^2.0.0"
3953
- },
3954
- "engines": {
3955
- "node": ">=8"
3956
- }
3957
- },
3958
- "node_modules/duplexer2": {
3959
- "version": "0.0.2",
3960
- "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz",
3961
- "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=",
3962
- "dev": true,
3963
- "dependencies": {
3964
- "readable-stream": "~1.1.9"
3965
- }
3966
- },
3967
- "node_modules/duplexer2/node_modules/isarray": {
3968
- "version": "0.0.1",
3969
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
3970
- "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
3971
- "dev": true
3972
- },
3973
- "node_modules/duplexer2/node_modules/readable-stream": {
3974
- "version": "1.1.14",
3975
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
3976
- "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
3977
- "dev": true,
3978
- "dependencies": {
3979
- "core-util-is": "~1.0.0",
3980
- "inherits": "~2.0.1",
3981
- "isarray": "0.0.1",
3982
- "string_decoder": "~0.10.x"
3983
- }
3984
- },
3985
- "node_modules/duplexer2/node_modules/string_decoder": {
3986
- "version": "0.10.31",
3987
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
3988
- "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
3989
- "dev": true
3990
- },
3991
- "node_modules/duplexer3": {
3992
- "version": "0.1.4",
3993
- "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
3994
- "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=",
3995
- "dev": true
3996
- },
3997
- "node_modules/duplexify": {
3998
- "version": "3.7.1",
3999
- "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
4000
- "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
4001
- "dev": true,
4002
- "dependencies": {
4003
- "end-of-stream": "^1.0.0",
4004
- "inherits": "^2.0.1",
4005
- "readable-stream": "^2.0.0",
4006
- "stream-shift": "^1.0.0"
4007
- }
4008
- },
4009
- "node_modules/each-props": {
4010
- "version": "1.3.2",
4011
- "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz",
4012
- "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==",
4013
- "dev": true,
4014
- "dependencies": {
4015
- "is-plain-object": "^2.0.1",
4016
- "object.defaults": "^1.1.0"
4017
- }
4018
- },
4019
- "node_modules/electron-to-chromium": {
4020
- "version": "1.4.26",
4021
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.26.tgz",
4022
- "integrity": "sha512-cA1YwlRzO6TGp7yd3+KAqh9Tt6Z4CuuKqsAJP6uF/H5MQryjAGDhMhnY5cEXo8MaRCczpzSBhMPdqRIodkbZYw==",
4023
- "dev": true
4024
- },
4025
- "node_modules/emoji-regex": {
4026
- "version": "8.0.0",
4027
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
4028
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
4029
- "dev": true
4030
- },
4031
- "node_modules/encoding": {
4032
- "version": "0.1.13",
4033
- "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
4034
- "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
4035
- "dev": true,
4036
- "dependencies": {
4037
- "iconv-lite": "^0.6.2"
4038
- }
4039
- },
4040
- "node_modules/end-of-stream": {
4041
- "version": "1.4.4",
4042
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
4043
- "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
4044
- "dev": true,
4045
- "dependencies": {
4046
- "once": "^1.4.0"
4047
- }
4048
- },
4049
- "node_modules/env-paths": {
4050
- "version": "2.2.1",
4051
- "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
4052
- "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
4053
- "dev": true,
4054
- "engines": {
4055
- "node": ">=6"
4056
- }
4057
- },
4058
- "node_modules/err-code": {
4059
- "version": "2.0.3",
4060
- "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
4061
- "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
4062
- "dev": true
4063
- },
4064
- "node_modules/error-ex": {
4065
- "version": "1.3.2",
4066
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
4067
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
4068
- "dev": true,
4069
- "dependencies": {
4070
- "is-arrayish": "^0.2.1"
4071
- }
4072
- },
4073
- "node_modules/es5-ext": {
4074
- "version": "0.10.53",
4075
- "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz",
4076
- "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==",
4077
- "dev": true,
4078
- "dependencies": {
4079
- "es6-iterator": "~2.0.3",
4080
- "es6-symbol": "~3.1.3",
4081
- "next-tick": "~1.0.0"
4082
- }
4083
- },
4084
- "node_modules/es6-iterator": {
4085
- "version": "2.0.3",
4086
- "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
4087
- "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
4088
- "dev": true,
4089
- "dependencies": {
4090
- "d": "1",
4091
- "es5-ext": "^0.10.35",
4092
- "es6-symbol": "^3.1.1"
4093
- }
4094
- },
4095
- "node_modules/es6-symbol": {
4096
- "version": "3.1.3",
4097
- "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz",
4098
- "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==",
4099
- "dev": true,
4100
- "dependencies": {
4101
- "d": "^1.0.1",
4102
- "ext": "^1.1.2"
4103
- }
4104
- },
4105
- "node_modules/es6-weak-map": {
4106
- "version": "2.0.3",
4107
- "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz",
4108
- "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==",
4109
- "dev": true,
4110
- "dependencies": {
4111
- "d": "1",
4112
- "es5-ext": "^0.10.46",
4113
- "es6-iterator": "^2.0.3",
4114
- "es6-symbol": "^3.1.1"
4115
- }
4116
- },
4117
- "node_modules/escalade": {
4118
- "version": "3.1.1",
4119
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
4120
- "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
4121
- "dev": true,
4122
- "engines": {
4123
- "node": ">=6"
4124
- }
4125
- },
4126
- "node_modules/escape-goat": {
4127
- "version": "2.1.1",
4128
- "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz",
4129
- "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==",
4130
- "dev": true,
4131
- "engines": {
4132
- "node": ">=8"
4133
- }
4134
- },
4135
- "node_modules/escape-string-regexp": {
4136
- "version": "1.0.5",
4137
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
4138
- "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
4139
- "dev": true,
4140
- "engines": {
4141
- "node": ">=0.8.0"
4142
- }
4143
- },
4144
- "node_modules/esprima": {
4145
- "version": "4.0.1",
4146
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
4147
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
4148
- "dev": true,
4149
- "bin": {
4150
- "esparse": "bin/esparse.js",
4151
- "esvalidate": "bin/esvalidate.js"
4152
- },
4153
- "engines": {
4154
- "node": ">=4"
4155
- }
4156
- },
4157
- "node_modules/esutils": {
4158
- "version": "2.0.3",
4159
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
4160
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
4161
- "dev": true,
4162
- "engines": {
4163
- "node": ">=0.10.0"
4164
- }
4165
- },
4166
- "node_modules/expand-brackets": {
4167
- "version": "2.1.4",
4168
- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
4169
- "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
4170
- "dev": true,
4171
- "dependencies": {
4172
- "debug": "^2.3.3",
4173
- "define-property": "^0.2.5",
4174
- "extend-shallow": "^2.0.1",
4175
- "posix-character-classes": "^0.1.0",
4176
- "regex-not": "^1.0.0",
4177
- "snapdragon": "^0.8.1",
4178
- "to-regex": "^3.0.1"
4179
- },
4180
- "engines": {
4181
- "node": ">=0.10.0"
4182
- }
4183
- },
4184
- "node_modules/expand-brackets/node_modules/debug": {
4185
- "version": "2.6.9",
4186
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
4187
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
4188
- "dev": true,
4189
- "dependencies": {
4190
- "ms": "2.0.0"
4191
- }
4192
- },
4193
- "node_modules/expand-brackets/node_modules/define-property": {
4194
- "version": "0.2.5",
4195
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
4196
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
4197
- "dev": true,
4198
- "dependencies": {
4199
- "is-descriptor": "^0.1.0"
4200
- },
4201
- "engines": {
4202
- "node": ">=0.10.0"
4203
- }
4204
- },
4205
- "node_modules/expand-brackets/node_modules/extend-shallow": {
4206
- "version": "2.0.1",
4207
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
4208
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
4209
- "dev": true,
4210
- "dependencies": {
4211
- "is-extendable": "^0.1.0"
4212
- },
4213
- "engines": {
4214
- "node": ">=0.10.0"
4215
- }
4216
- },
4217
- "node_modules/expand-brackets/node_modules/ms": {
4218
- "version": "2.0.0",
4219
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
4220
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
4221
- "dev": true
4222
- },
4223
- "node_modules/expand-tilde": {
4224
- "version": "2.0.2",
4225
- "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
4226
- "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
4227
- "dev": true,
4228
- "dependencies": {
4229
- "homedir-polyfill": "^1.0.1"
4230
- },
4231
- "engines": {
4232
- "node": ">=0.10.0"
4233
- }
4234
- },
4235
- "node_modules/ext": {
4236
- "version": "1.5.0",
4237
- "resolved": "https://registry.npmjs.org/ext/-/ext-1.5.0.tgz",
4238
- "integrity": "sha512-+ONcYoWj/SoQwUofMr94aGu05Ou4FepKi7N7b+O8T4jVfyIsZQV1/xeS8jpaBzF0csAk0KLXoHCxU7cKYZjo1Q==",
4239
- "dev": true,
4240
- "dependencies": {
4241
- "type": "^2.5.0"
4242
- }
4243
- },
4244
- "node_modules/ext/node_modules/type": {
4245
- "version": "2.5.0",
4246
- "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz",
4247
- "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==",
4248
- "dev": true
4249
- },
4250
- "node_modules/extend": {
4251
- "version": "3.0.2",
4252
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
4253
- "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
4254
- "dev": true
4255
- },
4256
- "node_modules/extend-shallow": {
4257
- "version": "3.0.2",
4258
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
4259
- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
4260
- "dev": true,
4261
- "dependencies": {
4262
- "assign-symbols": "^1.0.0",
4263
- "is-extendable": "^1.0.1"
4264
- },
4265
- "engines": {
4266
- "node": ">=0.10.0"
4267
- }
4268
- },
4269
- "node_modules/extend-shallow/node_modules/is-extendable": {
4270
- "version": "1.0.1",
4271
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
4272
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
4273
- "dev": true,
4274
- "dependencies": {
4275
- "is-plain-object": "^2.0.4"
4276
- },
4277
- "engines": {
4278
- "node": ">=0.10.0"
4279
- }
4280
- },
4281
- "node_modules/external-editor": {
4282
- "version": "3.1.0",
4283
- "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
4284
- "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
4285
- "dev": true,
4286
- "dependencies": {
4287
- "chardet": "^0.7.0",
4288
- "iconv-lite": "^0.4.24",
4289
- "tmp": "^0.0.33"
4290
- },
4291
- "engines": {
4292
- "node": ">=4"
4293
- }
4294
- },
4295
- "node_modules/external-editor/node_modules/iconv-lite": {
4296
- "version": "0.4.24",
4297
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
4298
- "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
4299
- "dev": true,
4300
- "dependencies": {
4301
- "safer-buffer": ">= 2.1.2 < 3"
4302
- },
4303
- "engines": {
4304
- "node": ">=0.10.0"
4305
- }
4306
- },
4307
- "node_modules/extglob": {
4308
- "version": "2.0.4",
4309
- "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
4310
- "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
4311
- "dev": true,
4312
- "dependencies": {
4313
- "array-unique": "^0.3.2",
4314
- "define-property": "^1.0.0",
4315
- "expand-brackets": "^2.1.4",
4316
- "extend-shallow": "^2.0.1",
4317
- "fragment-cache": "^0.2.1",
4318
- "regex-not": "^1.0.0",
4319
- "snapdragon": "^0.8.1",
4320
- "to-regex": "^3.0.1"
4321
- },
4322
- "engines": {
4323
- "node": ">=0.10.0"
4324
- }
4325
- },
4326
- "node_modules/extglob/node_modules/define-property": {
4327
- "version": "1.0.0",
4328
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
4329
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
4330
- "dev": true,
4331
- "dependencies": {
4332
- "is-descriptor": "^1.0.0"
4333
- },
4334
- "engines": {
4335
- "node": ">=0.10.0"
4336
- }
4337
- },
4338
- "node_modules/extglob/node_modules/extend-shallow": {
4339
- "version": "2.0.1",
4340
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
4341
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
4342
- "dev": true,
4343
- "dependencies": {
4344
- "is-extendable": "^0.1.0"
4345
- },
4346
- "engines": {
4347
- "node": ">=0.10.0"
4348
- }
4349
- },
4350
- "node_modules/extglob/node_modules/is-accessor-descriptor": {
4351
- "version": "1.0.0",
4352
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
4353
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
4354
- "dev": true,
4355
- "dependencies": {
4356
- "kind-of": "^6.0.0"
4357
- },
4358
- "engines": {
4359
- "node": ">=0.10.0"
4360
- }
4361
- },
4362
- "node_modules/extglob/node_modules/is-data-descriptor": {
4363
- "version": "1.0.0",
4364
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
4365
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
4366
- "dev": true,
4367
- "dependencies": {
4368
- "kind-of": "^6.0.0"
4369
- },
4370
- "engines": {
4371
- "node": ">=0.10.0"
4372
- }
4373
- },
4374
- "node_modules/extglob/node_modules/is-descriptor": {
4375
- "version": "1.0.2",
4376
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
4377
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
4378
- "dev": true,
4379
- "dependencies": {
4380
- "is-accessor-descriptor": "^1.0.0",
4381
- "is-data-descriptor": "^1.0.0",
4382
- "kind-of": "^6.0.2"
4383
- },
4384
- "engines": {
4385
- "node": ">=0.10.0"
4386
- }
4387
- },
4388
- "node_modules/extract-zip": {
4389
- "version": "1.7.0",
4390
- "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz",
4391
- "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==",
4392
- "dev": true,
4393
- "dependencies": {
4394
- "concat-stream": "^1.6.2",
4395
- "debug": "^2.6.9",
4396
- "mkdirp": "^0.5.4",
4397
- "yauzl": "^2.10.0"
4398
- },
4399
- "bin": {
4400
- "extract-zip": "cli.js"
4401
- }
4402
- },
4403
- "node_modules/extract-zip/node_modules/debug": {
4404
- "version": "2.6.9",
4405
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
4406
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
4407
- "dev": true,
4408
- "dependencies": {
4409
- "ms": "2.0.0"
4410
- }
4411
- },
4412
- "node_modules/extract-zip/node_modules/ms": {
4413
- "version": "2.0.0",
4414
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
4415
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
4416
- "dev": true
4417
- },
4418
- "node_modules/fancy-log": {
4419
- "version": "1.3.3",
4420
- "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz",
4421
- "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==",
4422
- "dev": true,
4423
- "dependencies": {
4424
- "ansi-gray": "^0.1.1",
4425
- "color-support": "^1.1.3",
4426
- "parse-node-version": "^1.0.0",
4427
- "time-stamp": "^1.0.0"
4428
- },
4429
- "engines": {
4430
- "node": ">= 0.10"
4431
- }
4432
- },
4433
- "node_modules/fast-glob": {
4434
- "version": "3.2.7",
4435
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz",
4436
- "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==",
4437
- "dev": true,
4438
- "dependencies": {
4439
- "@nodelib/fs.stat": "^2.0.2",
4440
- "@nodelib/fs.walk": "^1.2.3",
4441
- "glob-parent": "^5.1.2",
4442
- "merge2": "^1.3.0",
4443
- "micromatch": "^4.0.4"
4444
- },
4445
- "engines": {
4446
- "node": ">=8"
4447
- }
4448
- },
4449
- "node_modules/fast-glob/node_modules/braces": {
4450
- "version": "3.0.2",
4451
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
4452
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
4453
- "dev": true,
4454
- "dependencies": {
4455
- "fill-range": "^7.0.1"
4456
- },
4457
- "engines": {
4458
- "node": ">=8"
4459
- }
4460
- },
4461
- "node_modules/fast-glob/node_modules/fill-range": {
4462
- "version": "7.0.1",
4463
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
4464
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
4465
- "dev": true,
4466
- "dependencies": {
4467
- "to-regex-range": "^5.0.1"
4468
- },
4469
- "engines": {
4470
- "node": ">=8"
4471
- }
4472
- },
4473
- "node_modules/fast-glob/node_modules/glob-parent": {
4474
- "version": "5.1.2",
4475
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
4476
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
4477
- "dev": true,
4478
- "dependencies": {
4479
- "is-glob": "^4.0.1"
4480
- },
4481
- "engines": {
4482
- "node": ">= 6"
4483
- }
4484
- },
4485
- "node_modules/fast-glob/node_modules/is-number": {
4486
- "version": "7.0.0",
4487
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
4488
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
4489
- "dev": true,
4490
- "engines": {
4491
- "node": ">=0.12.0"
4492
- }
4493
- },
4494
- "node_modules/fast-glob/node_modules/micromatch": {
4495
- "version": "4.0.4",
4496
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz",
4497
- "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==",
4498
- "dev": true,
4499
- "dependencies": {
4500
- "braces": "^3.0.1",
4501
- "picomatch": "^2.2.3"
4502
- },
4503
- "engines": {
4504
- "node": ">=8.6"
4505
- }
4506
- },
4507
- "node_modules/fast-glob/node_modules/to-regex-range": {
4508
- "version": "5.0.1",
4509
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
4510
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
4511
- "dev": true,
4512
- "dependencies": {
4513
- "is-number": "^7.0.0"
4514
- },
4515
- "engines": {
4516
- "node": ">=8.0"
4517
- }
4518
- },
4519
- "node_modules/fast-levenshtein": {
4520
- "version": "1.1.4",
4521
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz",
4522
- "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=",
4523
- "dev": true
4524
- },
4525
- "node_modules/fast-memoize": {
4526
- "version": "2.5.2",
4527
- "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz",
4528
- "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw==",
4529
- "dev": true
4530
- },
4531
- "node_modules/fastq": {
4532
- "version": "1.13.0",
4533
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
4534
- "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
4535
- "dev": true,
4536
- "dependencies": {
4537
- "reusify": "^1.0.4"
4538
- }
4539
- },
4540
- "node_modules/fd-slicer": {
4541
- "version": "1.1.0",
4542
- "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
4543
- "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=",
4544
- "dev": true,
4545
- "dependencies": {
4546
- "pend": "~1.2.0"
4547
- }
4548
- },
4549
- "node_modules/figgy-pudding": {
4550
- "version": "3.5.2",
4551
- "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz",
4552
- "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==",
4553
- "dev": true
4554
- },
4555
- "node_modules/figures": {
4556
- "version": "3.2.0",
4557
- "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
4558
- "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
4559
- "dev": true,
4560
- "dependencies": {
4561
- "escape-string-regexp": "^1.0.5"
4562
- },
4563
- "engines": {
4564
- "node": ">=8"
4565
- },
4566
- "funding": {
4567
- "url": "https://github.com/sponsors/sindresorhus"
4568
- }
4569
- },
4570
- "node_modules/file-uri-to-path": {
4571
- "version": "1.0.0",
4572
- "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
4573
- "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
4574
- "dev": true,
4575
- "optional": true
4576
- },
4577
- "node_modules/filesize": {
4578
- "version": "2.0.4",
4579
- "resolved": "https://registry.npmjs.org/filesize/-/filesize-2.0.4.tgz",
4580
- "integrity": "sha1-eAWUHGD83+Y/RtfqNYxZreEcEyU=",
4581
- "dev": true,
4582
- "engines": {
4583
- "node": ">= 0.4.0"
4584
- }
4585
- },
4586
- "node_modules/fill-range": {
4587
- "version": "4.0.0",
4588
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
4589
- "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
4590
- "dev": true,
4591
- "dependencies": {
4592
- "extend-shallow": "^2.0.1",
4593
- "is-number": "^3.0.0",
4594
- "repeat-string": "^1.6.1",
4595
- "to-regex-range": "^2.1.0"
4596
- },
4597
- "engines": {
4598
- "node": ">=0.10.0"
4599
- }
4600
- },
4601
- "node_modules/fill-range/node_modules/extend-shallow": {
4602
- "version": "2.0.1",
4603
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
4604
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
4605
- "dev": true,
4606
- "dependencies": {
4607
- "is-extendable": "^0.1.0"
4608
- },
4609
- "engines": {
4610
- "node": ">=0.10.0"
4611
- }
4612
- },
4613
- "node_modules/find-up": {
4614
- "version": "5.0.0",
4615
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
4616
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
4617
- "dev": true,
4618
- "dependencies": {
4619
- "locate-path": "^6.0.0",
4620
- "path-exists": "^4.0.0"
4621
- },
4622
- "engines": {
4623
- "node": ">=10"
4624
- },
4625
- "funding": {
4626
- "url": "https://github.com/sponsors/sindresorhus"
4627
- }
4628
- },
4629
- "node_modules/findup-sync": {
4630
- "version": "3.0.0",
4631
- "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz",
4632
- "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==",
4633
- "dev": true,
4634
- "dependencies": {
4635
- "detect-file": "^1.0.0",
4636
- "is-glob": "^4.0.0",
4637
- "micromatch": "^3.0.4",
4638
- "resolve-dir": "^1.0.1"
4639
- },
4640
- "engines": {
4641
- "node": ">= 0.10"
4642
- }
4643
- },
4644
- "node_modules/fined": {
4645
- "version": "1.2.0",
4646
- "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz",
4647
- "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==",
4648
- "dev": true,
4649
- "dependencies": {
4650
- "expand-tilde": "^2.0.2",
4651
- "is-plain-object": "^2.0.3",
4652
- "object.defaults": "^1.1.0",
4653
- "object.pick": "^1.2.0",
4654
- "parse-filepath": "^1.0.1"
4655
- },
4656
- "engines": {
4657
- "node": ">= 0.10"
4658
- }
4659
- },
4660
- "node_modules/flagged-respawn": {
4661
- "version": "1.0.1",
4662
- "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz",
4663
- "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==",
4664
- "dev": true,
4665
- "engines": {
4666
- "node": ">= 0.10"
4667
- }
4668
- },
4669
- "node_modules/flush-write-stream": {
4670
- "version": "1.1.1",
4671
- "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
4672
- "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
4673
- "dev": true,
4674
- "dependencies": {
4675
- "inherits": "^2.0.3",
4676
- "readable-stream": "^2.3.6"
4677
- }
4678
- },
4679
- "node_modules/for-in": {
4680
- "version": "1.0.2",
4681
- "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
4682
- "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
4683
- "dev": true,
4684
- "engines": {
4685
- "node": ">=0.10.0"
4686
- }
4687
- },
4688
- "node_modules/for-own": {
4689
- "version": "1.0.0",
4690
- "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz",
4691
- "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=",
4692
- "dev": true,
4693
- "dependencies": {
4694
- "for-in": "^1.0.1"
4695
- },
4696
- "engines": {
4697
- "node": ">=0.10.0"
4698
- }
4699
- },
4700
- "node_modules/fp-and-or": {
4701
- "version": "0.1.3",
4702
- "resolved": "https://registry.npmjs.org/fp-and-or/-/fp-and-or-0.1.3.tgz",
4703
- "integrity": "sha512-wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g==",
4704
- "dev": true,
4705
- "engines": {
4706
- "node": ">=10"
4707
- }
4708
- },
4709
- "node_modules/fraction.js": {
4710
- "version": "4.1.2",
4711
- "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.2.tgz",
4712
- "integrity": "sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==",
4713
- "dev": true,
4714
- "engines": {
4715
- "node": "*"
4716
- },
4717
- "funding": {
4718
- "type": "patreon",
4719
- "url": "https://www.patreon.com/infusion"
4720
- }
4721
- },
4722
- "node_modules/fragment-cache": {
4723
- "version": "0.2.1",
4724
- "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
4725
- "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
4726
- "dev": true,
4727
- "dependencies": {
4728
- "map-cache": "^0.2.2"
4729
- },
4730
- "engines": {
4731
- "node": ">=0.10.0"
4732
- }
4733
- },
4734
- "node_modules/fs-minipass": {
4735
- "version": "2.1.0",
4736
- "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
4737
- "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
4738
- "dev": true,
4739
- "dependencies": {
4740
- "minipass": "^3.0.0"
4741
- },
4742
- "engines": {
4743
- "node": ">= 8"
4744
- }
4745
- },
4746
- "node_modules/fs-mkdirp-stream": {
4747
- "version": "1.0.0",
4748
- "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz",
4749
- "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=",
4750
- "dev": true,
4751
- "dependencies": {
4752
- "graceful-fs": "^4.1.11",
4753
- "through2": "^2.0.3"
4754
- },
4755
- "engines": {
4756
- "node": ">= 0.10"
4757
- }
4758
- },
4759
- "node_modules/fs-mkdirp-stream/node_modules/through2": {
4760
- "version": "2.0.5",
4761
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
4762
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
4763
- "dev": true,
4764
- "dependencies": {
4765
- "readable-stream": "~2.3.6",
4766
- "xtend": "~4.0.1"
4767
- }
4768
- },
4769
- "node_modules/fs.realpath": {
4770
- "version": "1.0.0",
4771
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
4772
- "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
4773
- "dev": true
4774
- },
4775
- "node_modules/fsevents": {
4776
- "version": "1.2.13",
4777
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
4778
- "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
4779
- "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.",
4780
- "dev": true,
4781
- "hasInstallScript": true,
4782
- "optional": true,
4783
- "os": [
4784
- "darwin"
4785
- ],
4786
- "dependencies": {
4787
- "bindings": "^1.5.0",
4788
- "nan": "^2.12.1"
4789
- },
4790
- "engines": {
4791
- "node": ">= 4.0"
4792
- }
4793
- },
4794
- "node_modules/function-bind": {
4795
- "version": "1.1.1",
4796
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
4797
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
4798
- "dev": true
4799
- },
4800
- "node_modules/gauge": {
4801
- "version": "4.0.0",
4802
- "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.0.tgz",
4803
- "integrity": "sha512-F8sU45yQpjQjxKkm1UOAhf0U/O0aFt//Fl7hsrNVto+patMHjs7dPI9mFOGUKbhrgKm0S3EjW3scMFuQmWSROw==",
4804
- "dev": true,
4805
- "dependencies": {
4806
- "ansi-regex": "^5.0.1",
4807
- "aproba": "^1.0.3 || ^2.0.0",
4808
- "color-support": "^1.1.2",
4809
- "console-control-strings": "^1.0.0",
4810
- "has-unicode": "^2.0.1",
4811
- "signal-exit": "^3.0.0",
4812
- "string-width": "^4.2.3",
4813
- "strip-ansi": "^6.0.1",
4814
- "wide-align": "^1.1.2"
4815
- },
4816
- "engines": {
4817
- "node": "^12.13.0 || ^14.15.0 || >=16"
4818
- }
4819
- },
4820
- "node_modules/gensync": {
4821
- "version": "1.0.0-beta.2",
4822
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
4823
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
4824
- "dev": true,
4825
- "engines": {
4826
- "node": ">=6.9.0"
4827
- }
4828
- },
4829
- "node_modules/get-caller-file": {
4830
- "version": "2.0.5",
4831
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
4832
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
4833
- "dev": true,
4834
- "engines": {
4835
- "node": "6.* || 8.* || >= 10.*"
4836
- }
4837
- },
4838
- "node_modules/get-intrinsic": {
4839
- "version": "1.1.1",
4840
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
4841
- "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
4842
- "dev": true,
4843
- "dependencies": {
4844
- "function-bind": "^1.1.1",
4845
- "has": "^1.0.3",
4846
- "has-symbols": "^1.0.1"
4847
- },
4848
- "funding": {
4849
- "url": "https://github.com/sponsors/ljharb"
4850
- }
4851
- },
4852
- "node_modules/get-stdin": {
4853
- "version": "4.0.1",
4854
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
4855
- "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=",
4856
- "dev": true,
4857
- "engines": {
4858
- "node": ">=0.10.0"
4859
- }
4860
- },
4861
- "node_modules/get-stream": {
4862
- "version": "5.2.0",
4863
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
4864
- "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
4865
- "dev": true,
4866
- "dependencies": {
4867
- "pump": "^3.0.0"
4868
- },
4869
- "engines": {
4870
- "node": ">=8"
4871
- },
4872
- "funding": {
4873
- "url": "https://github.com/sponsors/sindresorhus"
4874
- }
4875
- },
4876
- "node_modules/get-value": {
4877
- "version": "2.0.6",
4878
- "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
4879
- "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
4880
- "dev": true,
4881
- "engines": {
4882
- "node": ">=0.10.0"
4883
- }
4884
- },
4885
- "node_modules/gettext-parser": {
4886
- "version": "1.4.0",
4887
- "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.4.0.tgz",
4888
- "integrity": "sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA==",
4889
- "dev": true,
4890
- "dependencies": {
4891
- "encoding": "^0.1.12",
4892
- "safe-buffer": "^5.1.1"
4893
- }
4894
- },
4895
- "node_modules/gettext-to-messageformat": {
4896
- "version": "0.3.1",
4897
- "resolved": "https://registry.npmjs.org/gettext-to-messageformat/-/gettext-to-messageformat-0.3.1.tgz",
4898
- "integrity": "sha512-UyqIL3Ul4NryU95Wome/qtlcuVIqgEWVIFw0zi7Lv14ACLXfaVDCbrjZ7o+3BZ7u+4NS1mP/2O1eXZoHCoas8g==",
4899
- "dev": true,
4900
- "dependencies": {
4901
- "gettext-parser": "^1.4.0"
4902
- },
4903
- "engines": {
4904
- "node": ">=6.0"
4905
- }
4906
- },
4907
- "node_modules/glob": {
4908
- "version": "7.1.6",
4909
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
4910
- "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
4911
- "dev": true,
4912
- "dependencies": {
4913
- "fs.realpath": "^1.0.0",
4914
- "inflight": "^1.0.4",
4915
- "inherits": "2",
4916
- "minimatch": "^3.0.4",
4917
- "once": "^1.3.0",
4918
- "path-is-absolute": "^1.0.0"
4919
- },
4920
- "engines": {
4921
- "node": "*"
4922
- },
4923
- "funding": {
4924
- "url": "https://github.com/sponsors/isaacs"
4925
- }
4926
- },
4927
- "node_modules/glob-parent": {
4928
- "version": "3.1.0",
4929
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
4930
- "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
4931
- "dev": true,
4932
- "dependencies": {
4933
- "is-glob": "^3.1.0",
4934
- "path-dirname": "^1.0.0"
4935
- }
4936
- },
4937
- "node_modules/glob-parent/node_modules/is-glob": {
4938
- "version": "3.1.0",
4939
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
4940
- "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
4941
- "dev": true,
4942
- "dependencies": {
4943
- "is-extglob": "^2.1.0"
4944
- },
4945
- "engines": {
4946
- "node": ">=0.10.0"
4947
- }
4948
- },
4949
- "node_modules/glob-stream": {
4950
- "version": "6.1.0",
4951
- "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz",
4952
- "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=",
4953
- "dev": true,
4954
- "dependencies": {
4955
- "extend": "^3.0.0",
4956
- "glob": "^7.1.1",
4957
- "glob-parent": "^3.1.0",
4958
- "is-negated-glob": "^1.0.0",
4959
- "ordered-read-streams": "^1.0.0",
4960
- "pumpify": "^1.3.5",
4961
- "readable-stream": "^2.1.5",
4962
- "remove-trailing-separator": "^1.0.1",
4963
- "to-absolute-glob": "^2.0.0",
4964
- "unique-stream": "^2.0.2"
4965
- },
4966
- "engines": {
4967
- "node": ">= 0.10"
4968
- }
4969
- },
4970
- "node_modules/glob-watcher": {
4971
- "version": "5.0.5",
4972
- "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz",
4973
- "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==",
4974
- "dev": true,
4975
- "dependencies": {
4976
- "anymatch": "^2.0.0",
4977
- "async-done": "^1.2.0",
4978
- "chokidar": "^2.0.0",
4979
- "is-negated-glob": "^1.0.0",
4980
- "just-debounce": "^1.0.0",
4981
- "normalize-path": "^3.0.0",
4982
- "object.defaults": "^1.1.0"
4983
- },
4984
- "engines": {
4985
- "node": ">= 0.10"
4986
- }
4987
- },
4988
- "node_modules/global-dirs": {
4989
- "version": "3.0.0",
4990
- "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz",
4991
- "integrity": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==",
4992
- "dev": true,
4993
- "dependencies": {
4994
- "ini": "2.0.0"
4995
- },
4996
- "engines": {
4997
- "node": ">=10"
4998
- },
4999
- "funding": {
5000
- "url": "https://github.com/sponsors/sindresorhus"
5001
- }
5002
- },
5003
- "node_modules/global-dirs/node_modules/ini": {
5004
- "version": "2.0.0",
5005
- "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz",
5006
- "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==",
5007
- "dev": true,
5008
- "engines": {
5009
- "node": ">=10"
5010
- }
5011
- },
5012
- "node_modules/global-modules": {
5013
- "version": "1.0.0",
5014
- "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz",
5015
- "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==",
5016
- "dev": true,
5017
- "dependencies": {
5018
- "global-prefix": "^1.0.1",
5019
- "is-windows": "^1.0.1",
5020
- "resolve-dir": "^1.0.0"
5021
- },
5022
- "engines": {
5023
- "node": ">=0.10.0"
5024
- }
5025
- },
5026
- "node_modules/global-prefix": {
5027
- "version": "1.0.2",
5028
- "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz",
5029
- "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=",
5030
- "dev": true,
5031
- "dependencies": {
5032
- "expand-tilde": "^2.0.2",
5033
- "homedir-polyfill": "^1.0.1",
5034
- "ini": "^1.3.4",
5035
- "is-windows": "^1.0.1",
5036
- "which": "^1.2.14"
5037
- },
5038
- "engines": {
5039
- "node": ">=0.10.0"
5040
- }
5041
- },
5042
- "node_modules/globals": {
5043
- "version": "11.12.0",
5044
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
5045
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
5046
- "dev": true,
5047
- "engines": {
5048
- "node": ">=4"
5049
- }
5050
- },
5051
- "node_modules/globby": {
5052
- "version": "11.0.4",
5053
- "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz",
5054
- "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==",
5055
- "dev": true,
5056
- "dependencies": {
5057
- "array-union": "^2.1.0",
5058
- "dir-glob": "^3.0.1",
5059
- "fast-glob": "^3.1.1",
5060
- "ignore": "^5.1.4",
5061
- "merge2": "^1.3.0",
5062
- "slash": "^3.0.0"
5063
- },
5064
- "engines": {
5065
- "node": ">=10"
5066
- },
5067
- "funding": {
5068
- "url": "https://github.com/sponsors/sindresorhus"
5069
- }
5070
- },
5071
- "node_modules/glogg": {
5072
- "version": "1.0.2",
5073
- "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz",
5074
- "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==",
5075
- "dev": true,
5076
- "dependencies": {
5077
- "sparkles": "^1.0.0"
5078
- },
5079
- "engines": {
5080
- "node": ">= 0.10"
5081
- }
5082
- },
5083
- "node_modules/got": {
5084
- "version": "10.7.0",
5085
- "resolved": "https://registry.npmjs.org/got/-/got-10.7.0.tgz",
5086
- "integrity": "sha512-aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg==",
5087
- "dev": true,
5088
- "dependencies": {
5089
- "@sindresorhus/is": "^2.0.0",
5090
- "@szmarczak/http-timer": "^4.0.0",
5091
- "@types/cacheable-request": "^6.0.1",
5092
- "cacheable-lookup": "^2.0.0",
5093
- "cacheable-request": "^7.0.1",
5094
- "decompress-response": "^5.0.0",
5095
- "duplexer3": "^0.1.4",
5096
- "get-stream": "^5.0.0",
5097
- "lowercase-keys": "^2.0.0",
5098
- "mimic-response": "^2.1.0",
5099
- "p-cancelable": "^2.0.0",
5100
- "p-event": "^4.0.0",
5101
- "responselike": "^2.0.0",
5102
- "to-readable-stream": "^2.0.0",
5103
- "type-fest": "^0.10.0"
5104
- },
5105
- "engines": {
5106
- "node": ">=10"
5107
- },
5108
- "funding": {
5109
- "url": "https://github.com/sindresorhus/got?sponsor=1"
5110
- }
5111
- },
5112
- "node_modules/graceful-fs": {
5113
- "version": "4.1.15",
5114
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
5115
- "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==",
5116
- "dev": true
5117
- },
5118
- "node_modules/graceful-readlink": {
5119
- "version": "1.0.1",
5120
- "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
5121
- "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=",
5122
- "dev": true
5123
- },
5124
- "node_modules/gulp": {
5125
- "version": "4.0.2",
5126
- "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz",
5127
- "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==",
5128
- "dev": true,
5129
- "dependencies": {
5130
- "glob-watcher": "^5.0.3",
5131
- "gulp-cli": "^2.2.0",
5132
- "undertaker": "^1.2.1",
5133
- "vinyl-fs": "^3.0.0"
5134
- },
5135
- "bin": {
5136
- "gulp": "bin/gulp.js"
5137
- },
5138
- "engines": {
5139
- "node": ">= 0.10"
5140
- }
5141
- },
5142
- "node_modules/gulp-autoprefixer": {
5143
- "version": "8.0.0",
5144
- "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-8.0.0.tgz",
5145
- "integrity": "sha512-sVR++PIaXpa81p52dmmA/jt50bw0egmylK5mjagfgOJ8uLDGaF9tHyzvetkY9Uo0gBZUS5sVqN3kX/GlUKOyog==",
5146
- "dev": true,
5147
- "dependencies": {
5148
- "autoprefixer": "^10.2.6",
5149
- "fancy-log": "^1.3.3",
5150
- "plugin-error": "^1.0.1",
5151
- "postcss": "^8.3.0",
5152
- "through2": "^4.0.2",
5153
- "vinyl-sourcemaps-apply": "^0.2.1"
5154
- },
5155
- "engines": {
5156
- "node": ">=12"
5157
- },
5158
- "peerDependencies": {
5159
- "gulp": ">=4"
5160
- },
5161
- "peerDependenciesMeta": {
5162
- "gulp": {
5163
- "optional": true
5164
- }
5165
- }
5166
- },
5167
- "node_modules/gulp-babel": {
5168
- "version": "8.0.0",
5169
- "resolved": "https://registry.npmjs.org/gulp-babel/-/gulp-babel-8.0.0.tgz",
5170
- "integrity": "sha512-oomaIqDXxFkg7lbpBou/gnUkX51/Y/M2ZfSjL2hdqXTAlSWZcgZtd2o0cOH0r/eE8LWD0+Q/PsLsr2DKOoqToQ==",
5171
- "dev": true,
5172
- "dependencies": {
5173
- "plugin-error": "^1.0.1",
5174
- "replace-ext": "^1.0.0",
5175
- "through2": "^2.0.0",
5176
- "vinyl-sourcemaps-apply": "^0.2.0"
5177
- },
5178
- "engines": {
5179
- "node": ">=6"
5180
- },
5181
- "peerDependencies": {
5182
- "@babel/core": "^7.0.0"
5183
- }
5184
- },
5185
- "node_modules/gulp-babel/node_modules/through2": {
5186
- "version": "2.0.5",
5187
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
5188
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
5189
- "dev": true,
5190
- "dependencies": {
5191
- "readable-stream": "~2.3.6",
5192
- "xtend": "~4.0.1"
5193
- }
5194
- },
5195
- "node_modules/gulp-clean-css": {
5196
- "version": "4.3.0",
5197
- "resolved": "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-4.3.0.tgz",
5198
- "integrity": "sha512-mGyeT3qqFXTy61j0zOIciS4MkYziF2U594t2Vs9rUnpkEHqfu6aDITMp8xOvZcvdX61Uz3y1mVERRYmjzQF5fg==",
5199
- "dev": true,
5200
- "dependencies": {
5201
- "clean-css": "4.2.3",
5202
- "plugin-error": "1.0.1",
5203
- "through2": "3.0.1",
5204
- "vinyl-sourcemaps-apply": "0.2.1"
5205
- }
5206
- },
5207
- "node_modules/gulp-clean-css/node_modules/through2": {
5208
- "version": "3.0.1",
5209
- "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz",
5210
- "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==",
5211
- "dev": true,
5212
- "dependencies": {
5213
- "readable-stream": "2 || 3"
5214
- }
5215
- },
5216
- "node_modules/gulp-concat": {
5217
- "version": "2.6.1",
5218
- "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz",
5219
- "integrity": "sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=",
5220
- "dev": true,
5221
- "dependencies": {
5222
- "concat-with-sourcemaps": "^1.0.0",
5223
- "through2": "^2.0.0",
5224
- "vinyl": "^2.0.0"
5225
- },
5226
- "engines": {
5227
- "node": ">= 0.10"
5228
- }
5229
- },
5230
- "node_modules/gulp-concat/node_modules/through2": {
5231
- "version": "2.0.5",
5232
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
5233
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
5234
- "dev": true,
5235
- "dependencies": {
5236
- "readable-stream": "~2.3.6",
5237
- "xtend": "~4.0.1"
5238
- }
5239
- },
5240
- "node_modules/gulp-cssmin": {
5241
- "version": "0.2.0",
5242
- "resolved": "https://registry.npmjs.org/gulp-cssmin/-/gulp-cssmin-0.2.0.tgz",
5243
- "integrity": "sha1-h6s8ad05sg1dljVcZQStakR7HnI=",
5244
- "dev": true,
5245
- "dependencies": {
5246
- "clean-css": "^3.1.9",
5247
- "filesize": "~2.0.0",
5248
- "graceful-fs": "~4.1.4",
5249
- "gulp-rename": "~1.1.0",
5250
- "gulp-util": "~2.2.0",
5251
- "map-stream": "0.0.4",
5252
- "temp-write": "~0.1.0"
5253
- }
5254
- },
5255
- "node_modules/gulp-cssmin/node_modules/clean-css": {
5256
- "version": "3.4.28",
5257
- "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz",
5258
- "integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=",
5259
- "dev": true,
5260
- "dependencies": {
5261
- "commander": "2.8.x",
5262
- "source-map": "0.4.x"
5263
- },
5264
- "bin": {
5265
- "cleancss": "bin/cleancss"
5266
- },
5267
- "engines": {
5268
- "node": ">=0.10.0"
5269
- }
5270
- },
5271
- "node_modules/gulp-cssmin/node_modules/commander": {
5272
- "version": "2.8.1",
5273
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
5274
- "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=",
5275
- "dev": true,
5276
- "dependencies": {
5277
- "graceful-readlink": ">= 1.0.0"
5278
- },
5279
- "engines": {
5280
- "node": ">= 0.6.x"
5281
- }
5282
- },
5283
- "node_modules/gulp-cssmin/node_modules/gulp-rename": {
5284
- "version": "1.1.0",
5285
- "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.1.0.tgz",
5286
- "integrity": "sha1-kwkKqvTThsB/IFOKaIjxXvunJ6E=",
5287
- "dev": true,
5288
- "dependencies": {
5289
- "map-stream": ">=0.0.4"
5290
- },
5291
- "engines": {
5292
- "node": ">=0.8.0",
5293
- "npm": ">=1.2.10"
5294
- }
5295
- },
5296
- "node_modules/gulp-cssmin/node_modules/source-map": {
5297
- "version": "0.4.4",
5298
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
5299
- "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=",
5300
- "dev": true,
5301
- "dependencies": {
5302
- "amdefine": ">=0.0.4"
5303
- },
5304
- "engines": {
5305
- "node": ">=0.8.0"
5306
- }
5307
- },
5308
- "node_modules/gulp-merge-media-queries": {
5309
- "version": "0.2.1",
5310
- "resolved": "https://registry.npmjs.org/gulp-merge-media-queries/-/gulp-merge-media-queries-0.2.1.tgz",
5311
- "integrity": "sha1-g25eEOV46Y+a6YI97rxdlUYheDA=",
5312
- "dev": true,
5313
- "dependencies": {
5314
- "css-parse": "~1.7.0",
5315
- "gulp-util": "~2.2.14",
5316
- "lodash.defaults": "~2.4.1",
5317
- "through2": "~0.4.1"
5318
- },
5319
- "engines": {
5320
- "node": ">= 0.8.0"
5321
- }
5322
- },
5323
- "node_modules/gulp-merge-media-queries/node_modules/isarray": {
5324
- "version": "0.0.1",
5325
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
5326
- "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
5327
- "dev": true
5328
- },
5329
- "node_modules/gulp-merge-media-queries/node_modules/object-keys": {
5330
- "version": "0.4.0",
5331
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz",
5332
- "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=",
5333
- "dev": true
5334
- },
5335
- "node_modules/gulp-merge-media-queries/node_modules/readable-stream": {
5336
- "version": "1.0.34",
5337
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
5338
- "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
5339
- "dev": true,
5340
- "dependencies": {
5341
- "core-util-is": "~1.0.0",
5342
- "inherits": "~2.0.1",
5343
- "isarray": "0.0.1",
5344
- "string_decoder": "~0.10.x"
5345
- }
5346
- },
5347
- "node_modules/gulp-merge-media-queries/node_modules/string_decoder": {
5348
- "version": "0.10.31",
5349
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
5350
- "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
5351
- "dev": true
5352
- },
5353
- "node_modules/gulp-merge-media-queries/node_modules/through2": {
5354
- "version": "0.4.2",
5355
- "resolved": "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz",
5356
- "integrity": "sha1-2/WGYDEVHsg1K7bE22SiKSqEC5s=",
5357
- "dev": true,
5358
- "dependencies": {
5359
- "readable-stream": "~1.0.17",
5360
- "xtend": "~2.1.1"
5361
- }
5362
- },
5363
- "node_modules/gulp-merge-media-queries/node_modules/xtend": {
5364
- "version": "2.1.2",
5365
- "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz",
5366
- "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=",
5367
- "dev": true,
5368
- "dependencies": {
5369
- "object-keys": "~0.4.0"
5370
- },
5371
- "engines": {
5372
- "node": ">=0.4"
5373
- }
5374
- },
5375
- "node_modules/gulp-plumber": {
5376
- "version": "1.2.1",
5377
- "resolved": "https://registry.npmjs.org/gulp-plumber/-/gulp-plumber-1.2.1.tgz",
5378
- "integrity": "sha512-mctAi9msEAG7XzW5ytDVZ9PxWMzzi1pS2rBH7lA095DhMa6KEXjm+St0GOCc567pJKJ/oCvosVAZEpAey0q2eQ==",
5379
- "dev": true,
5380
- "dependencies": {
5381
- "chalk": "^1.1.3",
5382
- "fancy-log": "^1.3.2",
5383
- "plugin-error": "^0.1.2",
5384
- "through2": "^2.0.3"
5385
- },
5386
- "engines": {
5387
- "node": ">=0.10",
5388
- "npm": ">=1.2.10"
5389
- }
5390
- },
5391
- "node_modules/gulp-plumber/node_modules/ansi-regex": {
5392
- "version": "2.1.1",
5393
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
5394
- "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
5395
- "dev": true,
5396
- "engines": {
5397
- "node": ">=0.10.0"
5398
- }
5399
- },
5400
- "node_modules/gulp-plumber/node_modules/ansi-styles": {
5401
- "version": "2.2.1",
5402
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
5403
- "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
5404
- "dev": true,
5405
- "engines": {
5406
- "node": ">=0.10.0"
5407
- }
5408
- },
5409
- "node_modules/gulp-plumber/node_modules/arr-diff": {
5410
- "version": "1.1.0",
5411
- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz",
5412
- "integrity": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=",
5413
- "dev": true,
5414
- "dependencies": {
5415
- "arr-flatten": "^1.0.1",
5416
- "array-slice": "^0.2.3"
5417
- },
5418
- "engines": {
5419
- "node": ">=0.10.0"
5420
- }
5421
- },
5422
- "node_modules/gulp-plumber/node_modules/arr-union": {
5423
- "version": "2.1.0",
5424
- "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz",
5425
- "integrity": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=",
5426
- "dev": true,
5427
- "engines": {
5428
- "node": ">=0.10.0"
5429
- }
5430
- },
5431
- "node_modules/gulp-plumber/node_modules/array-slice": {
5432
- "version": "0.2.3",
5433
- "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz",
5434
- "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=",
5435
- "dev": true,
5436
- "engines": {
5437
- "node": ">=0.10.0"
5438
- }
5439
- },
5440
- "node_modules/gulp-plumber/node_modules/chalk": {
5441
- "version": "1.1.3",
5442
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
5443
- "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
5444
- "dev": true,
5445
- "dependencies": {
5446
- "ansi-styles": "^2.2.1",
5447
- "escape-string-regexp": "^1.0.2",
5448
- "has-ansi": "^2.0.0",
5449
- "strip-ansi": "^3.0.0",
5450
- "supports-color": "^2.0.0"
5451
- },
5452
- "engines": {
5453
- "node": ">=0.10.0"
5454
- }
5455
- },
5456
- "node_modules/gulp-plumber/node_modules/extend-shallow": {
5457
- "version": "1.1.4",
5458
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz",
5459
- "integrity": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=",
5460
- "dev": true,
5461
- "dependencies": {
5462
- "kind-of": "^1.1.0"
5463
- },
5464
- "engines": {
5465
- "node": ">=0.10.0"
5466
- }
5467
- },
5468
- "node_modules/gulp-plumber/node_modules/kind-of": {
5469
- "version": "1.1.0",
5470
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz",
5471
- "integrity": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=",
5472
- "dev": true,
5473
- "engines": {
5474
- "node": ">=0.10.0"
5475
- }
5476
- },
5477
- "node_modules/gulp-plumber/node_modules/plugin-error": {
5478
- "version": "0.1.2",
5479
- "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz",
5480
- "integrity": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=",
5481
- "dev": true,
5482
- "dependencies": {
5483
- "ansi-cyan": "^0.1.1",
5484
- "ansi-red": "^0.1.1",
5485
- "arr-diff": "^1.0.1",
5486
- "arr-union": "^2.0.1",
5487
- "extend-shallow": "^1.1.2"
5488
- },
5489
- "engines": {
5490
- "node": ">=0.10.0"
5491
- }
5492
- },
5493
- "node_modules/gulp-plumber/node_modules/strip-ansi": {
5494
- "version": "3.0.1",
5495
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
5496
- "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
5497
- "dev": true,
5498
- "dependencies": {
5499
- "ansi-regex": "^2.0.0"
5500
- },
5501
- "engines": {
5502
- "node": ">=0.10.0"
5503
- }
5504
- },
5505
- "node_modules/gulp-plumber/node_modules/supports-color": {
5506
- "version": "2.0.0",
5507
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
5508
- "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
5509
- "dev": true,
5510
- "engines": {
5511
- "node": ">=0.8.0"
5512
- }
5513
- },
5514
- "node_modules/gulp-plumber/node_modules/through2": {
5515
- "version": "2.0.5",
5516
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
5517
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
5518
- "dev": true,
5519
- "dependencies": {
5520
- "readable-stream": "~2.3.6",
5521
- "xtend": "~4.0.1"
5522
- }
5523
- },
5524
- "node_modules/gulp-rename": {
5525
- "version": "2.0.0",
5526
- "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-2.0.0.tgz",
5527
- "integrity": "sha512-97Vba4KBzbYmR5VBs9mWmK+HwIf5mj+/zioxfZhOKeXtx5ZjBk57KFlePf5nxq9QsTtFl0ejnHE3zTC9MHXqyQ==",
5528
- "dev": true,
5529
- "engines": {
5530
- "node": ">=4"
5531
- }
5532
- },
5533
- "node_modules/gulp-replace": {
5534
- "version": "1.1.3",
5535
- "resolved": "https://registry.npmjs.org/gulp-replace/-/gulp-replace-1.1.3.tgz",
5536
- "integrity": "sha512-HcPHpWY4XdF8zxYkDODHnG2+7a3nD/Y8Mfu3aBgMiCFDW3X2GiOKXllsAmILcxe3KZT2BXoN18WrpEFm48KfLQ==",
5537
- "dev": true,
5538
- "dependencies": {
5539
- "@types/node": "^14.14.41",
5540
- "@types/vinyl": "^2.0.4",
5541
- "istextorbinary": "^3.0.0",
5542
- "replacestream": "^4.0.3",
5543
- "yargs-parser": ">=5.0.0-security.0"
5544
- },
5545
- "engines": {
5546
- "node": ">=10"
5547
- }
5548
- },
5549
- "node_modules/gulp-sass": {
5550
- "version": "5.0.0",
5551
- "resolved": "https://registry.npmjs.org/gulp-sass/-/gulp-sass-5.0.0.tgz",
5552
- "integrity": "sha512-J0aH0/2N4+2szGCeut0ktGHK0Wg8L9uWivuigrl7xv+nhxozBQRAKLrhnDDaTa3FeUWYtgT8w4RlgdhRy5v16w==",
5553
- "dev": true,
5554
- "dependencies": {
5555
- "chalk": "^4.1.1",
5556
- "lodash": "^4.17.20",
5557
- "plugin-error": "^1.0.1",
5558
- "replace-ext": "^2.0.0",
5559
- "strip-ansi": "^6.0.0",
5560
- "transfob": "^1.0.0",
5561
- "vinyl-sourcemaps-apply": "^0.2.1"
5562
- },
5563
- "engines": {
5564
- "node": ">=12"
5565
- }
5566
- },
5567
- "node_modules/gulp-sass/node_modules/ansi-styles": {
5568
- "version": "4.3.0",
5569
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
5570
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
5571
- "dev": true,
5572
- "dependencies": {
5573
- "color-convert": "^2.0.1"
5574
- },
5575
- "engines": {
5576
- "node": ">=8"
5577
- },
5578
- "funding": {
5579
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
5580
- }
5581
- },
5582
- "node_modules/gulp-sass/node_modules/chalk": {
5583
- "version": "4.1.2",
5584
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
5585
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
5586
- "dev": true,
5587
- "dependencies": {
5588
- "ansi-styles": "^4.1.0",
5589
- "supports-color": "^7.1.0"
5590
- },
5591
- "engines": {
5592
- "node": ">=10"
5593
- },
5594
- "funding": {
5595
- "url": "https://github.com/chalk/chalk?sponsor=1"
5596
- }
5597
- },
5598
- "node_modules/gulp-sass/node_modules/color-convert": {
5599
- "version": "2.0.1",
5600
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
5601
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
5602
- "dev": true,
5603
- "dependencies": {
5604
- "color-name": "~1.1.4"
5605
- },
5606
- "engines": {
5607
- "node": ">=7.0.0"
5608
- }
5609
- },
5610
- "node_modules/gulp-sass/node_modules/color-name": {
5611
- "version": "1.1.4",
5612
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
5613
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
5614
- "dev": true
5615
- },
5616
- "node_modules/gulp-sass/node_modules/has-flag": {
5617
- "version": "4.0.0",
5618
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
5619
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
5620
- "dev": true,
5621
- "engines": {
5622
- "node": ">=8"
5623
- }
5624
- },
5625
- "node_modules/gulp-sass/node_modules/replace-ext": {
5626
- "version": "2.0.0",
5627
- "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz",
5628
- "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==",
5629
- "dev": true,
5630
- "engines": {
5631
- "node": ">= 10"
5632
- }
5633
- },
5634
- "node_modules/gulp-sass/node_modules/supports-color": {
5635
- "version": "7.2.0",
5636
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
5637
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
5638
- "dev": true,
5639
- "dependencies": {
5640
- "has-flag": "^4.0.0"
5641
- },
5642
- "engines": {
5643
- "node": ">=8"
5644
- }
5645
- },
5646
- "node_modules/gulp-uglify": {
5647
- "version": "3.0.2",
5648
- "resolved": "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.2.tgz",
5649
- "integrity": "sha512-gk1dhB74AkV2kzqPMQBLA3jPoIAPd/nlNzP2XMDSG8XZrqnlCiDGAqC+rZOumzFvB5zOphlFh6yr3lgcAb/OOg==",
5650
- "dev": true,
5651
- "dependencies": {
5652
- "array-each": "^1.0.1",
5653
- "extend-shallow": "^3.0.2",
5654
- "gulplog": "^1.0.0",
5655
- "has-gulplog": "^0.1.0",
5656
- "isobject": "^3.0.1",
5657
- "make-error-cause": "^1.1.1",
5658
- "safe-buffer": "^5.1.2",
5659
- "through2": "^2.0.0",
5660
- "uglify-js": "^3.0.5",
5661
- "vinyl-sourcemaps-apply": "^0.2.0"
5662
- }
5663
- },
5664
- "node_modules/gulp-uglify/node_modules/extend-shallow": {
5665
- "version": "3.0.2",
5666
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
5667
- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
5668
- "dev": true,
5669
- "dependencies": {
5670
- "assign-symbols": "^1.0.0",
5671
- "is-extendable": "^1.0.1"
5672
- },
5673
- "engines": {
5674
- "node": ">=0.10.0"
5675
- }
5676
- },
5677
- "node_modules/gulp-uglify/node_modules/is-extendable": {
5678
- "version": "1.0.1",
5679
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
5680
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
5681
- "dev": true,
5682
- "dependencies": {
5683
- "is-plain-object": "^2.0.4"
5684
- },
5685
- "engines": {
5686
- "node": ">=0.10.0"
5687
- }
5688
- },
5689
- "node_modules/gulp-uglify/node_modules/is-plain-object": {
5690
- "version": "2.0.4",
5691
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
5692
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
5693
- "dev": true,
5694
- "dependencies": {
5695
- "isobject": "^3.0.1"
5696
- },
5697
- "engines": {
5698
- "node": ">=0.10.0"
5699
- }
5700
- },
5701
- "node_modules/gulp-uglify/node_modules/through2": {
5702
- "version": "2.0.5",
5703
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
5704
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
5705
- "dev": true,
5706
- "dependencies": {
5707
- "readable-stream": "~2.3.6",
5708
- "xtend": "~4.0.1"
5709
- }
5710
- },
5711
- "node_modules/gulp-util": {
5712
- "version": "2.2.20",
5713
- "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-2.2.20.tgz",
5714
- "integrity": "sha1-1xRuVyiRC9jwR6awseVJvCLb1kw=",
5715
- "deprecated": "gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5",
5716
- "dev": true,
5717
- "dependencies": {
5718
- "chalk": "^0.5.0",
5719
- "dateformat": "^1.0.7-1.2.3",
5720
- "lodash._reinterpolate": "^2.4.1",
5721
- "lodash.template": "^2.4.1",
5722
- "minimist": "^0.2.0",
5723
- "multipipe": "^0.1.0",
5724
- "through2": "^0.5.0",
5725
- "vinyl": "^0.2.1"
5726
- },
5727
- "engines": {
5728
- "node": ">= 0.9"
5729
- }
5730
- },
5731
- "node_modules/gulp-util/node_modules/ansi-regex": {
5732
- "version": "0.2.1",
5733
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz",
5734
- "integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=",
5735
- "dev": true,
5736
- "engines": {
5737
- "node": ">=0.10.0"
5738
- }
5739
- },
5740
- "node_modules/gulp-util/node_modules/ansi-styles": {
5741
- "version": "1.1.0",
5742
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz",
5743
- "integrity": "sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94=",
5744
- "dev": true,
5745
- "engines": {
5746
- "node": ">=0.10.0"
5747
- }
5748
- },
5749
- "node_modules/gulp-util/node_modules/chalk": {
5750
- "version": "0.5.1",
5751
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz",
5752
- "integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=",
5753
- "dev": true,
5754
- "dependencies": {
5755
- "ansi-styles": "^1.1.0",
5756
- "escape-string-regexp": "^1.0.0",
5757
- "has-ansi": "^0.1.0",
5758
- "strip-ansi": "^0.3.0",
5759
- "supports-color": "^0.2.0"
5760
- },
5761
- "engines": {
5762
- "node": ">=0.10.0"
5763
- }
5764
- },
5765
- "node_modules/gulp-util/node_modules/clone-stats": {
5766
- "version": "0.0.1",
5767
- "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz",
5768
- "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=",
5769
- "dev": true
5770
- },
5771
- "node_modules/gulp-util/node_modules/has-ansi": {
5772
- "version": "0.1.0",
5773
- "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz",
5774
- "integrity": "sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4=",
5775
- "dev": true,
5776
- "dependencies": {
5777
- "ansi-regex": "^0.2.0"
5778
- },
5779
- "bin": {
5780
- "has-ansi": "cli.js"
5781
- },
5782
- "engines": {
5783
- "node": ">=0.10.0"
5784
- }
5785
- },
5786
- "node_modules/gulp-util/node_modules/isarray": {
5787
- "version": "0.0.1",
5788
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
5789
- "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
5790
- "dev": true
5791
- },
5792
- "node_modules/gulp-util/node_modules/readable-stream": {
5793
- "version": "1.0.34",
5794
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
5795
- "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
5796
- "dev": true,
5797
- "dependencies": {
5798
- "core-util-is": "~1.0.0",
5799
- "inherits": "~2.0.1",
5800
- "isarray": "0.0.1",
5801
- "string_decoder": "~0.10.x"
5802
- }
5803
- },
5804
- "node_modules/gulp-util/node_modules/string_decoder": {
5805
- "version": "0.10.31",
5806
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
5807
- "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
5808
- "dev": true
5809
- },
5810
- "node_modules/gulp-util/node_modules/strip-ansi": {
5811
- "version": "0.3.0",
5812
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz",
5813
- "integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=",
5814
- "dev": true,
5815
- "dependencies": {
5816
- "ansi-regex": "^0.2.1"
5817
- },
5818
- "bin": {
5819
- "strip-ansi": "cli.js"
5820
- },
5821
- "engines": {
5822
- "node": ">=0.10.0"
5823
- }
5824
- },
5825
- "node_modules/gulp-util/node_modules/supports-color": {
5826
- "version": "0.2.0",
5827
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz",
5828
- "integrity": "sha1-2S3iaU6z9nMjlz1649i1W0wiGQo=",
5829
- "dev": true,
5830
- "bin": {
5831
- "supports-color": "cli.js"
5832
- },
5833
- "engines": {
5834
- "node": ">=0.10.0"
5835
- }
5836
- },
5837
- "node_modules/gulp-util/node_modules/through2": {
5838
- "version": "0.5.1",
5839
- "resolved": "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz",
5840
- "integrity": "sha1-390BLrnHAOIyP9M084rGIqs3Lac=",
5841
- "dev": true,
5842
- "dependencies": {
5843
- "readable-stream": "~1.0.17",
5844
- "xtend": "~3.0.0"
5845
- }
5846
- },
5847
- "node_modules/gulp-util/node_modules/vinyl": {
5848
- "version": "0.2.3",
5849
- "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.2.3.tgz",
5850
- "integrity": "sha1-vKk4IJWC7FpJrVOKAPofEl5RMlI=",
5851
- "dev": true,
5852
- "dependencies": {
5853
- "clone-stats": "~0.0.1"
5854
- },
5855
- "engines": {
5856
- "node": ">= 0.9"
5857
- }
5858
- },
5859
- "node_modules/gulp-util/node_modules/xtend": {
5860
- "version": "3.0.0",
5861
- "resolved": "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz",
5862
- "integrity": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=",
5863
- "dev": true,
5864
- "engines": {
5865
- "node": ">=0.4"
5866
- }
5867
- },
5868
- "node_modules/gulp/node_modules/ansi-regex": {
5869
- "version": "2.1.1",
5870
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
5871
- "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
5872
- "dev": true,
5873
- "engines": {
5874
- "node": ">=0.10.0"
5875
- }
5876
- },
5877
- "node_modules/gulp/node_modules/camelcase": {
5878
- "version": "3.0.0",
5879
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
5880
- "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=",
5881
- "dev": true,
5882
- "engines": {
5883
- "node": ">=0.10.0"
5884
- }
5885
- },
5886
- "node_modules/gulp/node_modules/cliui": {
5887
- "version": "3.2.0",
5888
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
5889
- "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
5890
- "dev": true,
5891
- "dependencies": {
5892
- "string-width": "^1.0.1",
5893
- "strip-ansi": "^3.0.1",
5894
- "wrap-ansi": "^2.0.0"
5895
- }
5896
- },
5897
- "node_modules/gulp/node_modules/get-caller-file": {
5898
- "version": "1.0.3",
5899
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz",
5900
- "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==",
5901
- "dev": true
5902
- },
5903
- "node_modules/gulp/node_modules/gulp-cli": {
5904
- "version": "2.3.0",
5905
- "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz",
5906
- "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==",
5907
- "dev": true,
5908
- "dependencies": {
5909
- "ansi-colors": "^1.0.1",
5910
- "archy": "^1.0.0",
5911
- "array-sort": "^1.0.0",
5912
- "color-support": "^1.1.3",
5913
- "concat-stream": "^1.6.0",
5914
- "copy-props": "^2.0.1",
5915
- "fancy-log": "^1.3.2",
5916
- "gulplog": "^1.0.0",
5917
- "interpret": "^1.4.0",
5918
- "isobject": "^3.0.1",
5919
- "liftoff": "^3.1.0",
5920
- "matchdep": "^2.0.0",
5921
- "mute-stdout": "^1.0.0",
5922
- "pretty-hrtime": "^1.0.0",
5923
- "replace-homedir": "^1.0.0",
5924
- "semver-greatest-satisfied-range": "^1.1.0",
5925
- "v8flags": "^3.2.0",
5926
- "yargs": "^7.1.0"
5927
- },
5928
- "bin": {
5929
- "gulp": "bin/gulp.js"
5930
- },
5931
- "engines": {
5932
- "node": ">= 0.10"
5933
- }
5934
- },
5935
- "node_modules/gulp/node_modules/is-fullwidth-code-point": {
5936
- "version": "1.0.0",
5937
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
5938
- "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
5939
- "dev": true,
5940
- "dependencies": {
5941
- "number-is-nan": "^1.0.0"
5942
- },
5943
- "engines": {
5944
- "node": ">=0.10.0"
5945
- }
5946
- },
5947
- "node_modules/gulp/node_modules/require-main-filename": {
5948
- "version": "1.0.1",
5949
- "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz",
5950
- "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=",
5951
- "dev": true
5952
- },
5953
- "node_modules/gulp/node_modules/string-width": {
5954
- "version": "1.0.2",
5955
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
5956
- "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
5957
- "dev": true,
5958
- "dependencies": {
5959
- "code-point-at": "^1.0.0",
5960
- "is-fullwidth-code-point": "^1.0.0",
5961
- "strip-ansi": "^3.0.0"
5962
- },
5963
- "engines": {
5964
- "node": ">=0.10.0"
5965
- }
5966
- },
5967
- "node_modules/gulp/node_modules/strip-ansi": {
5968
- "version": "3.0.1",
5969
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
5970
- "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
5971
- "dev": true,
5972
- "dependencies": {
5973
- "ansi-regex": "^2.0.0"
5974
- },
5975
- "engines": {
5976
- "node": ">=0.10.0"
5977
- }
5978
- },
5979
- "node_modules/gulp/node_modules/which-module": {
5980
- "version": "1.0.0",
5981
- "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz",
5982
- "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=",
5983
- "dev": true
5984
- },
5985
- "node_modules/gulp/node_modules/wrap-ansi": {
5986
- "version": "2.1.0",
5987
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
5988
- "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
5989
- "dev": true,
5990
- "dependencies": {
5991
- "string-width": "^1.0.1",
5992
- "strip-ansi": "^3.0.1"
5993
- },
5994
- "engines": {
5995
- "node": ">=0.10.0"
5996
- }
5997
- },
5998
- "node_modules/gulp/node_modules/y18n": {
5999
- "version": "3.2.2",
6000
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz",
6001
- "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==",
6002
- "dev": true
6003
- },
6004
- "node_modules/gulp/node_modules/yargs": {
6005
- "version": "7.1.2",
6006
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz",
6007
- "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==",
6008
- "dev": true,
6009
- "dependencies": {
6010
- "camelcase": "^3.0.0",
6011
- "cliui": "^3.2.0",
6012
- "decamelize": "^1.1.1",
6013
- "get-caller-file": "^1.0.1",
6014
- "os-locale": "^1.4.0",
6015
- "read-pkg-up": "^1.0.1",
6016
- "require-directory": "^2.1.1",
6017
- "require-main-filename": "^1.0.1",
6018
- "set-blocking": "^2.0.0",
6019
- "string-width": "^1.0.2",
6020
- "which-module": "^1.0.0",
6021
- "y18n": "^3.2.1",
6022
- "yargs-parser": "^5.0.1"
6023
- }
6024
- },
6025
- "node_modules/gulp/node_modules/yargs-parser": {
6026
- "version": "5.0.1",
6027
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz",
6028
- "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==",
6029
- "dev": true,
6030
- "dependencies": {
6031
- "camelcase": "^3.0.0",
6032
- "object.assign": "^4.1.0"
6033
- }
6034
- },
6035
- "node_modules/gulplog": {
6036
- "version": "1.0.0",
6037
- "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
6038
- "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=",
6039
- "dev": true,
6040
- "dependencies": {
6041
- "glogg": "^1.0.0"
6042
- },
6043
- "engines": {
6044
- "node": ">= 0.10"
6045
- }
6046
- },
6047
- "node_modules/has": {
6048
- "version": "1.0.3",
6049
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
6050
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
6051
- "dev": true,
6052
- "dependencies": {
6053
- "function-bind": "^1.1.1"
6054
- },
6055
- "engines": {
6056
- "node": ">= 0.4.0"
6057
- }
6058
- },
6059
- "node_modules/has-ansi": {
6060
- "version": "2.0.0",
6061
- "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
6062
- "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
6063
- "dev": true,
6064
- "dependencies": {
6065
- "ansi-regex": "^2.0.0"
6066
- },
6067
- "engines": {
6068
- "node": ">=0.10.0"
6069
- }
6070
- },
6071
- "node_modules/has-ansi/node_modules/ansi-regex": {
6072
- "version": "2.1.1",
6073
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
6074
- "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
6075
- "dev": true,
6076
- "engines": {
6077
- "node": ">=0.10.0"
6078
- }
6079
- },
6080
- "node_modules/has-flag": {
6081
- "version": "3.0.0",
6082
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
6083
- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
6084
- "dev": true,
6085
- "engines": {
6086
- "node": ">=4"
6087
- }
6088
- },
6089
- "node_modules/has-gulplog": {
6090
- "version": "0.1.0",
6091
- "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz",
6092
- "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=",
6093
- "dev": true,
6094
- "dependencies": {
6095
- "sparkles": "^1.0.0"
6096
- },
6097
- "engines": {
6098
- "node": ">= 0.10"
6099
- }
6100
- },
6101
- "node_modules/has-symbols": {
6102
- "version": "1.0.2",
6103
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
6104
- "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==",
6105
- "dev": true,
6106
- "engines": {
6107
- "node": ">= 0.4"
6108
- },
6109
- "funding": {
6110
- "url": "https://github.com/sponsors/ljharb"
6111
- }
6112
- },
6113
- "node_modules/has-unicode": {
6114
- "version": "2.0.1",
6115
- "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
6116
- "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=",
6117
- "dev": true
6118
- },
6119
- "node_modules/has-value": {
6120
- "version": "1.0.0",
6121
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
6122
- "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
6123
- "dev": true,
6124
- "dependencies": {
6125
- "get-value": "^2.0.6",
6126
- "has-values": "^1.0.0",
6127
- "isobject": "^3.0.0"
6128
- },
6129
- "engines": {
6130
- "node": ">=0.10.0"
6131
- }
6132
- },
6133
- "node_modules/has-values": {
6134
- "version": "1.0.0",
6135
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
6136
- "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
6137
- "dev": true,
6138
- "dependencies": {
6139
- "is-number": "^3.0.0",
6140
- "kind-of": "^4.0.0"
6141
- },
6142
- "engines": {
6143
- "node": ">=0.10.0"
6144
- }
6145
- },
6146
- "node_modules/has-values/node_modules/kind-of": {
6147
- "version": "4.0.0",
6148
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
6149
- "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
6150
- "dev": true,
6151
- "dependencies": {
6152
- "is-buffer": "^1.1.5"
6153
- },
6154
- "engines": {
6155
- "node": ">=0.10.0"
6156
- }
6157
- },
6158
- "node_modules/has-yarn": {
6159
- "version": "2.1.0",
6160
- "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz",
6161
- "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==",
6162
- "dev": true,
6163
- "engines": {
6164
- "node": ">=8"
6165
- }
6166
- },
6167
- "node_modules/homedir-polyfill": {
6168
- "version": "1.0.3",
6169
- "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
6170
- "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==",
6171
- "dev": true,
6172
- "dependencies": {
6173
- "parse-passwd": "^1.0.0"
6174
- },
6175
- "engines": {
6176
- "node": ">=0.10.0"
6177
- }
6178
- },
6179
- "node_modules/hosted-git-info": {
6180
- "version": "2.8.9",
6181
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
6182
- "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
6183
- "dev": true
6184
- },
6185
- "node_modules/http-cache-semantics": {
6186
- "version": "4.1.0",
6187
- "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
6188
- "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==",
6189
- "dev": true
6190
- },
6191
- "node_modules/http-proxy-agent": {
6192
- "version": "4.0.1",
6193
- "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
6194
- "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
6195
- "dev": true,
6196
- "dependencies": {
6197
- "@tootallnate/once": "1",
6198
- "agent-base": "6",
6199
- "debug": "4"
6200
- },
6201
- "engines": {
6202
- "node": ">= 6"
6203
- }
6204
- },
6205
- "node_modules/https-proxy-agent": {
6206
- "version": "5.0.0",
6207
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz",
6208
- "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==",
6209
- "dev": true,
6210
- "dependencies": {
6211
- "agent-base": "6",
6212
- "debug": "4"
6213
- },
6214
- "engines": {
6215
- "node": ">= 6"
6216
- }
6217
- },
6218
- "node_modules/humanize-ms": {
6219
- "version": "1.2.1",
6220
- "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
6221
- "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=",
6222
- "dev": true,
6223
- "dependencies": {
6224
- "ms": "^2.0.0"
6225
- }
6226
- },
6227
- "node_modules/iconv-lite": {
6228
- "version": "0.6.2",
6229
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz",
6230
- "integrity": "sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==",
6231
- "dev": true,
6232
- "dependencies": {
6233
- "safer-buffer": ">= 2.1.2 < 3.0.0"
6234
- },
6235
- "engines": {
6236
- "node": ">=0.10.0"
6237
- }
6238
- },
6239
- "node_modules/ignore": {
6240
- "version": "5.2.0",
6241
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
6242
- "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
6243
- "dev": true,
6244
- "engines": {
6245
- "node": ">= 4"
6246
- }
6247
- },
6248
- "node_modules/ignore-walk": {
6249
- "version": "4.0.1",
6250
- "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz",
6251
- "integrity": "sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==",
6252
- "dev": true,
6253
- "dependencies": {
6254
- "minimatch": "^3.0.4"
6255
- },
6256
- "engines": {
6257
- "node": ">=10"
6258
- }
6259
- },
6260
- "node_modules/immutable": {
6261
- "version": "4.0.0",
6262
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.0.0.tgz",
6263
- "integrity": "sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==",
6264
- "dev": true
6265
- },
6266
- "node_modules/import-lazy": {
6267
- "version": "2.1.0",
6268
- "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz",
6269
- "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=",
6270
- "dev": true,
6271
- "engines": {
6272
- "node": ">=4"
6273
- }
6274
- },
6275
- "node_modules/imurmurhash": {
6276
- "version": "0.1.4",
6277
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
6278
- "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
6279
- "dev": true,
6280
- "engines": {
6281
- "node": ">=0.8.19"
6282
- }
6283
- },
6284
- "node_modules/indent-string": {
6285
- "version": "4.0.0",
6286
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
6287
- "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
6288
- "dev": true,
6289
- "engines": {
6290
- "node": ">=8"
6291
- }
6292
- },
6293
- "node_modules/infer-owner": {
6294
- "version": "1.0.4",
6295
- "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
6296
- "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
6297
- "dev": true
6298
- },
6299
- "node_modules/inflight": {
6300
- "version": "1.0.6",
6301
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
6302
- "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
6303
- "dev": true,
6304
- "dependencies": {
6305
- "once": "^1.3.0",
6306
- "wrappy": "1"
6307
- }
6308
- },
6309
- "node_modules/inherits": {
6310
- "version": "2.0.4",
6311
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
6312
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
6313
- "dev": true
6314
- },
6315
- "node_modules/ini": {
6316
- "version": "1.3.8",
6317
- "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
6318
- "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
6319
- "dev": true
6320
- },
6321
- "node_modules/inquirer": {
6322
- "version": "7.3.3",
6323
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz",
6324
- "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==",
6325
- "dev": true,
6326
- "dependencies": {
6327
- "ansi-escapes": "^4.2.1",
6328
- "chalk": "^4.1.0",
6329
- "cli-cursor": "^3.1.0",
6330
- "cli-width": "^3.0.0",
6331
- "external-editor": "^3.0.3",
6332
- "figures": "^3.0.0",
6333
- "lodash": "^4.17.19",
6334
- "mute-stream": "0.0.8",
6335
- "run-async": "^2.4.0",
6336
- "rxjs": "^6.6.0",
6337
- "string-width": "^4.1.0",
6338
- "strip-ansi": "^6.0.0",
6339
- "through": "^2.3.6"
6340
- },
6341
- "engines": {
6342
- "node": ">=8.0.0"
6343
- }
6344
- },
6345
- "node_modules/inquirer/node_modules/ansi-styles": {
6346
- "version": "4.3.0",
6347
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
6348
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
6349
- "dev": true,
6350
- "dependencies": {
6351
- "color-convert": "^2.0.1"
6352
- },
6353
- "engines": {
6354
- "node": ">=8"
6355
- },
6356
- "funding": {
6357
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
6358
- }
6359
- },
6360
- "node_modules/inquirer/node_modules/chalk": {
6361
- "version": "4.1.0",
6362
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
6363
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
6364
- "dev": true,
6365
- "dependencies": {
6366
- "ansi-styles": "^4.1.0",
6367
- "supports-color": "^7.1.0"
6368
- },
6369
- "engines": {
6370
- "node": ">=10"
6371
- },
6372
- "funding": {
6373
- "url": "https://github.com/chalk/chalk?sponsor=1"
6374
- }
6375
- },
6376
- "node_modules/inquirer/node_modules/color-convert": {
6377
- "version": "2.0.1",
6378
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
6379
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
6380
- "dev": true,
6381
- "dependencies": {
6382
- "color-name": "~1.1.4"
6383
- },
6384
- "engines": {
6385
- "node": ">=7.0.0"
6386
- }
6387
- },
6388
- "node_modules/inquirer/node_modules/color-name": {
6389
- "version": "1.1.4",
6390
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
6391
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
6392
- "dev": true
6393
- },
6394
- "node_modules/inquirer/node_modules/has-flag": {
6395
- "version": "4.0.0",
6396
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
6397
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
6398
- "dev": true,
6399
- "engines": {
6400
- "node": ">=8"
6401
- }
6402
- },
6403
- "node_modules/inquirer/node_modules/supports-color": {
6404
- "version": "7.2.0",
6405
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
6406
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
6407
- "dev": true,
6408
- "dependencies": {
6409
- "has-flag": "^4.0.0"
6410
- },
6411
- "engines": {
6412
- "node": ">=8"
6413
- }
6414
- },
6415
- "node_modules/interpret": {
6416
- "version": "1.4.0",
6417
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
6418
- "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==",
6419
- "dev": true,
6420
- "engines": {
6421
- "node": ">= 0.10"
6422
- }
6423
- },
6424
- "node_modules/invert-kv": {
6425
- "version": "1.0.0",
6426
- "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz",
6427
- "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=",
6428
- "dev": true,
6429
- "engines": {
6430
- "node": ">=0.10.0"
6431
- }
6432
- },
6433
- "node_modules/ip": {
6434
- "version": "1.1.5",
6435
- "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
6436
- "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=",
6437
- "dev": true
6438
- },
6439
- "node_modules/is-absolute": {
6440
- "version": "1.0.0",
6441
- "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz",
6442
- "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==",
6443
- "dev": true,
6444
- "dependencies": {
6445
- "is-relative": "^1.0.0",
6446
- "is-windows": "^1.0.1"
6447
- },
6448
- "engines": {
6449
- "node": ">=0.10.0"
6450
- }
6451
- },
6452
- "node_modules/is-accessor-descriptor": {
6453
- "version": "0.1.6",
6454
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
6455
- "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
6456
- "dev": true,
6457
- "dependencies": {
6458
- "kind-of": "^3.0.2"
6459
- },
6460
- "engines": {
6461
- "node": ">=0.10.0"
6462
- }
6463
- },
6464
- "node_modules/is-accessor-descriptor/node_modules/kind-of": {
6465
- "version": "3.2.2",
6466
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
6467
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
6468
- "dev": true,
6469
- "dependencies": {
6470
- "is-buffer": "^1.1.5"
6471
- },
6472
- "engines": {
6473
- "node": ">=0.10.0"
6474
- }
6475
- },
6476
- "node_modules/is-arrayish": {
6477
- "version": "0.2.1",
6478
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
6479
- "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
6480
- "dev": true
6481
- },
6482
- "node_modules/is-binary-path": {
6483
- "version": "1.0.1",
6484
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
6485
- "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
6486
- "dev": true,
6487
- "dependencies": {
6488
- "binary-extensions": "^1.0.0"
6489
- },
6490
- "engines": {
6491
- "node": ">=0.10.0"
6492
- }
6493
- },
6494
- "node_modules/is-buffer": {
6495
- "version": "1.1.6",
6496
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
6497
- "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
6498
- "dev": true
6499
- },
6500
- "node_modules/is-ci": {
6501
- "version": "2.0.0",
6502
- "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
6503
- "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==",
6504
- "dev": true,
6505
- "dependencies": {
6506
- "ci-info": "^2.0.0"
6507
- },
6508
- "bin": {
6509
- "is-ci": "bin.js"
6510
- }
6511
- },
6512
- "node_modules/is-core-module": {
6513
- "version": "2.2.0",
6514
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz",
6515
- "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==",
6516
- "dev": true,
6517
- "dependencies": {
6518
- "has": "^1.0.3"
6519
- },
6520
- "funding": {
6521
- "url": "https://github.com/sponsors/ljharb"
6522
- }
6523
- },
6524
- "node_modules/is-data-descriptor": {
6525
- "version": "0.1.4",
6526
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
6527
- "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
6528
- "dev": true,
6529
- "dependencies": {
6530
- "kind-of": "^3.0.2"
6531
- },
6532
- "engines": {
6533
- "node": ">=0.10.0"
6534
- }
6535
- },
6536
- "node_modules/is-data-descriptor/node_modules/kind-of": {
6537
- "version": "3.2.2",
6538
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
6539
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
6540
- "dev": true,
6541
- "dependencies": {
6542
- "is-buffer": "^1.1.5"
6543
- },
6544
- "engines": {
6545
- "node": ">=0.10.0"
6546
- }
6547
- },
6548
- "node_modules/is-descriptor": {
6549
- "version": "0.1.6",
6550
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
6551
- "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
6552
- "dev": true,
6553
- "dependencies": {
6554
- "is-accessor-descriptor": "^0.1.6",
6555
- "is-data-descriptor": "^0.1.4",
6556
- "kind-of": "^5.0.0"
6557
- },
6558
- "engines": {
6559
- "node": ">=0.10.0"
6560
- }
6561
- },
6562
- "node_modules/is-descriptor/node_modules/kind-of": {
6563
- "version": "5.1.0",
6564
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
6565
- "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
6566
- "dev": true,
6567
- "engines": {
6568
- "node": ">=0.10.0"
6569
- }
6570
- },
6571
- "node_modules/is-extendable": {
6572
- "version": "0.1.1",
6573
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
6574
- "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
6575
- "dev": true,
6576
- "engines": {
6577
- "node": ">=0.10.0"
6578
- }
6579
- },
6580
- "node_modules/is-extglob": {
6581
- "version": "2.1.1",
6582
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
6583
- "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
6584
- "dev": true,
6585
- "engines": {
6586
- "node": ">=0.10.0"
6587
- }
6588
- },
6589
- "node_modules/is-finite": {
6590
- "version": "1.1.0",
6591
- "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz",
6592
- "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==",
6593
- "dev": true,
6594
- "engines": {
6595
- "node": ">=0.10.0"
6596
- },
6597
- "funding": {
6598
- "url": "https://github.com/sponsors/sindresorhus"
6599
- }
6600
- },
6601
- "node_modules/is-fullwidth-code-point": {
6602
- "version": "3.0.0",
6603
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
6604
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
6605
- "dev": true,
6606
- "engines": {
6607
- "node": ">=8"
6608
- }
6609
- },
6610
- "node_modules/is-glob": {
6611
- "version": "4.0.1",
6612
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
6613
- "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
6614
- "dev": true,
6615
- "dependencies": {
6616
- "is-extglob": "^2.1.1"
6617
- },
6618
- "engines": {
6619
- "node": ">=0.10.0"
6620
- }
6621
- },
6622
- "node_modules/is-installed-globally": {
6623
- "version": "0.4.0",
6624
- "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz",
6625
- "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==",
6626
- "dev": true,
6627
- "dependencies": {
6628
- "global-dirs": "^3.0.0",
6629
- "is-path-inside": "^3.0.2"
6630
- },
6631
- "engines": {
6632
- "node": ">=10"
6633
- },
6634
- "funding": {
6635
- "url": "https://github.com/sponsors/sindresorhus"
6636
- }
6637
- },
6638
- "node_modules/is-interactive": {
6639
- "version": "1.0.0",
6640
- "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
6641
- "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
6642
- "dev": true,
6643
- "engines": {
6644
- "node": ">=8"
6645
- }
6646
- },
6647
- "node_modules/is-lambda": {
6648
- "version": "1.0.1",
6649
- "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
6650
- "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=",
6651
- "dev": true
6652
- },
6653
- "node_modules/is-negated-glob": {
6654
- "version": "1.0.0",
6655
- "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz",
6656
- "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=",
6657
- "dev": true,
6658
- "engines": {
6659
- "node": ">=0.10.0"
6660
- }
6661
- },
6662
- "node_modules/is-npm": {
6663
- "version": "5.0.0",
6664
- "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz",
6665
- "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==",
6666
- "dev": true,
6667
- "engines": {
6668
- "node": ">=10"
6669
- },
6670
- "funding": {
6671
- "url": "https://github.com/sponsors/sindresorhus"
6672
- }
6673
- },
6674
- "node_modules/is-number": {
6675
- "version": "3.0.0",
6676
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
6677
- "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
6678
- "dev": true,
6679
- "dependencies": {
6680
- "kind-of": "^3.0.2"
6681
- },
6682
- "engines": {
6683
- "node": ">=0.10.0"
6684
- }
6685
- },
6686
- "node_modules/is-number/node_modules/kind-of": {
6687
- "version": "3.2.2",
6688
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
6689
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
6690
- "dev": true,
6691
- "dependencies": {
6692
- "is-buffer": "^1.1.5"
6693
- },
6694
- "engines": {
6695
- "node": ">=0.10.0"
6696
- }
6697
- },
6698
- "node_modules/is-obj": {
6699
- "version": "2.0.0",
6700
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
6701
- "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
6702
- "dev": true,
6703
- "engines": {
6704
- "node": ">=8"
6705
- }
6706
- },
6707
- "node_modules/is-path-inside": {
6708
- "version": "3.0.3",
6709
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
6710
- "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
6711
- "dev": true,
6712
- "engines": {
6713
- "node": ">=8"
6714
- }
6715
- },
6716
- "node_modules/is-plain-object": {
6717
- "version": "2.0.4",
6718
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
6719
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
6720
- "dev": true,
6721
- "dependencies": {
6722
- "isobject": "^3.0.1"
6723
- },
6724
- "engines": {
6725
- "node": ">=0.10.0"
6726
- }
6727
- },
6728
- "node_modules/is-relative": {
6729
- "version": "1.0.0",
6730
- "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz",
6731
- "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==",
6732
- "dev": true,
6733
- "dependencies": {
6734
- "is-unc-path": "^1.0.0"
6735
- },
6736
- "engines": {
6737
- "node": ">=0.10.0"
6738
- }
6739
- },
6740
- "node_modules/is-typedarray": {
6741
- "version": "1.0.0",
6742
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
6743
- "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
6744
- "dev": true
6745
- },
6746
- "node_modules/is-unc-path": {
6747
- "version": "1.0.0",
6748
- "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz",
6749
- "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==",
6750
- "dev": true,
6751
- "dependencies": {
6752
- "unc-path-regex": "^0.1.2"
6753
- },
6754
- "engines": {
6755
- "node": ">=0.10.0"
6756
- }
6757
- },
6758
- "node_modules/is-utf8": {
6759
- "version": "0.2.1",
6760
- "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
6761
- "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
6762
- "dev": true
6763
- },
6764
- "node_modules/is-valid-glob": {
6765
- "version": "1.0.0",
6766
- "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz",
6767
- "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=",
6768
- "dev": true,
6769
- "engines": {
6770
- "node": ">=0.10.0"
6771
- }
6772
- },
6773
- "node_modules/is-windows": {
6774
- "version": "1.0.2",
6775
- "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
6776
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
6777
- "dev": true,
6778
- "engines": {
6779
- "node": ">=0.10.0"
6780
- }
6781
- },
6782
- "node_modules/is-yarn-global": {
6783
- "version": "0.3.0",
6784
- "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz",
6785
- "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==",
6786
- "dev": true
6787
- },
6788
- "node_modules/isarray": {
6789
- "version": "1.0.0",
6790
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
6791
- "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
6792
- "dev": true
6793
- },
6794
- "node_modules/isexe": {
6795
- "version": "2.0.0",
6796
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
6797
- "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
6798
- "dev": true
6799
- },
6800
- "node_modules/isobject": {
6801
- "version": "3.0.1",
6802
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
6803
- "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
6804
- "dev": true,
6805
- "engines": {
6806
- "node": ">=0.10.0"
6807
- }
6808
- },
6809
- "node_modules/istextorbinary": {
6810
- "version": "3.3.0",
6811
- "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-3.3.0.tgz",
6812
- "integrity": "sha512-Tvq1W6NAcZeJ8op+Hq7tdZ434rqnMx4CCZ7H0ff83uEloDvVbqAwaMTZcafKGJT0VHkYzuXUiCY4hlXQg6WfoQ==",
6813
- "dev": true,
6814
- "dependencies": {
6815
- "binaryextensions": "^2.2.0",
6816
- "textextensions": "^3.2.0"
6817
- },
6818
- "engines": {
6819
- "node": ">=8"
6820
- },
6821
- "funding": {
6822
- "url": "https://bevry.me/fund"
6823
- }
6824
- },
6825
- "node_modules/jju": {
6826
- "version": "1.4.0",
6827
- "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz",
6828
- "integrity": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=",
6829
- "dev": true
6830
- },
6831
- "node_modules/js-tokens": {
6832
- "version": "4.0.0",
6833
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
6834
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
6835
- "dev": true
6836
- },
6837
- "node_modules/js-yaml": {
6838
- "version": "3.14.1",
6839
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
6840
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
6841
- "dev": true,
6842
- "dependencies": {
6843
- "argparse": "^1.0.7",
6844
- "esprima": "^4.0.0"
6845
- },
6846
- "bin": {
6847
- "js-yaml": "bin/js-yaml.js"
6848
- }
6849
- },
6850
- "node_modules/jsesc": {
6851
- "version": "2.5.2",
6852
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
6853
- "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
6854
- "dev": true,
6855
- "bin": {
6856
- "jsesc": "bin/jsesc"
6857
- },
6858
- "engines": {
6859
- "node": ">=4"
6860
- }
6861
- },
6862
- "node_modules/json-buffer": {
6863
- "version": "3.0.1",
6864
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
6865
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
6866
- "dev": true
6867
- },
6868
- "node_modules/json-parse-even-better-errors": {
6869
- "version": "2.3.1",
6870
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
6871
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
6872
- "dev": true
6873
- },
6874
- "node_modules/json-parse-helpfulerror": {
6875
- "version": "1.0.3",
6876
- "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz",
6877
- "integrity": "sha1-E/FM4C7tTpgSl7ZOueO5MuLdE9w=",
6878
- "dev": true,
6879
- "dependencies": {
6880
- "jju": "^1.1.0"
6881
- }
6882
- },
6883
- "node_modules/json-stable-stringify-without-jsonify": {
6884
- "version": "1.0.1",
6885
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
6886
- "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
6887
- "dev": true
6888
- },
6889
- "node_modules/json5": {
6890
- "version": "2.2.0",
6891
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz",
6892
- "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==",
6893
- "dev": true,
6894
- "dependencies": {
6895
- "minimist": "^1.2.5"
6896
- },
6897
- "bin": {
6898
- "json5": "lib/cli.js"
6899
- },
6900
- "engines": {
6901
- "node": ">=6"
6902
- }
6903
- },
6904
- "node_modules/json5/node_modules/minimist": {
6905
- "version": "1.2.5",
6906
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
6907
- "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
6908
- "dev": true
6909
- },
6910
- "node_modules/jsonlines": {
6911
- "version": "0.1.1",
6912
- "resolved": "https://registry.npmjs.org/jsonlines/-/jsonlines-0.1.1.tgz",
6913
- "integrity": "sha1-T80kbcXQ44aRkHxEqwAveC0dlMw=",
6914
- "dev": true
6915
- },
6916
- "node_modules/jsonparse": {
6917
- "version": "1.3.1",
6918
- "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
6919
- "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=",
6920
- "dev": true,
6921
- "engines": [
6922
- "node >= 0.2.0"
6923
- ]
6924
- },
6925
- "node_modules/just-debounce": {
6926
- "version": "1.1.0",
6927
- "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz",
6928
- "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==",
6929
- "dev": true
6930
- },
6931
- "node_modules/keyv": {
6932
- "version": "4.0.3",
6933
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz",
6934
- "integrity": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==",
6935
- "dev": true,
6936
- "dependencies": {
6937
- "json-buffer": "3.0.1"
6938
- }
6939
- },
6940
- "node_modules/kind-of": {
6941
- "version": "6.0.3",
6942
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
6943
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
6944
- "dev": true,
6945
- "engines": {
6946
- "node": ">=0.10.0"
6947
- }
6948
- },
6949
- "node_modules/kleur": {
6950
- "version": "3.0.3",
6951
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
6952
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
6953
- "dev": true,
6954
- "engines": {
6955
- "node": ">=6"
6956
- }
6957
- },
6958
- "node_modules/last-run": {
6959
- "version": "1.1.1",
6960
- "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz",
6961
- "integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=",
6962
- "dev": true,
6963
- "dependencies": {
6964
- "default-resolution": "^2.0.0",
6965
- "es6-weak-map": "^2.0.1"
6966
- },
6967
- "engines": {
6968
- "node": ">= 0.10"
6969
- }
6970
- },
6971
- "node_modules/latest-version": {
6972
- "version": "5.1.0",
6973
- "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz",
6974
- "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==",
6975
- "dev": true,
6976
- "dependencies": {
6977
- "package-json": "^6.3.0"
6978
- },
6979
- "engines": {
6980
- "node": ">=8"
6981
- }
6982
- },
6983
- "node_modules/lazystream": {
6984
- "version": "1.0.0",
6985
- "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz",
6986
- "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=",
6987
- "dev": true,
6988
- "dependencies": {
6989
- "readable-stream": "^2.0.5"
6990
- },
6991
- "engines": {
6992
- "node": ">= 0.6.3"
6993
- }
6994
- },
6995
- "node_modules/lcid": {
6996
- "version": "1.0.0",
6997
- "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
6998
- "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
6999
- "dev": true,
7000
- "dependencies": {
7001
- "invert-kv": "^1.0.0"
7002
- },
7003
- "engines": {
7004
- "node": ">=0.10.0"
7005
- }
7006
- },
7007
- "node_modules/lead": {
7008
- "version": "1.0.0",
7009
- "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz",
7010
- "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=",
7011
- "dev": true,
7012
- "dependencies": {
7013
- "flush-write-stream": "^1.0.2"
7014
- },
7015
- "engines": {
7016
- "node": ">= 0.10"
7017
- }
7018
- },
7019
- "node_modules/libnpmconfig": {
7020
- "version": "1.2.1",
7021
- "resolved": "https://registry.npmjs.org/libnpmconfig/-/libnpmconfig-1.2.1.tgz",
7022
- "integrity": "sha512-9esX8rTQAHqarx6qeZqmGQKBNZR5OIbl/Ayr0qQDy3oXja2iFVQQI81R6GZ2a02bSNZ9p3YOGX1O6HHCb1X7kA==",
7023
- "dev": true,
7024
- "dependencies": {
7025
- "figgy-pudding": "^3.5.1",
7026
- "find-up": "^3.0.0",
7027
- "ini": "^1.3.5"
7028
- }
7029
- },
7030
- "node_modules/libnpmconfig/node_modules/find-up": {
7031
- "version": "3.0.0",
7032
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
7033
- "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
7034
- "dev": true,
7035
- "dependencies": {
7036
- "locate-path": "^3.0.0"
7037
- },
7038
- "engines": {
7039
- "node": ">=6"
7040
- }
7041
- },
7042
- "node_modules/libnpmconfig/node_modules/locate-path": {
7043
- "version": "3.0.0",
7044
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
7045
- "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
7046
- "dev": true,
7047
- "dependencies": {
7048
- "p-locate": "^3.0.0",
7049
- "path-exists": "^3.0.0"
7050
- },
7051
- "engines": {
7052
- "node": ">=6"
7053
- }
7054
- },
7055
- "node_modules/libnpmconfig/node_modules/p-limit": {
7056
- "version": "2.3.0",
7057
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
7058
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
7059
- "dev": true,
7060
- "dependencies": {
7061
- "p-try": "^2.0.0"
7062
- },
7063
- "engines": {
7064
- "node": ">=6"
7065
- },
7066
- "funding": {
7067
- "url": "https://github.com/sponsors/sindresorhus"
7068
- }
7069
- },
7070
- "node_modules/libnpmconfig/node_modules/p-locate": {
7071
- "version": "3.0.0",
7072
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
7073
- "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
7074
- "dev": true,
7075
- "dependencies": {
7076
- "p-limit": "^2.0.0"
7077
- },
7078
- "engines": {
7079
- "node": ">=6"
7080
- }
7081
- },
7082
- "node_modules/libnpmconfig/node_modules/path-exists": {
7083
- "version": "3.0.0",
7084
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
7085
- "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
7086
- "dev": true,
7087
- "engines": {
7088
- "node": ">=4"
7089
- }
7090
- },
7091
- "node_modules/liftoff": {
7092
- "version": "3.1.0",
7093
- "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz",
7094
- "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==",
7095
- "dev": true,
7096
- "dependencies": {
7097
- "extend": "^3.0.0",
7098
- "findup-sync": "^3.0.0",
7099
- "fined": "^1.0.1",
7100
- "flagged-respawn": "^1.0.0",
7101
- "is-plain-object": "^2.0.4",
7102
- "object.map": "^1.0.0",
7103
- "rechoir": "^0.6.2",
7104
- "resolve": "^1.1.7"
7105
- },
7106
- "engines": {
7107
- "node": ">= 0.8"
7108
- }
7109
- },
7110
- "node_modules/load-json-file": {
7111
- "version": "1.1.0",
7112
- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
7113
- "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
7114
- "dev": true,
7115
- "dependencies": {
7116
- "graceful-fs": "^4.1.2",
7117
- "parse-json": "^2.2.0",
7118
- "pify": "^2.0.0",
7119
- "pinkie-promise": "^2.0.0",
7120
- "strip-bom": "^2.0.0"
7121
- },
7122
- "engines": {
7123
- "node": ">=0.10.0"
7124
- }
7125
- },
7126
- "node_modules/locate-path": {
7127
- "version": "6.0.0",
7128
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
7129
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
7130
- "dev": true,
7131
- "dependencies": {
7132
- "p-locate": "^5.0.0"
7133
- },
7134
- "engines": {
7135
- "node": ">=10"
7136
- },
7137
- "funding": {
7138
- "url": "https://github.com/sponsors/sindresorhus"
7139
- }
7140
- },
7141
- "node_modules/lodash": {
7142
- "version": "4.17.21",
7143
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
7144
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
7145
- "dev": true
7146
- },
7147
- "node_modules/lodash._escapehtmlchar": {
7148
- "version": "2.4.1",
7149
- "resolved": "https://registry.npmjs.org/lodash._escapehtmlchar/-/lodash._escapehtmlchar-2.4.1.tgz",
7150
- "integrity": "sha1-32fDu2t+jh6DGrSL+geVuSr+iZ0=",
7151
- "dev": true,
7152
- "dependencies": {
7153
- "lodash._htmlescapes": "~2.4.1"
7154
- }
7155
- },
7156
- "node_modules/lodash._escapestringchar": {
7157
- "version": "2.4.1",
7158
- "resolved": "https://registry.npmjs.org/lodash._escapestringchar/-/lodash._escapestringchar-2.4.1.tgz",
7159
- "integrity": "sha1-7P4iYYoq3lC/7qQ5N+Ud9m8O23I=",
7160
- "dev": true
7161
- },
7162
- "node_modules/lodash._htmlescapes": {
7163
- "version": "2.4.1",
7164
- "resolved": "https://registry.npmjs.org/lodash._htmlescapes/-/lodash._htmlescapes-2.4.1.tgz",
7165
- "integrity": "sha1-MtFL8IRLbeb4tioFG09nwii2JMs=",
7166
- "dev": true
7167
- },
7168
- "node_modules/lodash._isnative": {
7169
- "version": "2.4.1",
7170
- "resolved": "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz",
7171
- "integrity": "sha1-PqZAS3hKe+g2x7V1gOHN95sUgyw=",
7172
- "dev": true
7173
- },
7174
- "node_modules/lodash._objecttypes": {
7175
- "version": "2.4.1",
7176
- "resolved": "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz",
7177
- "integrity": "sha1-fAt/admKH3ZSn4kLDNsbTf7BHBE=",
7178
- "dev": true
7179
- },
7180
- "node_modules/lodash._reinterpolate": {
7181
- "version": "2.4.1",
7182
- "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-2.4.1.tgz",
7183
- "integrity": "sha1-TxInqlqHEfxjL1sHofRgequLMiI=",
7184
- "dev": true
7185
- },
7186
- "node_modules/lodash._reunescapedhtml": {
7187
- "version": "2.4.1",
7188
- "resolved": "https://registry.npmjs.org/lodash._reunescapedhtml/-/lodash._reunescapedhtml-2.4.1.tgz",
7189
- "integrity": "sha1-dHxPxAED6zu4oJduVx96JlnpO6c=",
7190
- "dev": true,
7191
- "dependencies": {
7192
- "lodash._htmlescapes": "~2.4.1",
7193
- "lodash.keys": "~2.4.1"
7194
- }
7195
- },
7196
- "node_modules/lodash._shimkeys": {
7197
- "version": "2.4.1",
7198
- "resolved": "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz",
7199
- "integrity": "sha1-bpzJZm/wgfC1psl4uD4kLmlJ0gM=",
7200
- "dev": true,
7201
- "dependencies": {
7202
- "lodash._objecttypes": "~2.4.1"
7203
- }
7204
- },
7205
- "node_modules/lodash.debounce": {
7206
- "version": "4.0.8",
7207
- "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
7208
- "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=",
7209
- "dev": true
7210
- },
7211
- "node_modules/lodash.defaults": {
7212
- "version": "2.4.1",
7213
- "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-2.4.1.tgz",
7214
- "integrity": "sha1-p+iIXwXmiFEUS24SqPNngCa8TFQ=",
7215
- "dev": true,
7216
- "dependencies": {
7217
- "lodash._objecttypes": "~2.4.1",
7218
- "lodash.keys": "~2.4.1"
7219
- }
7220
- },
7221
- "node_modules/lodash.escape": {
7222
- "version": "2.4.1",
7223
- "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-2.4.1.tgz",
7224
- "integrity": "sha1-LOEsXghNsKV92l5dHu659dF1o7Q=",
7225
- "dev": true,
7226
- "dependencies": {
7227
- "lodash._escapehtmlchar": "~2.4.1",
7228
- "lodash._reunescapedhtml": "~2.4.1",
7229
- "lodash.keys": "~2.4.1"
7230
- }
7231
- },
7232
- "node_modules/lodash.isobject": {
7233
- "version": "2.4.1",
7234
- "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz",
7235
- "integrity": "sha1-Wi5H/mmVPx7mMafrof5k0tBlWPU=",
7236
- "dev": true,
7237
- "dependencies": {
7238
- "lodash._objecttypes": "~2.4.1"
7239
- }
7240
- },
7241
- "node_modules/lodash.keys": {
7242
- "version": "2.4.1",
7243
- "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz",
7244
- "integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=",
7245
- "dev": true,
7246
- "dependencies": {
7247
- "lodash._isnative": "~2.4.1",
7248
- "lodash._shimkeys": "~2.4.1",
7249
- "lodash.isobject": "~2.4.1"
7250
- }
7251
- },
7252
- "node_modules/lodash.template": {
7253
- "version": "2.4.1",
7254
- "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-2.4.1.tgz",
7255
- "integrity": "sha1-nmEQB+32KRKal0qzxIuBez4c8g0=",
7256
- "dev": true,
7257
- "dependencies": {
7258
- "lodash._escapestringchar": "~2.4.1",
7259
- "lodash._reinterpolate": "~2.4.1",
7260
- "lodash.defaults": "~2.4.1",
7261
- "lodash.escape": "~2.4.1",
7262
- "lodash.keys": "~2.4.1",
7263
- "lodash.templatesettings": "~2.4.1",
7264
- "lodash.values": "~2.4.1"
7265
- }
7266
- },
7267
- "node_modules/lodash.templatesettings": {
7268
- "version": "2.4.1",
7269
- "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-2.4.1.tgz",
7270
- "integrity": "sha1-6nbHXRHrhtTb6JqDiTu4YZKaxpk=",
7271
- "dev": true,
7272
- "dependencies": {
7273
- "lodash._reinterpolate": "~2.4.1",
7274
- "lodash.escape": "~2.4.1"
7275
- }
7276
- },
7277
- "node_modules/lodash.values": {
7278
- "version": "2.4.1",
7279
- "resolved": "https://registry.npmjs.org/lodash.values/-/lodash.values-2.4.1.tgz",
7280
- "integrity": "sha1-q/UUQ2s8twUAFieXjLzzCxKA7qQ=",
7281
- "dev": true,
7282
- "dependencies": {
7283
- "lodash.keys": "~2.4.1"
7284
- }
7285
- },
7286
- "node_modules/log-symbols": {
7287
- "version": "3.0.0",
7288
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz",
7289
- "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==",
7290
- "dev": true,
7291
- "dependencies": {
7292
- "chalk": "^2.4.2"
7293
- },
7294
- "engines": {
7295
- "node": ">=8"
7296
- }
7297
- },
7298
- "node_modules/loud-rejection": {
7299
- "version": "1.6.0",
7300
- "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz",
7301
- "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=",
7302
- "dev": true,
7303
- "dependencies": {
7304
- "currently-unhandled": "^0.4.1",
7305
- "signal-exit": "^3.0.0"
7306
- },
7307
- "engines": {
7308
- "node": ">=0.10.0"
7309
- }
7310
- },
7311
- "node_modules/lowercase-keys": {
7312
- "version": "2.0.0",
7313
- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
7314
- "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==",
7315
- "dev": true,
7316
- "engines": {
7317
- "node": ">=8"
7318
- }
7319
- },
7320
- "node_modules/lru-cache": {
7321
- "version": "6.0.0",
7322
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
7323
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
7324
- "dev": true,
7325
- "dependencies": {
7326
- "yallist": "^4.0.0"
7327
- },
7328
- "engines": {
7329
- "node": ">=10"
7330
- }
7331
- },
7332
- "node_modules/make-dir": {
7333
- "version": "3.1.0",
7334
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
7335
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
7336
- "dev": true,
7337
- "dependencies": {
7338
- "semver": "^6.0.0"
7339
- },
7340
- "engines": {
7341
- "node": ">=8"
7342
- },
7343
- "funding": {
7344
- "url": "https://github.com/sponsors/sindresorhus"
7345
- }
7346
- },
7347
- "node_modules/make-error": {
7348
- "version": "1.3.6",
7349
- "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
7350
- "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
7351
- "dev": true
7352
- },
7353
- "node_modules/make-error-cause": {
7354
- "version": "1.2.2",
7355
- "resolved": "https://registry.npmjs.org/make-error-cause/-/make-error-cause-1.2.2.tgz",
7356
- "integrity": "sha1-3wOI/NCzeBbf8KX7gQiTl3fcvJ0=",
7357
- "dev": true,
7358
- "dependencies": {
7359
- "make-error": "^1.2.0"
7360
- }
7361
- },
7362
- "node_modules/make-fetch-happen": {
7363
- "version": "9.1.0",
7364
- "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz",
7365
- "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==",
7366
- "dev": true,
7367
- "dependencies": {
7368
- "agentkeepalive": "^4.1.3",
7369
- "cacache": "^15.2.0",
7370
- "http-cache-semantics": "^4.1.0",
7371
- "http-proxy-agent": "^4.0.1",
7372
- "https-proxy-agent": "^5.0.0",
7373
- "is-lambda": "^1.0.1",
7374
- "lru-cache": "^6.0.0",
7375
- "minipass": "^3.1.3",
7376
- "minipass-collect": "^1.0.2",
7377
- "minipass-fetch": "^1.3.2",
7378
- "minipass-flush": "^1.0.5",
7379
- "minipass-pipeline": "^1.2.4",
7380
- "negotiator": "^0.6.2",
7381
- "promise-retry": "^2.0.1",
7382
- "socks-proxy-agent": "^6.0.0",
7383
- "ssri": "^8.0.0"
7384
- },
7385
- "engines": {
7386
- "node": ">= 10"
7387
- }
7388
- },
7389
- "node_modules/make-iterator": {
7390
- "version": "1.0.1",
7391
- "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz",
7392
- "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==",
7393
- "dev": true,
7394
- "dependencies": {
7395
- "kind-of": "^6.0.2"
7396
- },
7397
- "engines": {
7398
- "node": ">=0.10.0"
7399
- }
7400
- },
7401
- "node_modules/map-cache": {
7402
- "version": "0.2.2",
7403
- "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
7404
- "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
7405
- "dev": true,
7406
- "engines": {
7407
- "node": ">=0.10.0"
7408
- }
7409
- },
7410
- "node_modules/map-obj": {
7411
- "version": "1.0.1",
7412
- "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
7413
- "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=",
7414
- "dev": true,
7415
- "engines": {
7416
- "node": ">=0.10.0"
7417
- }
7418
- },
7419
- "node_modules/map-stream": {
7420
- "version": "0.0.4",
7421
- "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.4.tgz",
7422
- "integrity": "sha1-XsbekCE+9sey65Nn6a3o2k79tos=",
7423
- "dev": true
7424
- },
7425
- "node_modules/map-visit": {
7426
- "version": "1.0.0",
7427
- "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
7428
- "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
7429
- "dev": true,
7430
- "dependencies": {
7431
- "object-visit": "^1.0.0"
7432
- },
7433
- "engines": {
7434
- "node": ">=0.10.0"
7435
- }
7436
- },
7437
- "node_modules/matchdep": {
7438
- "version": "2.0.0",
7439
- "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz",
7440
- "integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=",
7441
- "dev": true,
7442
- "dependencies": {
7443
- "findup-sync": "^2.0.0",
7444
- "micromatch": "^3.0.4",
7445
- "resolve": "^1.4.0",
7446
- "stack-trace": "0.0.10"
7447
- },
7448
- "engines": {
7449
- "node": ">= 0.10.0"
7450
- }
7451
- },
7452
- "node_modules/matchdep/node_modules/findup-sync": {
7453
- "version": "2.0.0",
7454
- "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz",
7455
- "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=",
7456
- "dev": true,
7457
- "dependencies": {
7458
- "detect-file": "^1.0.0",
7459
- "is-glob": "^3.1.0",
7460
- "micromatch": "^3.0.4",
7461
- "resolve-dir": "^1.0.1"
7462
- },
7463
- "engines": {
7464
- "node": ">= 0.10"
7465
- }
7466
- },
7467
- "node_modules/matchdep/node_modules/is-glob": {
7468
- "version": "3.1.0",
7469
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
7470
- "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
7471
- "dev": true,
7472
- "dependencies": {
7473
- "is-extglob": "^2.1.0"
7474
- },
7475
- "engines": {
7476
- "node": ">=0.10.0"
7477
- }
7478
- },
7479
- "node_modules/meow": {
7480
- "version": "3.7.0",
7481
- "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz",
7482
- "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=",
7483
- "dev": true,
7484
- "dependencies": {
7485
- "camelcase-keys": "^2.0.0",
7486
- "decamelize": "^1.1.2",
7487
- "loud-rejection": "^1.0.0",
7488
- "map-obj": "^1.0.1",
7489
- "minimist": "^1.1.3",
7490
- "normalize-package-data": "^2.3.4",
7491
- "object-assign": "^4.0.1",
7492
- "read-pkg-up": "^1.0.1",
7493
- "redent": "^1.0.0",
7494
- "trim-newlines": "^1.0.0"
7495
- },
7496
- "engines": {
7497
- "node": ">=0.10.0"
7498
- }
7499
- },
7500
- "node_modules/meow/node_modules/minimist": {
7501
- "version": "1.2.5",
7502
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
7503
- "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
7504
- "dev": true
7505
- },
7506
- "node_modules/merge2": {
7507
- "version": "1.4.1",
7508
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
7509
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
7510
- "dev": true,
7511
- "engines": {
7512
- "node": ">= 8"
7513
- }
7514
- },
7515
- "node_modules/micromatch": {
7516
- "version": "3.1.10",
7517
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
7518
- "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
7519
- "dev": true,
7520
- "dependencies": {
7521
- "arr-diff": "^4.0.0",
7522
- "array-unique": "^0.3.2",
7523
- "braces": "^2.3.1",
7524
- "define-property": "^2.0.2",
7525
- "extend-shallow": "^3.0.2",
7526
- "extglob": "^2.0.4",
7527
- "fragment-cache": "^0.2.1",
7528
- "kind-of": "^6.0.2",
7529
- "nanomatch": "^1.2.9",
7530
- "object.pick": "^1.3.0",
7531
- "regex-not": "^1.0.0",
7532
- "snapdragon": "^0.8.1",
7533
- "to-regex": "^3.0.2"
7534
- },
7535
- "engines": {
7536
- "node": ">=0.10.0"
7537
- }
7538
- },
7539
- "node_modules/mimic-response": {
7540
- "version": "2.1.0",
7541
- "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz",
7542
- "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==",
7543
- "dev": true,
7544
- "engines": {
7545
- "node": ">=8"
7546
- },
7547
- "funding": {
7548
- "url": "https://github.com/sponsors/sindresorhus"
7549
- }
7550
- },
7551
- "node_modules/minimatch": {
7552
- "version": "3.0.4",
7553
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
7554
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
7555
- "dev": true,
7556
- "dependencies": {
7557
- "brace-expansion": "^1.1.7"
7558
- },
7559
- "engines": {
7560
- "node": "*"
7561
- }
7562
- },
7563
- "node_modules/minimist": {
7564
- "version": "0.2.1",
7565
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.2.1.tgz",
7566
- "integrity": "sha512-GY8fANSrTMfBVfInqJAY41QkOM+upUTytK1jZ0c8+3HdHrJxBJ3rF5i9moClXTE8uUSnUo8cAsCoxDXvSY4DHg==",
7567
- "dev": true
7568
- },
7569
- "node_modules/minipass": {
7570
- "version": "3.1.6",
7571
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz",
7572
- "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==",
7573
- "dev": true,
7574
- "dependencies": {
7575
- "yallist": "^4.0.0"
7576
- },
7577
- "engines": {
7578
- "node": ">=8"
7579
- }
7580
- },
7581
- "node_modules/minipass-collect": {
7582
- "version": "1.0.2",
7583
- "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
7584
- "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
7585
- "dev": true,
7586
- "dependencies": {
7587
- "minipass": "^3.0.0"
7588
- },
7589
- "engines": {
7590
- "node": ">= 8"
7591
- }
7592
- },
7593
- "node_modules/minipass-fetch": {
7594
- "version": "1.4.1",
7595
- "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz",
7596
- "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==",
7597
- "dev": true,
7598
- "dependencies": {
7599
- "minipass": "^3.1.0",
7600
- "minipass-sized": "^1.0.3",
7601
- "minizlib": "^2.0.0"
7602
- },
7603
- "engines": {
7604
- "node": ">=8"
7605
- },
7606
- "optionalDependencies": {
7607
- "encoding": "^0.1.12"
7608
- }
7609
- },
7610
- "node_modules/minipass-flush": {
7611
- "version": "1.0.5",
7612
- "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
7613
- "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
7614
- "dev": true,
7615
- "dependencies": {
7616
- "minipass": "^3.0.0"
7617
- },
7618
- "engines": {
7619
- "node": ">= 8"
7620
- }
7621
- },
7622
- "node_modules/minipass-json-stream": {
7623
- "version": "1.0.1",
7624
- "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz",
7625
- "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==",
7626
- "dev": true,
7627
- "dependencies": {
7628
- "jsonparse": "^1.3.1",
7629
- "minipass": "^3.0.0"
7630
- }
7631
- },
7632
- "node_modules/minipass-pipeline": {
7633
- "version": "1.2.4",
7634
- "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
7635
- "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
7636
- "dev": true,
7637
- "dependencies": {
7638
- "minipass": "^3.0.0"
7639
- },
7640
- "engines": {
7641
- "node": ">=8"
7642
- }
7643
- },
7644
- "node_modules/minipass-sized": {
7645
- "version": "1.0.3",
7646
- "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
7647
- "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
7648
- "dev": true,
7649
- "dependencies": {
7650
- "minipass": "^3.0.0"
7651
- },
7652
- "engines": {
7653
- "node": ">=8"
7654
- }
7655
- },
7656
- "node_modules/minizlib": {
7657
- "version": "2.1.2",
7658
- "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
7659
- "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
7660
- "dev": true,
7661
- "dependencies": {
7662
- "minipass": "^3.0.0",
7663
- "yallist": "^4.0.0"
7664
- },
7665
- "engines": {
7666
- "node": ">= 8"
7667
- }
7668
- },
7669
- "node_modules/mixin-deep": {
7670
- "version": "1.3.2",
7671
- "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
7672
- "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
7673
- "dev": true,
7674
- "dependencies": {
7675
- "for-in": "^1.0.2",
7676
- "is-extendable": "^1.0.1"
7677
- },
7678
- "engines": {
7679
- "node": ">=0.10.0"
7680
- }
7681
- },
7682
- "node_modules/mixin-deep/node_modules/is-extendable": {
7683
- "version": "1.0.1",
7684
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
7685
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
7686
- "dev": true,
7687
- "dependencies": {
7688
- "is-plain-object": "^2.0.4"
7689
- },
7690
- "engines": {
7691
- "node": ">=0.10.0"
7692
- }
7693
- },
7694
- "node_modules/mkdirp": {
7695
- "version": "0.5.5",
7696
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
7697
- "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
7698
- "dev": true,
7699
- "dependencies": {
7700
- "minimist": "^1.2.5"
7701
- },
7702
- "bin": {
7703
- "mkdirp": "bin/cmd.js"
7704
- }
7705
- },
7706
- "node_modules/mkdirp/node_modules/minimist": {
7707
- "version": "1.2.5",
7708
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
7709
- "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
7710
- "dev": true
7711
- },
7712
- "node_modules/ms": {
7713
- "version": "2.1.2",
7714
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
7715
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
7716
- "dev": true
7717
- },
7718
- "node_modules/multipipe": {
7719
- "version": "0.1.2",
7720
- "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz",
7721
- "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=",
7722
- "dev": true,
7723
- "dependencies": {
7724
- "duplexer2": "0.0.2"
7725
- }
7726
- },
7727
- "node_modules/mute-stdout": {
7728
- "version": "1.0.1",
7729
- "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz",
7730
- "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==",
7731
- "dev": true,
7732
- "engines": {
7733
- "node": ">= 0.10"
7734
- }
7735
- },
7736
- "node_modules/mute-stream": {
7737
- "version": "0.0.8",
7738
- "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
7739
- "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
7740
- "dev": true
7741
- },
7742
- "node_modules/nan": {
7743
- "version": "2.14.2",
7744
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz",
7745
- "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==",
7746
- "dev": true,
7747
- "optional": true
7748
- },
7749
- "node_modules/nanoid": {
7750
- "version": "3.1.30",
7751
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz",
7752
- "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==",
7753
- "dev": true,
7754
- "bin": {
7755
- "nanoid": "bin/nanoid.cjs"
7756
- },
7757
- "engines": {
7758
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
7759
- }
7760
- },
7761
- "node_modules/nanomatch": {
7762
- "version": "1.2.13",
7763
- "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
7764
- "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
7765
- "dev": true,
7766
- "dependencies": {
7767
- "arr-diff": "^4.0.0",
7768
- "array-unique": "^0.3.2",
7769
- "define-property": "^2.0.2",
7770
- "extend-shallow": "^3.0.2",
7771
- "fragment-cache": "^0.2.1",
7772
- "is-windows": "^1.0.2",
7773
- "kind-of": "^6.0.2",
7774
- "object.pick": "^1.3.0",
7775
- "regex-not": "^1.0.0",
7776
- "snapdragon": "^0.8.1",
7777
- "to-regex": "^3.0.1"
7778
- },
7779
- "engines": {
7780
- "node": ">=0.10.0"
7781
- }
7782
- },
7783
- "node_modules/negotiator": {
7784
- "version": "0.6.2",
7785
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
7786
- "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==",
7787
- "dev": true,
7788
- "engines": {
7789
- "node": ">= 0.6"
7790
- }
7791
- },
7792
- "node_modules/next-tick": {
7793
- "version": "1.0.0",
7794
- "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
7795
- "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=",
7796
- "dev": true
7797
- },
7798
- "node_modules/node-gyp": {
7799
- "version": "8.4.1",
7800
- "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz",
7801
- "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==",
7802
- "dev": true,
7803
- "dependencies": {
7804
- "env-paths": "^2.2.0",
7805
- "glob": "^7.1.4",
7806
- "graceful-fs": "^4.2.6",
7807
- "make-fetch-happen": "^9.1.0",
7808
- "nopt": "^5.0.0",
7809
- "npmlog": "^6.0.0",
7810
- "rimraf": "^3.0.2",
7811
- "semver": "^7.3.5",
7812
- "tar": "^6.1.2",
7813
- "which": "^2.0.2"
7814
- },
7815
- "bin": {
7816
- "node-gyp": "bin/node-gyp.js"
7817
- },
7818
- "engines": {
7819
- "node": ">= 10.12.0"
7820
- }
7821
- },
7822
- "node_modules/node-gyp/node_modules/graceful-fs": {
7823
- "version": "4.2.8",
7824
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz",
7825
- "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==",
7826
- "dev": true
7827
- },
7828
- "node_modules/node-gyp/node_modules/semver": {
7829
- "version": "7.3.5",
7830
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
7831
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
7832
- "dev": true,
7833
- "dependencies": {
7834
- "lru-cache": "^6.0.0"
7835
- },
7836
- "bin": {
7837
- "semver": "bin/semver.js"
7838
- },
7839
- "engines": {
7840
- "node": ">=10"
7841
- }
7842
- },
7843
- "node_modules/node-gyp/node_modules/which": {
7844
- "version": "2.0.2",
7845
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
7846
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
7847
- "dev": true,
7848
- "dependencies": {
7849
- "isexe": "^2.0.0"
7850
- },
7851
- "bin": {
7852
- "node-which": "bin/node-which"
7853
- },
7854
- "engines": {
7855
- "node": ">= 8"
7856
- }
7857
- },
7858
- "node_modules/node-releases": {
7859
- "version": "2.0.1",
7860
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz",
7861
- "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==",
7862
- "dev": true
7863
- },
7864
- "node_modules/nopt": {
7865
- "version": "5.0.0",
7866
- "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
7867
- "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
7868
- "dev": true,
7869
- "dependencies": {
7870
- "abbrev": "1"
7871
- },
7872
- "bin": {
7873
- "nopt": "bin/nopt.js"
7874
- },
7875
- "engines": {
7876
- "node": ">=6"
7877
- }
7878
- },
7879
- "node_modules/normalize-package-data": {
7880
- "version": "2.5.0",
7881
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
7882
- "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
7883
- "dev": true,
7884
- "dependencies": {
7885
- "hosted-git-info": "^2.1.4",
7886
- "resolve": "^1.10.0",
7887
- "semver": "2 || 3 || 4 || 5",
7888
- "validate-npm-package-license": "^3.0.1"
7889
- }
7890
- },
7891
- "node_modules/normalize-package-data/node_modules/semver": {
7892
- "version": "5.7.1",
7893
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
7894
- "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
7895
- "dev": true,
7896
- "bin": {
7897
- "semver": "bin/semver"
7898
- }
7899
- },
7900
- "node_modules/normalize-path": {
7901
- "version": "3.0.0",
7902
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
7903
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
7904
- "dev": true,
7905
- "engines": {
7906
- "node": ">=0.10.0"
7907
- }
7908
- },
7909
- "node_modules/normalize-range": {
7910
- "version": "0.1.2",
7911
- "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
7912
- "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
7913
- "dev": true,
7914
- "engines": {
7915
- "node": ">=0.10.0"
7916
- }
7917
- },
7918
- "node_modules/normalize-url": {
7919
- "version": "4.5.1",
7920
- "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz",
7921
- "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==",
7922
- "dev": true,
7923
- "engines": {
7924
- "node": ">=8"
7925
- }
7926
- },
7927
- "node_modules/now-and-later": {
7928
- "version": "2.0.1",
7929
- "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz",
7930
- "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==",
7931
- "dev": true,
7932
- "dependencies": {
7933
- "once": "^1.3.2"
7934
- },
7935
- "engines": {
7936
- "node": ">= 0.10"
7937
- }
7938
- },
7939
- "node_modules/npm-bundled": {
7940
- "version": "1.1.2",
7941
- "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz",
7942
- "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==",
7943
- "dev": true,
7944
- "dependencies": {
7945
- "npm-normalize-package-bin": "^1.0.1"
7946
- }
7947
- },
7948
- "node_modules/npm-check-updates": {
7949
- "version": "12.0.5",
7950
- "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.0.5.tgz",
7951
- "integrity": "sha512-ns1liBBogwjmOVZY/PYgeIoarItwdOSBxccJDZKKkxsMkXges/Bp5CAnQIvYwlsz6fByQJFvqXSOqwIUBY6gpQ==",
7952
- "dev": true,
7953
- "dependencies": {
7954
- "chalk": "^4.1.2",
7955
- "cint": "^8.2.1",
7956
- "cli-table": "^0.3.11",
7957
- "commander": "^8.3.0",
7958
- "fast-memoize": "^2.5.2",
7959
- "find-up": "5.0.0",
7960
- "fp-and-or": "^0.1.3",
7961
- "get-stdin": "^8.0.0",
7962
- "globby": "^11.0.4",
7963
- "hosted-git-info": "^4.0.2",
7964
- "json-parse-helpfulerror": "^1.0.3",
7965
- "jsonlines": "^0.1.1",
7966
- "libnpmconfig": "^1.2.1",
7967
- "lodash": "^4.17.21",
7968
- "minimatch": "^3.0.4",
7969
- "p-map": "^4.0.0",
7970
- "pacote": "^12.0.2",
7971
- "parse-github-url": "^1.0.2",
7972
- "progress": "^2.0.3",
7973
- "prompts": "^2.4.2",
7974
- "rc-config-loader": "^4.0.0",
7975
- "remote-git-tags": "^3.0.0",
7976
- "rimraf": "^3.0.2",
7977
- "semver": "^7.3.5",
7978
- "semver-utils": "^1.1.4",
7979
- "source-map-support": "^0.5.21",
7980
- "spawn-please": "^1.0.0",
7981
- "update-notifier": "^5.1.0"
7982
- },
7983
- "bin": {
7984
- "ncu": "build/src/bin/cli.js",
7985
- "npm-check-updates": "build/src/bin/cli.js"
7986
- },
7987
- "engines": {
7988
- "node": ">=12"
7989
- }
7990
- },
7991
- "node_modules/npm-check-updates/node_modules/ansi-styles": {
7992
- "version": "4.3.0",
7993
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
7994
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
7995
- "dev": true,
7996
- "dependencies": {
7997
- "color-convert": "^2.0.1"
7998
- },
7999
- "engines": {
8000
- "node": ">=8"
8001
- },
8002
- "funding": {
8003
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
8004
- }
8005
- },
8006
- "node_modules/npm-check-updates/node_modules/chalk": {
8007
- "version": "4.1.2",
8008
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
8009
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
8010
- "dev": true,
8011
- "dependencies": {
8012
- "ansi-styles": "^4.1.0",
8013
- "supports-color": "^7.1.0"
8014
- },
8015
- "engines": {
8016
- "node": ">=10"
8017
- },
8018
- "funding": {
8019
- "url": "https://github.com/chalk/chalk?sponsor=1"
8020
- }
8021
- },
8022
- "node_modules/npm-check-updates/node_modules/color-convert": {
8023
- "version": "2.0.1",
8024
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
8025
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
8026
- "dev": true,
8027
- "dependencies": {
8028
- "color-name": "~1.1.4"
8029
- },
8030
- "engines": {
8031
- "node": ">=7.0.0"
8032
- }
8033
- },
8034
- "node_modules/npm-check-updates/node_modules/color-name": {
8035
- "version": "1.1.4",
8036
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
8037
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
8038
- "dev": true
8039
- },
8040
- "node_modules/npm-check-updates/node_modules/get-stdin": {
8041
- "version": "8.0.0",
8042
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz",
8043
- "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==",
8044
- "dev": true,
8045
- "engines": {
8046
- "node": ">=10"
8047
- },
8048
- "funding": {
8049
- "url": "https://github.com/sponsors/sindresorhus"
8050
- }
8051
- },
8052
- "node_modules/npm-check-updates/node_modules/has-flag": {
8053
- "version": "4.0.0",
8054
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
8055
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
8056
- "dev": true,
8057
- "engines": {
8058
- "node": ">=8"
8059
- }
8060
- },
8061
- "node_modules/npm-check-updates/node_modules/hosted-git-info": {
8062
- "version": "4.0.2",
8063
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz",
8064
- "integrity": "sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==",
8065
- "dev": true,
8066
- "dependencies": {
8067
- "lru-cache": "^6.0.0"
8068
- },
8069
- "engines": {
8070
- "node": ">=10"
8071
- }
8072
- },
8073
- "node_modules/npm-check-updates/node_modules/semver": {
8074
- "version": "7.3.5",
8075
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
8076
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
8077
- "dev": true,
8078
- "dependencies": {
8079
- "lru-cache": "^6.0.0"
8080
- },
8081
- "bin": {
8082
- "semver": "bin/semver.js"
8083
- },
8084
- "engines": {
8085
- "node": ">=10"
8086
- }
8087
- },
8088
- "node_modules/npm-check-updates/node_modules/supports-color": {
8089
- "version": "7.2.0",
8090
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
8091
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
8092
- "dev": true,
8093
- "dependencies": {
8094
- "has-flag": "^4.0.0"
8095
- },
8096
- "engines": {
8097
- "node": ">=8"
8098
- }
8099
- },
8100
- "node_modules/npm-install-checks": {
8101
- "version": "4.0.0",
8102
- "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz",
8103
- "integrity": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==",
8104
- "dev": true,
8105
- "dependencies": {
8106
- "semver": "^7.1.1"
8107
- },
8108
- "engines": {
8109
- "node": ">=10"
8110
- }
8111
- },
8112
- "node_modules/npm-install-checks/node_modules/semver": {
8113
- "version": "7.3.5",
8114
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
8115
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
8116
- "dev": true,
8117
- "dependencies": {
8118
- "lru-cache": "^6.0.0"
8119
- },
8120
- "bin": {
8121
- "semver": "bin/semver.js"
8122
- },
8123
- "engines": {
8124
- "node": ">=10"
8125
- }
8126
- },
8127
- "node_modules/npm-normalize-package-bin": {
8128
- "version": "1.0.1",
8129
- "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz",
8130
- "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==",
8131
- "dev": true
8132
- },
8133
- "node_modules/npm-package-arg": {
8134
- "version": "8.1.5",
8135
- "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz",
8136
- "integrity": "sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==",
8137
- "dev": true,
8138
- "dependencies": {
8139
- "hosted-git-info": "^4.0.1",
8140
- "semver": "^7.3.4",
8141
- "validate-npm-package-name": "^3.0.0"
8142
- },
8143
- "engines": {
8144
- "node": ">=10"
8145
- }
8146
- },
8147
- "node_modules/npm-package-arg/node_modules/hosted-git-info": {
8148
- "version": "4.0.2",
8149
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz",
8150
- "integrity": "sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==",
8151
- "dev": true,
8152
- "dependencies": {
8153
- "lru-cache": "^6.0.0"
8154
- },
8155
- "engines": {
8156
- "node": ">=10"
8157
- }
8158
- },
8159
- "node_modules/npm-package-arg/node_modules/semver": {
8160
- "version": "7.3.5",
8161
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
8162
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
8163
- "dev": true,
8164
- "dependencies": {
8165
- "lru-cache": "^6.0.0"
8166
- },
8167
- "bin": {
8168
- "semver": "bin/semver.js"
8169
- },
8170
- "engines": {
8171
- "node": ">=10"
8172
- }
8173
- },
8174
- "node_modules/npm-packlist": {
8175
- "version": "3.0.0",
8176
- "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-3.0.0.tgz",
8177
- "integrity": "sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==",
8178
- "dev": true,
8179
- "dependencies": {
8180
- "glob": "^7.1.6",
8181
- "ignore-walk": "^4.0.1",
8182
- "npm-bundled": "^1.1.1",
8183
- "npm-normalize-package-bin": "^1.0.1"
8184
- },
8185
- "bin": {
8186
- "npm-packlist": "bin/index.js"
8187
- },
8188
- "engines": {
8189
- "node": ">=10"
8190
- }
8191
- },
8192
- "node_modules/npm-pick-manifest": {
8193
- "version": "6.1.1",
8194
- "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz",
8195
- "integrity": "sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==",
8196
- "dev": true,
8197
- "dependencies": {
8198
- "npm-install-checks": "^4.0.0",
8199
- "npm-normalize-package-bin": "^1.0.1",
8200
- "npm-package-arg": "^8.1.2",
8201
- "semver": "^7.3.4"
8202
- }
8203
- },
8204
- "node_modules/npm-pick-manifest/node_modules/semver": {
8205
- "version": "7.3.5",
8206
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
8207
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
8208
- "dev": true,
8209
- "dependencies": {
8210
- "lru-cache": "^6.0.0"
8211
- },
8212
- "bin": {
8213
- "semver": "bin/semver.js"
8214
- },
8215
- "engines": {
8216
- "node": ">=10"
8217
- }
8218
- },
8219
- "node_modules/npm-registry-fetch": {
8220
- "version": "11.0.0",
8221
- "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-11.0.0.tgz",
8222
- "integrity": "sha512-jmlgSxoDNuhAtxUIG6pVwwtz840i994dL14FoNVZisrmZW5kWd63IUTNv1m/hyRSGSqWjCUp/YZlS1BJyNp9XA==",
8223
- "dev": true,
8224
- "dependencies": {
8225
- "make-fetch-happen": "^9.0.1",
8226
- "minipass": "^3.1.3",
8227
- "minipass-fetch": "^1.3.0",
8228
- "minipass-json-stream": "^1.0.1",
8229
- "minizlib": "^2.0.0",
8230
- "npm-package-arg": "^8.0.0"
8231
- },
8232
- "engines": {
8233
- "node": ">=10"
8234
- }
8235
- },
8236
- "node_modules/npmlog": {
8237
- "version": "6.0.0",
8238
- "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.0.tgz",
8239
- "integrity": "sha512-03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q==",
8240
- "dev": true,
8241
- "dependencies": {
8242
- "are-we-there-yet": "^2.0.0",
8243
- "console-control-strings": "^1.1.0",
8244
- "gauge": "^4.0.0",
8245
- "set-blocking": "^2.0.0"
8246
- },
8247
- "engines": {
8248
- "node": "^12.13.0 || ^14.15.0 || >=16"
8249
- }
8250
- },
8251
- "node_modules/number-is-nan": {
8252
- "version": "1.0.1",
8253
- "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
8254
- "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
8255
- "dev": true,
8256
- "engines": {
8257
- "node": ">=0.10.0"
8258
- }
8259
- },
8260
- "node_modules/object-assign": {
8261
- "version": "4.1.1",
8262
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
8263
- "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
8264
- "dev": true,
8265
- "engines": {
8266
- "node": ">=0.10.0"
8267
- }
8268
- },
8269
- "node_modules/object-copy": {
8270
- "version": "0.1.0",
8271
- "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
8272
- "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
8273
- "dev": true,
8274
- "dependencies": {
8275
- "copy-descriptor": "^0.1.0",
8276
- "define-property": "^0.2.5",
8277
- "kind-of": "^3.0.3"
8278
- },
8279
- "engines": {
8280
- "node": ">=0.10.0"
8281
- }
8282
- },
8283
- "node_modules/object-copy/node_modules/define-property": {
8284
- "version": "0.2.5",
8285
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
8286
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
8287
- "dev": true,
8288
- "dependencies": {
8289
- "is-descriptor": "^0.1.0"
8290
- },
8291
- "engines": {
8292
- "node": ">=0.10.0"
8293
- }
8294
- },
8295
- "node_modules/object-copy/node_modules/kind-of": {
8296
- "version": "3.2.2",
8297
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
8298
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
8299
- "dev": true,
8300
- "dependencies": {
8301
- "is-buffer": "^1.1.5"
8302
- },
8303
- "engines": {
8304
- "node": ">=0.10.0"
8305
- }
8306
- },
8307
- "node_modules/object-keys": {
8308
- "version": "1.1.1",
8309
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
8310
- "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
8311
- "dev": true,
8312
- "engines": {
8313
- "node": ">= 0.4"
8314
- }
8315
- },
8316
- "node_modules/object-visit": {
8317
- "version": "1.0.1",
8318
- "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
8319
- "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
8320
- "dev": true,
8321
- "dependencies": {
8322
- "isobject": "^3.0.0"
8323
- },
8324
- "engines": {
8325
- "node": ">=0.10.0"
8326
- }
8327
- },
8328
- "node_modules/object.assign": {
8329
- "version": "4.1.2",
8330
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz",
8331
- "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==",
8332
- "dev": true,
8333
- "dependencies": {
8334
- "call-bind": "^1.0.0",
8335
- "define-properties": "^1.1.3",
8336
- "has-symbols": "^1.0.1",
8337
- "object-keys": "^1.1.1"
8338
- },
8339
- "engines": {
8340
- "node": ">= 0.4"
8341
- },
8342
- "funding": {
8343
- "url": "https://github.com/sponsors/ljharb"
8344
- }
8345
- },
8346
- "node_modules/object.defaults": {
8347
- "version": "1.1.0",
8348
- "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz",
8349
- "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=",
8350
- "dev": true,
8351
- "dependencies": {
8352
- "array-each": "^1.0.1",
8353
- "array-slice": "^1.0.0",
8354
- "for-own": "^1.0.0",
8355
- "isobject": "^3.0.0"
8356
- },
8357
- "engines": {
8358
- "node": ">=0.10.0"
8359
- }
8360
- },
8361
- "node_modules/object.map": {
8362
- "version": "1.0.1",
8363
- "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz",
8364
- "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=",
8365
- "dev": true,
8366
- "dependencies": {
8367
- "for-own": "^1.0.0",
8368
- "make-iterator": "^1.0.0"
8369
- },
8370
- "engines": {
8371
- "node": ">=0.10.0"
8372
- }
8373
- },
8374
- "node_modules/object.pick": {
8375
- "version": "1.3.0",
8376
- "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
8377
- "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
8378
- "dev": true,
8379
- "dependencies": {
8380
- "isobject": "^3.0.1"
8381
- },
8382
- "engines": {
8383
- "node": ">=0.10.0"
8384
- }
8385
- },
8386
- "node_modules/object.reduce": {
8387
- "version": "1.0.1",
8388
- "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz",
8389
- "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=",
8390
- "dev": true,
8391
- "dependencies": {
8392
- "for-own": "^1.0.0",
8393
- "make-iterator": "^1.0.0"
8394
- },
8395
- "engines": {
8396
- "node": ">=0.10.0"
8397
- }
8398
- },
8399
- "node_modules/once": {
8400
- "version": "1.4.0",
8401
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
8402
- "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
8403
- "dev": true,
8404
- "dependencies": {
8405
- "wrappy": "1"
8406
- }
8407
- },
8408
- "node_modules/onetime": {
8409
- "version": "5.1.2",
8410
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
8411
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
8412
- "dev": true,
8413
- "dependencies": {
8414
- "mimic-fn": "^2.1.0"
8415
- },
8416
- "engines": {
8417
- "node": ">=6"
8418
- },
8419
- "funding": {
8420
- "url": "https://github.com/sponsors/sindresorhus"
8421
- }
8422
- },
8423
- "node_modules/onetime/node_modules/mimic-fn": {
8424
- "version": "2.1.0",
8425
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
8426
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
8427
- "dev": true,
8428
- "engines": {
8429
- "node": ">=6"
8430
- }
8431
- },
8432
- "node_modules/ora": {
8433
- "version": "4.1.1",
8434
- "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz",
8435
- "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==",
8436
- "dev": true,
8437
- "dependencies": {
8438
- "chalk": "^3.0.0",
8439
- "cli-cursor": "^3.1.0",
8440
- "cli-spinners": "^2.2.0",
8441
- "is-interactive": "^1.0.0",
8442
- "log-symbols": "^3.0.0",
8443
- "mute-stream": "0.0.8",
8444
- "strip-ansi": "^6.0.0",
8445
- "wcwidth": "^1.0.1"
8446
- },
8447
- "engines": {
8448
- "node": ">=8"
8449
- },
8450
- "funding": {
8451
- "url": "https://github.com/sponsors/sindresorhus"
8452
- }
8453
- },
8454
- "node_modules/ora/node_modules/ansi-styles": {
8455
- "version": "4.3.0",
8456
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
8457
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
8458
- "dev": true,
8459
- "dependencies": {
8460
- "color-convert": "^2.0.1"
8461
- },
8462
- "engines": {
8463
- "node": ">=8"
8464
- },
8465
- "funding": {
8466
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
8467
- }
8468
- },
8469
- "node_modules/ora/node_modules/chalk": {
8470
- "version": "3.0.0",
8471
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
8472
- "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
8473
- "dev": true,
8474
- "dependencies": {
8475
- "ansi-styles": "^4.1.0",
8476
- "supports-color": "^7.1.0"
8477
- },
8478
- "engines": {
8479
- "node": ">=8"
8480
- }
8481
- },
8482
- "node_modules/ora/node_modules/color-convert": {
8483
- "version": "2.0.1",
8484
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
8485
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
8486
- "dev": true,
8487
- "dependencies": {
8488
- "color-name": "~1.1.4"
8489
- },
8490
- "engines": {
8491
- "node": ">=7.0.0"
8492
- }
8493
- },
8494
- "node_modules/ora/node_modules/color-name": {
8495
- "version": "1.1.4",
8496
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
8497
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
8498
- "dev": true
8499
- },
8500
- "node_modules/ora/node_modules/has-flag": {
8501
- "version": "4.0.0",
8502
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
8503
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
8504
- "dev": true,
8505
- "engines": {
8506
- "node": ">=8"
8507
- }
8508
- },
8509
- "node_modules/ora/node_modules/supports-color": {
8510
- "version": "7.2.0",
8511
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
8512
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
8513
- "dev": true,
8514
- "dependencies": {
8515
- "has-flag": "^4.0.0"
8516
- },
8517
- "engines": {
8518
- "node": ">=8"
8519
- }
8520
- },
8521
- "node_modules/ordered-read-streams": {
8522
- "version": "1.0.1",
8523
- "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz",
8524
- "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=",
8525
- "dev": true,
8526
- "dependencies": {
8527
- "readable-stream": "^2.0.1"
8528
- }
8529
- },
8530
- "node_modules/os-locale": {
8531
- "version": "1.4.0",
8532
- "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz",
8533
- "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=",
8534
- "dev": true,
8535
- "dependencies": {
8536
- "lcid": "^1.0.0"
8537
- },
8538
- "engines": {
8539
- "node": ">=0.10.0"
8540
- }
8541
- },
8542
- "node_modules/os-tmpdir": {
8543
- "version": "1.0.2",
8544
- "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
8545
- "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
8546
- "dev": true,
8547
- "engines": {
8548
- "node": ">=0.10.0"
8549
- }
8550
- },
8551
- "node_modules/p-cancelable": {
8552
- "version": "2.1.0",
8553
- "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.0.tgz",
8554
- "integrity": "sha512-HAZyB3ZodPo+BDpb4/Iu7Jv4P6cSazBz9ZM0ChhEXp70scx834aWCEjQRwgt41UzzejUAPdbqqONfRWTPYrPAQ==",
8555
- "dev": true,
8556
- "engines": {
8557
- "node": ">=8"
8558
- }
8559
- },
8560
- "node_modules/p-event": {
8561
- "version": "4.2.0",
8562
- "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz",
8563
- "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==",
8564
- "dev": true,
8565
- "dependencies": {
8566
- "p-timeout": "^3.1.0"
8567
- },
8568
- "engines": {
8569
- "node": ">=8"
8570
- },
8571
- "funding": {
8572
- "url": "https://github.com/sponsors/sindresorhus"
8573
- }
8574
- },
8575
- "node_modules/p-finally": {
8576
- "version": "1.0.0",
8577
- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
8578
- "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
8579
- "dev": true,
8580
- "engines": {
8581
- "node": ">=4"
8582
- }
8583
- },
8584
- "node_modules/p-limit": {
8585
- "version": "3.1.0",
8586
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
8587
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
8588
- "dev": true,
8589
- "dependencies": {
8590
- "yocto-queue": "^0.1.0"
8591
- },
8592
- "engines": {
8593
- "node": ">=10"
8594
- },
8595
- "funding": {
8596
- "url": "https://github.com/sponsors/sindresorhus"
8597
- }
8598
- },
8599
- "node_modules/p-locate": {
8600
- "version": "5.0.0",
8601
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
8602
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
8603
- "dev": true,
8604
- "dependencies": {
8605
- "p-limit": "^3.0.2"
8606
- },
8607
- "engines": {
8608
- "node": ">=10"
8609
- },
8610
- "funding": {
8611
- "url": "https://github.com/sponsors/sindresorhus"
8612
- }
8613
- },
8614
- "node_modules/p-map": {
8615
- "version": "4.0.0",
8616
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
8617
- "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
8618
- "dev": true,
8619
- "dependencies": {
8620
- "aggregate-error": "^3.0.0"
8621
- },
8622
- "engines": {
8623
- "node": ">=10"
8624
- },
8625
- "funding": {
8626
- "url": "https://github.com/sponsors/sindresorhus"
8627
- }
8628
- },
8629
- "node_modules/p-timeout": {
8630
- "version": "3.2.0",
8631
- "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
8632
- "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
8633
- "dev": true,
8634
- "dependencies": {
8635
- "p-finally": "^1.0.0"
8636
- },
8637
- "engines": {
8638
- "node": ">=8"
8639
- }
8640
- },
8641
- "node_modules/p-try": {
8642
- "version": "2.2.0",
8643
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
8644
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
8645
- "dev": true,
8646
- "engines": {
8647
- "node": ">=6"
8648
- }
8649
- },
8650
- "node_modules/package-json": {
8651
- "version": "6.5.0",
8652
- "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz",
8653
- "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==",
8654
- "dev": true,
8655
- "dependencies": {
8656
- "got": "^9.6.0",
8657
- "registry-auth-token": "^4.0.0",
8658
- "registry-url": "^5.0.0",
8659
- "semver": "^6.2.0"
8660
- },
8661
- "engines": {
8662
- "node": ">=8"
8663
- }
8664
- },
8665
- "node_modules/package-json/node_modules/@sindresorhus/is": {
8666
- "version": "0.14.0",
8667
- "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
8668
- "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==",
8669
- "dev": true,
8670
- "engines": {
8671
- "node": ">=6"
8672
- }
8673
- },
8674
- "node_modules/package-json/node_modules/@szmarczak/http-timer": {
8675
- "version": "1.1.2",
8676
- "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz",
8677
- "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
8678
- "dev": true,
8679
- "dependencies": {
8680
- "defer-to-connect": "^1.0.1"
8681
- },
8682
- "engines": {
8683
- "node": ">=6"
8684
- }
8685
- },
8686
- "node_modules/package-json/node_modules/cacheable-request": {
8687
- "version": "6.1.0",
8688
- "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz",
8689
- "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==",
8690
- "dev": true,
8691
- "dependencies": {
8692
- "clone-response": "^1.0.2",
8693
- "get-stream": "^5.1.0",
8694
- "http-cache-semantics": "^4.0.0",
8695
- "keyv": "^3.0.0",
8696
- "lowercase-keys": "^2.0.0",
8697
- "normalize-url": "^4.1.0",
8698
- "responselike": "^1.0.2"
8699
- },
8700
- "engines": {
8701
- "node": ">=8"
8702
- }
8703
- },
8704
- "node_modules/package-json/node_modules/decompress-response": {
8705
- "version": "3.3.0",
8706
- "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
8707
- "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
8708
- "dev": true,
8709
- "dependencies": {
8710
- "mimic-response": "^1.0.0"
8711
- },
8712
- "engines": {
8713
- "node": ">=4"
8714
- }
8715
- },
8716
- "node_modules/package-json/node_modules/defer-to-connect": {
8717
- "version": "1.1.3",
8718
- "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz",
8719
- "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==",
8720
- "dev": true
8721
- },
8722
- "node_modules/package-json/node_modules/got": {
8723
- "version": "9.6.0",
8724
- "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz",
8725
- "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==",
8726
- "dev": true,
8727
- "dependencies": {
8728
- "@sindresorhus/is": "^0.14.0",
8729
- "@szmarczak/http-timer": "^1.1.2",
8730
- "cacheable-request": "^6.0.0",
8731
- "decompress-response": "^3.3.0",
8732
- "duplexer3": "^0.1.4",
8733
- "get-stream": "^4.1.0",
8734
- "lowercase-keys": "^1.0.1",
8735
- "mimic-response": "^1.0.1",
8736
- "p-cancelable": "^1.0.0",
8737
- "to-readable-stream": "^1.0.0",
8738
- "url-parse-lax": "^3.0.0"
8739
- },
8740
- "engines": {
8741
- "node": ">=8.6"
8742
- }
8743
- },
8744
- "node_modules/package-json/node_modules/got/node_modules/get-stream": {
8745
- "version": "4.1.0",
8746
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
8747
- "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
8748
- "dev": true,
8749
- "dependencies": {
8750
- "pump": "^3.0.0"
8751
- },
8752
- "engines": {
8753
- "node": ">=6"
8754
- }
8755
- },
8756
- "node_modules/package-json/node_modules/got/node_modules/lowercase-keys": {
8757
- "version": "1.0.1",
8758
- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
8759
- "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
8760
- "dev": true,
8761
- "engines": {
8762
- "node": ">=0.10.0"
8763
- }
8764
- },
8765
- "node_modules/package-json/node_modules/json-buffer": {
8766
- "version": "3.0.0",
8767
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
8768
- "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=",
8769
- "dev": true
8770
- },
8771
- "node_modules/package-json/node_modules/keyv": {
8772
- "version": "3.1.0",
8773
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz",
8774
- "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==",
8775
- "dev": true,
8776
- "dependencies": {
8777
- "json-buffer": "3.0.0"
8778
- }
8779
- },
8780
- "node_modules/package-json/node_modules/mimic-response": {
8781
- "version": "1.0.1",
8782
- "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
8783
- "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
8784
- "dev": true,
8785
- "engines": {
8786
- "node": ">=4"
8787
- }
8788
- },
8789
- "node_modules/package-json/node_modules/p-cancelable": {
8790
- "version": "1.1.0",
8791
- "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz",
8792
- "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==",
8793
- "dev": true,
8794
- "engines": {
8795
- "node": ">=6"
8796
- }
8797
- },
8798
- "node_modules/package-json/node_modules/responselike": {
8799
- "version": "1.0.2",
8800
- "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz",
8801
- "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=",
8802
- "dev": true,
8803
- "dependencies": {
8804
- "lowercase-keys": "^1.0.0"
8805
- }
8806
- },
8807
- "node_modules/package-json/node_modules/responselike/node_modules/lowercase-keys": {
8808
- "version": "1.0.1",
8809
- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
8810
- "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
8811
- "dev": true,
8812
- "engines": {
8813
- "node": ">=0.10.0"
8814
- }
8815
- },
8816
- "node_modules/package-json/node_modules/to-readable-stream": {
8817
- "version": "1.0.0",
8818
- "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz",
8819
- "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==",
8820
- "dev": true,
8821
- "engines": {
8822
- "node": ">=6"
8823
- }
8824
- },
8825
- "node_modules/pacote": {
8826
- "version": "12.0.2",
8827
- "resolved": "https://registry.npmjs.org/pacote/-/pacote-12.0.2.tgz",
8828
- "integrity": "sha512-Ar3mhjcxhMzk+OVZ8pbnXdb0l8+pimvlsqBGRNkble2NVgyqOGE3yrCGi/lAYq7E7NRDMz89R1Wx5HIMCGgeYg==",
8829
- "dev": true,
8830
- "dependencies": {
8831
- "@npmcli/git": "^2.1.0",
8832
- "@npmcli/installed-package-contents": "^1.0.6",
8833
- "@npmcli/promise-spawn": "^1.2.0",
8834
- "@npmcli/run-script": "^2.0.0",
8835
- "cacache": "^15.0.5",
8836
- "chownr": "^2.0.0",
8837
- "fs-minipass": "^2.1.0",
8838
- "infer-owner": "^1.0.4",
8839
- "minipass": "^3.1.3",
8840
- "mkdirp": "^1.0.3",
8841
- "npm-package-arg": "^8.0.1",
8842
- "npm-packlist": "^3.0.0",
8843
- "npm-pick-manifest": "^6.0.0",
8844
- "npm-registry-fetch": "^11.0.0",
8845
- "promise-retry": "^2.0.1",
8846
- "read-package-json-fast": "^2.0.1",
8847
- "rimraf": "^3.0.2",
8848
- "ssri": "^8.0.1",
8849
- "tar": "^6.1.0"
8850
- },
8851
- "bin": {
8852
- "pacote": "lib/bin.js"
8853
- },
8854
- "engines": {
8855
- "node": "^12.13.0 || ^14.15.0 || >=16"
8856
- }
8857
- },
8858
- "node_modules/pacote/node_modules/mkdirp": {
8859
- "version": "1.0.4",
8860
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
8861
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
8862
- "dev": true,
8863
- "bin": {
8864
- "mkdirp": "bin/cmd.js"
8865
- },
8866
- "engines": {
8867
- "node": ">=10"
8868
- }
8869
- },
8870
- "node_modules/parse-filepath": {
8871
- "version": "1.0.2",
8872
- "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz",
8873
- "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=",
8874
- "dev": true,
8875
- "dependencies": {
8876
- "is-absolute": "^1.0.0",
8877
- "map-cache": "^0.2.0",
8878
- "path-root": "^0.1.1"
8879
- },
8880
- "engines": {
8881
- "node": ">=0.8"
8882
- }
8883
- },
8884
- "node_modules/parse-github-url": {
8885
- "version": "1.0.2",
8886
- "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz",
8887
- "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==",
8888
- "dev": true,
8889
- "bin": {
8890
- "parse-github-url": "cli.js"
8891
- },
8892
- "engines": {
8893
- "node": ">=0.10.0"
8894
- }
8895
- },
8896
- "node_modules/parse-json": {
8897
- "version": "2.2.0",
8898
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
8899
- "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
8900
- "dev": true,
8901
- "dependencies": {
8902
- "error-ex": "^1.2.0"
8903
- },
8904
- "engines": {
8905
- "node": ">=0.10.0"
8906
- }
8907
- },
8908
- "node_modules/parse-node-version": {
8909
- "version": "1.0.1",
8910
- "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz",
8911
- "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==",
8912
- "dev": true,
8913
- "engines": {
8914
- "node": ">= 0.10"
8915
- }
8916
- },
8917
- "node_modules/parse-passwd": {
8918
- "version": "1.0.0",
8919
- "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
8920
- "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=",
8921
- "dev": true,
8922
- "engines": {
8923
- "node": ">=0.10.0"
8924
- }
8925
- },
8926
- "node_modules/pascalcase": {
8927
- "version": "0.1.1",
8928
- "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
8929
- "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
8930
- "dev": true,
8931
- "engines": {
8932
- "node": ">=0.10.0"
8933
- }
8934
- },
8935
- "node_modules/path-dirname": {
8936
- "version": "1.0.2",
8937
- "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
8938
- "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
8939
- "dev": true
8940
- },
8941
- "node_modules/path-exists": {
8942
- "version": "4.0.0",
8943
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
8944
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
8945
- "dev": true,
8946
- "engines": {
8947
- "node": ">=8"
8948
- }
8949
- },
8950
- "node_modules/path-is-absolute": {
8951
- "version": "1.0.1",
8952
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
8953
- "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
8954
- "dev": true,
8955
- "engines": {
8956
- "node": ">=0.10.0"
8957
- }
8958
- },
8959
- "node_modules/path-parse": {
8960
- "version": "1.0.7",
8961
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
8962
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
8963
- "dev": true
8964
- },
8965
- "node_modules/path-root": {
8966
- "version": "0.1.1",
8967
- "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz",
8968
- "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=",
8969
- "dev": true,
8970
- "dependencies": {
8971
- "path-root-regex": "^0.1.0"
8972
- },
8973
- "engines": {
8974
- "node": ">=0.10.0"
8975
- }
8976
- },
8977
- "node_modules/path-root-regex": {
8978
- "version": "0.1.2",
8979
- "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz",
8980
- "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=",
8981
- "dev": true,
8982
- "engines": {
8983
- "node": ">=0.10.0"
8984
- }
8985
- },
8986
- "node_modules/path-type": {
8987
- "version": "4.0.0",
8988
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
8989
- "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
8990
- "dev": true,
8991
- "engines": {
8992
- "node": ">=8"
8993
- }
8994
- },
8995
- "node_modules/pend": {
8996
- "version": "1.2.0",
8997
- "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
8998
- "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=",
8999
- "dev": true
9000
- },
9001
- "node_modules/picocolors": {
9002
- "version": "1.0.0",
9003
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
9004
- "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
9005
- "dev": true
9006
- },
9007
- "node_modules/picomatch": {
9008
- "version": "2.3.0",
9009
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",
9010
- "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==",
9011
- "dev": true,
9012
- "engines": {
9013
- "node": ">=8.6"
9014
- },
9015
- "funding": {
9016
- "url": "https://github.com/sponsors/jonschlinkert"
9017
- }
9018
- },
9019
- "node_modules/pify": {
9020
- "version": "2.3.0",
9021
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
9022
- "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
9023
- "dev": true,
9024
- "engines": {
9025
- "node": ">=0.10.0"
9026
- }
9027
- },
9028
- "node_modules/pinkie": {
9029
- "version": "2.0.4",
9030
- "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
9031
- "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
9032
- "dev": true,
9033
- "engines": {
9034
- "node": ">=0.10.0"
9035
- }
9036
- },
9037
- "node_modules/pinkie-promise": {
9038
- "version": "2.0.1",
9039
- "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
9040
- "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
9041
- "dev": true,
9042
- "dependencies": {
9043
- "pinkie": "^2.0.0"
9044
- },
9045
- "engines": {
9046
- "node": ">=0.10.0"
9047
- }
9048
- },
9049
- "node_modules/plugin-error": {
9050
- "version": "1.0.1",
9051
- "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz",
9052
- "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==",
9053
- "dev": true,
9054
- "dependencies": {
9055
- "ansi-colors": "^1.0.1",
9056
- "arr-diff": "^4.0.0",
9057
- "arr-union": "^3.1.0",
9058
- "extend-shallow": "^3.0.2"
9059
- },
9060
- "engines": {
9061
- "node": ">= 0.10"
9062
- }
9063
- },
9064
- "node_modules/plugin-error/node_modules/extend-shallow": {
9065
- "version": "3.0.2",
9066
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
9067
- "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
9068
- "dev": true,
9069
- "dependencies": {
9070
- "assign-symbols": "^1.0.0",
9071
- "is-extendable": "^1.0.1"
9072
- },
9073
- "engines": {
9074
- "node": ">=0.10.0"
9075
- }
9076
- },
9077
- "node_modules/plugin-error/node_modules/is-extendable": {
9078
- "version": "1.0.1",
9079
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
9080
- "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
9081
- "dev": true,
9082
- "dependencies": {
9083
- "is-plain-object": "^2.0.4"
9084
- },
9085
- "engines": {
9086
- "node": ">=0.10.0"
9087
- }
9088
- },
9089
- "node_modules/plugin-error/node_modules/is-plain-object": {
9090
- "version": "2.0.4",
9091
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
9092
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
9093
- "dev": true,
9094
- "dependencies": {
9095
- "isobject": "^3.0.1"
9096
- },
9097
- "engines": {
9098
- "node": ">=0.10.0"
9099
- }
9100
- },
9101
- "node_modules/po2json": {
9102
- "version": "1.0.0-beta-3",
9103
- "resolved": "https://registry.npmjs.org/po2json/-/po2json-1.0.0-beta-3.tgz",
9104
- "integrity": "sha512-taS8y6ZEGzPAs0rygW9CuUPY8C3Zgx6cBy31QXxG2JlWS3fLxj/kuD3cbIfXBg30PuYN7J5oyBa/TIRjyqFFtg==",
9105
- "dev": true,
9106
- "dependencies": {
9107
- "commander": "^6.0.0",
9108
- "gettext-parser": "2.0.0",
9109
- "gettext-to-messageformat": "0.3.1"
9110
- },
9111
- "bin": {
9112
- "po2json": "bin/po2json"
9113
- },
9114
- "engines": {
9115
- "node": ">=10.0"
9116
- },
9117
- "peerDependencies": {
9118
- "commander": "^6.0.0",
9119
- "gettext-parser": "2.0.0",
9120
- "gettext-to-messageformat": "0.3.1"
9121
- }
9122
- },
9123
- "node_modules/po2json/node_modules/commander": {
9124
- "version": "6.2.1",
9125
- "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
9126
- "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
9127
- "dev": true,
9128
- "engines": {
9129
- "node": ">= 6"
9130
- }
9131
- },
9132
- "node_modules/po2json/node_modules/gettext-parser": {
9133
- "version": "2.0.0",
9134
- "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-2.0.0.tgz",
9135
- "integrity": "sha512-FDs/7XjNw58ToQwJFO7avZZbPecSYgw8PBYhd0An+4JtZSrSzKhEvTsVV2uqdO7VziWTOGSgLGD5YRPdsCjF7Q==",
9136
- "dev": true,
9137
- "dependencies": {
9138
- "encoding": "^0.1.12",
9139
- "safe-buffer": "^5.1.2"
9140
- }
9141
- },
9142
- "node_modules/posix-character-classes": {
9143
- "version": "0.1.1",
9144
- "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
9145
- "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
9146
- "dev": true,
9147
- "engines": {
9148
- "node": ">=0.10.0"
9149
- }
9150
- },
9151
- "node_modules/postcss": {
9152
- "version": "8.4.5",
9153
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.5.tgz",
9154
- "integrity": "sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==",
9155
- "dev": true,
9156
- "dependencies": {
9157
- "nanoid": "^3.1.30",
9158
- "picocolors": "^1.0.0",
9159
- "source-map-js": "^1.0.1"
9160
- },
9161
- "engines": {
9162
- "node": "^10 || ^12 || >=14"
9163
- },
9164
- "funding": {
9165
- "type": "opencollective",
9166
- "url": "https://opencollective.com/postcss/"
9167
- }
9168
- },
9169
- "node_modules/postcss-value-parser": {
9170
- "version": "4.2.0",
9171
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
9172
- "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
9173
- "dev": true
9174
- },
9175
- "node_modules/prepend-http": {
9176
- "version": "2.0.0",
9177
- "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
9178
- "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=",
9179
- "dev": true,
9180
- "engines": {
9181
- "node": ">=4"
9182
- }
9183
- },
9184
- "node_modules/pretty-hrtime": {
9185
- "version": "1.0.3",
9186
- "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
9187
- "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=",
9188
- "dev": true,
9189
- "engines": {
9190
- "node": ">= 0.8"
9191
- }
9192
- },
9193
- "node_modules/process-nextick-args": {
9194
- "version": "2.0.1",
9195
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
9196
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
9197
- "dev": true
9198
- },
9199
- "node_modules/progress": {
9200
- "version": "2.0.3",
9201
- "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
9202
- "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
9203
- "dev": true,
9204
- "engines": {
9205
- "node": ">=0.4.0"
9206
- }
9207
- },
9208
- "node_modules/promise-inflight": {
9209
- "version": "1.0.1",
9210
- "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
9211
- "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
9212
- "dev": true
9213
- },
9214
- "node_modules/promise-retry": {
9215
- "version": "2.0.1",
9216
- "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
9217
- "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
9218
- "dev": true,
9219
- "dependencies": {
9220
- "err-code": "^2.0.2",
9221
- "retry": "^0.12.0"
9222
- },
9223
- "engines": {
9224
- "node": ">=10"
9225
- }
9226
- },
9227
- "node_modules/prompts": {
9228
- "version": "2.4.2",
9229
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
9230
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
9231
- "dev": true,
9232
- "dependencies": {
9233
- "kleur": "^3.0.3",
9234
- "sisteransi": "^1.0.5"
9235
- },
9236
- "engines": {
9237
- "node": ">= 6"
9238
- }
9239
- },
9240
- "node_modules/pump": {
9241
- "version": "3.0.0",
9242
- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
9243
- "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
9244
- "dev": true,
9245
- "dependencies": {
9246
- "end-of-stream": "^1.1.0",
9247
- "once": "^1.3.1"
9248
- }
9249
- },
9250
- "node_modules/pumpify": {
9251
- "version": "1.5.1",
9252
- "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
9253
- "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
9254
- "dev": true,
9255
- "dependencies": {
9256
- "duplexify": "^3.6.0",
9257
- "inherits": "^2.0.3",
9258
- "pump": "^2.0.0"
9259
- }
9260
- },
9261
- "node_modules/pumpify/node_modules/pump": {
9262
- "version": "2.0.1",
9263
- "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
9264
- "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
9265
- "dev": true,
9266
- "dependencies": {
9267
- "end-of-stream": "^1.1.0",
9268
- "once": "^1.3.1"
9269
- }
9270
- },
9271
- "node_modules/pupa": {
9272
- "version": "2.1.1",
9273
- "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz",
9274
- "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==",
9275
- "dev": true,
9276
- "dependencies": {
9277
- "escape-goat": "^2.0.0"
9278
- },
9279
- "engines": {
9280
- "node": ">=8"
9281
- }
9282
- },
9283
- "node_modules/queue-microtask": {
9284
- "version": "1.2.3",
9285
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
9286
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
9287
- "dev": true,
9288
- "funding": [
9289
- {
9290
- "type": "github",
9291
- "url": "https://github.com/sponsors/feross"
9292
- },
9293
- {
9294
- "type": "patreon",
9295
- "url": "https://www.patreon.com/feross"
9296
- },
9297
- {
9298
- "type": "consulting",
9299
- "url": "https://feross.org/support"
9300
- }
9301
- ]
9302
- },
9303
- "node_modules/rc": {
9304
- "version": "1.2.8",
9305
- "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
9306
- "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
9307
- "dev": true,
9308
- "dependencies": {
9309
- "deep-extend": "^0.6.0",
9310
- "ini": "~1.3.0",
9311
- "minimist": "^1.2.0",
9312
- "strip-json-comments": "~2.0.1"
9313
- },
9314
- "bin": {
9315
- "rc": "cli.js"
9316
- }
9317
- },
9318
- "node_modules/rc-config-loader": {
9319
- "version": "4.0.0",
9320
- "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.0.0.tgz",
9321
- "integrity": "sha512-//LRTblJEcqbmmro1GCmZ39qZXD+JqzuD8Y5/IZU3Dhp3A1Yr0Xn68ks8MQ6qKfKvYCWDveUmRDKDA40c+sCXw==",
9322
- "dev": true,
9323
- "dependencies": {
9324
- "debug": "^4.1.1",
9325
- "js-yaml": "^4.0.0",
9326
- "json5": "^2.1.2",
9327
- "require-from-string": "^2.0.2"
9328
- }
9329
- },
9330
- "node_modules/rc-config-loader/node_modules/argparse": {
9331
- "version": "2.0.1",
9332
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
9333
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
9334
- "dev": true
9335
- },
9336
- "node_modules/rc-config-loader/node_modules/js-yaml": {
9337
- "version": "4.0.0",
9338
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz",
9339
- "integrity": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==",
9340
- "dev": true,
9341
- "dependencies": {
9342
- "argparse": "^2.0.1"
9343
- },
9344
- "bin": {
9345
- "js-yaml": "bin/js-yaml.js"
9346
- }
9347
- },
9348
- "node_modules/rc/node_modules/minimist": {
9349
- "version": "1.2.5",
9350
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
9351
- "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
9352
- "dev": true
9353
- },
9354
- "node_modules/read-package-json-fast": {
9355
- "version": "2.0.3",
9356
- "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz",
9357
- "integrity": "sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==",
9358
- "dev": true,
9359
- "dependencies": {
9360
- "json-parse-even-better-errors": "^2.3.0",
9361
- "npm-normalize-package-bin": "^1.0.1"
9362
- },
9363
- "engines": {
9364
- "node": ">=10"
9365
- }
9366
- },
9367
- "node_modules/read-pkg": {
9368
- "version": "1.1.0",
9369
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
9370
- "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
9371
- "dev": true,
9372
- "dependencies": {
9373
- "load-json-file": "^1.0.0",
9374
- "normalize-package-data": "^2.3.2",
9375
- "path-type": "^1.0.0"
9376
- },
9377
- "engines": {
9378
- "node": ">=0.10.0"
9379
- }
9380
- },
9381
- "node_modules/read-pkg-up": {
9382
- "version": "1.0.1",
9383
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
9384
- "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
9385
- "dev": true,
9386
- "dependencies": {
9387
- "find-up": "^1.0.0",
9388
- "read-pkg": "^1.0.0"
9389
- },
9390
- "engines": {
9391
- "node": ">=0.10.0"
9392
- }
9393
- },
9394
- "node_modules/read-pkg-up/node_modules/find-up": {
9395
- "version": "1.1.2",
9396
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
9397
- "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
9398
- "dev": true,
9399
- "dependencies": {
9400
- "path-exists": "^2.0.0",
9401
- "pinkie-promise": "^2.0.0"
9402
- },
9403
- "engines": {
9404
- "node": ">=0.10.0"
9405
- }
9406
- },
9407
- "node_modules/read-pkg-up/node_modules/path-exists": {
9408
- "version": "2.1.0",
9409
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
9410
- "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
9411
- "dev": true,
9412
- "dependencies": {
9413
- "pinkie-promise": "^2.0.0"
9414
- },
9415
- "engines": {
9416
- "node": ">=0.10.0"
9417
- }
9418
- },
9419
- "node_modules/read-pkg/node_modules/path-type": {
9420
- "version": "1.1.0",
9421
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz",
9422
- "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
9423
- "dev": true,
9424
- "dependencies": {
9425
- "graceful-fs": "^4.1.2",
9426
- "pify": "^2.0.0",
9427
- "pinkie-promise": "^2.0.0"
9428
- },
9429
- "engines": {
9430
- "node": ">=0.10.0"
9431
- }
9432
- },
9433
- "node_modules/readable-stream": {
9434
- "version": "2.3.7",
9435
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
9436
- "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
9437
- "dev": true,
9438
- "dependencies": {
9439
- "core-util-is": "~1.0.0",
9440
- "inherits": "~2.0.3",
9441
- "isarray": "~1.0.0",
9442
- "process-nextick-args": "~2.0.0",
9443
- "safe-buffer": "~5.1.1",
9444
- "string_decoder": "~1.1.1",
9445
- "util-deprecate": "~1.0.1"
9446
- }
9447
- },
9448
- "node_modules/readdirp": {
9449
- "version": "2.2.1",
9450
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
9451
- "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
9452
- "dev": true,
9453
- "dependencies": {
9454
- "graceful-fs": "^4.1.11",
9455
- "micromatch": "^3.1.10",
9456
- "readable-stream": "^2.0.2"
9457
- },
9458
- "engines": {
9459
- "node": ">=0.10"
9460
- }
9461
- },
9462
- "node_modules/rechoir": {
9463
- "version": "0.6.2",
9464
- "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
9465
- "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=",
9466
- "dev": true,
9467
- "dependencies": {
9468
- "resolve": "^1.1.6"
9469
- },
9470
- "engines": {
9471
- "node": ">= 0.10"
9472
- }
9473
- },
9474
- "node_modules/redent": {
9475
- "version": "1.0.0",
9476
- "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz",
9477
- "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=",
9478
- "dev": true,
9479
- "dependencies": {
9480
- "indent-string": "^2.1.0",
9481
- "strip-indent": "^1.0.1"
9482
- },
9483
- "engines": {
9484
- "node": ">=0.10.0"
9485
- }
9486
- },
9487
- "node_modules/redent/node_modules/indent-string": {
9488
- "version": "2.1.0",
9489
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz",
9490
- "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=",
9491
- "dev": true,
9492
- "dependencies": {
9493
- "repeating": "^2.0.0"
9494
- },
9495
- "engines": {
9496
- "node": ">=0.10.0"
9497
- }
9498
- },
9499
- "node_modules/regenerate": {
9500
- "version": "1.4.2",
9501
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
9502
- "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
9503
- "dev": true
9504
- },
9505
- "node_modules/regenerate-unicode-properties": {
9506
- "version": "9.0.0",
9507
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz",
9508
- "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==",
9509
- "dev": true,
9510
- "dependencies": {
9511
- "regenerate": "^1.4.2"
9512
- },
9513
- "engines": {
9514
- "node": ">=4"
9515
- }
9516
- },
9517
- "node_modules/regenerator-runtime": {
9518
- "version": "0.11.1",
9519
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
9520
- "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
9521
- "dev": true
9522
- },
9523
- "node_modules/regenerator-transform": {
9524
- "version": "0.14.5",
9525
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz",
9526
- "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==",
9527
- "dev": true,
9528
- "dependencies": {
9529
- "@babel/runtime": "^7.8.4"
9530
- }
9531
- },
9532
- "node_modules/regex-not": {
9533
- "version": "1.0.2",
9534
- "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
9535
- "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
9536
- "dev": true,
9537
- "dependencies": {
9538
- "extend-shallow": "^3.0.2",
9539
- "safe-regex": "^1.1.0"
9540
- },
9541
- "engines": {
9542
- "node": ">=0.10.0"
9543
- }
9544
- },
9545
- "node_modules/regexpu-core": {
9546
- "version": "4.8.0",
9547
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz",
9548
- "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==",
9549
- "dev": true,
9550
- "dependencies": {
9551
- "regenerate": "^1.4.2",
9552
- "regenerate-unicode-properties": "^9.0.0",
9553
- "regjsgen": "^0.5.2",
9554
- "regjsparser": "^0.7.0",
9555
- "unicode-match-property-ecmascript": "^2.0.0",
9556
- "unicode-match-property-value-ecmascript": "^2.0.0"
9557
- },
9558
- "engines": {
9559
- "node": ">=4"
9560
- }
9561
- },
9562
- "node_modules/registry-auth-token": {
9563
- "version": "4.2.1",
9564
- "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz",
9565
- "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==",
9566
- "dev": true,
9567
- "dependencies": {
9568
- "rc": "^1.2.8"
9569
- },
9570
- "engines": {
9571
- "node": ">=6.0.0"
9572
- }
9573
- },
9574
- "node_modules/registry-url": {
9575
- "version": "5.1.0",
9576
- "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz",
9577
- "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==",
9578
- "dev": true,
9579
- "dependencies": {
9580
- "rc": "^1.2.8"
9581
- },
9582
- "engines": {
9583
- "node": ">=8"
9584
- }
9585
- },
9586
- "node_modules/regjsgen": {
9587
- "version": "0.5.2",
9588
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz",
9589
- "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==",
9590
- "dev": true
9591
- },
9592
- "node_modules/regjsparser": {
9593
- "version": "0.7.0",
9594
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz",
9595
- "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==",
9596
- "dev": true,
9597
- "dependencies": {
9598
- "jsesc": "~0.5.0"
9599
- },
9600
- "bin": {
9601
- "regjsparser": "bin/parser"
9602
- }
9603
- },
9604
- "node_modules/regjsparser/node_modules/jsesc": {
9605
- "version": "0.5.0",
9606
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
9607
- "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
9608
- "dev": true,
9609
- "bin": {
9610
- "jsesc": "bin/jsesc"
9611
- }
9612
- },
9613
- "node_modules/remote-git-tags": {
9614
- "version": "3.0.0",
9615
- "resolved": "https://registry.npmjs.org/remote-git-tags/-/remote-git-tags-3.0.0.tgz",
9616
- "integrity": "sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w==",
9617
- "dev": true,
9618
- "engines": {
9619
- "node": ">=8"
9620
- }
9621
- },
9622
- "node_modules/remove-bom-buffer": {
9623
- "version": "3.0.0",
9624
- "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz",
9625
- "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==",
9626
- "dev": true,
9627
- "dependencies": {
9628
- "is-buffer": "^1.1.5",
9629
- "is-utf8": "^0.2.1"
9630
- },
9631
- "engines": {
9632
- "node": ">=0.10.0"
9633
- }
9634
- },
9635
- "node_modules/remove-bom-stream": {
9636
- "version": "1.2.0",
9637
- "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz",
9638
- "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=",
9639
- "dev": true,
9640
- "dependencies": {
9641
- "remove-bom-buffer": "^3.0.0",
9642
- "safe-buffer": "^5.1.0",
9643
- "through2": "^2.0.3"
9644
- },
9645
- "engines": {
9646
- "node": ">= 0.10"
9647
- }
9648
- },
9649
- "node_modules/remove-bom-stream/node_modules/through2": {
9650
- "version": "2.0.5",
9651
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
9652
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
9653
- "dev": true,
9654
- "dependencies": {
9655
- "readable-stream": "~2.3.6",
9656
- "xtend": "~4.0.1"
9657
- }
9658
- },
9659
- "node_modules/remove-trailing-separator": {
9660
- "version": "1.1.0",
9661
- "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
9662
- "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
9663
- "dev": true
9664
- },
9665
- "node_modules/repeat-element": {
9666
- "version": "1.1.4",
9667
- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz",
9668
- "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==",
9669
- "dev": true,
9670
- "engines": {
9671
- "node": ">=0.10.0"
9672
- }
9673
- },
9674
- "node_modules/repeat-string": {
9675
- "version": "1.6.1",
9676
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
9677
- "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
9678
- "dev": true,
9679
- "engines": {
9680
- "node": ">=0.10"
9681
- }
9682
- },
9683
- "node_modules/repeating": {
9684
- "version": "2.0.1",
9685
- "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
9686
- "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
9687
- "dev": true,
9688
- "dependencies": {
9689
- "is-finite": "^1.0.0"
9690
- },
9691
- "engines": {
9692
- "node": ">=0.10.0"
9693
- }
9694
- },
9695
- "node_modules/replace-ext": {
9696
- "version": "1.0.1",
9697
- "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz",
9698
- "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==",
9699
- "dev": true,
9700
- "engines": {
9701
- "node": ">= 0.10"
9702
- }
9703
- },
9704
- "node_modules/replace-homedir": {
9705
- "version": "1.0.0",
9706
- "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz",
9707
- "integrity": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=",
9708
- "dev": true,
9709
- "dependencies": {
9710
- "homedir-polyfill": "^1.0.1",
9711
- "is-absolute": "^1.0.0",
9712
- "remove-trailing-separator": "^1.1.0"
9713
- },
9714
- "engines": {
9715
- "node": ">= 0.10"
9716
- }
9717
- },
9718
- "node_modules/replacestream": {
9719
- "version": "4.0.3",
9720
- "resolved": "https://registry.npmjs.org/replacestream/-/replacestream-4.0.3.tgz",
9721
- "integrity": "sha512-AC0FiLS352pBBiZhd4VXB1Ab/lh0lEgpP+GGvZqbQh8a5cmXVoTe5EX/YeTFArnp4SRGTHh1qCHu9lGs1qG8sA==",
9722
- "dev": true,
9723
- "dependencies": {
9724
- "escape-string-regexp": "^1.0.3",
9725
- "object-assign": "^4.0.1",
9726
- "readable-stream": "^2.0.2"
9727
- }
9728
- },
9729
- "node_modules/require-directory": {
9730
- "version": "2.1.1",
9731
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
9732
- "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
9733
- "dev": true,
9734
- "engines": {
9735
- "node": ">=0.10.0"
9736
- }
9737
- },
9738
- "node_modules/require-from-string": {
9739
- "version": "2.0.2",
9740
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
9741
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
9742
- "dev": true,
9743
- "engines": {
9744
- "node": ">=0.10.0"
9745
- }
9746
- },
9747
- "node_modules/require-main-filename": {
9748
- "version": "2.0.0",
9749
- "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
9750
- "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
9751
- "dev": true
9752
- },
9753
- "node_modules/resolve": {
9754
- "version": "1.20.0",
9755
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz",
9756
- "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==",
9757
- "dev": true,
9758
- "dependencies": {
9759
- "is-core-module": "^2.2.0",
9760
- "path-parse": "^1.0.6"
9761
- },
9762
- "funding": {
9763
- "url": "https://github.com/sponsors/ljharb"
9764
- }
9765
- },
9766
- "node_modules/resolve-dir": {
9767
- "version": "1.0.1",
9768
- "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz",
9769
- "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=",
9770
- "dev": true,
9771
- "dependencies": {
9772
- "expand-tilde": "^2.0.0",
9773
- "global-modules": "^1.0.0"
9774
- },
9775
- "engines": {
9776
- "node": ">=0.10.0"
9777
- }
9778
- },
9779
- "node_modules/resolve-options": {
9780
- "version": "1.1.0",
9781
- "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz",
9782
- "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=",
9783
- "dev": true,
9784
- "dependencies": {
9785
- "value-or-function": "^3.0.0"
9786
- },
9787
- "engines": {
9788
- "node": ">= 0.10"
9789
- }
9790
- },
9791
- "node_modules/resolve-url": {
9792
- "version": "0.2.1",
9793
- "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
9794
- "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
9795
- "deprecated": "https://github.com/lydell/resolve-url#deprecated",
9796
- "dev": true
9797
- },
9798
- "node_modules/responselike": {
9799
- "version": "2.0.0",
9800
- "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz",
9801
- "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==",
9802
- "dev": true,
9803
- "dependencies": {
9804
- "lowercase-keys": "^2.0.0"
9805
- }
9806
- },
9807
- "node_modules/restore-cursor": {
9808
- "version": "3.1.0",
9809
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
9810
- "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
9811
- "dev": true,
9812
- "dependencies": {
9813
- "onetime": "^5.1.0",
9814
- "signal-exit": "^3.0.2"
9815
- },
9816
- "engines": {
9817
- "node": ">=8"
9818
- }
9819
- },
9820
- "node_modules/ret": {
9821
- "version": "0.1.15",
9822
- "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
9823
- "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
9824
- "dev": true,
9825
- "engines": {
9826
- "node": ">=0.12"
9827
- }
9828
- },
9829
- "node_modules/retry": {
9830
- "version": "0.12.0",
9831
- "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
9832
- "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=",
9833
- "dev": true,
9834
- "engines": {
9835
- "node": ">= 4"
9836
- }
9837
- },
9838
- "node_modules/reusify": {
9839
- "version": "1.0.4",
9840
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
9841
- "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
9842
- "dev": true,
9843
- "engines": {
9844
- "iojs": ">=1.0.0",
9845
- "node": ">=0.10.0"
9846
- }
9847
- },
9848
- "node_modules/rimraf": {
9849
- "version": "3.0.2",
9850
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
9851
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
9852
- "dev": true,
9853
- "dependencies": {
9854
- "glob": "^7.1.3"
9855
- },
9856
- "bin": {
9857
- "rimraf": "bin.js"
9858
- },
9859
- "funding": {
9860
- "url": "https://github.com/sponsors/isaacs"
9861
- }
9862
- },
9863
- "node_modules/run-async": {
9864
- "version": "2.4.1",
9865
- "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
9866
- "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==",
9867
- "dev": true,
9868
- "engines": {
9869
- "node": ">=0.12.0"
9870
- }
9871
- },
9872
- "node_modules/run-parallel": {
9873
- "version": "1.2.0",
9874
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
9875
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
9876
- "dev": true,
9877
- "funding": [
9878
- {
9879
- "type": "github",
9880
- "url": "https://github.com/sponsors/feross"
9881
- },
9882
- {
9883
- "type": "patreon",
9884
- "url": "https://www.patreon.com/feross"
9885
- },
9886
- {
9887
- "type": "consulting",
9888
- "url": "https://feross.org/support"
9889
- }
9890
- ],
9891
- "dependencies": {
9892
- "queue-microtask": "^1.2.2"
9893
- }
9894
- },
9895
- "node_modules/run-sequence": {
9896
- "version": "2.2.1",
9897
- "resolved": "https://registry.npmjs.org/run-sequence/-/run-sequence-2.2.1.tgz",
9898
- "integrity": "sha512-qkzZnQWMZjcKbh3CNly2srtrkaO/2H/SI5f2eliMCapdRD3UhMrwjfOAZJAnZ2H8Ju4aBzFZkBGXUqFs9V0yxw==",
9899
- "dev": true,
9900
- "dependencies": {
9901
- "chalk": "^1.1.3",
9902
- "fancy-log": "^1.3.2",
9903
- "plugin-error": "^0.1.2"
9904
- },
9905
- "engines": {
9906
- "node": ">= 0.8.0"
9907
- }
9908
- },
9909
- "node_modules/run-sequence/node_modules/ansi-regex": {
9910
- "version": "2.1.1",
9911
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
9912
- "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
9913
- "dev": true,
9914
- "engines": {
9915
- "node": ">=0.10.0"
9916
- }
9917
- },
9918
- "node_modules/run-sequence/node_modules/ansi-styles": {
9919
- "version": "2.2.1",
9920
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
9921
- "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
9922
- "dev": true,
9923
- "engines": {
9924
- "node": ">=0.10.0"
9925
- }
9926
- },
9927
- "node_modules/run-sequence/node_modules/arr-diff": {
9928
- "version": "1.1.0",
9929
- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz",
9930
- "integrity": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=",
9931
- "dev": true,
9932
- "dependencies": {
9933
- "arr-flatten": "^1.0.1",
9934
- "array-slice": "^0.2.3"
9935
- },
9936
- "engines": {
9937
- "node": ">=0.10.0"
9938
- }
9939
- },
9940
- "node_modules/run-sequence/node_modules/arr-union": {
9941
- "version": "2.1.0",
9942
- "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz",
9943
- "integrity": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=",
9944
- "dev": true,
9945
- "engines": {
9946
- "node": ">=0.10.0"
9947
- }
9948
- },
9949
- "node_modules/run-sequence/node_modules/array-slice": {
9950
- "version": "0.2.3",
9951
- "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz",
9952
- "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=",
9953
- "dev": true,
9954
- "engines": {
9955
- "node": ">=0.10.0"
9956
- }
9957
- },
9958
- "node_modules/run-sequence/node_modules/chalk": {
9959
- "version": "1.1.3",
9960
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
9961
- "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
9962
- "dev": true,
9963
- "dependencies": {
9964
- "ansi-styles": "^2.2.1",
9965
- "escape-string-regexp": "^1.0.2",
9966
- "has-ansi": "^2.0.0",
9967
- "strip-ansi": "^3.0.0",
9968
- "supports-color": "^2.0.0"
9969
- },
9970
- "engines": {
9971
- "node": ">=0.10.0"
9972
- }
9973
- },
9974
- "node_modules/run-sequence/node_modules/extend-shallow": {
9975
- "version": "1.1.4",
9976
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz",
9977
- "integrity": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=",
9978
- "dev": true,
9979
- "dependencies": {
9980
- "kind-of": "^1.1.0"
9981
- },
9982
- "engines": {
9983
- "node": ">=0.10.0"
9984
- }
9985
- },
9986
- "node_modules/run-sequence/node_modules/kind-of": {
9987
- "version": "1.1.0",
9988
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz",
9989
- "integrity": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=",
9990
- "dev": true,
9991
- "engines": {
9992
- "node": ">=0.10.0"
9993
- }
9994
- },
9995
- "node_modules/run-sequence/node_modules/plugin-error": {
9996
- "version": "0.1.2",
9997
- "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz",
9998
- "integrity": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=",
9999
- "dev": true,
10000
- "dependencies": {
10001
- "ansi-cyan": "^0.1.1",
10002
- "ansi-red": "^0.1.1",
10003
- "arr-diff": "^1.0.1",
10004
- "arr-union": "^2.0.1",
10005
- "extend-shallow": "^1.1.2"
10006
- },
10007
- "engines": {
10008
- "node": ">=0.10.0"
10009
- }
10010
- },
10011
- "node_modules/run-sequence/node_modules/strip-ansi": {
10012
- "version": "3.0.1",
10013
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
10014
- "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
10015
- "dev": true,
10016
- "dependencies": {
10017
- "ansi-regex": "^2.0.0"
10018
- },
10019
- "engines": {
10020
- "node": ">=0.10.0"
10021
- }
10022
- },
10023
- "node_modules/run-sequence/node_modules/supports-color": {
10024
- "version": "2.0.0",
10025
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
10026
- "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
10027
- "dev": true,
10028
- "engines": {
10029
- "node": ">=0.8.0"
10030
- }
10031
- },
10032
- "node_modules/rxjs": {
10033
- "version": "6.6.6",
10034
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.6.tgz",
10035
- "integrity": "sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg==",
10036
- "dev": true,
10037
- "dependencies": {
10038
- "tslib": "^1.9.0"
10039
- },
10040
- "engines": {
10041
- "npm": ">=2.0.0"
10042
- }
10043
- },
10044
- "node_modules/safe-buffer": {
10045
- "version": "5.1.2",
10046
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
10047
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
10048
- "dev": true
10049
- },
10050
- "node_modules/safe-regex": {
10051
- "version": "1.1.0",
10052
- "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
10053
- "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
10054
- "dev": true,
10055
- "dependencies": {
10056
- "ret": "~0.1.10"
10057
- }
10058
- },
10059
- "node_modules/safer-buffer": {
10060
- "version": "2.1.2",
10061
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
10062
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
10063
- "dev": true
10064
- },
10065
- "node_modules/sass": {
10066
- "version": "1.45.1",
10067
- "resolved": "https://registry.npmjs.org/sass/-/sass-1.45.1.tgz",
10068
- "integrity": "sha512-pwPRiq29UR0o4X3fiQyCtrESldXvUQAAE0QmcJTpsI4kuHHcLzZ54M1oNBVIXybQv8QF2zfkpFcTxp8ta97dUA==",
10069
- "dev": true,
10070
- "dependencies": {
10071
- "chokidar": ">=3.0.0 <4.0.0",
10072
- "immutable": "^4.0.0",
10073
- "source-map-js": ">=0.6.2 <2.0.0"
10074
- },
10075
- "bin": {
10076
- "sass": "sass.js"
10077
- },
10078
- "engines": {
10079
- "node": ">=8.9.0"
10080
- }
10081
- },
10082
- "node_modules/sass/node_modules/anymatch": {
10083
- "version": "3.1.2",
10084
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
10085
- "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
10086
- "dev": true,
10087
- "dependencies": {
10088
- "normalize-path": "^3.0.0",
10089
- "picomatch": "^2.0.4"
10090
- },
10091
- "engines": {
10092
- "node": ">= 8"
10093
- }
10094
- },
10095
- "node_modules/sass/node_modules/binary-extensions": {
10096
- "version": "2.2.0",
10097
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
10098
- "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
10099
- "dev": true,
10100
- "engines": {
10101
- "node": ">=8"
10102
- }
10103
- },
10104
- "node_modules/sass/node_modules/braces": {
10105
- "version": "3.0.2",
10106
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
10107
- "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
10108
- "dev": true,
10109
- "dependencies": {
10110
- "fill-range": "^7.0.1"
10111
- },
10112
- "engines": {
10113
- "node": ">=8"
10114
- }
10115
- },
10116
- "node_modules/sass/node_modules/chokidar": {
10117
- "version": "3.5.2",
10118
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
10119
- "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
10120
- "dev": true,
10121
- "dependencies": {
10122
- "anymatch": "~3.1.2",
10123
- "braces": "~3.0.2",
10124
- "glob-parent": "~5.1.2",
10125
- "is-binary-path": "~2.1.0",
10126
- "is-glob": "~4.0.1",
10127
- "normalize-path": "~3.0.0",
10128
- "readdirp": "~3.6.0"
10129
- },
10130
- "engines": {
10131
- "node": ">= 8.10.0"
10132
- },
10133
- "optionalDependencies": {
10134
- "fsevents": "~2.3.2"
10135
- }
10136
- },
10137
- "node_modules/sass/node_modules/fill-range": {
10138
- "version": "7.0.1",
10139
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
10140
- "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
10141
- "dev": true,
10142
- "dependencies": {
10143
- "to-regex-range": "^5.0.1"
10144
- },
10145
- "engines": {
10146
- "node": ">=8"
10147
- }
10148
- },
10149
- "node_modules/sass/node_modules/fsevents": {
10150
- "version": "2.3.2",
10151
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
10152
- "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
10153
- "dev": true,
10154
- "hasInstallScript": true,
10155
- "optional": true,
10156
- "os": [
10157
- "darwin"
10158
- ],
10159
- "engines": {
10160
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
10161
- }
10162
- },
10163
- "node_modules/sass/node_modules/glob-parent": {
10164
- "version": "5.1.2",
10165
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
10166
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
10167
- "dev": true,
10168
- "dependencies": {
10169
- "is-glob": "^4.0.1"
10170
- },
10171
- "engines": {
10172
- "node": ">= 6"
10173
- }
10174
- },
10175
- "node_modules/sass/node_modules/is-binary-path": {
10176
- "version": "2.1.0",
10177
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
10178
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
10179
- "dev": true,
10180
- "dependencies": {
10181
- "binary-extensions": "^2.0.0"
10182
- },
10183
- "engines": {
10184
- "node": ">=8"
10185
- }
10186
- },
10187
- "node_modules/sass/node_modules/is-number": {
10188
- "version": "7.0.0",
10189
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
10190
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
10191
- "dev": true,
10192
- "engines": {
10193
- "node": ">=0.12.0"
10194
- }
10195
- },
10196
- "node_modules/sass/node_modules/readdirp": {
10197
- "version": "3.6.0",
10198
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
10199
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
10200
- "dev": true,
10201
- "dependencies": {
10202
- "picomatch": "^2.2.1"
10203
- },
10204
- "engines": {
10205
- "node": ">=8.10.0"
10206
- }
10207
- },
10208
- "node_modules/sass/node_modules/to-regex-range": {
10209
- "version": "5.0.1",
10210
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
10211
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
10212
- "dev": true,
10213
- "dependencies": {
10214
- "is-number": "^7.0.0"
10215
- },
10216
- "engines": {
10217
- "node": ">=8.0"
10218
- }
10219
- },
10220
- "node_modules/semver": {
10221
- "version": "6.3.0",
10222
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
10223
- "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
10224
- "dev": true,
10225
- "bin": {
10226
- "semver": "bin/semver.js"
10227
- }
10228
- },
10229
- "node_modules/semver-diff": {
10230
- "version": "3.1.1",
10231
- "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz",
10232
- "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==",
10233
- "dev": true,
10234
- "dependencies": {
10235
- "semver": "^6.3.0"
10236
- },
10237
- "engines": {
10238
- "node": ">=8"
10239
- }
10240
- },
10241
- "node_modules/semver-greatest-satisfied-range": {
10242
- "version": "1.1.0",
10243
- "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz",
10244
- "integrity": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=",
10245
- "dev": true,
10246
- "dependencies": {
10247
- "sver-compat": "^1.5.0"
10248
- },
10249
- "engines": {
10250
- "node": ">= 0.10"
10251
- }
10252
- },
10253
- "node_modules/semver-utils": {
10254
- "version": "1.1.4",
10255
- "resolved": "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.4.tgz",
10256
- "integrity": "sha512-EjnoLE5OGmDAVV/8YDoN5KiajNadjzIp9BAHOhYeQHt7j0UWxjmgsx4YD48wp4Ue1Qogq38F1GNUJNqF1kKKxA==",
10257
- "dev": true
10258
- },
10259
- "node_modules/set-blocking": {
10260
- "version": "2.0.0",
10261
- "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
10262
- "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
10263
- "dev": true
10264
- },
10265
- "node_modules/set-value": {
10266
- "version": "2.0.1",
10267
- "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
10268
- "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
10269
- "dev": true,
10270
- "dependencies": {
10271
- "extend-shallow": "^2.0.1",
10272
- "is-extendable": "^0.1.1",
10273
- "is-plain-object": "^2.0.3",
10274
- "split-string": "^3.0.1"
10275
- },
10276
- "engines": {
10277
- "node": ">=0.10.0"
10278
- }
10279
- },
10280
- "node_modules/set-value/node_modules/extend-shallow": {
10281
- "version": "2.0.1",
10282
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
10283
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
10284
- "dev": true,
10285
- "dependencies": {
10286
- "is-extendable": "^0.1.0"
10287
- },
10288
- "engines": {
10289
- "node": ">=0.10.0"
10290
- }
10291
- },
10292
- "node_modules/signal-exit": {
10293
- "version": "3.0.3",
10294
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
10295
- "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==",
10296
- "dev": true
10297
- },
10298
- "node_modules/simple-git": {
10299
- "version": "2.37.0",
10300
- "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-2.37.0.tgz",
10301
- "integrity": "sha512-ZK6qRnP+Xa2v23UEZDNHUfzswsuNCDHOQpWZRkpqNaXn7V5wVBBx3zRJLji3pROJGzrzA7mXwY7preL5EKuAaQ==",
10302
- "dev": true,
10303
- "dependencies": {
10304
- "@kwsites/file-exists": "^1.1.1",
10305
- "@kwsites/promise-deferred": "^1.1.1",
10306
- "debug": "^4.3.2"
10307
- }
10308
- },
10309
- "node_modules/simple-git/node_modules/debug": {
10310
- "version": "4.3.2",
10311
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
10312
- "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
10313
- "dev": true,
10314
- "dependencies": {
10315
- "ms": "2.1.2"
10316
- },
10317
- "engines": {
10318
- "node": ">=6.0"
10319
- },
10320
- "peerDependenciesMeta": {
10321
- "supports-color": {
10322
- "optional": true
10323
- }
10324
- }
10325
- },
10326
- "node_modules/sisteransi": {
10327
- "version": "1.0.5",
10328
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
10329
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
10330
- "dev": true
10331
- },
10332
- "node_modules/slash": {
10333
- "version": "3.0.0",
10334
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
10335
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
10336
- "dev": true,
10337
- "engines": {
10338
- "node": ">=8"
10339
- }
10340
- },
10341
- "node_modules/smart-buffer": {
10342
- "version": "4.2.0",
10343
- "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
10344
- "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
10345
- "dev": true,
10346
- "engines": {
10347
- "node": ">= 6.0.0",
10348
- "npm": ">= 3.0.0"
10349
- }
10350
- },
10351
- "node_modules/smoothscroll-polyfill": {
10352
- "version": "0.4.4",
10353
- "resolved": "https://registry.npmjs.org/smoothscroll-polyfill/-/smoothscroll-polyfill-0.4.4.tgz",
10354
- "integrity": "sha512-TK5ZA9U5RqCwMpfoMq/l1mrH0JAR7y7KRvOBx0n2869aLxch+gT9GhN3yUfjiw+d/DiF1mKo14+hd62JyMmoBg=="
10355
- },
10356
- "node_modules/snapdragon": {
10357
- "version": "0.8.2",
10358
- "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
10359
- "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
10360
- "dev": true,
10361
- "dependencies": {
10362
- "base": "^0.11.1",
10363
- "debug": "^2.2.0",
10364
- "define-property": "^0.2.5",
10365
- "extend-shallow": "^2.0.1",
10366
- "map-cache": "^0.2.2",
10367
- "source-map": "^0.5.6",
10368
- "source-map-resolve": "^0.5.0",
10369
- "use": "^3.1.0"
10370
- },
10371
- "engines": {
10372
- "node": ">=0.10.0"
10373
- }
10374
- },
10375
- "node_modules/snapdragon-node": {
10376
- "version": "2.1.1",
10377
- "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
10378
- "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
10379
- "dev": true,
10380
- "dependencies": {
10381
- "define-property": "^1.0.0",
10382
- "isobject": "^3.0.0",
10383
- "snapdragon-util": "^3.0.1"
10384
- },
10385
- "engines": {
10386
- "node": ">=0.10.0"
10387
- }
10388
- },
10389
- "node_modules/snapdragon-node/node_modules/define-property": {
10390
- "version": "1.0.0",
10391
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
10392
- "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
10393
- "dev": true,
10394
- "dependencies": {
10395
- "is-descriptor": "^1.0.0"
10396
- },
10397
- "engines": {
10398
- "node": ">=0.10.0"
10399
- }
10400
- },
10401
- "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": {
10402
- "version": "1.0.0",
10403
- "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
10404
- "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
10405
- "dev": true,
10406
- "dependencies": {
10407
- "kind-of": "^6.0.0"
10408
- },
10409
- "engines": {
10410
- "node": ">=0.10.0"
10411
- }
10412
- },
10413
- "node_modules/snapdragon-node/node_modules/is-data-descriptor": {
10414
- "version": "1.0.0",
10415
- "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
10416
- "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
10417
- "dev": true,
10418
- "dependencies": {
10419
- "kind-of": "^6.0.0"
10420
- },
10421
- "engines": {
10422
- "node": ">=0.10.0"
10423
- }
10424
- },
10425
- "node_modules/snapdragon-node/node_modules/is-descriptor": {
10426
- "version": "1.0.2",
10427
- "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
10428
- "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
10429
- "dev": true,
10430
- "dependencies": {
10431
- "is-accessor-descriptor": "^1.0.0",
10432
- "is-data-descriptor": "^1.0.0",
10433
- "kind-of": "^6.0.2"
10434
- },
10435
- "engines": {
10436
- "node": ">=0.10.0"
10437
- }
10438
- },
10439
- "node_modules/snapdragon-util": {
10440
- "version": "3.0.1",
10441
- "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
10442
- "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
10443
- "dev": true,
10444
- "dependencies": {
10445
- "kind-of": "^3.2.0"
10446
- },
10447
- "engines": {
10448
- "node": ">=0.10.0"
10449
- }
10450
- },
10451
- "node_modules/snapdragon-util/node_modules/kind-of": {
10452
- "version": "3.2.2",
10453
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
10454
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
10455
- "dev": true,
10456
- "dependencies": {
10457
- "is-buffer": "^1.1.5"
10458
- },
10459
- "engines": {
10460
- "node": ">=0.10.0"
10461
- }
10462
- },
10463
- "node_modules/snapdragon/node_modules/debug": {
10464
- "version": "2.6.9",
10465
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
10466
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
10467
- "dev": true,
10468
- "dependencies": {
10469
- "ms": "2.0.0"
10470
- }
10471
- },
10472
- "node_modules/snapdragon/node_modules/define-property": {
10473
- "version": "0.2.5",
10474
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
10475
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
10476
- "dev": true,
10477
- "dependencies": {
10478
- "is-descriptor": "^0.1.0"
10479
- },
10480
- "engines": {
10481
- "node": ">=0.10.0"
10482
- }
10483
- },
10484
- "node_modules/snapdragon/node_modules/extend-shallow": {
10485
- "version": "2.0.1",
10486
- "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
10487
- "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
10488
- "dev": true,
10489
- "dependencies": {
10490
- "is-extendable": "^0.1.0"
10491
- },
10492
- "engines": {
10493
- "node": ">=0.10.0"
10494
- }
10495
- },
10496
- "node_modules/snapdragon/node_modules/ms": {
10497
- "version": "2.0.0",
10498
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
10499
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
10500
- "dev": true
10501
- },
10502
- "node_modules/socks": {
10503
- "version": "2.6.1",
10504
- "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz",
10505
- "integrity": "sha512-kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA==",
10506
- "dev": true,
10507
- "dependencies": {
10508
- "ip": "^1.1.5",
10509
- "smart-buffer": "^4.1.0"
10510
- },
10511
- "engines": {
10512
- "node": ">= 10.13.0",
10513
- "npm": ">= 3.0.0"
10514
- }
10515
- },
10516
- "node_modules/socks-proxy-agent": {
10517
- "version": "6.1.1",
10518
- "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz",
10519
- "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==",
10520
- "dev": true,
10521
- "dependencies": {
10522
- "agent-base": "^6.0.2",
10523
- "debug": "^4.3.1",
10524
- "socks": "^2.6.1"
10525
- },
10526
- "engines": {
10527
- "node": ">= 10"
10528
- }
10529
- },
10530
- "node_modules/source-map": {
10531
- "version": "0.5.7",
10532
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
10533
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
10534
- "dev": true,
10535
- "engines": {
10536
- "node": ">=0.10.0"
10537
- }
10538
- },
10539
- "node_modules/source-map-js": {
10540
- "version": "1.0.1",
10541
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.1.tgz",
10542
- "integrity": "sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==",
10543
- "dev": true,
10544
- "engines": {
10545
- "node": ">=0.10.0"
10546
- }
10547
- },
10548
- "node_modules/source-map-resolve": {
10549
- "version": "0.5.3",
10550
- "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
10551
- "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
10552
- "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated",
10553
- "dev": true,
10554
- "dependencies": {
10555
- "atob": "^2.1.2",
10556
- "decode-uri-component": "^0.2.0",
10557
- "resolve-url": "^0.2.1",
10558
- "source-map-url": "^0.4.0",
10559
- "urix": "^0.1.0"
10560
- }
10561
- },
10562
- "node_modules/source-map-support": {
10563
- "version": "0.5.21",
10564
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
10565
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
10566
- "dev": true,
10567
- "dependencies": {
10568
- "buffer-from": "^1.0.0",
10569
- "source-map": "^0.6.0"
10570
- }
10571
- },
10572
- "node_modules/source-map-support/node_modules/source-map": {
10573
- "version": "0.6.1",
10574
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
10575
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
10576
- "dev": true,
10577
- "engines": {
10578
- "node": ">=0.10.0"
10579
- }
10580
- },
10581
- "node_modules/source-map-url": {
10582
- "version": "0.4.1",
10583
- "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz",
10584
- "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==",
10585
- "deprecated": "See https://github.com/lydell/source-map-url#deprecated",
10586
- "dev": true
10587
- },
10588
- "node_modules/sparkles": {
10589
- "version": "1.0.1",
10590
- "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz",
10591
- "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==",
10592
- "dev": true,
10593
- "engines": {
10594
- "node": ">= 0.10"
10595
- }
10596
- },
10597
- "node_modules/spawn-please": {
10598
- "version": "1.0.0",
10599
- "resolved": "https://registry.npmjs.org/spawn-please/-/spawn-please-1.0.0.tgz",
10600
- "integrity": "sha512-Kz33ip6NRNKuyTRo3aDWyWxeGeM0ORDO552Fs6E1nj4pLWPkl37SrRtTnq+MEopVaqgmaO6bAvVS+v64BJ5M/A==",
10601
- "dev": true,
10602
- "engines": {
10603
- "node": ">=10"
10604
- }
10605
- },
10606
- "node_modules/spdx-correct": {
10607
- "version": "3.1.1",
10608
- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
10609
- "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
10610
- "dev": true,
10611
- "dependencies": {
10612
- "spdx-expression-parse": "^3.0.0",
10613
- "spdx-license-ids": "^3.0.0"
10614
- }
10615
- },
10616
- "node_modules/spdx-exceptions": {
10617
- "version": "2.3.0",
10618
- "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
10619
- "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
10620
- "dev": true
10621
- },
10622
- "node_modules/spdx-expression-parse": {
10623
- "version": "3.0.1",
10624
- "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
10625
- "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
10626
- "dev": true,
10627
- "dependencies": {
10628
- "spdx-exceptions": "^2.1.0",
10629
- "spdx-license-ids": "^3.0.0"
10630
- }
10631
- },
10632
- "node_modules/spdx-license-ids": {
10633
- "version": "3.0.7",
10634
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz",
10635
- "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==",
10636
- "dev": true
10637
- },
10638
- "node_modules/split-string": {
10639
- "version": "3.1.0",
10640
- "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
10641
- "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
10642
- "dev": true,
10643
- "dependencies": {
10644
- "extend-shallow": "^3.0.0"
10645
- },
10646
- "engines": {
10647
- "node": ">=0.10.0"
10648
- }
10649
- },
10650
- "node_modules/sprintf-js": {
10651
- "version": "1.0.3",
10652
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
10653
- "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
10654
- "dev": true
10655
- },
10656
- "node_modules/ssri": {
10657
- "version": "8.0.1",
10658
- "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
10659
- "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
10660
- "dev": true,
10661
- "dependencies": {
10662
- "minipass": "^3.1.1"
10663
- },
10664
- "engines": {
10665
- "node": ">= 8"
10666
- }
10667
- },
10668
- "node_modules/stack-trace": {
10669
- "version": "0.0.10",
10670
- "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
10671
- "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=",
10672
- "dev": true,
10673
- "engines": {
10674
- "node": "*"
10675
- }
10676
- },
10677
- "node_modules/static-extend": {
10678
- "version": "0.1.2",
10679
- "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
10680
- "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
10681
- "dev": true,
10682
- "dependencies": {
10683
- "define-property": "^0.2.5",
10684
- "object-copy": "^0.1.0"
10685
- },
10686
- "engines": {
10687
- "node": ">=0.10.0"
10688
- }
10689
- },
10690
- "node_modules/static-extend/node_modules/define-property": {
10691
- "version": "0.2.5",
10692
- "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
10693
- "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
10694
- "dev": true,
10695
- "dependencies": {
10696
- "is-descriptor": "^0.1.0"
10697
- },
10698
- "engines": {
10699
- "node": ">=0.10.0"
10700
- }
10701
- },
10702
- "node_modules/stream-exhaust": {
10703
- "version": "1.0.2",
10704
- "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz",
10705
- "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==",
10706
- "dev": true
10707
- },
10708
- "node_modules/stream-shift": {
10709
- "version": "1.0.1",
10710
- "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
10711
- "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
10712
- "dev": true
10713
- },
10714
- "node_modules/string_decoder": {
10715
- "version": "1.1.1",
10716
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
10717
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
10718
- "dev": true,
10719
- "dependencies": {
10720
- "safe-buffer": "~5.1.0"
10721
- }
10722
- },
10723
- "node_modules/string-width": {
10724
- "version": "4.2.3",
10725
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
10726
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
10727
- "dev": true,
10728
- "dependencies": {
10729
- "emoji-regex": "^8.0.0",
10730
- "is-fullwidth-code-point": "^3.0.0",
10731
- "strip-ansi": "^6.0.1"
10732
- },
10733
- "engines": {
10734
- "node": ">=8"
10735
- }
10736
- },
10737
- "node_modules/strip-ansi": {
10738
- "version": "6.0.1",
10739
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
10740
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
10741
- "dev": true,
10742
- "dependencies": {
10743
- "ansi-regex": "^5.0.1"
10744
- },
10745
- "engines": {
10746
- "node": ">=8"
10747
- }
10748
- },
10749
- "node_modules/strip-bom": {
10750
- "version": "2.0.0",
10751
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
10752
- "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
10753
- "dev": true,
10754
- "dependencies": {
10755
- "is-utf8": "^0.2.0"
10756
- },
10757
- "engines": {
10758
- "node": ">=0.10.0"
10759
- }
10760
- },
10761
- "node_modules/strip-indent": {
10762
- "version": "1.0.1",
10763
- "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz",
10764
- "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=",
10765
- "dev": true,
10766
- "dependencies": {
10767
- "get-stdin": "^4.0.1"
10768
- },
10769
- "bin": {
10770
- "strip-indent": "cli.js"
10771
- },
10772
- "engines": {
10773
- "node": ">=0.10.0"
10774
- }
10775
- },
10776
- "node_modules/strip-json-comments": {
10777
- "version": "2.0.1",
10778
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
10779
- "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
10780
- "dev": true,
10781
- "engines": {
10782
- "node": ">=0.10.0"
10783
- }
10784
- },
10785
- "node_modules/supports-color": {
10786
- "version": "5.5.0",
10787
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
10788
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
10789
- "dev": true,
10790
- "dependencies": {
10791
- "has-flag": "^3.0.0"
10792
- },
10793
- "engines": {
10794
- "node": ">=4"
10795
- }
10796
- },
10797
- "node_modules/supports-hyperlinks": {
10798
- "version": "2.1.0",
10799
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz",
10800
- "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==",
10801
- "dev": true,
10802
- "dependencies": {
10803
- "has-flag": "^4.0.0",
10804
- "supports-color": "^7.0.0"
10805
- },
10806
- "engines": {
10807
- "node": ">=8"
10808
- }
10809
- },
10810
- "node_modules/supports-hyperlinks/node_modules/has-flag": {
10811
- "version": "4.0.0",
10812
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
10813
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
10814
- "dev": true,
10815
- "engines": {
10816
- "node": ">=8"
10817
- }
10818
- },
10819
- "node_modules/supports-hyperlinks/node_modules/supports-color": {
10820
- "version": "7.2.0",
10821
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
10822
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
10823
- "dev": true,
10824
- "dependencies": {
10825
- "has-flag": "^4.0.0"
10826
- },
10827
- "engines": {
10828
- "node": ">=8"
10829
- }
10830
- },
10831
- "node_modules/sver-compat": {
10832
- "version": "1.5.0",
10833
- "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz",
10834
- "integrity": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=",
10835
- "dev": true,
10836
- "dependencies": {
10837
- "es6-iterator": "^2.0.1",
10838
- "es6-symbol": "^3.1.1"
10839
- }
10840
- },
10841
- "node_modules/tar": {
10842
- "version": "6.1.11",
10843
- "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz",
10844
- "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==",
10845
- "dev": true,
10846
- "dependencies": {
10847
- "chownr": "^2.0.0",
10848
- "fs-minipass": "^2.0.0",
10849
- "minipass": "^3.0.0",
10850
- "minizlib": "^2.1.1",
10851
- "mkdirp": "^1.0.3",
10852
- "yallist": "^4.0.0"
10853
- },
10854
- "engines": {
10855
- "node": ">= 10"
10856
- }
10857
- },
10858
- "node_modules/tar/node_modules/mkdirp": {
10859
- "version": "1.0.4",
10860
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
10861
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
10862
- "dev": true,
10863
- "bin": {
10864
- "mkdirp": "bin/cmd.js"
10865
- },
10866
- "engines": {
10867
- "node": ">=10"
10868
- }
10869
- },
10870
- "node_modules/temp-write": {
10871
- "version": "0.1.1",
10872
- "resolved": "https://registry.npmjs.org/temp-write/-/temp-write-0.1.1.tgz",
10873
- "integrity": "sha1-C2Rng43Xf79/YqDJPah5cy/9qTI=",
10874
- "dev": true,
10875
- "dependencies": {
10876
- "graceful-fs": "~2.0.0",
10877
- "tempfile": "~0.1.2"
10878
- },
10879
- "engines": {
10880
- "node": ">=0.10.0"
10881
- }
10882
- },
10883
- "node_modules/temp-write/node_modules/graceful-fs": {
10884
- "version": "2.0.3",
10885
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz",
10886
- "integrity": "sha1-fNLNsiiko/Nule+mzBQt59GhNtA=",
10887
- "deprecated": "please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js",
10888
- "dev": true,
10889
- "engines": {
10890
- "node": ">=0.4.0"
10891
- }
10892
- },
10893
- "node_modules/tempfile": {
10894
- "version": "0.1.3",
10895
- "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-0.1.3.tgz",
10896
- "integrity": "sha1-fWtxAEcznTn4RzJ6BW2t8YMQMBA=",
10897
- "dev": true,
10898
- "dependencies": {
10899
- "uuid": "~1.4.0"
10900
- },
10901
- "engines": {
10902
- "node": ">=0.10.0"
10903
- }
10904
- },
10905
- "node_modules/tempfile/node_modules/uuid": {
10906
- "version": "1.4.2",
10907
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz",
10908
- "integrity": "sha1-RTAZ9oaWam34PNxSROfJkOzDMvw=",
10909
- "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.",
10910
- "dev": true
10911
- },
10912
- "node_modules/terminal-link": {
10913
- "version": "2.1.1",
10914
- "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
10915
- "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
10916
- "dev": true,
10917
- "dependencies": {
10918
- "ansi-escapes": "^4.2.1",
10919
- "supports-hyperlinks": "^2.0.0"
10920
- },
10921
- "engines": {
10922
- "node": ">=8"
10923
- },
10924
- "funding": {
10925
- "url": "https://github.com/sponsors/sindresorhus"
10926
- }
10927
- },
10928
- "node_modules/textextensions": {
10929
- "version": "3.3.0",
10930
- "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-3.3.0.tgz",
10931
- "integrity": "sha512-mk82dS8eRABNbeVJrEiN5/UMSCliINAuz8mkUwH4SwslkNP//gbEzlWNS5au0z5Dpx40SQxzqZevZkn+WYJ9Dw==",
10932
- "dev": true,
10933
- "engines": {
10934
- "node": ">=8"
10935
- },
10936
- "funding": {
10937
- "url": "https://bevry.me/fund"
10938
- }
10939
- },
10940
- "node_modules/through": {
10941
- "version": "2.3.8",
10942
- "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
10943
- "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
10944
- "dev": true
10945
- },
10946
- "node_modules/through2": {
10947
- "version": "4.0.2",
10948
- "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz",
10949
- "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==",
10950
- "dev": true,
10951
- "dependencies": {
10952
- "readable-stream": "3"
10953
- }
10954
- },
10955
- "node_modules/through2-filter": {
10956
- "version": "3.0.0",
10957
- "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz",
10958
- "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==",
10959
- "dev": true,
10960
- "dependencies": {
10961
- "through2": "~2.0.0",
10962
- "xtend": "~4.0.0"
10963
- }
10964
- },
10965
- "node_modules/through2-filter/node_modules/through2": {
10966
- "version": "2.0.5",
10967
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
10968
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
10969
- "dev": true,
10970
- "dependencies": {
10971
- "readable-stream": "~2.3.6",
10972
- "xtend": "~4.0.1"
10973
- }
10974
- },
10975
- "node_modules/through2/node_modules/readable-stream": {
10976
- "version": "3.6.0",
10977
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
10978
- "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
10979
- "dev": true,
10980
- "dependencies": {
10981
- "inherits": "^2.0.3",
10982
- "string_decoder": "^1.1.1",
10983
- "util-deprecate": "^1.0.1"
10984
- },
10985
- "engines": {
10986
- "node": ">= 6"
10987
- }
10988
- },
10989
- "node_modules/time-stamp": {
10990
- "version": "1.1.0",
10991
- "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz",
10992
- "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=",
10993
- "dev": true,
10994
- "engines": {
10995
- "node": ">=0.10.0"
10996
- }
10997
- },
10998
- "node_modules/tmp": {
10999
- "version": "0.0.33",
11000
- "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
11001
- "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
11002
- "dev": true,
11003
- "dependencies": {
11004
- "os-tmpdir": "~1.0.2"
11005
- },
11006
- "engines": {
11007
- "node": ">=0.6.0"
11008
- }
11009
- },
11010
- "node_modules/to-absolute-glob": {
11011
- "version": "2.0.2",
11012
- "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz",
11013
- "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=",
11014
- "dev": true,
11015
- "dependencies": {
11016
- "is-absolute": "^1.0.0",
11017
- "is-negated-glob": "^1.0.0"
11018
- },
11019
- "engines": {
11020
- "node": ">=0.10.0"
11021
- }
11022
- },
11023
- "node_modules/to-fast-properties": {
11024
- "version": "2.0.0",
11025
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
11026
- "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
11027
- "dev": true,
11028
- "engines": {
11029
- "node": ">=4"
11030
- }
11031
- },
11032
- "node_modules/to-object-path": {
11033
- "version": "0.3.0",
11034
- "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
11035
- "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
11036
- "dev": true,
11037
- "dependencies": {
11038
- "kind-of": "^3.0.2"
11039
- },
11040
- "engines": {
11041
- "node": ">=0.10.0"
11042
- }
11043
- },
11044
- "node_modules/to-object-path/node_modules/kind-of": {
11045
- "version": "3.2.2",
11046
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
11047
- "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
11048
- "dev": true,
11049
- "dependencies": {
11050
- "is-buffer": "^1.1.5"
11051
- },
11052
- "engines": {
11053
- "node": ">=0.10.0"
11054
- }
11055
- },
11056
- "node_modules/to-readable-stream": {
11057
- "version": "2.1.0",
11058
- "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-2.1.0.tgz",
11059
- "integrity": "sha512-o3Qa6DGg1CEXshSdvWNX2sN4QHqg03SPq7U6jPXRahlQdl5dK8oXjkU/2/sGrnOZKeGV1zLSO8qPwyKklPPE7w==",
11060
- "dev": true,
11061
- "engines": {
11062
- "node": ">=8"
11063
- }
11064
- },
11065
- "node_modules/to-regex": {
11066
- "version": "3.0.2",
11067
- "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
11068
- "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
11069
- "dev": true,
11070
- "dependencies": {
11071
- "define-property": "^2.0.2",
11072
- "extend-shallow": "^3.0.2",
11073
- "regex-not": "^1.0.2",
11074
- "safe-regex": "^1.1.0"
11075
- },
11076
- "engines": {
11077
- "node": ">=0.10.0"
11078
- }
11079
- },
11080
- "node_modules/to-regex-range": {
11081
- "version": "2.1.1",
11082
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
11083
- "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
11084
- "dev": true,
11085
- "dependencies": {
11086
- "is-number": "^3.0.0",
11087
- "repeat-string": "^1.6.1"
11088
- },
11089
- "engines": {
11090
- "node": ">=0.10.0"
11091
- }
11092
- },
11093
- "node_modules/to-through": {
11094
- "version": "2.0.0",
11095
- "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz",
11096
- "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=",
11097
- "dev": true,
11098
- "dependencies": {
11099
- "through2": "^2.0.3"
11100
- },
11101
- "engines": {
11102
- "node": ">= 0.10"
11103
- }
11104
- },
11105
- "node_modules/to-through/node_modules/through2": {
11106
- "version": "2.0.5",
11107
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
11108
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
11109
- "dev": true,
11110
- "dependencies": {
11111
- "readable-stream": "~2.3.6",
11112
- "xtend": "~4.0.1"
11113
- }
11114
- },
11115
- "node_modules/transfob": {
11116
- "version": "1.0.0",
11117
- "resolved": "https://registry.npmjs.org/transfob/-/transfob-1.0.0.tgz",
11118
- "integrity": "sha1-x/wnpbVDCtSGJnrmZtkj90oKsyA=",
11119
- "dev": true
11120
- },
11121
- "node_modules/trim-newlines": {
11122
- "version": "1.0.0",
11123
- "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz",
11124
- "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=",
11125
- "dev": true,
11126
- "engines": {
11127
- "node": ">=0.10.0"
11128
- }
11129
- },
11130
- "node_modules/tslib": {
11131
- "version": "1.14.1",
11132
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
11133
- "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
11134
- "dev": true
11135
- },
11136
- "node_modules/type": {
11137
- "version": "1.2.0",
11138
- "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz",
11139
- "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==",
11140
- "dev": true
11141
- },
11142
- "node_modules/type-fest": {
11143
- "version": "0.10.0",
11144
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.10.0.tgz",
11145
- "integrity": "sha512-EUV9jo4sffrwlg8s0zDhP0T2WD3pru5Xi0+HTE3zTUmBaZNhfkite9PdSJwdXLwPVW0jnAHT56pZHIOYckPEiw==",
11146
- "dev": true,
11147
- "engines": {
11148
- "node": ">=8"
11149
- },
11150
- "funding": {
11151
- "url": "https://github.com/sponsors/sindresorhus"
11152
- }
11153
- },
11154
- "node_modules/typedarray": {
11155
- "version": "0.0.6",
11156
- "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
11157
- "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
11158
- "dev": true
11159
- },
11160
- "node_modules/typedarray-to-buffer": {
11161
- "version": "3.1.5",
11162
- "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
11163
- "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
11164
- "dev": true,
11165
- "dependencies": {
11166
- "is-typedarray": "^1.0.0"
11167
- }
11168
- },
11169
- "node_modules/uglify-js": {
11170
- "version": "3.13.2",
11171
- "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.2.tgz",
11172
- "integrity": "sha512-SbMu4D2Vo95LMC/MetNaso1194M1htEA+JrqE9Hk+G2DhI+itfS9TRu9ZKeCahLDNa/J3n4MqUJ/fOHMzQpRWw==",
11173
- "dev": true,
11174
- "bin": {
11175
- "uglifyjs": "bin/uglifyjs"
11176
- },
11177
- "engines": {
11178
- "node": ">=0.8.0"
11179
- }
11180
- },
11181
- "node_modules/unc-path-regex": {
11182
- "version": "0.1.2",
11183
- "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz",
11184
- "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=",
11185
- "dev": true,
11186
- "engines": {
11187
- "node": ">=0.10.0"
11188
- }
11189
- },
11190
- "node_modules/undertaker": {
11191
- "version": "1.3.0",
11192
- "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz",
11193
- "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==",
11194
- "dev": true,
11195
- "dependencies": {
11196
- "arr-flatten": "^1.0.1",
11197
- "arr-map": "^2.0.0",
11198
- "bach": "^1.0.0",
11199
- "collection-map": "^1.0.0",
11200
- "es6-weak-map": "^2.0.1",
11201
- "fast-levenshtein": "^1.0.0",
11202
- "last-run": "^1.1.0",
11203
- "object.defaults": "^1.0.0",
11204
- "object.reduce": "^1.0.0",
11205
- "undertaker-registry": "^1.0.0"
11206
- },
11207
- "engines": {
11208
- "node": ">= 0.10"
11209
- }
11210
- },
11211
- "node_modules/undertaker-registry": {
11212
- "version": "1.0.1",
11213
- "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz",
11214
- "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=",
11215
- "dev": true,
11216
- "engines": {
11217
- "node": ">= 0.10"
11218
- }
11219
- },
11220
- "node_modules/unicode-canonical-property-names-ecmascript": {
11221
- "version": "2.0.0",
11222
- "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
11223
- "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
11224
- "dev": true,
11225
- "engines": {
11226
- "node": ">=4"
11227
- }
11228
- },
11229
- "node_modules/unicode-match-property-ecmascript": {
11230
- "version": "2.0.0",
11231
- "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
11232
- "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
11233
- "dev": true,
11234
- "dependencies": {
11235
- "unicode-canonical-property-names-ecmascript": "^2.0.0",
11236
- "unicode-property-aliases-ecmascript": "^2.0.0"
11237
- },
11238
- "engines": {
11239
- "node": ">=4"
11240
- }
11241
- },
11242
- "node_modules/unicode-match-property-value-ecmascript": {
11243
- "version": "2.0.0",
11244
- "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz",
11245
- "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==",
11246
- "dev": true,
11247
- "engines": {
11248
- "node": ">=4"
11249
- }
11250
- },
11251
- "node_modules/unicode-property-aliases-ecmascript": {
11252
- "version": "2.0.0",
11253
- "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz",
11254
- "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==",
11255
- "dev": true,
11256
- "engines": {
11257
- "node": ">=4"
11258
- }
11259
- },
11260
- "node_modules/union-value": {
11261
- "version": "1.0.1",
11262
- "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
11263
- "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
11264
- "dev": true,
11265
- "dependencies": {
11266
- "arr-union": "^3.1.0",
11267
- "get-value": "^2.0.6",
11268
- "is-extendable": "^0.1.1",
11269
- "set-value": "^2.0.1"
11270
- },
11271
- "engines": {
11272
- "node": ">=0.10.0"
11273
- }
11274
- },
11275
- "node_modules/unique-filename": {
11276
- "version": "1.1.1",
11277
- "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
11278
- "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
11279
- "dev": true,
11280
- "dependencies": {
11281
- "unique-slug": "^2.0.0"
11282
- }
11283
- },
11284
- "node_modules/unique-slug": {
11285
- "version": "2.0.2",
11286
- "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
11287
- "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
11288
- "dev": true,
11289
- "dependencies": {
11290
- "imurmurhash": "^0.1.4"
11291
- }
11292
- },
11293
- "node_modules/unique-stream": {
11294
- "version": "2.3.1",
11295
- "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz",
11296
- "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==",
11297
- "dev": true,
11298
- "dependencies": {
11299
- "json-stable-stringify-without-jsonify": "^1.0.1",
11300
- "through2-filter": "^3.0.0"
11301
- }
11302
- },
11303
- "node_modules/unique-string": {
11304
- "version": "2.0.0",
11305
- "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz",
11306
- "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==",
11307
- "dev": true,
11308
- "dependencies": {
11309
- "crypto-random-string": "^2.0.0"
11310
- },
11311
- "engines": {
11312
- "node": ">=8"
11313
- }
11314
- },
11315
- "node_modules/unset-value": {
11316
- "version": "1.0.0",
11317
- "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
11318
- "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
11319
- "dev": true,
11320
- "dependencies": {
11321
- "has-value": "^0.3.1",
11322
- "isobject": "^3.0.0"
11323
- },
11324
- "engines": {
11325
- "node": ">=0.10.0"
11326
- }
11327
- },
11328
- "node_modules/unset-value/node_modules/has-value": {
11329
- "version": "0.3.1",
11330
- "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
11331
- "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
11332
- "dev": true,
11333
- "dependencies": {
11334
- "get-value": "^2.0.3",
11335
- "has-values": "^0.1.4",
11336
- "isobject": "^2.0.0"
11337
- },
11338
- "engines": {
11339
- "node": ">=0.10.0"
11340
- }
11341
- },
11342
- "node_modules/unset-value/node_modules/has-value/node_modules/isobject": {
11343
- "version": "2.1.0",
11344
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
11345
- "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
11346
- "dev": true,
11347
- "dependencies": {
11348
- "isarray": "1.0.0"
11349
- },
11350
- "engines": {
11351
- "node": ">=0.10.0"
11352
- }
11353
- },
11354
- "node_modules/unset-value/node_modules/has-values": {
11355
- "version": "0.1.4",
11356
- "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
11357
- "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
11358
- "dev": true,
11359
- "engines": {
11360
- "node": ">=0.10.0"
11361
- }
11362
- },
11363
- "node_modules/upath": {
11364
- "version": "1.2.0",
11365
- "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
11366
- "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
11367
- "dev": true,
11368
- "engines": {
11369
- "node": ">=4",
11370
- "yarn": "*"
11371
- }
11372
- },
11373
- "node_modules/update-notifier": {
11374
- "version": "5.1.0",
11375
- "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz",
11376
- "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==",
11377
- "dev": true,
11378
- "dependencies": {
11379
- "boxen": "^5.0.0",
11380
- "chalk": "^4.1.0",
11381
- "configstore": "^5.0.1",
11382
- "has-yarn": "^2.1.0",
11383
- "import-lazy": "^2.1.0",
11384
- "is-ci": "^2.0.0",
11385
- "is-installed-globally": "^0.4.0",
11386
- "is-npm": "^5.0.0",
11387
- "is-yarn-global": "^0.3.0",
11388
- "latest-version": "^5.1.0",
11389
- "pupa": "^2.1.1",
11390
- "semver": "^7.3.4",
11391
- "semver-diff": "^3.1.1",
11392
- "xdg-basedir": "^4.0.0"
11393
- },
11394
- "engines": {
11395
- "node": ">=10"
11396
- },
11397
- "funding": {
11398
- "url": "https://github.com/yeoman/update-notifier?sponsor=1"
11399
- }
11400
- },
11401
- "node_modules/update-notifier/node_modules/ansi-styles": {
11402
- "version": "4.3.0",
11403
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
11404
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
11405
- "dev": true,
11406
- "dependencies": {
11407
- "color-convert": "^2.0.1"
11408
- },
11409
- "engines": {
11410
- "node": ">=8"
11411
- },
11412
- "funding": {
11413
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
11414
- }
11415
- },
11416
- "node_modules/update-notifier/node_modules/chalk": {
11417
- "version": "4.1.0",
11418
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz",
11419
- "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==",
11420
- "dev": true,
11421
- "dependencies": {
11422
- "ansi-styles": "^4.1.0",
11423
- "supports-color": "^7.1.0"
11424
- },
11425
- "engines": {
11426
- "node": ">=10"
11427
- },
11428
- "funding": {
11429
- "url": "https://github.com/chalk/chalk?sponsor=1"
11430
- }
11431
- },
11432
- "node_modules/update-notifier/node_modules/color-convert": {
11433
- "version": "2.0.1",
11434
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
11435
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
11436
- "dev": true,
11437
- "dependencies": {
11438
- "color-name": "~1.1.4"
11439
- },
11440
- "engines": {
11441
- "node": ">=7.0.0"
11442
- }
11443
- },
11444
- "node_modules/update-notifier/node_modules/color-name": {
11445
- "version": "1.1.4",
11446
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
11447
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
11448
- "dev": true
11449
- },
11450
- "node_modules/update-notifier/node_modules/has-flag": {
11451
- "version": "4.0.0",
11452
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
11453
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
11454
- "dev": true,
11455
- "engines": {
11456
- "node": ">=8"
11457
- }
11458
- },
11459
- "node_modules/update-notifier/node_modules/semver": {
11460
- "version": "7.3.5",
11461
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
11462
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
11463
- "dev": true,
11464
- "dependencies": {
11465
- "lru-cache": "^6.0.0"
11466
- },
11467
- "bin": {
11468
- "semver": "bin/semver.js"
11469
- },
11470
- "engines": {
11471
- "node": ">=10"
11472
- }
11473
- },
11474
- "node_modules/update-notifier/node_modules/supports-color": {
11475
- "version": "7.2.0",
11476
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
11477
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
11478
- "dev": true,
11479
- "dependencies": {
11480
- "has-flag": "^4.0.0"
11481
- },
11482
- "engines": {
11483
- "node": ">=8"
11484
- }
11485
- },
11486
- "node_modules/urix": {
11487
- "version": "0.1.0",
11488
- "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
11489
- "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
11490
- "deprecated": "Please see https://github.com/lydell/urix#deprecated",
11491
- "dev": true
11492
- },
11493
- "node_modules/url-parse-lax": {
11494
- "version": "3.0.0",
11495
- "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz",
11496
- "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=",
11497
- "dev": true,
11498
- "dependencies": {
11499
- "prepend-http": "^2.0.0"
11500
- },
11501
- "engines": {
11502
- "node": ">=4"
11503
- }
11504
- },
11505
- "node_modules/use": {
11506
- "version": "3.1.1",
11507
- "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
11508
- "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
11509
- "dev": true,
11510
- "engines": {
11511
- "node": ">=0.10.0"
11512
- }
11513
- },
11514
- "node_modules/util-deprecate": {
11515
- "version": "1.0.2",
11516
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
11517
- "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
11518
- "dev": true
11519
- },
11520
- "node_modules/v8flags": {
11521
- "version": "3.2.0",
11522
- "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz",
11523
- "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==",
11524
- "dev": true,
11525
- "dependencies": {
11526
- "homedir-polyfill": "^1.0.1"
11527
- },
11528
- "engines": {
11529
- "node": ">= 0.10"
11530
- }
11531
- },
11532
- "node_modules/validate-npm-package-license": {
11533
- "version": "3.0.4",
11534
- "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
11535
- "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
11536
- "dev": true,
11537
- "dependencies": {
11538
- "spdx-correct": "^3.0.0",
11539
- "spdx-expression-parse": "^3.0.0"
11540
- }
11541
- },
11542
- "node_modules/validate-npm-package-name": {
11543
- "version": "3.0.0",
11544
- "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz",
11545
- "integrity": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=",
11546
- "dev": true,
11547
- "dependencies": {
11548
- "builtins": "^1.0.3"
11549
- }
11550
- },
11551
- "node_modules/value-or-function": {
11552
- "version": "3.0.0",
11553
- "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz",
11554
- "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=",
11555
- "dev": true,
11556
- "engines": {
11557
- "node": ">= 0.10"
11558
- }
11559
- },
11560
- "node_modules/vinyl": {
11561
- "version": "2.2.1",
11562
- "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz",
11563
- "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==",
11564
- "dev": true,
11565
- "dependencies": {
11566
- "clone": "^2.1.1",
11567
- "clone-buffer": "^1.0.0",
11568
- "clone-stats": "^1.0.0",
11569
- "cloneable-readable": "^1.0.0",
11570
- "remove-trailing-separator": "^1.0.1",
11571
- "replace-ext": "^1.0.0"
11572
- },
11573
- "engines": {
11574
- "node": ">= 0.10"
11575
- }
11576
- },
11577
- "node_modules/vinyl-fs": {
11578
- "version": "3.0.3",
11579
- "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz",
11580
- "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==",
11581
- "dev": true,
11582
- "dependencies": {
11583
- "fs-mkdirp-stream": "^1.0.0",
11584
- "glob-stream": "^6.1.0",
11585
- "graceful-fs": "^4.0.0",
11586
- "is-valid-glob": "^1.0.0",
11587
- "lazystream": "^1.0.0",
11588
- "lead": "^1.0.0",
11589
- "object.assign": "^4.0.4",
11590
- "pumpify": "^1.3.5",
11591
- "readable-stream": "^2.3.3",
11592
- "remove-bom-buffer": "^3.0.0",
11593
- "remove-bom-stream": "^1.2.0",
11594
- "resolve-options": "^1.1.0",
11595
- "through2": "^2.0.0",
11596
- "to-through": "^2.0.0",
11597
- "value-or-function": "^3.0.0",
11598
- "vinyl": "^2.0.0",
11599
- "vinyl-sourcemap": "^1.1.0"
11600
- },
11601
- "engines": {
11602
- "node": ">= 0.10"
11603
- }
11604
- },
11605
- "node_modules/vinyl-fs/node_modules/through2": {
11606
- "version": "2.0.5",
11607
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
11608
- "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
11609
- "dev": true,
11610
- "dependencies": {
11611
- "readable-stream": "~2.3.6",
11612
- "xtend": "~4.0.1"
11613
- }
11614
- },
11615
- "node_modules/vinyl-sourcemap": {
11616
- "version": "1.1.0",
11617
- "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz",
11618
- "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=",
11619
- "dev": true,
11620
- "dependencies": {
11621
- "append-buffer": "^1.0.2",
11622
- "convert-source-map": "^1.5.0",
11623
- "graceful-fs": "^4.1.6",
11624
- "normalize-path": "^2.1.1",
11625
- "now-and-later": "^2.0.0",
11626
- "remove-bom-buffer": "^3.0.0",
11627
- "vinyl": "^2.0.0"
11628
- },
11629
- "engines": {
11630
- "node": ">= 0.10"
11631
- }
11632
- },
11633
- "node_modules/vinyl-sourcemap/node_modules/normalize-path": {
11634
- "version": "2.1.1",
11635
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
11636
- "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
11637
- "dev": true,
11638
- "dependencies": {
11639
- "remove-trailing-separator": "^1.0.1"
11640
- },
11641
- "engines": {
11642
- "node": ">=0.10.0"
11643
- }
11644
- },
11645
- "node_modules/vinyl-sourcemaps-apply": {
11646
- "version": "0.2.1",
11647
- "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz",
11648
- "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=",
11649
- "dev": true,
11650
- "dependencies": {
11651
- "source-map": "^0.5.1"
11652
- }
11653
- },
11654
- "node_modules/wcwidth": {
11655
- "version": "1.0.1",
11656
- "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
11657
- "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
11658
- "dev": true,
11659
- "dependencies": {
11660
- "defaults": "^1.0.3"
11661
- }
11662
- },
11663
- "node_modules/which": {
11664
- "version": "1.3.1",
11665
- "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
11666
- "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
11667
- "dev": true,
11668
- "dependencies": {
11669
- "isexe": "^2.0.0"
11670
- },
11671
- "bin": {
11672
- "which": "bin/which"
11673
- }
11674
- },
11675
- "node_modules/which-module": {
11676
- "version": "2.0.0",
11677
- "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
11678
- "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
11679
- "dev": true
11680
- },
11681
- "node_modules/wide-align": {
11682
- "version": "1.1.5",
11683
- "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
11684
- "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
11685
- "dev": true,
11686
- "dependencies": {
11687
- "string-width": "^1.0.2 || 2 || 3 || 4"
11688
- }
11689
- },
11690
- "node_modules/widest-line": {
11691
- "version": "3.1.0",
11692
- "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz",
11693
- "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==",
11694
- "dev": true,
11695
- "dependencies": {
11696
- "string-width": "^4.0.0"
11697
- },
11698
- "engines": {
11699
- "node": ">=8"
11700
- }
11701
- },
11702
- "node_modules/wrap-ansi": {
11703
- "version": "7.0.0",
11704
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
11705
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
11706
- "dev": true,
11707
- "dependencies": {
11708
- "ansi-styles": "^4.0.0",
11709
- "string-width": "^4.1.0",
11710
- "strip-ansi": "^6.0.0"
11711
- },
11712
- "engines": {
11713
- "node": ">=10"
11714
- },
11715
- "funding": {
11716
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
11717
- }
11718
- },
11719
- "node_modules/wrap-ansi/node_modules/ansi-styles": {
11720
- "version": "4.3.0",
11721
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
11722
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
11723
- "dev": true,
11724
- "dependencies": {
11725
- "color-convert": "^2.0.1"
11726
- },
11727
- "engines": {
11728
- "node": ">=8"
11729
- },
11730
- "funding": {
11731
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
11732
- }
11733
- },
11734
- "node_modules/wrap-ansi/node_modules/color-convert": {
11735
- "version": "2.0.1",
11736
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
11737
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
11738
- "dev": true,
11739
- "dependencies": {
11740
- "color-name": "~1.1.4"
11741
- },
11742
- "engines": {
11743
- "node": ">=7.0.0"
11744
- }
11745
- },
11746
- "node_modules/wrap-ansi/node_modules/color-name": {
11747
- "version": "1.1.4",
11748
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
11749
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
11750
- "dev": true
11751
- },
11752
- "node_modules/wrappy": {
11753
- "version": "1.0.2",
11754
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
11755
- "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
11756
- "dev": true
11757
- },
11758
- "node_modules/write-file-atomic": {
11759
- "version": "3.0.3",
11760
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
11761
- "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
11762
- "dev": true,
11763
- "dependencies": {
11764
- "imurmurhash": "^0.1.4",
11765
- "is-typedarray": "^1.0.0",
11766
- "signal-exit": "^3.0.2",
11767
- "typedarray-to-buffer": "^3.1.5"
11768
- }
11769
- },
11770
- "node_modules/xdg-basedir": {
11771
- "version": "4.0.0",
11772
- "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz",
11773
- "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==",
11774
- "dev": true,
11775
- "engines": {
11776
- "node": ">=8"
11777
- }
11778
- },
11779
- "node_modules/xtend": {
11780
- "version": "4.0.2",
11781
- "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
11782
- "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
11783
- "dev": true,
11784
- "engines": {
11785
- "node": ">=0.4"
11786
- }
11787
- },
11788
- "node_modules/y18n": {
11789
- "version": "4.0.1",
11790
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz",
11791
- "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==",
11792
- "dev": true
11793
- },
11794
- "node_modules/yallist": {
11795
- "version": "4.0.0",
11796
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
11797
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
11798
- "dev": true
11799
- },
11800
- "node_modules/yargs": {
11801
- "version": "14.2.3",
11802
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-14.2.3.tgz",
11803
- "integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==",
11804
- "dev": true,
11805
- "dependencies": {
11806
- "cliui": "^5.0.0",
11807
- "decamelize": "^1.2.0",
11808
- "find-up": "^3.0.0",
11809
- "get-caller-file": "^2.0.1",
11810
- "require-directory": "^2.1.1",
11811
- "require-main-filename": "^2.0.0",
11812
- "set-blocking": "^2.0.0",
11813
- "string-width": "^3.0.0",
11814
- "which-module": "^2.0.0",
11815
- "y18n": "^4.0.0",
11816
- "yargs-parser": "^15.0.1"
11817
- }
11818
- },
11819
- "node_modules/yargs-parser": {
11820
- "version": "15.0.1",
11821
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.1.tgz",
11822
- "integrity": "sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw==",
11823
- "dev": true,
11824
- "dependencies": {
11825
- "camelcase": "^5.0.0",
11826
- "decamelize": "^1.2.0"
11827
- }
11828
- },
11829
- "node_modules/yargs-parser/node_modules/camelcase": {
11830
- "version": "5.3.1",
11831
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
11832
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
11833
- "dev": true,
11834
- "engines": {
11835
- "node": ">=6"
11836
- }
11837
- },
11838
- "node_modules/yargs/node_modules/ansi-regex": {
11839
- "version": "4.1.0",
11840
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
11841
- "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
11842
- "dev": true,
11843
- "engines": {
11844
- "node": ">=6"
11845
- }
11846
- },
11847
- "node_modules/yargs/node_modules/emoji-regex": {
11848
- "version": "7.0.3",
11849
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
11850
- "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==",
11851
- "dev": true
11852
- },
11853
- "node_modules/yargs/node_modules/find-up": {
11854
- "version": "3.0.0",
11855
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
11856
- "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
11857
- "dev": true,
11858
- "dependencies": {
11859
- "locate-path": "^3.0.0"
11860
- },
11861
- "engines": {
11862
- "node": ">=6"
11863
- }
11864
- },
11865
- "node_modules/yargs/node_modules/is-fullwidth-code-point": {
11866
- "version": "2.0.0",
11867
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
11868
- "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
11869
- "dev": true,
11870
- "engines": {
11871
- "node": ">=4"
11872
- }
11873
- },
11874
- "node_modules/yargs/node_modules/locate-path": {
11875
- "version": "3.0.0",
11876
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
11877
- "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
11878
- "dev": true,
11879
- "dependencies": {
11880
- "p-locate": "^3.0.0",
11881
- "path-exists": "^3.0.0"
11882
- },
11883
- "engines": {
11884
- "node": ">=6"
11885
- }
11886
- },
11887
- "node_modules/yargs/node_modules/p-limit": {
11888
- "version": "2.3.0",
11889
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
11890
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
11891
- "dev": true,
11892
- "dependencies": {
11893
- "p-try": "^2.0.0"
11894
- },
11895
- "engines": {
11896
- "node": ">=6"
11897
- },
11898
- "funding": {
11899
- "url": "https://github.com/sponsors/sindresorhus"
11900
- }
11901
- },
11902
- "node_modules/yargs/node_modules/p-locate": {
11903
- "version": "3.0.0",
11904
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
11905
- "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
11906
- "dev": true,
11907
- "dependencies": {
11908
- "p-limit": "^2.0.0"
11909
- },
11910
- "engines": {
11911
- "node": ">=6"
11912
- }
11913
- },
11914
- "node_modules/yargs/node_modules/path-exists": {
11915
- "version": "3.0.0",
11916
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
11917
- "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
11918
- "dev": true,
11919
- "engines": {
11920
- "node": ">=4"
11921
- }
11922
- },
11923
- "node_modules/yargs/node_modules/string-width": {
11924
- "version": "3.1.0",
11925
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
11926
- "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
11927
- "dev": true,
11928
- "dependencies": {
11929
- "emoji-regex": "^7.0.1",
11930
- "is-fullwidth-code-point": "^2.0.0",
11931
- "strip-ansi": "^5.1.0"
11932
- },
11933
- "engines": {
11934
- "node": ">=6"
11935
- }
11936
- },
11937
- "node_modules/yargs/node_modules/strip-ansi": {
11938
- "version": "5.2.0",
11939
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
11940
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
11941
- "dev": true,
11942
- "dependencies": {
11943
- "ansi-regex": "^4.1.0"
11944
- },
11945
- "engines": {
11946
- "node": ">=6"
11947
- }
11948
- },
11949
- "node_modules/yauzl": {
11950
- "version": "2.10.0",
11951
- "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
11952
- "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=",
11953
- "dev": true,
11954
- "dependencies": {
11955
- "buffer-crc32": "~0.2.3",
11956
- "fd-slicer": "~1.1.0"
11957
- }
11958
- },
11959
- "node_modules/yocto-queue": {
11960
- "version": "0.1.0",
11961
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
11962
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
11963
- "dev": true,
11964
- "engines": {
11965
- "node": ">=10"
11966
- },
11967
- "funding": {
11968
- "url": "https://github.com/sponsors/sindresorhus"
11969
- }
11970
- }
11971
- },
11972
  "dependencies": {
11973
  "@babel/code-frame": {
11974
  "version": "7.16.0",
@@ -20295,15 +8329,6 @@
20295
  "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
20296
  "dev": true
20297
  },
20298
- "string_decoder": {
20299
- "version": "1.1.1",
20300
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
20301
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
20302
- "dev": true,
20303
- "requires": {
20304
- "safe-buffer": "~5.1.0"
20305
- }
20306
- },
20307
  "string-width": {
20308
  "version": "4.2.3",
20309
  "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
@@ -20315,6 +8340,15 @@
20315
  "strip-ansi": "^6.0.1"
20316
  }
20317
  },
 
 
 
 
 
 
 
 
 
20318
  "strip-ansi": {
20319
  "version": "6.0.1",
20320
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
1
  {
2
  "name": "vk-all-in-one-expansion-unit",
3
  "version": "9.11.3",
4
+ "lockfileVersion": 1,
5
  "requires": true,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  "dependencies": {
7
  "@babel/code-frame": {
8
  "version": "7.16.0",
8329
  "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
8330
  "dev": true
8331
  },
 
 
 
 
 
 
 
 
 
8332
  "string-width": {
8333
  "version": "4.2.3",
8334
  "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
8340
  "strip-ansi": "^6.0.1"
8341
  }
8342
  },
8343
+ "string_decoder": {
8344
+ "version": "1.1.1",
8345
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
8346
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
8347
+ "dev": true,
8348
+ "requires": {
8349
+ "safe-buffer": "~5.1.0"
8350
+ }
8351
+ },
8352
  "strip-ansi": {
8353
  "version": "6.0.1",
8354
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
readme.txt CHANGED
@@ -82,6 +82,9 @@ e.g.
82
 
83
  == Changelog ==
84
 
 
 
 
85
  = 9.71.0.0 (beta release) =
86
  * [ Add function ] Add bread crumb scheme
87
 
82
 
83
  == Changelog ==
84
 
85
+ = 9.71.0.1 (beta release) =
86
+ * [ other ] Add all composer vendor
87
+
88
  = 9.71.0.0 (beta release) =
89
  * [ Add function ] Add bread crumb scheme
90
 
tests/bootstrap.php DELETED
@@ -1,83 +0,0 @@
1
- <?php
2
- /**
3
- * PHPUnit bootstrap file
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- // Require composer dependencies.
9
- require_once dirname( dirname( __FILE__ ) ) . '/vendor/autoload.php';
10
-
11
- // If we're running in WP's build directory, ensure that WP knows that, too.
12
- if ( 'build' === getenv( 'LOCAL_DIR' ) ) {
13
- define( 'WP_RUN_CORE_TESTS', true );
14
- }
15
-
16
- // Determine the tests directory (from a WP dev checkout).
17
- // Try the WP_TESTS_DIR environment variable first.
18
- $_tests_dir = getenv( 'WP_TESTS_DIR' );
19
-
20
- // Next, try the WP_PHPUNIT composer package.
21
- if ( ! $_tests_dir ) {
22
- $_tests_dir = getenv( 'WP_PHPUNIT__DIR' );
23
- }
24
-
25
- // See if we're installed inside an existing WP dev instance.
26
- if ( ! $_tests_dir ) {
27
- $_try_tests_dir = dirname( __FILE__ ) . '/../../../../../tests/phpunit';
28
- if ( file_exists( $_try_tests_dir . '/includes/functions.php' ) ) {
29
- $_tests_dir = $_try_tests_dir;
30
- }
31
- }
32
- // Fallback.
33
- if ( ! $_tests_dir ) {
34
- $_tests_dir = '/tmp/wordpress-tests-lib';
35
- }
36
-
37
- // Give access to tests_add_filter() function.
38
- require_once $_tests_dir . '/includes/functions.php';
39
-
40
- // Do not try to load JavaScript files from an external URL - this takes a
41
- // while.
42
- define( 'GUTENBERG_LOAD_VENDOR_SCRIPTS', false );
43
-
44
- /**
45
- * Manually load the plugin being tested.
46
- */
47
- function _manually_load_plugin() {
48
- require dirname( dirname( __FILE__ ) ) . '/vkExUnit.php';
49
- }
50
- tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
51
-
52
- /**
53
- * Adds a wp_die handler for use during tests.
54
- *
55
- * If bootstrap.php triggers wp_die, it will not cause the script to fail. This
56
- * means that tests will look like they passed even though they should have
57
- * failed. So we throw an exception if WordPress dies during test setup. This
58
- * way the failure is observable.
59
- *
60
- * @param string|WP_Error $message The error message.
61
- *
62
- * @throws Exception When a `wp_die()` occurs.
63
- */
64
- function fail_if_died( $message ) {
65
- if ( is_wp_error( $message ) ) {
66
- $message = $message->get_error_message();
67
- }
68
-
69
- throw new Exception( 'WordPress died: ' . $message );
70
- }
71
- tests_add_filter( 'wp_die_handler', 'fail_if_died' );
72
-
73
- $GLOBALS['wp_tests_options'] = array(
74
- 'gutenberg-experiments' => array(
75
- 'gutenberg-widget-experiments' => '1',
76
- ),
77
- );
78
-
79
- // Start up the WP testing environment.
80
- require $_tests_dir . '/includes/bootstrap.php';
81
-
82
- // Use existing behavior for wp_die during actual test execution.
83
- remove_filter( 'wp_die_handler', 'fail_if_died' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-child-page-index.php DELETED
@@ -1,95 +0,0 @@
1
- <?php
2
- /**
3
- * Class WidgetPage
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * WidgetPage test case.
10
- */
11
- class WidgetChildPageIndexTest extends WP_UnitTestCase {
12
-
13
- function test_chlild_page_excerpt() {
14
-
15
- // 要件と期待する結果
16
- $test_array = array(
17
- // 値が空の場合(エラーなど吐かれないか?)
18
- array(
19
- 'content' => '',
20
- 'excerpt' => '',
21
- 'correct' => '',
22
- ),
23
- array(
24
- 'content' => '本文',
25
- 'excerpt' => '本文と抜粋両方入力がある場合に抜粋が出力されるか',
26
- 'correct' => '本文と抜粋両方入力がある場合に抜粋が出力されるか',
27
- ),
28
- array(
29
- 'content' => '<p>本文にHTMLタグが入っている場合に除去されるか</p>',
30
- 'excerpt' => '',
31
- 'correct' => '本文にHTMLタグが入っている場合に除去されるか',
32
- ),
33
- array(
34
- 'content' => '',
35
- 'excerpt' => '<p>抜粋にHTMLタグが入っている場合に除去されるか</p>',
36
- 'correct' => '抜粋にHTMLタグが入っている場合に除去されるか',
37
- ),
38
- array(
39
- 'content' => "本文の改行コードが\n除去されるかどうか",
40
- 'excerpt' => '',
41
- 'correct' => '本文の改行コードが除去されるかどうか',
42
- ),
43
- array(
44
- 'content' => '',
45
- 'excerpt' => "抜粋では改行コード\nが brタグ に変更されるかどうか",
46
- 'correct' => '抜粋では改行コード<br />が brタグ に変更されるかどうか',
47
- ),
48
- // 本文欄 90 文字以上の時は ... を付与
49
- array(
50
- 'content' => '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890',
51
- 'excerpt' => '',
52
- 'correct' => '123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890...',
53
- ),
54
- // 本文欄 90 文字丁度の時は ... はつかない
55
- array(
56
- 'content' => '123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890',
57
- 'excerpt' => '',
58
- 'correct' => '123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890',
59
- ),
60
- // 本文欄 90 文字以上の時は ... を付与
61
- array(
62
- 'content' => '',
63
- 'excerpt' => '抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない',
64
- 'correct' => '抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない抜粋欄は文字が多くてもトリムしない',
65
- ),
66
- );
67
-
68
- print PHP_EOL;
69
- print '------------------------------------' . PHP_EOL;
70
- print 'test_chlild_page_excerpt' . PHP_EOL;
71
- print '------------------------------------' . PHP_EOL;
72
-
73
- foreach ( $test_array as $key => $value ) {
74
-
75
- // テスト用のデータを投稿する
76
- $post_data['post_content'] = $value['content'];
77
- $post_data['post_excerpt'] = $value['excerpt'];
78
- // 投稿が成功すると投稿IDが返ってくる
79
- $post_id = wp_insert_post( $post_data );
80
-
81
- // 実際に投稿されたデータを取得する
82
- $post = get_post( $post_id );
83
-
84
- // その投稿データの場合の子ページインデックスに表示する抜粋文を取得する
85
- $return = veu_child_page_excerpt( $post );
86
-
87
- // 返ってきた抜粋値と期待する結果が同じかどうかテスト
88
- $this->assertEquals( $value['correct'], $return );
89
-
90
- print 'return :' . $return . PHP_EOL;
91
- print 'correct :' . $value['correct'] . PHP_EOL;
92
- }
93
-
94
- } // function test_chlild_page_excerpt() {
95
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-css-customize.php DELETED
@@ -1,110 +0,0 @@
1
- <?php
2
- /**
3
- * Class veu_css_customize
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * veu_css_customize test case.
10
- */
11
- class CssCustomizeTest extends WP_UnitTestCase {
12
-
13
- /**
14
- * カスタマイズCSSのテスト
15
- */
16
- function test_css_customize_get_the_css_min() {
17
- $tests = array(
18
- array(
19
- 'option' => 'div > h1 { color:red; }',
20
- 'correct' => 'div > h1 { color:red; }',
21
- ),
22
- array(
23
- 'option' => 'div > h1 {
24
- color:red;
25
- }',
26
- 'correct' => 'div > h1 {color:red;}',
27
- ),
28
- array(
29
- 'option' => '<script></script>div > h1 {color:red;}',
30
- 'correct' => 'div > h1 {color:red;}',
31
- ),
32
- );
33
-
34
- print PHP_EOL;
35
- print '------------------------------------' . PHP_EOL;
36
- print 'veu_css_customize' . PHP_EOL;
37
- print '------------------------------------' . PHP_EOL;
38
- $before_option = get_option( 'vkExUnit_css_customize' );
39
-
40
- foreach ( $tests as $key => $test_value ) {
41
- update_option( 'vkExUnit_css_customize', $test_value['option'] );
42
- $return = veu_css_customize::css_customize_get_the_css_min();
43
- print PHP_EOL;
44
- print 'return :' . $return . PHP_EOL;
45
- print 'correct :' . $test_value['correct'] . PHP_EOL;
46
- $this->assertEquals( $test_value['correct'], $return );
47
- } // foreach ( $tests as $key => $test_value ) {
48
- $before_option = update_option( 'vkExUnit_css_customize', $before_option );
49
- } // function test_css_customize_get_the_css_min() {
50
-
51
- /* Singular page css */
52
- function test_veu_get_the_custom_css_single() {
53
-
54
- // 要件と期待する結果
55
- $test_array = array(
56
- array(
57
- 'post_title' => 'タイトル',
58
- 'post_meta' => 'div > h1 { color:red; }',
59
- 'correct' => 'div > h1 { color:red; }',
60
- ),
61
- array(
62
- 'post_title' => 'タイトル',
63
- 'post_meta' => 'div > h1 {
64
- color:red;
65
- }',
66
- 'correct' => 'div > h1 {color:red;}',
67
- ),
68
- array(
69
- 'post_title' => 'タイトル',
70
- 'post_meta' => '<script></script>div > h1 {color:red;}',
71
- 'correct' => 'div > h1 {color:red;}',
72
- ),
73
- );
74
-
75
- print PHP_EOL;
76
- print '------------------------------------' . PHP_EOL;
77
- print 'test_veu_get_the_custom_css_single' . PHP_EOL;
78
- print '------------------------------------' . PHP_EOL;
79
-
80
- foreach ( $test_array as $key => $value ) {
81
-
82
- // テスト用のデータを投稿する
83
- $post_data['post_content'] = $value['post_title'];
84
-
85
- // 投稿が成功すると投稿IDが返ってくる
86
- $post_id = wp_insert_post( $post_data );
87
-
88
- // カスタムCSSをカスタムフィールドに投稿
89
- add_post_meta( $post_id, '_veu_custom_css', $value['post_meta'] );
90
-
91
- // 実際に投稿されたデータを取得する
92
- $post = get_post( $post_id );
93
-
94
- // その投稿データの場合のカスタムCSS
95
- $return = veu_get_the_custom_css_single( $post );
96
-
97
- // 返ってきた値と期待する結果が同じかどうかテスト
98
- $this->assertEquals( $value['correct'], $return );
99
-
100
- print 'return :' . $return . PHP_EOL;
101
- print 'correct :' . $value['correct'] . PHP_EOL;
102
-
103
- // テスト用データを消去
104
- wp_delete_post( $post_id, true );
105
-
106
- } // foreach ( $test_array as $key => $value ) {
107
-
108
- } // function test_veu_get_the_custom_css_single() {
109
-
110
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-cta-default-display.php DELETED
@@ -1,54 +0,0 @@
1
- <?php
2
- /**
3
- * Class WidgetPage
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * WidgetPage test case.
10
- */
11
- class CTADiaplayTest extends WP_UnitTestCase {
12
-
13
- function test_cta_display() {
14
-
15
- $test_array = array(
16
- array(
17
- 'options' => null,
18
- 'target_post_type' => 'post',
19
- 'correct' => '0',
20
- ),
21
- array(
22
- 'options' => array(
23
- 'post' => '0',
24
- ),
25
- 'target_post_type' => 'post',
26
- 'correct' => '0',
27
- ),
28
- array(
29
- 'options' => array(
30
- 'post' => 1,
31
- ),
32
- 'target_post_type' => 'post',
33
- 'correct' => 1,
34
- ),
35
- );
36
-
37
- print PHP_EOL;
38
- print '------------------------------------' . PHP_EOL;
39
- print 'test_cta_default_display' . PHP_EOL;
40
- print '------------------------------------' . PHP_EOL;
41
-
42
- foreach ( $test_array as $key => $test_value ) {
43
-
44
- update_option( 'vkExUnit_cta_settings', $test_value['options'] );
45
-
46
- $return = Vk_Call_To_Action::get_option();
47
-
48
- $this->assertEquals( $test_value['correct'], $return[$test_value['target_post_type']] );
49
- print 'correct ::::' . $test_value['correct'] . PHP_EOL;
50
- print 'return ::::' . $return[$test_value['target_post_type']] . PHP_EOL;
51
- }
52
-
53
- } // function test_chlild_page_excerpt() {
54
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-cta.php DELETED
@@ -1,90 +0,0 @@
1
- <?php
2
- /**
3
- * CTA test
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * CTA Test.
10
- */
11
- class CTATest extends WP_UnitTestCase {
12
-
13
- /**
14
- * Create test post
15
- *
16
- * @return array $test_posts
17
- */
18
- public static function create_cta() {
19
-
20
- $test_posts = array();
21
- // Create test post.
22
- $post = array(
23
- 'post_title' => 'cta_published',
24
- 'post_type' => 'CTA',
25
- 'post_status' => 'publish',
26
- 'post_content' => 'content',
27
- );
28
- $test_posts['post_id'] = wp_insert_post( $post );
29
-
30
- $post = array(
31
- 'post_title' => 'cta_private',
32
- 'post_type' => 'CTA',
33
- 'post_status' => 'private',
34
- 'post_content' => 'content',
35
- );
36
- $test_posts['post_id_private'] = wp_insert_post( $post );
37
-
38
- $post = array(
39
- 'post_title' => 'cta_draft',
40
- 'post_type' => 'CTA',
41
- 'post_status' => 'draft',
42
- 'post_content' => 'content',
43
- );
44
- $test_posts['post_id_draft'] = wp_insert_post( $post );
45
-
46
- return $test_posts;
47
- }
48
-
49
- /**
50
- * Test get_cta_post()
51
- *
52
- * @return void
53
- */
54
- function test_get_cta_post() {
55
- $test_posts = self::create_cta();
56
- $test_array = array(
57
- // 公開.
58
- array(
59
- 'post_id' => $test_posts['post_id'],
60
- 'correct' => 'cta_published',
61
- ),
62
- // 非公開.
63
- array(
64
- 'post_id' => $test_posts['post_id_private'],
65
- 'correct' => null,
66
- ),
67
- // 下書きは表示しない.
68
- array(
69
- 'post_id' => $test_posts['post_id_draft'],
70
- 'correct' => null,
71
- ),
72
- );
73
-
74
- print PHP_EOL;
75
- print '------------------------------------' . PHP_EOL;
76
- print 'test_get_cta_post' . PHP_EOL;
77
- print '------------------------------------' . PHP_EOL;
78
- foreach ( $test_array as $key => $test_value ) {
79
- $return = '';
80
- $return = Vk_Call_To_Action::get_cta_post( $test_value['post_id'] );
81
- if ( isset( $return->post_title ) ) {
82
- $return = $return->post_title;
83
- }
84
- print 'correct ::::' . esc_attr( $test_value['correct'] ) . PHP_EOL;
85
- print 'return ::::' . esc_attr( $return ) . PHP_EOL;
86
- $this->assertEquals( $test_value['correct'], $return );
87
-
88
- }
89
- }
90
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-head-title.php DELETED
@@ -1,148 +0,0 @@
1
- <?php
2
- /**
3
- * Class HeadTitleTest
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * SEO title test case.
10
- */
11
- class HeadTitleTest extends WP_UnitTestCase {
12
-
13
- /**
14
- * タイトル書き換えのテスト
15
- */
16
- function test_veu_get_the_sns_title() {
17
-
18
- $sep = ' | ';
19
-
20
- print PHP_EOL;
21
- print '------------------------------------' . PHP_EOL;
22
- print 'test_head_title' . PHP_EOL;
23
- print '------------------------------------' . PHP_EOL;
24
-
25
- $test_array = array(
26
- array(
27
- 'page_type' => 'is_singular',
28
- 'post_title' => 'Post Title',
29
- 'site_name' => 'Site name',
30
- 'veu_head_title' => array(
31
- 'title' => 'Custom Title',
32
- 'add_site_title' => false,
33
- ),
34
- 'correct' => 'Custom Title',
35
- ),
36
- array(
37
- 'page_type' => 'is_singular',
38
- 'post_title' => 'Post Title',
39
- 'site_name' => 'Site name',
40
- 'veu_head_title' => array(
41
- 'title' => 'Custom Title',
42
- 'add_site_title' => true,
43
- ),
44
- 'correct' => 'Custom Title' . $sep . 'Site name',
45
- ),
46
- array(
47
- 'page_type' => 'is_singular',
48
- 'post_title' => 'Post Title',
49
- 'site_name' => 'Site name',
50
- 'veu_head_title' => array(
51
- 'title' => '',
52
- 'add_site_title' => false,
53
- ),
54
- 'correct' => 'Post Title' . $sep . 'Site name',
55
- ),
56
- array(
57
- 'page_type' => 'is_page',
58
- 'post_title' => 'Page Title',
59
- 'site_name' => 'Site name',
60
- 'veu_head_title' => array(
61
- 'title' => 'Custom Title',
62
- 'add_site_title' => false,
63
- ),
64
- 'correct' => 'Custom Title',
65
- ),
66
- array(
67
- 'page_type' => 'is_page',
68
- 'post_title' => 'Page Title',
69
- 'site_name' => 'Site name',
70
- 'veu_head_title' => array(
71
- 'title' => 'Custom Title',
72
- 'add_site_title' => true,
73
- ),
74
- 'correct' => 'Custom Title' . $sep . 'Site name',
75
- ),
76
- );
77
-
78
- $before_blogname = get_option( 'blogname' );
79
- $before_veu_wp_title = get_option( 'vkExUnit_wp_title' );
80
- $before_veu_common_options = get_option( 'vkExUnit_common_options' );
81
-
82
- foreach ( $test_array as $key => $test_value ) {
83
-
84
- // Set site name.
85
- update_option( 'blogname', $test_value['site_name'] );
86
-
87
- // Add sns title.
88
- if ( $test_value['veu_head_title'] !== null ) {
89
-
90
- // Add test post.
91
- $post = array(
92
- 'post_title' => $test_value['post_title'],
93
- 'post_status' => 'publish',
94
- 'post_content' => 'content',
95
- );
96
- $post_id = wp_insert_post( $post );
97
-
98
- add_post_meta( $post_id, 'veu_head_title', $test_value['veu_head_title'] );
99
- }
100
-
101
- if ( 'is_singular' === $test_value['page_type'] || 'is_page' === $test_value['page_type'] ) {
102
- global $wp_query;
103
- $args = array( 'p' => $post_id );
104
- // is_singular() の条件分岐を効かせるため
105
- $wp_query = new WP_Query( $args );
106
- $post = get_post( $post_id );
107
- // setup_postdata() しないと wp_title() の書き換えの所で get_the_id() が拾えないため
108
- setup_postdata( $post );
109
-
110
- // } elseif ( $test_value['page_type'] == 'is_front_page' ) {
111
- // Set Custom front title
112
- // update_option( 'vkExUnit_wp_title', $test_value['vkExUnit_wp_title'] );
113
- // タイトルの書き換え機能がオフの場合の確認
114
- // if ( $test_value['package_wp_title'] === false ) {
115
- // $options = get_option( 'vkExUnit_common_options' );
116
- // 有効化設定の値をタイトル書き換え無効化に設定
117
- // $options['active_wpTitle'] = false;
118
- // update_option( 'vkExUnit_common_options', $options );
119
- // }
120
- // トップページの時の値を確認するためにトップに移動
121
- // $this->go_to( home_url( '/' ) );
122
- }
123
-
124
- $return = vkExUnit_get_wp_head_title();
125
-
126
- // 取得できたHTMLが、意図したHTMLと等しいかテスト
127
- $this->assertEquals( $test_value['correct'], $return );
128
-
129
- print PHP_EOL;
130
-
131
- print 'correct ::::' . $test_value['correct'] . PHP_EOL;
132
- print 'return ::::' . $return . PHP_EOL;
133
-
134
- if ( 'is_singular' === $test_value['page_type'] || 'is_page' === $test_value['page_type'] ) {
135
- delete_post_meta( $post_id, 'veu_head_title' );
136
- wp_delete_post( $post_id );
137
- wp_reset_postdata();
138
- wp_reset_query();
139
- }
140
- }
141
-
142
- // もとの値に戻す.
143
- update_option( 'blogname', $before_blogname );
144
- update_option( 'vkExUnit_wp_title', $before_veu_wp_title );
145
- update_option( 'vkExUnit_common_options', $before_veu_common_options );
146
-
147
- }
148
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-insert-item-meta-box-display.php DELETED
@@ -1,110 +0,0 @@
1
- <?php
2
- /**
3
- *
4
- * @package Vk_All_In_One_Expansion_Unit
5
- */
6
-
7
- /*
8
- cd /app
9
- bash setup-phpunit.sh
10
- source ~/.bashrc
11
- cd $(wp plugin path --dir vk-all-in-one-expansion-unit)
12
- phpunit
13
- */
14
-
15
- class InsertItemMetaBoxDisplayTest extends WP_UnitTestCase {
16
-
17
- /**
18
- * SNSタイトル書き換えのテスト
19
- */
20
- function test_veu_is_insert_item_metabox_display() {
21
-
22
- print PHP_EOL;
23
- print '------------------------------------' . PHP_EOL;
24
- print 'test_veu_is_insert_item_metabox_display' . PHP_EOL;
25
- print '------------------------------------' . PHP_EOL;
26
-
27
- $test_array = array(
28
- array(
29
- 'vkExUnit_common_options' => array(
30
- 'active_childPageIndex' => '',
31
- 'active_pageList_ancestor' => '',
32
- 'active_contact_section' => '',
33
- 'active_sitemap_page' => '',
34
- ),
35
- 'test_url' => admin_url( '/post-new.php?post_type=page' ),
36
- 'correct' => false,
37
- ),
38
- array(
39
- 'vkExUnit_common_options' => array(
40
- 'active_childPageIndex' => '',
41
- 'active_pageList_ancestor' => '',
42
- 'active_contact_section' => '',
43
- 'active_sitemap_page' => true,
44
- ),
45
- 'test_url' => admin_url( '/post-new.php?post_type=page' ),
46
- 'correct' => true,
47
- ),
48
- array(
49
- 'vkExUnit_common_options' => array(
50
- 'active_childPageIndex' => true,
51
- 'active_pageList_ancestor' => '',
52
- 'active_contact_section' => '',
53
- 'active_sitemap_page' => '',
54
- ),
55
- 'test_url' => admin_url( '/post-new.php?post_type=page' ),
56
- 'correct' => true,
57
- ),
58
- array(
59
- 'vkExUnit_common_options' => array(
60
- 'active_childPageIndex' => true,
61
- 'active_pageList_ancestor' => '',
62
- 'active_contact_section' => '',
63
- 'active_sitemap_page' => '',
64
- ),
65
- 'post' => array(
66
- 'post_type' => 'page',
67
- 'post_title' => 'Test Title',
68
- 'post_content' => 'Test Content',
69
- ),
70
- 'test_url' => '',
71
- 'correct' => true,
72
- ),
73
-
74
- );
75
-
76
- $before_vkExUnit_common_options = get_option( 'vkExUnit_common_options' );
77
-
78
- foreach ( $test_array as $key => $test_value ) {
79
-
80
- // Set site name
81
- update_option( 'vkExUnit_common_options', $test_value['vkExUnit_common_options'] );
82
-
83
- if ( ! empty( $test_value['post'] ) && is_array( $test_value['post'] ) ) {
84
- $posted_id = wp_insert_post( $test_value['post'], true );
85
- $test_value['test_url'] = admin_url( '/post.php?post=' . $posted_id . '&action=edit' );
86
- }
87
-
88
- $this->go_to( $test_value['test_url'] );
89
-
90
- $return = veu_is_insert_item_metabox_display();
91
-
92
- $this->assertEquals( $test_value['correct'], $return );
93
-
94
- print PHP_EOL;
95
-
96
- print $_SERVER['REQUEST_URI'] . PHP_EOL;
97
- print 'correct ::::' . $test_value['correct'] . PHP_EOL;
98
- print 'return ::::' . $return . PHP_EOL;
99
-
100
- // テスト用投稿を削除
101
- if ( ! empty( $posted_id ) ) {
102
- wp_delete_post( $posted_id, true );
103
- }
104
- }
105
-
106
- // もとの値に戻す
107
- update_option( 'vkExUnit_common_options', $before_vkExUnit_common_options );
108
-
109
- }
110
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-isert-ads.php DELETED
@@ -1,73 +0,0 @@
1
- <?php
2
- /**
3
- * Class InsertAdsTest
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
- /*
8
- cd $(wp plugin path --dir vk-all-in-one-expansion-unit)
9
- bash bin/install-wp-tests.sh wordpress_test root 'WordPress' localhost latest
10
- */
11
- /**
12
- * WidgetPage test case.
13
- */
14
- class InsertAdsTest extends WP_UnitTestCase {
15
-
16
- function test_vExUnit_Ads_get_option() {
17
-
18
- $tests = array(
19
- // 投稿タイプ指定が存在しなかった(投稿タイプ選択機能実装後に保存された事がない)時用
20
- array(
21
- 'option' => array(),
22
- 'correct' => array( 'post' => true ),
23
- ),
24
- array(
25
- 'option' => array(
26
- 'post_types' => array( 'post' => false ),
27
- ),
28
- 'correct' => array( 'post' => false ),
29
- ),
30
- // 固定ページにチェックがはいっている場合
31
- array(
32
- 'option' => array(
33
- 'post_types' => array( 'page' => true ),
34
- ),
35
- 'correct' => array( 'page' => true ),
36
- ),
37
- // 投稿にチェックがはいっている場合
38
- array(
39
- 'option' => array(
40
- 'post_types' => array( 'post' => true ),
41
- ),
42
- 'correct' => array( 'post' => true ),
43
- ),
44
- );
45
-
46
- $before_option = get_option( 'vkExUnit_Ads' );
47
- delete_option( 'vkExUnit_Ads' );
48
-
49
- print PHP_EOL;
50
- print '------------------------------------' . PHP_EOL;
51
- print 'test_vExUnit_Ads_get_option' . PHP_EOL;
52
- print '------------------------------------' . PHP_EOL;
53
- foreach ( $tests as $key => $test_value ) {
54
- update_option( 'vkExUnit_Ads', $test_value['option'] );
55
-
56
- $return = vExUnit_Ads::get_option();
57
-
58
- // PHPunit
59
- $this->assertEquals( $test_value['correct'], $return['post_types'] );
60
- print PHP_EOL;
61
- // 帰り値が配列だから print してもエラーになるだけなのでコメントアウト
62
- // print 'return :' . $return['post_types'] . PHP_EOL;
63
- // print 'correct :' . $test_value['correct'] . PHP_EOL;
64
- // // .php test
65
- // print '<pre style="text-align:left">';
66
- // print_r( $return['post_types'] ) . PHP_EOL;
67
- // print_r( $test_value['correct'] );
68
- // print '</pre>';
69
- delete_option( 'vkExUnit_Ads' );
70
- }
71
- update_option( 'vkExUnit_Ads', $before_option );
72
- }
73
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-meta-keywords.php DELETED
@@ -1,88 +0,0 @@
1
- <?php
2
- /**
3
- * Class MetaKeywordsTest
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
- /*
8
- vccw
9
- cd $(wp plugin path --dir vk-all-in-one-expansion-unit)
10
- bash bin/install-wp-tests.sh wordpress_test root 'WordPress' localhost latest
11
- */
12
-
13
- /*
14
- Flywheel
15
- cd /app
16
- bash setup-phpunit.sh
17
- source ~/.bashrc
18
- cd $(wp plugin path --dir vk-all-in-one-expansion-unit)
19
- phpunit
20
- */
21
-
22
- /**
23
- * Meta Keywords test case.
24
- */
25
- class MetaKeywordsTest extends WP_UnitTestCase {
26
-
27
- function test_get_postKeyword() {
28
-
29
- print PHP_EOL;
30
- print '------------------------------------' . PHP_EOL;
31
- print 'get_postKeyword' . PHP_EOL;
32
- print '------------------------------------' . PHP_EOL;
33
-
34
- // メタキーワードはデフォルトがoffなので有効化
35
- $options_common = get_option( 'vkExUnit_common_options' );
36
- $options_common['active_metaKeyword'] = true;
37
- update_option( 'vkExUnit_common_options', $options_common );
38
- veu_package_include();
39
-
40
- $test_array = array(
41
- array(
42
- 'vkExUnit_metaKeyword' => 'aaa',
43
- 'vkExUnit_common_keywords' => false,
44
- 'correct' => 'aaa',
45
- ),
46
- array(
47
- 'vkExUnit_metaKeyword' => false,
48
- 'vkExUnit_common_keywords' => 'bbb',
49
- 'correct' => 'bbb',
50
- ),
51
- array(
52
- 'vkExUnit_metaKeyword' => 'aaa',
53
- 'vkExUnit_common_keywords' => 'bbb',
54
- 'correct' => 'aaa',
55
- ),
56
- );
57
-
58
- foreach ( $test_array as $key => $test_value ) {
59
-
60
- // Add test post
61
- $post = array(
62
- 'post_title' => 'title',
63
- 'post_status' => 'publish',
64
- 'post_content' => 'content',
65
- );
66
- $post_id = wp_insert_post( $post );
67
-
68
- if (!empty($test_value['vkExUnit_metaKeyword'])){
69
- update_post_meta( $post_id, 'vkExUnit_metaKeyword', $test_value['vkExUnit_metaKeyword'] );
70
- }
71
- if (!empty($test_value['vkExUnit_common_keywords'])){
72
- update_post_meta( $post_id, 'vkExUnit_common_keywords', $test_value['vkExUnit_common_keywords'] );
73
- }
74
-
75
- // Move to target page
76
- $this->go_to( get_permalink( $post_id ) );
77
-
78
- $return = vExUnit_meta_keywords::get_postKeyword();
79
-
80
- // print 'url :' . $_SERVER['REQUEST_URI'] . PHP_EOL;
81
- print 'return :' . $return . PHP_EOL;
82
- print 'correct :' . $test_value['correct'] . PHP_EOL;
83
- $this->assertEquals( $test_value['correct'], $return );
84
-
85
- }
86
-
87
- }
88
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-package_manager.php DELETED
@@ -1,147 +0,0 @@
1
- <?php
2
- /**
3
- * Class PackageManagerTest
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * PackageManager test case.
10
- */
11
- class PackageManagerTest extends WP_UnitTestCase {
12
-
13
- /**
14
- * パッケージマネージャーの有効化判定テスト
15
- */
16
- function test_package_manager() {
17
-
18
- print PHP_EOL;
19
- print '------------------------------------' . PHP_EOL;
20
- print 'test_package_manager' . PHP_EOL;
21
- print '------------------------------------' . PHP_EOL;
22
-
23
- /**
24
- * インストールされたばかりでオプション値が存在しないとき
25
- */
26
- $test_array = array(
27
- // どちらも未定義の場合(既存ユーザー)
28
- array(
29
- 'name' => 'bootstrap',
30
- 'correct' => false,
31
- ),
32
- array(
33
- 'name' => 'metaDescription',
34
- 'correct' => true,
35
- ),
36
- );
37
-
38
- foreach ( $test_array as $key => $test_value ) {
39
- // 判定結果
40
- $result = veu_package_is_enable( $test_value['name'] );
41
-
42
- // 取得できた値と、想定する値が等しいかテスト
43
- $this->assertEquals( $test_value['correct'], $result );
44
-
45
- print PHP_EOL;
46
- print 'Package :' . $result . PHP_EOL;
47
- print 'Package Correct :' . $test_value['correct'] . PHP_EOL;
48
- }
49
-
50
- }
51
-
52
- function test_veu_common_options_validate() {
53
-
54
- print PHP_EOL;
55
- print '------------------------------------' . PHP_EOL;
56
- print 'test_veu_common_options_validate' . PHP_EOL;
57
- print '------------------------------------' . PHP_EOL;
58
-
59
- /**
60
- * 保存バリデート
61
- */
62
- $test_array = array(
63
- // どちらも未定義の場合
64
- array(
65
- // 'active_bootstrap' => null,
66
- 'correct' => false,
67
- ),
68
- array(
69
- 'active_bootstrap' => null,
70
- 'correct' => false,
71
- ),
72
- array(
73
- 'active_bootstrap' => 1,
74
- 'correct' => true,
75
- ),
76
- array(
77
- 'active_bootstrap' => '',
78
- 'correct' => '',
79
- ),
80
- );
81
-
82
- foreach ( $test_array as $key => $test_value ) {
83
- // 判定結果
84
- $output = veu_common_options_validate( $test_value );
85
-
86
- print PHP_EOL;
87
- print 'options_validate :' . $output['active_bootstrap'] . PHP_EOL;
88
- print 'options_validate Correct :' . $test_value['correct'] . PHP_EOL;
89
-
90
- // 取得できた値と、想定する値が等しいかテスト
91
- $this->assertEquals( $test_value['correct'], $output['active_bootstrap'] );
92
-
93
- }
94
-
95
- $test_array = array(
96
- array(
97
- 'active_bootstrap' => array(
98
- 'value' => '',
99
- 'correct' => false,
100
- ),
101
- ),
102
- array(
103
- 'active_bootstrap' => array(
104
- 'value' => null,
105
- 'correct' => false,
106
- ),
107
- ),
108
- array(
109
- 'active_bootstrap' => array(
110
- 'value' => 1,
111
- 'correct' => true,
112
- ),
113
- ),
114
- array(
115
- 'active_pagetop_button' => array(
116
- 'value' => '',
117
- 'correct' => false,
118
- ),
119
- ),
120
- array(
121
- 'active_pagetop_button' => array(
122
- 'value' => null,
123
- 'correct' => false,
124
- ),
125
- ),
126
- );
127
- foreach ( $test_array as $key => $test_value ) {
128
-
129
- // テスト用の配列を実際のoptionの配列形式に変換
130
- foreach ( $test_value as $key => $value ) {
131
- $options = array( $key => $value['value'] );
132
- }
133
-
134
- // 判定結果
135
- $output = veu_common_options_validate( $options );
136
-
137
- print PHP_EOL;
138
- print 'options_validate 2 :' . $output[ $key ] . PHP_EOL;
139
- print 'options_validate Correct 2 :' . $value['correct'] . PHP_EOL;
140
-
141
- // 取得できた値と、想定する値が等しいかテスト
142
- $this->assertEquals( $value['correct'], $output[ $key ] );
143
-
144
- }
145
-
146
- }
147
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-page-list-ancestor.php DELETED
@@ -1,110 +0,0 @@
1
- <?php
2
- /**
3
- * Class PageListAncestorTest
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * PageListAncestor test case.
10
- */
11
-
12
- class PageListAncestorTest extends WP_UnitTestCase {
13
-
14
- public function test_display_shortcode() {
15
- $id = wp_insert_post([
16
- 'post_title' => 'assert post',
17
- 'post_content' => 'test string',
18
- 'post_type' => 'page'
19
- ]);
20
-
21
- global $post;
22
- $post = get_post($id);
23
- global $wp_query;
24
- $wp_query->is_page = true;
25
-
26
- // case1
27
- update_post_meta( $post->ID, 'vkExUnit_pageList_ancestor', true );
28
-
29
- $this->assertEquals(
30
- vkExUnit_pageList_ancestor_contentHook('content'),
31
- "content\n[pageList_ancestor]"
32
- );
33
-
34
- // case2
35
- $wp_query->is_page = false;
36
- $this->assertEquals(
37
- vkExUnit_pageList_ancestor_contentHook('content'),
38
- "content"
39
- );
40
-
41
- // case3
42
- $wp_query->is_page = true;
43
- update_post_meta( $post->ID, 'vkExUnit_pageList_ancestor', false );
44
-
45
- $this->assertEquals(
46
- vkExUnit_pageList_ancestor_contentHook('content'),
47
- "content"
48
- );
49
- }
50
-
51
- public function test_shortcode() {
52
- $parent = wp_insert_post([
53
- 'post_title' => 'parent post',
54
- 'post_content' => 'parent string',
55
- 'post_type' => 'page',
56
- 'post_status' => 'publish'
57
- ]);
58
- wp_insert_post([
59
- 'post_title' => 'children post',
60
- 'post_parent' => $parent,
61
- 'post_type' => 'page',
62
- 'post_status' => 'publish'
63
- ]);
64
- $id = wp_insert_post([
65
- 'post_title' => 'assert post',
66
- 'post_content' => 'test string',
67
- 'post_parent' => $parent,
68
- 'post_type' => 'page',
69
- 'post_status' => 'publish'
70
- ]);
71
-
72
- global $post;
73
- $post = get_post($id);
74
-
75
- global $is_pagewidget;
76
- global $widget_pageid;
77
- global $wp_query;
78
-
79
- $widget_pageid = $id;
80
-
81
- // case1
82
- $is_pagewidget = false;
83
- $wp_query->is_page = true;
84
- update_post_meta( $post->ID, 'vkExUnit_pageList_ancestor', false );
85
-
86
- $this->assertEquals(
87
- vkExUnit_pageList_ancestor_shortcode('', false),
88
- ''
89
- );
90
-
91
- // case2
92
- $is_pagewidget = false;
93
- $wp_query->is_page = false;
94
- update_post_meta( $post->ID, 'vkExUnit_pageList_ancestor', true );
95
-
96
- $this->assertEquals(
97
- vkExUnit_pageList_ancestor_shortcode('', false),
98
- ''
99
- );
100
-
101
- // case3
102
- $is_pagewidget = false;
103
- $wp_query->is_page = true;
104
- update_post_meta( $post->ID, 'vkExUnit_pageList_ancestor', true );
105
-
106
- $this->assertTrue(
107
- vkExUnit_pageList_ancestor_shortcode('', false) != ''
108
- );
109
- }
110
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-parent-meta-box-display.php DELETED
@@ -1,106 +0,0 @@
1
- <?php
2
- /**
3
- *
4
- * @package Vk_All_In_One_Expansion_Unit
5
- */
6
-
7
- /*
8
- cd /app
9
- bash setup-phpunit.sh
10
- source ~/.bashrc
11
- cd $(wp plugin path --dir vk-all-in-one-expansion-unit)
12
- phpunit
13
- */
14
-
15
- class ParentMetaBoxDisplayManualTest extends WP_UnitTestCase {
16
-
17
- /**
18
- * SNSタイトル書き換えのテスト
19
- */
20
- function test_veu_is_parent_metabox_display_maual() {
21
-
22
- print PHP_EOL;
23
- print '------------------------------------' . PHP_EOL;
24
- print 'test_veu_is_parent_metabox_display_maual' . PHP_EOL;
25
- print '------------------------------------' . PHP_EOL;
26
-
27
- $test_array = array(
28
- array(
29
- 'vkExUnit_common_options' => array(
30
- 'active_sns' => '',
31
- 'active_css_customize' => '',
32
- 'active_childPageIndex' => '',
33
- 'active_pageList_ancestor' => '',
34
- 'active_contact_section' => '',
35
- 'active_sitemap_page' => '',
36
- 'active_call_to_action' => '',
37
- 'active_noindex' => '',
38
- 'active_auto_eyecatch' => '',
39
- 'active_metaKeyword' => '',
40
- ),
41
- // 'current_page_post_type' => 'post',
42
- 'test_url' => admin_url( '/post-new.php?post_type=page' ),
43
- 'correct' => false,
44
- ),
45
- array(
46
- 'vkExUnit_common_options' => array(
47
- 'active_sns' => '',
48
- 'active_css_customize' => true,
49
- 'active_childPageIndex' => '',
50
- 'active_pageList_ancestor' => '',
51
- 'active_contact_section' => '',
52
- 'active_sitemap_page' => '',
53
- 'active_call_to_action' => '',
54
- 'active_noindex' => '',
55
- 'active_auto_eyecatch' => '',
56
- 'active_metaKeyword' => '',
57
- ),
58
- // 'current_page_post_type' => 'post',
59
- 'test_url' => admin_url( '/post-new.php?post_type=page' ),
60
- 'correct' => true,
61
- ),
62
- array(
63
- 'vkExUnit_common_options' => array(
64
- 'active_sns' => '',
65
- 'active_css_customize' => '',
66
- 'active_childPageIndex' => true,
67
- 'active_pageList_ancestor' => '',
68
- 'active_contact_section' => '',
69
- 'active_sitemap_page' => '',
70
- 'active_call_to_action' => '',
71
- 'active_noindex' => '',
72
- 'active_auto_eyecatch' => '',
73
- 'active_metaKeyword' => '',
74
- ),
75
- // 'current_page_post_type' => 'post',
76
- 'test_url' => admin_url( '/post-new.php?post_type=page' ),
77
- 'correct' => true,
78
- ),
79
-
80
- );
81
-
82
- $before_vkExUnit_common_options = get_option( 'vkExUnit_common_options' );
83
-
84
- foreach ( $test_array as $key => $test_value ) {
85
-
86
- // Set site name
87
- update_option( 'vkExUnit_common_options', $test_value['vkExUnit_common_options'] );
88
-
89
- $this->go_to( $test_value['test_url'] );
90
-
91
- $return = veu_is_parent_metabox_display_maual();
92
-
93
- $this->assertEquals( $test_value['correct'], $return );
94
-
95
- print PHP_EOL;
96
-
97
- print 'correct ::::' . $test_value['correct'] . PHP_EOL;
98
- print 'return ::::' . $return . PHP_EOL;
99
-
100
- }
101
-
102
- // もとの値に戻す
103
- update_option( 'vkExUnit_common_options', $before_vkExUnit_common_options );
104
-
105
- }
106
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-sample.php DELETED
@@ -1,20 +0,0 @@
1
- <?php
2
- /**
3
- * Class SampleTest
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * Sample test case.
10
- */
11
- class SampleTest extends WP_UnitTestCase {
12
-
13
- /**
14
- * A single example test.
15
- */
16
- public function test_sample() {
17
- // Replace this with some actual testing code.
18
- $this->assertTrue( true );
19
- }
20
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-sns-btn-style.php DELETED
@@ -1,116 +0,0 @@
1
- <?php
2
- /**
3
- * SnsBtnsStyle
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * Share button test
10
- */
11
- class SnsBtnsStyle extends WP_UnitTestCase {
12
-
13
- /**
14
- * シェアボタンの色
15
- *
16
- * @return void
17
- */
18
- public function test_veu_sns_outer_css() {
19
-
20
- print PHP_EOL;
21
- print '------------------------------------' . PHP_EOL;
22
- print 'test_veu_sns_outer_css' . PHP_EOL;
23
- print '------------------------------------' . PHP_EOL;
24
-
25
- $test_array = array(
26
- array(
27
- 'options' => array(
28
- 'snsBtn_bg_fill_not' => false,
29
- 'snsBtn_color' => null,
30
- ),
31
- 'correct' => '',
32
- ),
33
- array(
34
- 'options' => array(
35
- 'snsBtn_bg_fill_not' => false,
36
- 'snsBtn_color' => '#f00',
37
- ),
38
- 'correct' => ' style="border:1px solid #f00;background-color:#f00;box-shadow: 0 2px 0 rgba(0,0,0,0.15);"',
39
- ),
40
- array(
41
- 'options' => array(
42
- 'snsBtn_bg_fill_not' => null,
43
- 'snsBtn_color' => '#f00',
44
- ),
45
- 'correct' => ' style="border:1px solid #f00;background-color:#f00;box-shadow: 0 2px 0 rgba(0,0,0,0.15);"',
46
- ),
47
- array(
48
- 'options' => array(
49
- 'snsBtn_bg_fill_not' => true,
50
- 'snsBtn_color' => '#f00',
51
- ),
52
- 'correct' => ' style="border:1px solid #f00;background:none;box-shadow: 0 2px 0 rgba(0,0,0,0.15);"',
53
- ),
54
- array(
55
- 'options' => array(
56
- 'snsBtn_bg_fill_not' => 'true',
57
- 'snsBtn_color' => '#f00',
58
- ),
59
- 'correct' => ' style="border:1px solid #f00;background:none;box-shadow: 0 2px 0 rgba(0,0,0,0.15);"',
60
- ),
61
- );
62
-
63
- foreach ( $test_array as $key => $test_value ) {
64
-
65
- $return = veu_sns_outer_css( $test_value['options'] );
66
-
67
- $this->assertEquals( $test_value['correct'], $return );
68
-
69
- print PHP_EOL;
70
- print 'correct :' . esc_attr( $test_value['correct'] ) . PHP_EOL;
71
- print 'return :' . esc_attr( $return ) . PHP_EOL;
72
- }
73
- }
74
-
75
- /**
76
- * シェアボタン文字の色
77
- *
78
- * @return void
79
- */
80
- public function test_veu_sns_icon_css() {
81
-
82
- print PHP_EOL;
83
- print '------------------------------------' . PHP_EOL;
84
- print 'test_veu_sns_icon_css' . PHP_EOL;
85
- print '------------------------------------' . PHP_EOL;
86
-
87
- $test_array = array(
88
- array(
89
- 'options' => array(
90
- 'snsBtn_bg_fill_not' => null,
91
- 'snsBtn_color' => '#f00',
92
- ),
93
- 'correct' => ' style="color:#fff;"',
94
- ),
95
- array(
96
- 'options' => array(
97
- 'snsBtn_bg_fill_not' => true,
98
- 'snsBtn_color' => '#f00',
99
- ),
100
- 'correct' => ' style="color:#f00;"',
101
- ),
102
- );
103
-
104
- foreach ( $test_array as $key => $test_value ) {
105
-
106
- $return = veu_sns_icon_css( $test_value['options'] );
107
-
108
- $this->assertEquals( $test_value['correct'], $return );
109
-
110
- print PHP_EOL;
111
- print 'correct :' . esc_attr( $test_value['correct'] ) . PHP_EOL;
112
- print 'return :' . esc_attr( $return ) . PHP_EOL;
113
- }
114
- }
115
-
116
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-sns-btns.php DELETED
@@ -1,72 +0,0 @@
1
- <?php
2
- /**
3
- * Class WidgetPage
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * Call to Action test case.
10
- */
11
- class SnsBtnsTest extends WP_UnitTestCase {
12
-
13
- /**
14
- * SNSボタンの表示しないのチェックボックスを表示するかしないかのテスト
15
- */
16
- function test_sns_is_display_hide_chekbox() {
17
-
18
- print PHP_EOL;
19
- print '------------------------------------' . PHP_EOL;
20
- print 'test_sns_is_display_hide_chekbox' . PHP_EOL;
21
- print '------------------------------------' . PHP_EOL;
22
-
23
- $test_array = array(
24
- array(
25
- 'vkExUnit_sns_options__enableSnsBtns' => true,
26
- 'vkExUnit_sns_options__snsBtn_exclude_post_types' => null,
27
- 'post_type' => 'post',
28
- 'correct' => true,
29
- ),
30
- array(
31
- 'vkExUnit_sns_options__enableSnsBtns' => false,
32
- 'vkExUnit_sns_options__snsBtn_exclude_post_types' => null,
33
- 'post_type' => 'post',
34
- 'correct' => false,
35
- ),
36
- array(
37
- 'vkExUnit_sns_options__enableSnsBtns' => true,
38
- 'vkExUnit_sns_options__snsBtn_exclude_post_types' => array( 'post' => true ),
39
- 'post_type' => 'post',
40
- 'correct' => false,
41
- ),
42
- array(
43
- 'vkExUnit_sns_options__enableSnsBtns' => true,
44
- 'vkExUnit_sns_options__snsBtn_exclude_post_types' => array( 'page' => true ),
45
- 'post_type' => 'post',
46
- 'correct' => true,
47
- ),
48
-
49
- );
50
-
51
- $before_vkExUnit_sns_options = get_option( 'vkExUnit_sns_options' );
52
-
53
- foreach ( $test_array as $key => $test_value ) {
54
-
55
- $vkExUnit_sns_options = $before_vkExUnit_sns_options;
56
- $vkExUnit_sns_options['enableSnsBtns'] = $test_value['vkExUnit_sns_options__enableSnsBtns'];
57
- $vkExUnit_sns_options['snsBtn_exclude_post_types'] = $test_value['vkExUnit_sns_options__snsBtn_exclude_post_types'];
58
- update_option( 'vkExUnit_sns_options', $vkExUnit_sns_options );
59
-
60
- $return = veu_sns_is_sns_btns_meta_chekbox_hide( $test_value['post_type'] );
61
-
62
- // 取得できたHTMLが、意図したHTMLと等しいかテスト
63
- $this->assertEquals( $test_value['correct'], $return );
64
-
65
- print PHP_EOL;
66
- print 'correct :' . $test_value['correct'] . PHP_EOL;
67
- print 'return :' . $return . PHP_EOL;
68
- }
69
-
70
- update_option( 'vkExUnit_sns_options', $before_vkExUnit_sns_options );
71
- }
72
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-sns-title.php DELETED
@@ -1,1298 +0,0 @@
1
- <?php
2
- /**
3
- * Class SnsTitleTest
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
- /*
8
- cd $(wp plugin path --dir vk-all-in-one-expansion-unit)
9
- bash bin/install-wp-tests.sh wordpress_test root 'WordPress' localhost latest
10
- */
11
- /**
12
- * SNS title test case.
13
- */
14
- class SnsTitleTest extends WP_UnitTestCase {
15
- /**
16
- * SNSタイトル書き換えのテスト
17
- */
18
- public static function setup_data() {
19
-
20
- /*** ↓↓ テスト用事前データ設定( test_lightning_is_layout_onecolumn と test_lightning_is_subsection_display 共通 ) */
21
-
22
- // 投稿タイプイベントを作成
23
- register_post_type(
24
- 'event',
25
- array(
26
- 'label' => 'Event',
27
- 'has_archive' => true,
28
- 'public' => true,
29
- )
30
- );
31
-
32
- // イベントにイベントカテゴリーを関連付け
33
- register_taxonomy(
34
- 'event_cat',
35
- 'event',
36
- array(
37
- 'label' => 'Event Category',
38
- 'rewrite' => array( 'slug' => 'event_cat' ),
39
- 'hierarchical' => true,
40
- )
41
- );
42
-
43
- // カテゴリ「親カテゴリ」を追加
44
- $catarr = array(
45
- 'cat_name' => 'Category Test',
46
- 'category_nicename' => 'category-test',
47
- );
48
- $data['category_id'] = wp_insert_category( $catarr );
49
-
50
- // イベントカテゴリ「イベントカテゴリ」を追加
51
- $args = array(
52
- 'slug' => 'event-category-test',
53
- );
54
- $term_info = wp_insert_term( 'Event Category Test', 'event_cat', $args );
55
- $data['event_cat_id'] = $term_info['term_id'];
56
-
57
- // 投稿「テスト01」を追加
58
- $post = array(
59
- 'post_title' => 'Post Test',
60
- 'post_status' => 'publish',
61
- 'post_content' => 'Post Test',
62
- 'post_category' => array( $data['category_id'] ),
63
- );
64
- $data['post_id'] = wp_insert_post( $post );
65
-
66
- // Create test Home
67
- $post = array(
68
- 'post_title' => 'Page Test',
69
- 'post_type' => 'page',
70
- 'post_status' => 'publish',
71
- 'post_content' => 'Page Test',
72
- );
73
- $data['page_id'] = wp_insert_post( $post );
74
-
75
- // Create test Home
76
- $post = array(
77
- 'post_title' => 'Home',
78
- 'post_type' => 'page',
79
- 'post_status' => 'publish',
80
- 'post_content' => 'Home',
81
- );
82
- $data['home_page_id'] = wp_insert_post( $post );
83
-
84
- // Create test Home
85
- $post = array(
86
- 'post_title' => 'Front Page',
87
- 'post_type' => 'page',
88
- 'post_status' => 'publish',
89
- 'post_content' => 'Front Page',
90
- );
91
- $data['front_page_id'] = wp_insert_post( $post );
92
-
93
- // custom post type.
94
- $post = array(
95
- 'post_title' => 'Event Test',
96
- 'post_type' => 'event',
97
- 'post_status' => 'publish',
98
- 'post_content' => 'Event Test',
99
- );
100
- $data['event_id'] = wp_insert_post( $post );
101
- // set event category to event post
102
- wp_set_object_terms( $data['event_id'], 'event_category_name', 'event_cat' );
103
-
104
- update_option( 'page_on_front', $data['front_page_id'] ); // フロントに指定する固定ページ
105
- update_option( 'page_for_posts', $data['home_page_id'] ); // 投稿トップに指定する固定ページ
106
- update_option( 'show_on_front', 'page' ); // or posts
107
-
108
- return $data;
109
-
110
- /*** ↑↑ テスト用事前データ設定( test_lightning_is_layout_onecolumn と test_lightning_is_subsection_display 共通 ) */
111
- }
112
-
113
- /**
114
- * SNSタイトル書き換えのテスト
115
- */
116
- public function test_veu_get_the_sns_title() {
117
-
118
- print PHP_EOL;
119
- print '------------------------------------' . PHP_EOL;
120
- print 'test_sns_title' . PHP_EOL;
121
- print '------------------------------------' . PHP_EOL;
122
-
123
- $before_page_for_posts = get_option( 'page_for_posts' ); // 投稿トップに指定するページ
124
- $before_page_on_front = get_option( 'page_on_front' ); // フロントに指定する固定ページ
125
- $before_show_on_front = get_option( 'show_on_front' ); // トップページ指定するかどうか page or posts
126
-
127
- $data = self::setup_data();
128
-
129
- $page_for_posts = get_option( 'page_for_posts' ); // 投稿トップに指定するページ
130
- $page_on_front = get_option( 'page_on_front' ); // フロントに指定する固定ページ
131
- $show_on_front = get_option( 'show_on_front' ); // トップページ指定するかどうか page or posts
132
-
133
- $test_array = array(
134
- /**
135
- * フロントページ
136
- */
137
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
138
- array(
139
- 'target_type' => 'is_front_page',
140
- 'target_url' => home_url( '/' ),
141
- 'target_id' => $data['front_page_id'],
142
- 'sns_options__snsTitle_use_only_postTitle' => false,
143
- 'vkExUnit_sns_title' => null,
144
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
145
- 'package_wp_title' => true,
146
- 'site_name' => 'Site Name',
147
- 'correct' => 'ExUnitCustomFrontTitle',
148
- ),
149
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
150
- array(
151
- 'target_type' => 'is_front_page',
152
- 'target_url' => home_url( '/' ),
153
- 'target_id' => $data['front_page_id'],
154
- 'sns_options__snsTitle_use_only_postTitle' => false,
155
- 'vkExUnit_sns_title' => null,
156
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
157
- 'package_wp_title' => false,
158
- 'site_name' => 'Site Name',
159
- 'correct' => 'Site Name',
160
- ),
161
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
162
- array(
163
- 'target_type' => 'is_front_page',
164
- 'target_url' => home_url( '/' ),
165
- 'target_id' => $data['front_page_id'],
166
- 'sns_options__snsTitle_use_only_postTitle' => false,
167
- 'vkExUnit_sns_title' => 'Custom Title',
168
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
169
- 'package_wp_title' => true,
170
- 'site_name' => 'Site Name',
171
- 'correct' => 'ExUnitCustomFrontTitle',
172
- ),
173
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
174
- array(
175
- 'target_type' => 'is_front_page',
176
- 'target_url' => home_url( '/' ),
177
- 'target_id' => $data['front_page_id'],
178
- 'sns_options__snsTitle_use_only_postTitle' => false,
179
- 'vkExUnit_sns_title' => 'Custom Title',
180
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
181
- 'package_wp_title' => false,
182
- 'site_name' => 'Site Name',
183
- 'correct' => 'Site Name',
184
- ),
185
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
186
- array(
187
- 'target_type' => 'is_front_page',
188
- 'target_url' => home_url( '/' ),
189
- 'target_id' => $data['front_page_id'],
190
- 'sns_options__snsTitle_use_only_postTitle' => true,
191
- 'vkExUnit_sns_title' => null,
192
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
193
- 'package_wp_title' => true,
194
- 'site_name' => 'Site Name',
195
- 'correct' => 'ExUnitCustomFrontTitle',
196
- ),
197
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
198
- array(
199
- 'target_type' => 'is_front_page',
200
- 'target_url' => home_url( '/' ),
201
- 'target_id' => $data['front_page_id'],
202
- 'sns_options__snsTitle_use_only_postTitle' => true,
203
- 'vkExUnit_sns_title' => null,
204
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
205
- 'package_wp_title' => false,
206
- 'site_name' => 'Site Name',
207
- 'correct' => 'Site Name',
208
- ),
209
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
210
- array(
211
- 'target_type' => 'is_front_page',
212
- 'target_url' => home_url( '/' ),
213
- 'target_id' => $data['front_page_id'],
214
- 'sns_options__snsTitle_use_only_postTitle' => true,
215
- 'vkExUnit_sns_title' => 'Custom Title',
216
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
217
- 'package_wp_title' => true,
218
- 'site_name' => 'Site Name',
219
- 'correct' => 'ExUnitCustomFrontTitle',
220
- ),
221
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
222
- array(
223
- 'target_type' => 'is_front_page',
224
- 'target_url' => home_url( '/' ),
225
- 'target_id' => $data['front_page_id'],
226
- 'sns_options__snsTitle_use_only_postTitle' => true,
227
- 'vkExUnit_sns_title' => 'Custom Title',
228
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
229
- 'package_wp_title' => false,
230
- 'site_name' => 'Site Name',
231
- 'correct' => 'Site Name',
232
- ),
233
- /**
234
- * 投稿トップページ
235
- */
236
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
237
- array(
238
- 'target_type' => 'is_home',
239
- 'target_url' => get_permalink( $page_for_posts ),
240
- 'target_id' => $data['home_page_id'],
241
- 'sns_options__snsTitle_use_only_postTitle' => false,
242
- 'vkExUnit_sns_title' => null,
243
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
244
- 'package_wp_title' => true,
245
- 'site_name' => 'Site Name',
246
- 'correct' => 'Home | Site Name',
247
- ),
248
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
249
- array(
250
- 'target_type' => 'is_home',
251
- 'target_url' => get_permalink( $page_for_posts ),
252
- 'target_id' => $data['home_page_id'],
253
- 'sns_options__snsTitle_use_only_postTitle' => false,
254
- 'vkExUnit_sns_title' => null,
255
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
256
- 'package_wp_title' => false,
257
- 'site_name' => 'Site Name',
258
- 'correct' => 'Home | Site Name',
259
- ),
260
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
261
- array(
262
- 'target_type' => 'is_home',
263
- 'target_url' => get_permalink( $page_for_posts ),
264
- 'target_id' => $data['home_page_id'],
265
- 'sns_options__snsTitle_use_only_postTitle' => false,
266
- 'vkExUnit_sns_title' => 'Custom Title',
267
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
268
- 'package_wp_title' => true,
269
- 'site_name' => 'Site Name',
270
- 'correct' => 'Home | Site Name',
271
- ),
272
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
273
- array(
274
- 'target_type' => 'is_home',
275
- 'target_url' => get_permalink( $page_for_posts ),
276
- 'target_id' => $data['home_page_id'],
277
- 'sns_options__snsTitle_use_only_postTitle' => false,
278
- 'vkExUnit_sns_title' => 'Custom Title',
279
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
280
- 'package_wp_title' => false,
281
- 'site_name' => 'Site Name',
282
- 'correct' => 'Home | Site Name',
283
- ),
284
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
285
- array(
286
- 'target_type' => 'is_home',
287
- 'target_url' => get_permalink( $page_for_posts ),
288
- 'target_id' => $data['home_page_id'],
289
- 'sns_options__snsTitle_use_only_postTitle' => true,
290
- 'vkExUnit_sns_title' => null,
291
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
292
- 'package_wp_title' => true,
293
- 'site_name' => 'Site Name',
294
- 'correct' => 'Home',
295
- ),
296
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
297
- array(
298
- 'target_type' => 'is_home',
299
- 'target_url' => get_permalink( $page_for_posts ),
300
- 'target_id' => $data['home_page_id'],
301
- 'sns_options__snsTitle_use_only_postTitle' => true,
302
- 'vkExUnit_sns_title' => null,
303
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
304
- 'package_wp_title' => false,
305
- 'site_name' => 'Site Name',
306
- 'correct' => 'Home',
307
- ),
308
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
309
- array(
310
- 'target_type' => 'is_home',
311
- 'target_url' => get_permalink( $page_for_posts ),
312
- 'target_id' => $data['home_page_id'],
313
- 'sns_options__snsTitle_use_only_postTitle' => true,
314
- 'vkExUnit_sns_title' => 'Custom Title',
315
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
316
- 'package_wp_title' => true,
317
- 'site_name' => 'Site Name',
318
- 'correct' => 'Home',
319
- ),
320
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
321
- array(
322
- 'target_type' => 'is_home',
323
- 'target_url' => get_permalink( $page_for_posts ),
324
- 'target_id' => $data['home_page_id'],
325
- 'sns_options__snsTitle_use_only_postTitle' => true,
326
- 'vkExUnit_sns_title' => 'Custom Title',
327
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
328
- 'package_wp_title' => false,
329
- 'site_name' => 'Site Name',
330
- 'correct' => 'Home',
331
- ),
332
- /**
333
- * 投稿タイプ「イベント」のアーカイブページ
334
- */
335
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
336
- array(
337
- 'target_type' => 'is_archive',
338
- 'target_url' => home_url( '/?post_type=event' ),
339
- 'target_id' => null,
340
- 'sns_options__snsTitle_use_only_postTitle' => false,
341
- 'vkExUnit_sns_title' => null,
342
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
343
- 'package_wp_title' => true,
344
- 'site_name' => 'Site Name',
345
- 'correct' => 'Archives: Event | Site Name',
346
- ),
347
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
348
- array(
349
- 'target_type' => 'is_archive',
350
- 'target_url' => home_url( '/?post_type=event' ),
351
- 'target_id' => null,
352
- 'sns_options__snsTitle_use_only_postTitle' => false,
353
- 'vkExUnit_sns_title' => null,
354
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
355
- 'package_wp_title' => false,
356
- 'site_name' => 'Site Name',
357
- 'correct' => 'Archives: Event | Site Name',
358
- ),
359
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
360
- array(
361
- 'target_type' => 'is_archive',
362
- 'target_url' => home_url( '/?post_type=event' ),
363
- 'target_id' => null,
364
- 'sns_options__snsTitle_use_only_postTitle' => false,
365
- 'vkExUnit_sns_title' => 'Custom Title',
366
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
367
- 'package_wp_title' => true,
368
- 'site_name' => 'Site Name',
369
- 'correct' => 'Archives: Event | Site Name',
370
- ),
371
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
372
- array(
373
- 'target_type' => 'is_archive',
374
- 'target_url' => home_url( '/?post_type=event' ),
375
- 'target_id' => null,
376
- 'sns_options__snsTitle_use_only_postTitle' => false,
377
- 'vkExUnit_sns_title' => 'Custom Title',
378
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
379
- 'package_wp_title' => false,
380
- 'site_name' => 'Site Name',
381
- 'correct' => 'Archives: Event | Site Name',
382
- ),
383
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
384
- array(
385
- 'target_type' => 'is_archive',
386
- 'target_url' => home_url( '/?post_type=event' ),
387
- 'target_id' => null,
388
- 'sns_options__snsTitle_use_only_postTitle' => true,
389
- 'vkExUnit_sns_title' => null,
390
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
391
- 'package_wp_title' => true,
392
- 'site_name' => 'Site Name',
393
- 'correct' => 'Archives: Event',
394
- ),
395
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
396
- array(
397
- 'target_type' => 'is_archive',
398
- 'target_url' => home_url( '/?post_type=event' ),
399
- 'target_id' => null,
400
- 'sns_options__snsTitle_use_only_postTitle' => true,
401
- 'vkExUnit_sns_title' => null,
402
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
403
- 'package_wp_title' => false,
404
- 'site_name' => 'Site Name',
405
- 'correct' => 'Archives: Event',
406
- ),
407
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
408
- array(
409
- 'target_type' => 'is_archive',
410
- 'target_url' => home_url( '/?post_type=event' ),
411
- 'target_id' => null,
412
- 'sns_options__snsTitle_use_only_postTitle' => true,
413
- 'vkExUnit_sns_title' => 'Custom Title',
414
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
415
- 'package_wp_title' => true,
416
- 'site_name' => 'Site Name',
417
- 'correct' => 'Archives: Event',
418
- ),
419
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
420
- array(
421
- 'target_type' => 'is_archive',
422
- 'target_url' => home_url( '/?post_type=event' ),
423
- 'target_id' => null,
424
- 'sns_options__snsTitle_use_only_postTitle' => true,
425
- 'vkExUnit_sns_title' => 'Custom Title',
426
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
427
- 'package_wp_title' => false,
428
- 'site_name' => 'Site Name',
429
- 'correct' => 'Archives: Event',
430
- ),
431
- /**
432
- * 404ページ
433
- */
434
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
435
- array(
436
- 'target_type' => 'is_404',
437
- 'target_url' => home_url( '/?name=event' ),
438
- 'target_id' => null,
439
- 'sns_options__snsTitle_use_only_postTitle' => false,
440
- 'vkExUnit_sns_title' => null,
441
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
442
- 'package_wp_title' => true,
443
- 'site_name' => 'Site Name',
444
- 'correct' => 'Not found | Site Name',
445
- ),
446
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
447
- array(
448
- 'target_type' => 'is_404',
449
- 'target_url' => home_url( '/?name=event' ),
450
- 'target_id' => null,
451
- 'sns_options__snsTitle_use_only_postTitle' => false,
452
- 'vkExUnit_sns_title' => null,
453
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
454
- 'package_wp_title' => false,
455
- 'site_name' => 'Site Name',
456
- 'correct' => 'Not found | Site Name',
457
- ),
458
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
459
- array(
460
- 'target_type' => 'is_404',
461
- 'target_url' => home_url( '/?name=event' ),
462
- 'target_id' => null,
463
- 'sns_options__snsTitle_use_only_postTitle' => false,
464
- 'vkExUnit_sns_title' => 'Custom Title',
465
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
466
- 'package_wp_title' => true,
467
- 'site_name' => 'Site Name',
468
- 'correct' => 'Not found | Site Name',
469
- ),
470
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
471
- array(
472
- 'target_type' => 'is_404',
473
- 'target_url' => home_url( '/?name=event' ),
474
- 'target_id' => null,
475
- 'sns_options__snsTitle_use_only_postTitle' => false,
476
- 'vkExUnit_sns_title' => 'Custom Title',
477
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
478
- 'package_wp_title' => false,
479
- 'site_name' => 'Site Name',
480
- 'correct' => 'Not found | Site Name',
481
- ),
482
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
483
- array(
484
- 'target_type' => 'is_404',
485
- 'target_url' => home_url( '/?name=event' ),
486
- 'target_id' => null,
487
- 'sns_options__snsTitle_use_only_postTitle' => true,
488
- 'vkExUnit_sns_title' => null,
489
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
490
- 'package_wp_title' => true,
491
- 'site_name' => 'Site Name',
492
- 'correct' => 'Not found',
493
- ),
494
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
495
- array(
496
- 'target_type' => 'is_404',
497
- 'target_url' => home_url( '/?name=event' ),
498
- 'target_id' => null,
499
- 'sns_options__snsTitle_use_only_postTitle' => true,
500
- 'vkExUnit_sns_title' => null,
501
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
502
- 'package_wp_title' => false,
503
- 'site_name' => 'Site Name',
504
- 'correct' => 'Not found',
505
- ),
506
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
507
- array(
508
- 'target_type' => 'is_404',
509
- 'target_url' => home_url( '/?name=event' ),
510
- 'target_id' => null,
511
- 'sns_options__snsTitle_use_only_postTitle' => true,
512
- 'vkExUnit_sns_title' => 'Custom Title',
513
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
514
- 'package_wp_title' => true,
515
- 'site_name' => 'Site Name',
516
- 'correct' => 'Not found',
517
- ),
518
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
519
- array(
520
- 'target_type' => 'is_404',
521
- 'target_url' => home_url( '/?name=event' ),
522
- 'target_id' => null,
523
- 'sns_options__snsTitle_use_only_postTitle' => true,
524
- 'vkExUnit_sns_title' => 'Custom Title',
525
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
526
- 'package_wp_title' => false,
527
- 'site_name' => 'Site Name',
528
- 'correct' => 'Not found',
529
- ),
530
- /**
531
- * 検索結果ページ(キーワードなし)
532
- */
533
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
534
- array(
535
- 'target_type' => 'is_search',
536
- 'target_url' => home_url( '/?s=' ),
537
- 'target_id' => null,
538
- 'sns_options__snsTitle_use_only_postTitle' => false,
539
- 'vkExUnit_sns_title' => null,
540
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
541
- 'package_wp_title' => true,
542
- 'site_name' => 'Site Name',
543
- 'correct' => 'Search Results | Site Name',
544
- ),
545
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
546
- array(
547
- 'target_type' => 'is_search',
548
- 'target_url' => home_url( '/?s=' ),
549
- 'target_id' => null,
550
- 'sns_options__snsTitle_use_only_postTitle' => false,
551
- 'vkExUnit_sns_title' => null,
552
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
553
- 'package_wp_title' => false,
554
- 'site_name' => 'Site Name',
555
- 'correct' => 'Search Results | Site Name',
556
- ),
557
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
558
- array(
559
- 'target_type' => 'is_search',
560
- 'target_url' => home_url( '/?s=' ),
561
- 'target_id' => null,
562
- 'sns_options__snsTitle_use_only_postTitle' => false,
563
- 'vkExUnit_sns_title' => 'Custom Title',
564
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
565
- 'package_wp_title' => true,
566
- 'site_name' => 'Site Name',
567
- 'correct' => 'Search Results | Site Name',
568
- ),
569
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
570
- array(
571
- 'target_type' => 'is_search',
572
- 'target_url' => home_url( '/?s=' ),
573
- 'target_id' => null,
574
- 'sns_options__snsTitle_use_only_postTitle' => false,
575
- 'vkExUnit_sns_title' => 'Custom Title',
576
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
577
- 'package_wp_title' => false,
578
- 'site_name' => 'Site Name',
579
- 'correct' => 'Search Results | Site Name',
580
- ),
581
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
582
- array(
583
- 'target_type' => 'is_search',
584
- 'target_url' => home_url( '/?s=' ),
585
- 'target_id' => null,
586
- 'sns_options__snsTitle_use_only_postTitle' => true,
587
- 'vkExUnit_sns_title' => null,
588
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
589
- 'package_wp_title' => true,
590
- 'site_name' => 'Site Name',
591
- 'correct' => 'Search Results',
592
- ),
593
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
594
- array(
595
- 'target_type' => 'is_search',
596
- 'target_url' => home_url( '/?s=' ),
597
- 'target_id' => null,
598
- 'sns_options__snsTitle_use_only_postTitle' => true,
599
- 'vkExUnit_sns_title' => null,
600
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
601
- 'package_wp_title' => false,
602
- 'site_name' => 'Site Name',
603
- 'correct' => 'Search Results',
604
- ),
605
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
606
- array(
607
- 'target_type' => 'is_search',
608
- 'target_url' => home_url( '/?s=' ),
609
- 'target_id' => null,
610
- 'sns_options__snsTitle_use_only_postTitle' => true,
611
- 'vkExUnit_sns_title' => 'Custom Title',
612
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
613
- 'package_wp_title' => true,
614
- 'site_name' => 'Site Name',
615
- 'correct' => 'Search Results',
616
- ),
617
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
618
- array(
619
- 'target_type' => 'is_search',
620
- 'target_url' => home_url( '/?s=' ),
621
- 'target_id' => null,
622
- 'sns_options__snsTitle_use_only_postTitle' => true,
623
- 'vkExUnit_sns_title' => 'Custom Title',
624
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
625
- 'package_wp_title' => false,
626
- 'site_name' => 'Site Name',
627
- 'correct' => 'Search Results',
628
- ),
629
- /**
630
- * 検索結果ページ(キーワードあり)
631
- */
632
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
633
- array(
634
- 'target_type' => 'is_search',
635
- 'target_url' => home_url() . '/?s=Test',
636
- 'target_id' => null,
637
- 'sns_options__snsTitle_use_only_postTitle' => false,
638
- 'vkExUnit_sns_title' => null,
639
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
640
- 'package_wp_title' => true,
641
- 'site_name' => 'Site Name',
642
- 'correct' => 'Search Results for : Test | Site Name',
643
- ),
644
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
645
- array(
646
- 'target_type' => 'is_search',
647
- 'target_url' => home_url() . '/?s=Test',
648
- 'target_id' => null,
649
- 'sns_options__snsTitle_use_only_postTitle' => false,
650
- 'vkExUnit_sns_title' => null,
651
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
652
- 'package_wp_title' => false,
653
- 'site_name' => 'Site Name',
654
- 'correct' => 'Search Results for : Test | Site Name',
655
- ),
656
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
657
- array(
658
- 'target_type' => 'is_search',
659
- 'target_url' => home_url() . '/?s=Test',
660
- 'target_id' => null,
661
- 'sns_options__snsTitle_use_only_postTitle' => false,
662
- 'vkExUnit_sns_title' => 'Custom Title',
663
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
664
- 'package_wp_title' => true,
665
- 'site_name' => 'Site Name',
666
- 'correct' => 'Search Results for : Test | Site Name',
667
- ),
668
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
669
- array(
670
- 'target_type' => 'is_search',
671
- 'target_url' => home_url() . '/?s=Test',
672
- 'target_id' => null,
673
- 'sns_options__snsTitle_use_only_postTitle' => false,
674
- 'vkExUnit_sns_title' => 'Custom Title',
675
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
676
- 'package_wp_title' => false,
677
- 'site_name' => 'Site Name',
678
- 'correct' => 'Search Results for : Test | Site Name',
679
- ),
680
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
681
- array(
682
- 'target_type' => 'is_search',
683
- 'target_url' => home_url() . '/?s=Test',
684
- 'target_id' => null,
685
- 'sns_options__snsTitle_use_only_postTitle' => true,
686
- 'vkExUnit_sns_title' => null,
687
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
688
- 'package_wp_title' => true,
689
- 'site_name' => 'Site Name',
690
- 'correct' => 'Search Results for : Test',
691
- ),
692
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
693
- array(
694
- 'target_type' => 'is_search',
695
- 'target_url' => home_url() . '/?s=Test',
696
- 'target_id' => null,
697
- 'sns_options__snsTitle_use_only_postTitle' => true,
698
- 'vkExUnit_sns_title' => null,
699
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
700
- 'package_wp_title' => false,
701
- 'site_name' => 'Site Name',
702
- 'correct' => 'Search Results for : Test',
703
- ),
704
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
705
- array(
706
- 'target_type' => 'is_search',
707
- 'target_url' => home_url() . '/?s=Test',
708
- 'target_id' => null,
709
- 'sns_options__snsTitle_use_only_postTitle' => true,
710
- 'vkExUnit_sns_title' => 'Custom Title',
711
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
712
- 'package_wp_title' => true,
713
- 'site_name' => 'Site Name',
714
- 'correct' => 'Search Results for : Test',
715
- ),
716
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
717
- array(
718
- 'target_type' => 'is_search',
719
- 'target_url' => home_url() . '/?s=Test',
720
- 'target_id' => null,
721
- 'sns_options__snsTitle_use_only_postTitle' => true,
722
- 'vkExUnit_sns_title' => 'Custom Title',
723
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
724
- 'package_wp_title' => false,
725
- 'site_name' => 'Site Name',
726
- 'correct' => 'Search Results for : Test',
727
- ),
728
- /**
729
- * カテゴリーアーカイブ
730
- */
731
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
732
- array(
733
- 'target_type' => 'is_archive',
734
- 'target_url' => home_url( '/?category_name=category-test' ),
735
- 'target_id' => null,
736
- 'sns_options__snsTitle_use_only_postTitle' => false,
737
- 'vkExUnit_sns_title' => null,
738
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
739
- 'package_wp_title' => true,
740
- 'site_name' => 'Site Name',
741
- 'correct' => 'Category: Category Test | Site Name',
742
- ),
743
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
744
- array(
745
- 'target_type' => 'is_archive',
746
- 'target_url' => home_url( '/?category_name=category-test' ),
747
- 'target_id' => null,
748
- 'sns_options__snsTitle_use_only_postTitle' => false,
749
- 'vkExUnit_sns_title' => null,
750
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
751
- 'package_wp_title' => false,
752
- 'site_name' => 'Site Name',
753
- 'correct' => 'Category: Category Test | Site Name',
754
- ),
755
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
756
- array(
757
- 'target_type' => 'is_archive',
758
- 'target_url' => home_url( '/?category_name=category-test' ),
759
- 'target_id' => null,
760
- 'sns_options__snsTitle_use_only_postTitle' => false,
761
- 'vkExUnit_sns_title' => 'Custom Title',
762
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
763
- 'package_wp_title' => true,
764
- 'site_name' => 'Site Name',
765
- 'correct' => 'Category: Category Test | Site Name',
766
- ),
767
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
768
- array(
769
- 'target_type' => 'is_archive',
770
- 'target_url' => home_url( '/?category_name=category-test' ),
771
- 'target_id' => null,
772
- 'sns_options__snsTitle_use_only_postTitle' => false,
773
- 'vkExUnit_sns_title' => 'Custom Title',
774
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
775
- 'package_wp_title' => false,
776
- 'site_name' => 'Site Name',
777
- 'correct' => 'Category: Category Test | Site Name',
778
- ),
779
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
780
- array(
781
- 'target_type' => 'is_archive',
782
- 'target_url' => home_url( '/?category_name=category-test' ),
783
- 'target_id' => null,
784
- 'sns_options__snsTitle_use_only_postTitle' => true,
785
- 'vkExUnit_sns_title' => null,
786
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
787
- 'package_wp_title' => true,
788
- 'site_name' => 'Site Name',
789
- 'correct' => 'Category: Category Test',
790
- ),
791
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
792
- array(
793
- 'target_type' => 'is_archive',
794
- 'target_url' => home_url( '/?category_name=category-test' ),
795
- 'target_id' => null,
796
- 'sns_options__snsTitle_use_only_postTitle' => true,
797
- 'vkExUnit_sns_title' => null,
798
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
799
- 'package_wp_title' => false,
800
- 'site_name' => 'Site Name',
801
- 'correct' => 'Category: Category Test',
802
- ),
803
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
804
- array(
805
- 'target_type' => 'is_archive',
806
- 'target_url' => home_url( '/?category_name=category-test' ),
807
- 'target_id' => null,
808
- 'sns_options__snsTitle_use_only_postTitle' => true,
809
- 'vkExUnit_sns_title' => 'Custom Title',
810
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
811
- 'package_wp_title' => true,
812
- 'site_name' => 'Site Name',
813
- 'correct' => 'Category: Category Test',
814
- ),
815
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
816
- array(
817
- 'target_type' => 'is_archive',
818
- 'target_url' => home_url( '/?category_name=category-test' ),
819
- 'target_id' => null,
820
- 'sns_options__snsTitle_use_only_postTitle' => true,
821
- 'vkExUnit_sns_title' => 'Custom Title',
822
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
823
- 'package_wp_title' => false,
824
- 'site_name' => 'Site Name',
825
- 'correct' => 'Category: Category Test',
826
- ),
827
- /**
828
- * イベントカテゴリーアーカイブ
829
- */
830
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
831
- array(
832
- 'target_type' => 'is_archive',
833
- 'target_url' => home_url( '/?event_cat=event-category-test' ),
834
- 'target_id' => null,
835
- 'sns_options__snsTitle_use_only_postTitle' => false,
836
- 'vkExUnit_sns_title' => null,
837
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
838
- 'package_wp_title' => true,
839
- 'site_name' => 'Site Name',
840
- 'correct' => 'Event Category: Event Category Test | Site Name',
841
- ),
842
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
843
- array(
844
- 'target_type' => 'is_archive',
845
- 'target_url' => home_url( '/?event_cat=event-category-test' ),
846
- 'target_id' => null,
847
- 'sns_options__snsTitle_use_only_postTitle' => false,
848
- 'vkExUnit_sns_title' => null,
849
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
850
- 'package_wp_title' => false,
851
- 'site_name' => 'Site Name',
852
- 'correct' => 'Event Category: Event Category Test | Site Name',
853
- ),
854
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
855
- array(
856
- 'target_type' => 'is_archive',
857
- 'target_url' => home_url( '/?event_cat=event-category-test' ),
858
- 'target_id' => null,
859
- 'sns_options__snsTitle_use_only_postTitle' => false,
860
- 'vkExUnit_sns_title' => 'Custom Title',
861
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
862
- 'package_wp_title' => true,
863
- 'site_name' => 'Site Name',
864
- 'correct' => 'Event Category: Event Category Test | Site Name',
865
- ),
866
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
867
- array(
868
- 'target_type' => 'is_archive',
869
- 'target_url' => home_url( '/?event_cat=event-category-test' ),
870
- 'target_id' => null,
871
- 'sns_options__snsTitle_use_only_postTitle' => false,
872
- 'vkExUnit_sns_title' => 'Custom Title',
873
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
874
- 'package_wp_title' => false,
875
- 'site_name' => 'Site Name',
876
- 'correct' => 'Event Category: Event Category Test | Site Name',
877
- ),
878
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
879
- array(
880
- 'target_type' => 'is_archive',
881
- 'target_url' => home_url( '/?event_cat=event-category-test' ),
882
- 'target_id' => null,
883
- 'sns_options__snsTitle_use_only_postTitle' => true,
884
- 'vkExUnit_sns_title' => null,
885
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
886
- 'package_wp_title' => true,
887
- 'site_name' => 'Site Name',
888
- 'correct' => 'Event Category: Event Category Test',
889
- ),
890
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
891
- array(
892
- 'target_type' => 'is_archive',
893
- 'target_url' => home_url( '/?event_cat=event-category-test' ),
894
- 'target_id' => null,
895
- 'sns_options__snsTitle_use_only_postTitle' => true,
896
- 'vkExUnit_sns_title' => null,
897
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
898
- 'package_wp_title' => false,
899
- 'site_name' => 'Site Name',
900
- 'correct' => 'Event Category: Event Category Test',
901
- ),
902
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
903
- array(
904
- 'target_type' => 'is_archive',
905
- 'target_url' => home_url( '/?event_cat=event-category-test' ),
906
- 'target_id' => null,
907
- 'sns_options__snsTitle_use_only_postTitle' => true,
908
- 'vkExUnit_sns_title' => 'Custom Title',
909
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
910
- 'package_wp_title' => true,
911
- 'site_name' => 'Site Name',
912
- 'correct' => 'Event Category: Event Category Test',
913
- ),
914
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
915
- array(
916
- 'target_type' => 'is_archive',
917
- 'target_url' => home_url( '/?event_cat=event-category-test' ),
918
- 'target_id' => null,
919
- 'sns_options__snsTitle_use_only_postTitle' => true,
920
- 'vkExUnit_sns_title' => 'Custom Title',
921
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
922
- 'package_wp_title' => false,
923
- 'site_name' => 'Site Name',
924
- 'correct' => 'Event Category: Event Category Test',
925
- ),
926
- /**
927
- * 固定ページ
928
- */
929
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
930
- array(
931
- 'target_type' => 'is_singular',
932
- 'target_url' => get_permalink( $data['page_id'] ),
933
- 'target_id' => $data['page_id'],
934
- 'sns_options__snsTitle_use_only_postTitle' => false,
935
- 'vkExUnit_sns_title' => null,
936
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
937
- 'package_wp_title' => true,
938
- 'site_name' => 'Site Name',
939
- 'correct' => 'Page Test | Site Name',
940
- ),
941
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
942
- array(
943
- 'target_type' => 'is_singular',
944
- 'target_url' => get_permalink( $data['page_id'] ),
945
- 'target_id' => $data['page_id'],
946
- 'sns_options__snsTitle_use_only_postTitle' => false,
947
- 'vkExUnit_sns_title' => null,
948
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
949
- 'package_wp_title' => false,
950
- 'site_name' => 'Site Name',
951
- 'correct' => 'Page Test | Site Name',
952
- ),
953
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
954
- array(
955
- 'target_type' => 'is_singular',
956
- 'target_url' => get_permalink( $data['page_id'] ),
957
- 'target_id' => $data['page_id'],
958
- 'sns_options__snsTitle_use_only_postTitle' => false,
959
- 'vkExUnit_sns_title' => 'Custom Title',
960
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
961
- 'package_wp_title' => true,
962
- 'site_name' => 'Site Name',
963
- 'correct' => 'Custom Title',
964
- ),
965
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
966
- array(
967
- 'target_type' => 'is_singular',
968
- 'target_url' => get_permalink( $data['page_id'] ),
969
- 'target_id' => $data['page_id'],
970
- 'sns_options__snsTitle_use_only_postTitle' => false,
971
- 'vkExUnit_sns_title' => 'Custom Title',
972
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
973
- 'package_wp_title' => false,
974
- 'site_name' => 'Site Name',
975
- 'correct' => 'Custom Title',
976
- ),
977
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
978
- array(
979
- 'target_type' => 'is_singular',
980
- 'target_url' => get_permalink( $data['page_id'] ),
981
- 'target_id' => $data['page_id'],
982
- 'sns_options__snsTitle_use_only_postTitle' => true,
983
- 'vkExUnit_sns_title' => null,
984
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
985
- 'package_wp_title' => true,
986
- 'site_name' => 'Site Name',
987
- 'correct' => 'Page Test',
988
- ),
989
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
990
- array(
991
- 'target_type' => 'is_singular',
992
- 'target_url' => get_permalink( $data['page_id'] ),
993
- 'target_id' => $data['page_id'],
994
- 'sns_options__snsTitle_use_only_postTitle' => true,
995
- 'vkExUnit_sns_title' => null,
996
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
997
- 'package_wp_title' => false,
998
- 'site_name' => 'Site Name',
999
- 'correct' => 'Page Test',
1000
- ),
1001
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
1002
- array(
1003
- 'target_type' => 'is_singular',
1004
- 'target_url' => get_permalink( $data['page_id'] ),
1005
- 'target_id' => $data['page_id'],
1006
- 'sns_options__snsTitle_use_only_postTitle' => true,
1007
- 'vkExUnit_sns_title' => 'Custom Title',
1008
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1009
- 'package_wp_title' => true,
1010
- 'site_name' => 'Site Name',
1011
- 'correct' => 'Custom Title',
1012
- ),
1013
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
1014
- array(
1015
- 'target_type' => 'is_singular',
1016
- 'target_url' => get_permalink( $data['page_id'] ),
1017
- 'target_id' => $data['page_id'],
1018
- 'sns_options__snsTitle_use_only_postTitle' => true,
1019
- 'vkExUnit_sns_title' => 'Custom Title',
1020
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1021
- 'package_wp_title' => false,
1022
- 'site_name' => 'Site Name',
1023
- 'correct' => 'Custom Title',
1024
- ),
1025
- /**
1026
- * 投稿詳細ページ
1027
- */
1028
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
1029
- array(
1030
- 'target_type' => 'is_singular',
1031
- 'target_url' => get_permalink( $data['post_id'] ),
1032
- 'target_id' => $data['post_id'],
1033
- 'sns_options__snsTitle_use_only_postTitle' => false,
1034
- 'vkExUnit_sns_title' => null,
1035
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1036
- 'package_wp_title' => true,
1037
- 'site_name' => 'Site Name',
1038
- 'correct' => 'Post Test | Site Name',
1039
- ),
1040
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
1041
- array(
1042
- 'target_type' => 'is_singular',
1043
- 'target_url' => get_permalink( $data['post_id'] ),
1044
- 'target_id' => $data['post_id'],
1045
- 'sns_options__snsTitle_use_only_postTitle' => false,
1046
- 'vkExUnit_sns_title' => null,
1047
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1048
- 'package_wp_title' => false,
1049
- 'site_name' => 'Site Name',
1050
- 'correct' => 'Post Test | Site Name',
1051
- ),
1052
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
1053
- array(
1054
- 'target_type' => 'is_singular',
1055
- 'target_url' => get_permalink( $data['post_id'] ),
1056
- 'target_id' => $data['post_id'],
1057
- 'sns_options__snsTitle_use_only_postTitle' => false,
1058
- 'vkExUnit_sns_title' => 'Custom Title',
1059
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1060
- 'package_wp_title' => true,
1061
- 'site_name' => 'Site Name',
1062
- 'correct' => 'Custom Title',
1063
- ),
1064
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
1065
- array(
1066
- 'target_type' => 'is_singular',
1067
- 'target_url' => get_permalink( $data['post_id'] ),
1068
- 'target_id' => $data['post_id'],
1069
- 'sns_options__snsTitle_use_only_postTitle' => false,
1070
- 'vkExUnit_sns_title' => 'Custom Title',
1071
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1072
- 'package_wp_title' => false,
1073
- 'site_name' => 'Site Name',
1074
- 'correct' => 'Custom Title',
1075
- ),
1076
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
1077
- array(
1078
- 'target_type' => 'is_singular',
1079
- 'target_url' => get_permalink( $data['post_id'] ),
1080
- 'target_id' => $data['post_id'],
1081
- 'sns_options__snsTitle_use_only_postTitle' => true,
1082
- 'vkExUnit_sns_title' => null,
1083
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1084
- 'package_wp_title' => true,
1085
- 'site_name' => 'Site Name',
1086
- 'correct' => 'Post Test',
1087
- ),
1088
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
1089
- array(
1090
- 'target_type' => 'is_singular',
1091
- 'target_url' => get_permalink( $data['post_id'] ),
1092
- 'target_id' => $data['post_id'],
1093
- 'sns_options__snsTitle_use_only_postTitle' => true,
1094
- 'vkExUnit_sns_title' => null,
1095
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1096
- 'package_wp_title' => false,
1097
- 'site_name' => 'Site Name',
1098
- 'correct' => 'Post Test',
1099
- ),
1100
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
1101
- array(
1102
- 'target_type' => 'is_singular',
1103
- 'target_url' => get_permalink( $data['post_id'] ),
1104
- 'target_id' => $data['post_id'],
1105
- 'sns_options__snsTitle_use_only_postTitle' => true,
1106
- 'vkExUnit_sns_title' => 'Custom Title',
1107
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1108
- 'package_wp_title' => true,
1109
- 'site_name' => 'Site Name',
1110
- 'correct' => 'Custom Title',
1111
- ),
1112
- // サイト名あなし+ SNS タイトルあり + タイトル書き換えなし
1113
- array(
1114
- 'target_type' => 'is_singular',
1115
- 'target_url' => get_permalink( $data['post_id'] ),
1116
- 'target_id' => $data['post_id'],
1117
- 'sns_options__snsTitle_use_only_postTitle' => true,
1118
- 'vkExUnit_sns_title' => 'Custom Title',
1119
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1120
- 'package_wp_title' => false,
1121
- 'site_name' => 'Site Name',
1122
- 'correct' => 'Custom Title',
1123
- ),
1124
- /**
1125
- * イベント詳細ページ
1126
- */
1127
- // サイト名あり + SNS タイトルなし + タイトル書き換えあり
1128
- array(
1129
- 'target_type' => 'is_singular',
1130
- 'target_url' => get_permalink( $data['event_id'] ),
1131
- 'target_id' => $data['event_id'],
1132
- 'sns_options__snsTitle_use_only_postTitle' => false,
1133
- 'vkExUnit_sns_title' => null,
1134
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1135
- 'package_wp_title' => true,
1136
- 'site_name' => 'Site Name',
1137
- 'correct' => 'Event Test | Site Name',
1138
- ),
1139
- // サイト名あり + SNS タイトルなし + タイトル書き換えなし
1140
- array(
1141
- 'target_type' => 'is_singular',
1142
- 'target_url' => get_permalink( $data['event_id'] ),
1143
- 'target_id' => $data['event_id'],
1144
- 'sns_options__snsTitle_use_only_postTitle' => false,
1145
- 'vkExUnit_sns_title' => null,
1146
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1147
- 'package_wp_title' => false,
1148
- 'site_name' => 'Site Name',
1149
- 'correct' => 'Event Test | Site Name',
1150
- ),
1151
- // サイト名あり + SNS タイトルあり + タイトル書き換えあり
1152
- array(
1153
- 'target_type' => 'is_singular',
1154
- 'target_url' => get_permalink( $data['event_id'] ),
1155
- 'target_id' => $data['event_id'],
1156
- 'sns_options__snsTitle_use_only_postTitle' => false,
1157
- 'vkExUnit_sns_title' => 'Custom Title',
1158
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1159
- 'package_wp_title' => true,
1160
- 'site_name' => 'Site Name',
1161
- 'correct' => 'Custom Title',
1162
- ),
1163
- // サイト名あり + SNS タイトルあり + タイトル書き換えなし
1164
- array(
1165
- 'target_type' => 'is_singular',
1166
- 'target_url' => get_permalink( $data['event_id'] ),
1167
- 'target_id' => $data['event_id'],
1168
- 'sns_options__snsTitle_use_only_postTitle' => false,
1169
- 'vkExUnit_sns_title' => 'Custom Title',
1170
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1171
- 'package_wp_title' => false,
1172
- 'site_name' => 'Site Name',
1173
- 'correct' => 'Custom Title',
1174
- ),
1175
- // サイト名なし + SNS タイトルなし + タイトル書き換えあり
1176
- array(
1177
- 'target_type' => 'is_singular',
1178
- 'target_url' => get_permalink( $data['event_id'] ),
1179
- 'target_id' => $data['event_id'],
1180
- 'sns_options__snsTitle_use_only_postTitle' => true,
1181
- 'vkExUnit_sns_title' => null,
1182
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1183
- 'package_wp_title' => true,
1184
- 'site_name' => 'Site Name',
1185
- 'correct' => 'Event Test',
1186
- ),
1187
- // サイト名なし + SNS タイトルなし + タイトル書き換えなし
1188
- array(
1189
- 'target_type' => 'is_singular',
1190
- 'target_url' => get_permalink( $data['event_id'] ),
1191
- 'target_id' => $data['event_id'],
1192
- 'sns_options__snsTitle_use_only_postTitle' => true,
1193
- 'vkExUnit_sns_title' => null,
1194
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1195
- 'package_wp_title' => false,
1196
- 'site_name' => 'Site Name',
1197
- 'correct' => 'Event Test',
1198
- ),
1199
- // サイト名なし + SNS タイトルあり + タイトル書き換えあり
1200
- array(
1201
- 'target_type' => 'is_singular',
1202
- 'target_url' => get_permalink( $data['event_id'] ),
1203
- 'target_id' => $data['event_id'],
1204
- 'sns_options__snsTitle_use_only_postTitle' => true,
1205
- 'vkExUnit_sns_title' => 'Custom Title',
1206
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1207
- 'package_wp_title' => true,
1208
- 'site_name' => 'Site Name',
1209
- 'correct' => 'Custom Title',
1210
- ),
1211
- // サイト名なし+ SNS タイトルあり + タイトル書き換えなし
1212
- array(
1213
- 'target_type' => 'is_singular',
1214
- 'target_url' => get_permalink( $data['event_id'] ),
1215
- 'target_id' => $data['event_id'],
1216
- 'sns_options__snsTitle_use_only_postTitle' => true,
1217
- 'vkExUnit_sns_title' => 'Custom Title',
1218
- 'vkExUnit_wp_title' => array( 'extend_frontTitle' => 'ExUnitCustomFrontTitle' ),
1219
- 'package_wp_title' => false,
1220
- 'site_name' => 'Site Name',
1221
- 'correct' => 'Custom Title',
1222
- ),
1223
- );
1224
-
1225
- $before_blogname = get_option( 'blogname' );
1226
- $before_vkExUnit_sns_options = get_option( 'vkExUnit_sns_options' );
1227
- $before_vkExUnit_wp_title = get_option( 'vkExUnit_wp_title' );
1228
- $before_vkExUnit_common_options = get_option( 'vkExUnit_common_options' );
1229
-
1230
- foreach ( $test_array as $key => $test_value ) {
1231
-
1232
- $post_id = $test_value['target_id'];
1233
-
1234
- // Set Site Name
1235
- update_option( 'blogname', $test_value['site_name'] );
1236
-
1237
- // サイトタイトルの表示有無
1238
- $vkExUnit_sns_options['snsTitle_use_only_postTitle'] = $test_value['sns_options__snsTitle_use_only_postTitle'];
1239
- update_option( 'vkExUnit_sns_options', $vkExUnit_sns_options );
1240
-
1241
- // SNS タイトルの設定
1242
- if (
1243
- 'is_front_page' === $test_value['target_type'] ||
1244
- 'is_home' === $test_value['target_type'] ||
1245
- 'is_singular' === $test_value['target_type']
1246
- ) {
1247
- if ($test_value['vkExUnit_sns_title'] !== null ) {
1248
- add_post_meta( $post_id, 'vkExUnit_sns_title', $test_value['vkExUnit_sns_title'] );
1249
- } else {
1250
- delete_post_meta( $post_id, 'vkExUnit_sns_title' );
1251
- }
1252
- }
1253
- update_option( 'vkExUnit_wp_title', $test_value['vkExUnit_wp_title'] );
1254
-
1255
- // タイトル書き換えの設定
1256
- if ( $test_value['package_wp_title'] === false ) {
1257
- $options = get_option( 'vkExUnit_common_options' );
1258
- $options['active_wpTitle'] = false;
1259
- update_option( 'vkExUnit_common_options', $options );
1260
- } elseif ( $test_value['package_wp_title'] === true ) {
1261
- $options = get_option( 'vkExUnit_common_options' );
1262
- $options['active_wpTitle'] = true;
1263
- update_option( 'vkExUnit_common_options', $options );
1264
- }
1265
- // URL に移動
1266
- $this->go_to( $test_value['target_url'] );
1267
- $return = veu_get_the_sns_title();
1268
-
1269
- // 取得できたHTMLが、意図したHTMLと等しいかテスト
1270
- $this->assertEquals( $test_value['correct'], $return );
1271
-
1272
- print PHP_EOL;
1273
-
1274
- print 'correct ::::' . $test_value['correct'] . PHP_EOL;
1275
- print 'return ::::' . $return . PHP_EOL;
1276
-
1277
-
1278
- }
1279
-
1280
- foreach ( $data as $key => $value ) {
1281
- delete_post_meta( $value, 'vkExUnit_sns_title' );
1282
- wp_delete_post( $value );
1283
- }
1284
-
1285
- wp_reset_postdata();
1286
- wp_reset_query();
1287
-
1288
- // もとの値に戻す
1289
- update_option( 'vkExUnit_sns_options', $before_vkExUnit_sns_options );
1290
- update_option( 'blogname', $before_blogname );
1291
- update_option( 'vkExUnit_wp_title', $before_vkExUnit_wp_title );
1292
- update_option( 'vkExUnit_common_options', $before_vkExUnit_common_options );
1293
- update_option( 'page_for_posts', $before_page_for_posts ); // 投稿トップに指定するページ
1294
- update_option( 'page_on_front', $before_page_on_front ); // フロントに指定する固定ページ
1295
- update_option( 'show_on_front', $before_show_on_front ); // トップページ指定するかどうか page or posts
1296
-
1297
- }
1298
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-template-tags.php DELETED
@@ -1,61 +0,0 @@
1
- <?php
2
- /**
3
- * Class TemplateTagsTest
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
- /*
8
- cd /app
9
- bash setup-phpunit.sh
10
- source ~/.bashrc
11
- cd $(wp plugin path --dir vk-all-in-one-expansion-unit)
12
- phpunit
13
- */
14
-
15
-
16
- class TemplateTagsTest extends WP_UnitTestCase {
17
-
18
- function test_vk_the_post_type_check_list_saved_array_convert() {
19
-
20
- $tests = array(
21
- array(
22
- 'option' => array(
23
- 'post' => true,
24
- 'info' => '',
25
- ),
26
- 'correct' => array( 'post' ),
27
- ),
28
- array(
29
- 'option' => array(
30
- 'post' => true,
31
- 'info' => true,
32
- ),
33
- 'correct' => array( 'post', 'info' ),
34
- ),
35
- array(
36
- 'option' => array(
37
- 'post' => 'true',
38
- 'info' => true,
39
- ),
40
- 'correct' => array( 'post', 'info' ),
41
- ),
42
- );
43
-
44
- print PHP_EOL;
45
- print '------------------------------------' . PHP_EOL;
46
- print 'test_vk_the_post_type_check_list_saved_array_convert' . PHP_EOL;
47
- print '------------------------------------' . PHP_EOL;
48
- foreach ( $tests as $key => $test_value ) {
49
- update_option( 'vkExUnit_Ads', $test_value['option'] );
50
-
51
- $return = vk_the_post_type_check_list_saved_array_convert( $test_value['option'] );
52
-
53
- // PHPunit
54
- $this->assertEquals( $test_value['correct'], $return );
55
- print PHP_EOL;
56
- // 帰り値が配列だから print してもエラーになるだけなのでコメントアウト
57
- // print 'return :' . $return. PHP_EOL;
58
- // print 'correct :' . $test_value['correct'] . PHP_EOL;
59
- }
60
- }
61
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-widget-btn.php DELETED
@@ -1,56 +0,0 @@
1
- <?php
2
- /**
3
- * Class WidgetPage
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * WidgetPage test case.
10
- */
11
- class WidgetBtnTest extends WP_UnitTestCase {
12
-
13
- function test_get_btn_options() {
14
- $tests = array(
15
- array(
16
- 'maintext' => 'メインテキスト',
17
- 'title' => null,
18
- 'correct' => 'メインテキスト',
19
- ),
20
- array(
21
- 'maintext' => 'メインテキスト',
22
- 'title' => '',
23
- 'correct' => '',
24
- ),
25
- array(
26
- 'maintext' => 'メインテキスト',
27
- 'title' => 'タイトル',
28
- 'correct' => 'タイトル',
29
- ),
30
- array(
31
- 'maintext' => null,
32
- 'title' => 'タイトル',
33
- 'correct' => 'タイトル',
34
- ),
35
- array(
36
- 'maintext' => '',
37
- 'title' => 'タイトル',
38
- 'correct' => 'タイトル',
39
- ),
40
- );
41
-
42
- print PHP_EOL;
43
- print '------------------------------------' . PHP_EOL;
44
- print 'WP_Widget_Button' . PHP_EOL;
45
- print '------------------------------------' . PHP_EOL;
46
- foreach ( $tests as $key => $test_value ) {
47
- $return = WP_Widget_Button::get_btn_options( $test_value );
48
- $this->assertEquals( $test_value['correct'], $return['title'] );
49
-
50
- print PHP_EOL;
51
- print 'return :' . $return['title'] . PHP_EOL;
52
- print 'correct :' . $test_value['correct'] . PHP_EOL;
53
- }
54
- }
55
-
56
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-widget-new-post.php DELETED
@@ -1,70 +0,0 @@
1
- <?php
2
- /**
3
- * Class WidgetPage
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * WidgetPage test case.
10
- */
11
- class WidgetNewPostsTest extends WP_UnitTestCase {
12
-
13
- /**
14
- * アイコンカラー出力CSSのテスト
15
- */
16
- function test_WP_Widget_vkExUnit_post_list__more_link_html() {
17
- // テスト用の投稿を追加する
18
-
19
- print PHP_EOL;
20
- print '------------------------------------' . PHP_EOL;
21
- print 'test_WP_Widget_vkExUnit_post_list__more_link_html' . PHP_EOL;
22
- print '------------------------------------' . PHP_EOL;
23
-
24
- $test_array = array(
25
- // URLも表記テキストも未定義の場合(既存ユーザー) → 何も出力しない
26
- array(
27
- 'correct_more_link_html' => '',
28
- ),
29
- // どちらも定義されている → リンクテキストを表示
30
- array(
31
- 'more_url' => 'https://vektor-inc.co.jp',
32
- 'more_text' => '一覧を見る ≫',
33
- 'correct_more_link_html' => '<div class="postList_more"><a href="https://vektor-inc.co.jp">一覧を見る ≫</a></div>',
34
- ),
35
- // 表記テキストは入力されている URLが入力されていない → 何も出力しない
36
- array(
37
- 'more_url' => '',
38
- 'more_text' => '一覧を見る ≫',
39
- 'correct_more_link_html' => '',
40
- ),
41
- // URLは入力されている 表記テキストは入力されていない → 何も出力しない
42
- array(
43
- 'more_url' => 'https://vektor-inc.co.jp',
44
- 'more_text' => '',
45
- 'correct_more_link_html' => '',
46
- ),
47
- // どちらも定義されていない
48
- array(
49
- 'more_url' => '',
50
- 'more_text' => '',
51
- 'correct_more_link_html' => '',
52
- ),
53
- );
54
-
55
- foreach ( $test_array as $key => $test_value ) {
56
-
57
- // 一覧へリンクのHTMLを取得
58
- $more_link_html = WP_Widget_vkExUnit_post_list::more_link_html( $test_value );
59
-
60
- // 取得できたHTMLが、意図したHTMLと等しいかテスト
61
- $this->assertEquals( $test_value['correct_more_link_html'], $more_link_html );
62
-
63
- print PHP_EOL;
64
- print 'correct_more_link_html :' . $test_value['correct_more_link_html'] . PHP_EOL;
65
- print 'more_link_html :' . $more_link_html . PHP_EOL;
66
- }
67
-
68
- $this->assertTrue( true );
69
- }
70
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-widget-page.php DELETED
@@ -1,164 +0,0 @@
1
- <?php
2
- /**
3
- * Class WidgetPage
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * WidgetPage test case.
10
- */
11
- class WidgetPage extends WP_UnitTestCase {
12
-
13
- /**
14
- * A single example test.
15
- */
16
-
17
- // 子ページインデックス機能がアクティブかどうか
18
- function test_is_active_child_page_index(){
19
- $tests = array(
20
- array(
21
- 'active_childPageIndex' => null, // 5.7.4 以前を利用で一度も有効化設定を保存していないユーザー
22
- 'correct' => true,
23
- ),
24
- array(
25
- 'active_childPageIndex' => true, // 有効化設定で保存している or 5.7.5以降のユーザー
26
- 'correct' => true,
27
- ),
28
- array(
29
- 'active_childPageIndex' => false, // 無効化しているユーザー
30
- 'correct' => false,
31
- ),
32
- );
33
-
34
- foreach ($tests as $key => $value) {
35
- $resurt = WP_Widget_vkExUnit_widget_page::is_active_child_page_index( $value );
36
- $this->assertEquals( $value['correct'], $resurt );
37
- }
38
- }
39
-
40
- // 先祖階層からのページリスト表示機能がアクティブかどうか
41
- function test_is_active_page_list_ancestor(){
42
- $tests = array(
43
- array(
44
- 'active_pageList_ancestor' => null, // 5.7.4 以前を利用で一度も有効化設定を保存していないユーザー
45
- 'correct' => true,
46
- ),
47
- array(
48
- 'active_pageList_ancestor' => true, // 有効化設定で保存している or 5.7.5以降のユーザー
49
- 'correct' => true,
50
- ),
51
- array(
52
- 'active_pageList_ancestor' => false, // 無効化しているユーザー
53
- 'correct' => false,
54
- ),
55
- );
56
-
57
- foreach ($tests as $key => $value) {
58
- $resurt = WP_Widget_vkExUnit_widget_page::is_active_page_list_ancestor( $value );
59
- $this->assertEquals( $value['correct'], $resurt );
60
- }
61
- }
62
-
63
- function test_widget_page() {
64
- // テスト用の投稿を追加する
65
-
66
- // 投稿ステータスが「公開」の固定ページを作成
67
- $post = array(
68
- 'post_name' => 'test-page-slug',
69
- 'post_title' => '固定ページのタイトルです',
70
- 'post_status' => 'publish',
71
- 'post_type' => 'page',
72
- );
73
- $id_publish = wp_insert_post( $post );
74
-
75
- // 投稿ステータスが「非公開」の固定ページを作成
76
- $post = array(
77
- 'post_name' => 'test-page-slug',
78
- 'post_title' => '固定ページのタイトルです(非公開)',
79
- 'post_status' => 'private',
80
- 'post_type' => 'page',
81
- );
82
- $id_private = wp_insert_post( $post );
83
-
84
- $test_array = array(
85
-
86
- // versiton - 5.4
87
- array(
88
- 'title' => null,
89
- 'set_title' => null,
90
- 'page_id' => $id_publish, // いくつでも関係ないはず
91
- 'title_correct' => null,
92
- 'display_correct' => false
93
- ),
94
- array(
95
- 'title' => null,
96
- 'set_title' => true,
97
- 'page_id' => $id_publish, // いくつでも関係ないはず
98
- 'title_correct' => '固定ページのタイトルです',
99
- 'display_correct' => true
100
- ),
101
-
102
- // versiton 5.4 -
103
- array(
104
- 'title' => 'ウィジェットに入力されたタイトル',
105
- 'set_title' => 'title-widget',
106
- 'page_id' => $id_publish, // いくつでも関係ないはず
107
- 'title_correct' => 'ウィジェットに入力されたタイトル',
108
- 'display_correct' => true
109
- ),
110
- array(
111
- 'title' => 'ウィジェットに入力されたタイトル',
112
- 'set_title' => 'title-hidden',
113
- 'page_id' => $id_publish, // いくつでも関係ないはず
114
- 'title_correct' => '',
115
- 'display_correct' => false
116
- ),
117
- array(
118
- 'title' => 'ウィジェットに入力されたタイトル',
119
- 'set_title' => 'title-page',
120
- 'page_id' => $id_publish,
121
- 'title_correct' => '固定ページのタイトルです',
122
- 'display_correct' => true
123
- ),
124
- array(
125
- 'title' => '',
126
- 'set_title' => 'title-page',
127
- 'page_id' => $id_publish,
128
- 'title_correct' => '固定ページのタイトルです',
129
- 'display_correct' => true
130
- ),
131
- array(
132
- 'title' => '',
133
- 'set_title' => 'title-page',
134
- 'page_id' => $id_private,
135
- 'title_correct' => '固定ページのタイトルです(非公開)',
136
- 'display_correct' => true
137
- ),
138
- );
139
-
140
- print PHP_EOL;
141
- print '------------------------------------'.PHP_EOL;
142
- print 'test_widget_page'.PHP_EOL;
143
- print '------------------------------------'.PHP_EOL;
144
- foreach ( $test_array as $key => $test_value) {
145
- // instanceに投げる変数を代入
146
- $instance['title'] = $test_value['title'];
147
- $instance['set_title'] = $test_value['set_title'];
148
- $instance['page_id'] = $test_value['page_id'];
149
-
150
- // widget_title() で タイトル情報を取得
151
- $widget_title = WP_Widget_vkExUnit_widget_page::widget_title( $instance );
152
- print PHP_EOL;
153
- print 'widget_title :'.$widget_title['title'].PHP_EOL;
154
- print 'widget_title correct :'.$test_value['title_correct'].PHP_EOL;
155
- print 'widget_display :'.$widget_title['display'].PHP_EOL;
156
- print 'widget_display_correct :'.$test_value['display_correct'].PHP_EOL;
157
- // 取得できたタイトルの値と、想定する正しいタイトル名が等しいかテスト
158
- $this->assertEquals( $test_value['title_correct'], $widget_title['title'] );
159
- $this->assertEquals( $test_value['display_correct'], $widget_title['display'] );
160
- }
161
-
162
- $this->assertTrue( true );
163
- }
164
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-widget-profile.php DELETED
@@ -1,179 +0,0 @@
1
- <?php
2
- /**
3
- * Class WidgetPage
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
-
8
- /**
9
- * WidgetPage test case.
10
- */
11
- class WidgetProfileTest extends WP_UnitTestCase {
12
-
13
- function test_image_align() {
14
-
15
- $test_media_align = array(
16
- // 旧フィールドが保存されている / 新フィールド(media_align)未保存の場合
17
- array(
18
- 'mediaAlign_left' => '',
19
- 'mediaAlign' => null,
20
- 'correct_media_align_flag' => 'center',
21
- ),
22
- array(
23
- 'mediaAlign_left' => true,
24
- 'mediaAlign' => null,
25
- 'correct_media_align_flag' => 'left',
26
- ),
27
-
28
- // 旧フィールドが保存されている / 新フィールドも保存されている
29
- array(
30
- 'mediaAlign_left' => false, // 中央指定
31
- 'mediaAlign' => 'left', // 左指定
32
- 'correct_media_align_flag' => 'left',
33
- ),
34
- array(
35
- 'mediaAlign_left' => true, // 左指定
36
- 'mediaAlign' => 'center', // 中央指定
37
- 'correct_media_align_flag' => 'center',
38
- ),
39
-
40
- array(
41
- 'mediaAlign' => 'left',
42
- 'correct_media_align_flag' => 'left',
43
- ),
44
- array(
45
- 'mediaAlign' => 'center',
46
- 'correct_media_align_flag' => 'center',
47
- ),
48
- );
49
-
50
- foreach ( $test_media_align as $key => $test_value) {
51
- $media_align = WP_Widget_vkExUnit_profile::image_align( $test_value );
52
- $this->assertEquals( $test_value['correct_media_align_flag'], $media_align );
53
- }
54
-
55
- } // function test_image_align() {
56
-
57
-
58
- function test_image_outer_size_css() {
59
- /*
60
- round => true の場合 トリミングはtrue
61
- */
62
- $test_image_outer_size_css = array(
63
- /* ピン角の場合 */
64
- array(
65
- 'mediaSize' => false,
66
- 'mediaRound' => false,
67
- 'correct_media_outer_size_css' => '',
68
- 'correct_media_width' => 'max-height:100%;', // CSS側で指定
69
- 'correct_media_height' => 'auto', // CSS側で指定
70
- ),
71
- array(
72
- 'mediaSize' => null,
73
- 'mediaRound' => null,
74
- 'correct_media_outer_size_css' => '',
75
- 'correct_media_width' => 'max-height:100%;', // CSS側で指定
76
- 'correct_media_height' => 'auto', // CSS側で指定
77
- ),
78
- array(
79
- 'mediaSize' => '200',
80
- 'mediaRound' => false,
81
- 'correct_media_outer_size_css' => 'width:200px;',
82
- 'correct_media_width' => 'max-height:100%;', // CSS側で指定
83
- 'correct_media_height' => 'auto', // CSS側で指定
84
- ),
85
- /* 丸抜きの場合 */
86
- /* 画像自体は飛ばして背景画像にするので値は関係なくなる */
87
- array(
88
- 'mediaSize' => null,
89
- 'mediaRound' => true,
90
- 'correct_media_outer_size_css' => '', // CSSで width:120px;height:120px;
91
- ),
92
- array(
93
- 'mediaSize' => '200',
94
- 'mediaRound' => true,
95
- 'correct_media_outer_size_css' => 'width:200px;height:200px;',
96
- ),
97
-
98
- );
99
-
100
- print PHP_EOL;
101
- print '------------------------------------'.PHP_EOL;
102
- print 'test_image_outer_size_css'.PHP_EOL;
103
- print '------------------------------------'.PHP_EOL;
104
- foreach ( $test_image_outer_size_css as $key => $test_value) {
105
- $image_outer_size_css = WP_Widget_vkExUnit_profile::image_outer_size_css( $test_value );
106
- $this->assertEquals( $test_value['correct_media_outer_size_css'], $image_outer_size_css );
107
-
108
- print PHP_EOL;
109
- print 'image_outer_size_css :'.$image_outer_size_css.PHP_EOL;
110
- print 'correct_media_outer_size_css:'.$test_value['correct_media_outer_size_css'].PHP_EOL;
111
- } // foreach ( $test_image_round as $key => $test_value) {
112
- } // function test_image_outer_size_css() {
113
-
114
- /**
115
- * アイコンカラー出力CSSのテスト
116
- */
117
- function test_icon_color() {
118
- // テスト用の投稿を追加する
119
-
120
- $test_array = array(
121
- // どちらも未定義の場合(既存ユーザー)
122
- array(
123
- 'correct_outer_css' => ' class="bg_fill"',
124
- 'correct_icon_css' => '',
125
- ),
126
- array(
127
- 'iconFont_bgType' => '',
128
- 'icon_color' => '',
129
- 'correct_outer_css' => ' class="bg_fill"',
130
- 'correct_icon_css' => '',
131
- ),
132
- array(
133
- 'iconFont_bgType' => '',
134
- 'icon_color' => '#f00',
135
- 'correct_outer_css' => ' style="border-color:#f00;background-color:#f00;"',
136
- 'correct_icon_css' => ' style="color:#fff;"',
137
- ),
138
- // 塗りなし(枠あり) / 色指定あり
139
- array(
140
- 'iconFont_bgType' => 'no_paint',
141
- 'icon_color' => '#f00',
142
- 'correct_outer_css' => ' style="border-color: #f00; background:none;"',
143
- 'correct_icon_css' => ' style="color:#f00;"',
144
- ),
145
- // 塗りなし(枠あり) / 色指定なし
146
- array(
147
- 'iconFont_bgType' => 'no_paint',
148
- 'icon_color' => '',
149
- 'correct_outer_css' => ' style="background:none;"',
150
- 'correct_icon_css' => '',
151
- ),
152
- // no_paint_frame / 色指定なし
153
- array(
154
- 'iconFont_bgType' => 'no_paint_frame',
155
- 'icon_color' => '',
156
- 'correct_outer_css' => ' style="border:none;background:none; width:30px; height:30px;"',
157
- 'correct_icon_css' => '',
158
- ),
159
- );
160
-
161
- foreach ( $test_array as $key => $test_value) {
162
- // 外枠に付与するCSSを取得
163
- $outer_css = WP_Widget_vkExUnit_profile::outer_css( $test_value );
164
- // アイコンフォントに付与するCSSを取得
165
- $icon_css = WP_Widget_vkExUnit_profile::icon_css( $test_value );
166
-
167
- // 取得できたCSSと、想定する正しいCSSが等しいかテスト
168
- $this->assertEquals( $test_value['correct_outer_css'], $outer_css );
169
- $this->assertEquals( $test_value['correct_icon_css'], $icon_css );
170
-
171
- print PHP_EOL;
172
- print 'outer_css_correct :'.$test_value['correct_outer_css'].PHP_EOL;
173
- print 'outer_css :'.$outer_css.PHP_EOL;
174
- print 'icon_css_correct :'.$test_value['correct_icon_css'].PHP_EOL;
175
- print 'icon_css :'.$icon_css.PHP_EOL;
176
-
177
- } // foreach ( $test_array as $key => $test_value) {
178
- } // function test_icon_color() {
179
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tests/test-widget-title.php DELETED
@@ -1,51 +0,0 @@
1
- <?php
2
- /**
3
- * Class WidgetPage
4
- *
5
- * @package Vk_All_In_One_Expansion_Unit
6
- */
7
- /*
8
- cd $(wp plugin path --dir vk-all-in-one-expansion-unit)
9
- bash bin/install-wp-tests.sh wordpress_test root 'WordPress' localhost latest
10
- */
11
- /**
12
- * WidgetPage test case.
13
- */
14
- class WP_Widget_vkExUnit_post_list_Test extends WP_UnitTestCase {
15
-
16
- function test_get_widget_title() {
17
- $tests = array(
18
- array(
19
- 'label' => '最新の記事',
20
- 'title' => null,
21
- 'correct' => '最新の記事',
22
- ),
23
- // 両方指定がある場合は title 優先
24
- array(
25
- 'label' => '最新の記事',
26
- 'title' => 'タイトルの記事',
27
- 'correct' => 'タイトルの記事',
28
- ),
29
- // あえて空が指定したあったら空を返す
30
- array(
31
- 'maintext' => '最新の記事',
32
- 'title' => '',
33
- 'correct' => '',
34
- ),
35
- );
36
-
37
- print PHP_EOL;
38
- print '------------------------------------' . PHP_EOL;
39
- print 'WP_Widget_vkExUnit_post_list' . PHP_EOL;
40
- print '------------------------------------' . PHP_EOL;
41
- foreach ( $tests as $key => $test_value ) {
42
- $return = WP_Widget_vkExUnit_post_list::get_widget_title( $test_value );
43
- $this->assertEquals( $test_value['correct'], $return );
44
-
45
- print PHP_EOL;
46
- print 'return :' . $return . PHP_EOL;
47
- print 'correct :' . $test_value['correct'] . PHP_EOL;
48
- }
49
- }
50
-
51
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit048daf879f623e132cb9fa9c3192a738::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderIniteb7b88c036354120a16cd7e46ba68ad7::getLoader();
vendor/composer/ClassLoader.php CHANGED
@@ -149,7 +149,7 @@ class ClassLoader
149
 
150
  /**
151
  * @return string[] Array of classname => path
152
- * @psalm-var array<string, string>
153
  */
154
  public function getClassMap()
155
  {
149
 
150
  /**
151
  * @return string[] Array of classname => path
152
+ * @psalm-return array<string, string>
153
  */
154
  public function getClassMap()
155
  {
vendor/composer/autoload_classmap.php CHANGED
@@ -7,629 +7,6 @@ $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
  'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
10
- 'PHPUnit\\Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php',
11
- 'PHPUnit\\Framework\\ActualValueIsNotAnObjectException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ActualValueIsNotAnObjectException.php',
12
- 'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php',
13
- 'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/AssertionFailedError.php',
14
- 'PHPUnit\\Framework\\CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php',
15
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotAcceptParameterTypeException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotAcceptParameterTypeException.php',
16
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotDeclareBoolReturnTypeException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareBoolReturnTypeException.php',
17
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotDeclareExactlyOneParameterException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareExactlyOneParameterException.php',
18
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotDeclareParameterTypeException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareParameterTypeException.php',
19
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotExistException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotExistException.php',
20
- 'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/ArrayHasKey.php',
21
- 'PHPUnit\\Framework\\Constraint\\BinaryOperator' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/BinaryOperator.php',
22
- 'PHPUnit\\Framework\\Constraint\\Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php',
23
- 'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasAttribute.php',
24
- 'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasStaticAttribute.php',
25
- 'PHPUnit\\Framework\\Constraint\\Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php',
26
- 'PHPUnit\\Framework\\Constraint\\Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/Count.php',
27
- 'PHPUnit\\Framework\\Constraint\\DirectoryExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/DirectoryExists.php',
28
- 'PHPUnit\\Framework\\Constraint\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception/Exception.php',
29
- 'PHPUnit\\Framework\\Constraint\\ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionCode.php',
30
- 'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessage.php',
31
- 'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessageRegularExpression.php',
32
- 'PHPUnit\\Framework\\Constraint\\FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/FileExists.php',
33
- 'PHPUnit\\Framework\\Constraint\\GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/GreaterThan.php',
34
- 'PHPUnit\\Framework\\Constraint\\IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php',
35
- 'PHPUnit\\Framework\\Constraint\\IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/IsEmpty.php',
36
- 'PHPUnit\\Framework\\Constraint\\IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqual.php',
37
- 'PHPUnit\\Framework\\Constraint\\IsEqualCanonicalizing' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualCanonicalizing.php',
38
- 'PHPUnit\\Framework\\Constraint\\IsEqualIgnoringCase' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualIgnoringCase.php',
39
- 'PHPUnit\\Framework\\Constraint\\IsEqualWithDelta' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualWithDelta.php',
40
- 'PHPUnit\\Framework\\Constraint\\IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Boolean/IsFalse.php',
41
- 'PHPUnit\\Framework\\Constraint\\IsFinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Math/IsFinite.php',
42
- 'PHPUnit\\Framework\\Constraint\\IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php',
43
- 'PHPUnit\\Framework\\Constraint\\IsInfinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Math/IsInfinite.php',
44
- 'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Type/IsInstanceOf.php',
45
- 'PHPUnit\\Framework\\Constraint\\IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/IsJson.php',
46
- 'PHPUnit\\Framework\\Constraint\\IsNan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Math/IsNan.php',
47
- 'PHPUnit\\Framework\\Constraint\\IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Type/IsNull.php',
48
- 'PHPUnit\\Framework\\Constraint\\IsReadable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsReadable.php',
49
- 'PHPUnit\\Framework\\Constraint\\IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Boolean/IsTrue.php',
50
- 'PHPUnit\\Framework\\Constraint\\IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Type/IsType.php',
51
- 'PHPUnit\\Framework\\Constraint\\IsWritable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsWritable.php',
52
- 'PHPUnit\\Framework\\Constraint\\JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php',
53
- 'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php',
54
- 'PHPUnit\\Framework\\Constraint\\LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/LessThan.php',
55
- 'PHPUnit\\Framework\\Constraint\\LogicalAnd' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalAnd.php',
56
- 'PHPUnit\\Framework\\Constraint\\LogicalNot' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalNot.php',
57
- 'PHPUnit\\Framework\\Constraint\\LogicalOr' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalOr.php',
58
- 'PHPUnit\\Framework\\Constraint\\LogicalXor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalXor.php',
59
- 'PHPUnit\\Framework\\Constraint\\ObjectEquals' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Object/ObjectEquals.php',
60
- 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Object/ObjectHasAttribute.php',
61
- 'PHPUnit\\Framework\\Constraint\\Operator' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/Operator.php',
62
- 'PHPUnit\\Framework\\Constraint\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/RegularExpression.php',
63
- 'PHPUnit\\Framework\\Constraint\\SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/SameSize.php',
64
- 'PHPUnit\\Framework\\Constraint\\StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/StringContains.php',
65
- 'PHPUnit\\Framework\\Constraint\\StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/StringEndsWith.php',
66
- 'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/StringMatchesFormatDescription.php',
67
- 'PHPUnit\\Framework\\Constraint\\StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/String/StringStartsWith.php',
68
- 'PHPUnit\\Framework\\Constraint\\TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContains.php',
69
- 'PHPUnit\\Framework\\Constraint\\TraversableContainsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsEqual.php',
70
- 'PHPUnit\\Framework\\Constraint\\TraversableContainsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsIdentical.php',
71
- 'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsOnly.php',
72
- 'PHPUnit\\Framework\\Constraint\\UnaryOperator' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Operator/UnaryOperator.php',
73
- 'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/CoveredCodeNotExecutedException.php',
74
- 'PHPUnit\\Framework\\DataProviderTestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php',
75
- 'PHPUnit\\Framework\\Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/Error.php',
76
- 'PHPUnit\\Framework\\ErrorTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/ErrorTestCase.php',
77
- 'PHPUnit\\Framework\\Error\\Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php',
78
- 'PHPUnit\\Framework\\Error\\Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Error.php',
79
- 'PHPUnit\\Framework\\Error\\Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php',
80
- 'PHPUnit\\Framework\\Error\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php',
81
- 'PHPUnit\\Framework\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/Exception.php',
82
- 'PHPUnit\\Framework\\ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php',
83
- 'PHPUnit\\Framework\\ExecutionOrderDependency' => $vendorDir . '/phpunit/phpunit/src/Framework/ExecutionOrderDependency.php',
84
- 'PHPUnit\\Framework\\ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ExpectationFailedException.php',
85
- 'PHPUnit\\Framework\\IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php',
86
- 'PHPUnit\\Framework\\IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php',
87
- 'PHPUnit\\Framework\\IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/IncompleteTestError.php',
88
- 'PHPUnit\\Framework\\InvalidArgumentException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/InvalidArgumentException.php',
89
- 'PHPUnit\\Framework\\InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/InvalidCoversTargetException.php',
90
- 'PHPUnit\\Framework\\InvalidDataProviderException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php',
91
- 'PHPUnit\\Framework\\InvalidParameterGroupException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidParameterGroupException.php',
92
- 'PHPUnit\\Framework\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/MissingCoversAnnotationException.php',
93
- 'PHPUnit\\Framework\\MockObject\\Api' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Api/Api.php',
94
- 'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php',
95
- 'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Identity.php',
96
- 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationMocker.php',
97
- 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationStubber' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationStubber.php',
98
- 'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/MethodNameMatch.php',
99
- 'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/ParametersMatch.php',
100
- 'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php',
101
- 'PHPUnit\\Framework\\MockObject\\CannotUseAddMethodsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseAddMethodsException.php',
102
- 'PHPUnit\\Framework\\MockObject\\CannotUseOnlyMethodsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php',
103
- 'PHPUnit\\Framework\\MockObject\\ClassAlreadyExistsException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ClassAlreadyExistsException.php',
104
- 'PHPUnit\\Framework\\MockObject\\ClassIsFinalException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ClassIsFinalException.php',
105
- 'PHPUnit\\Framework\\MockObject\\ConfigurableMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/ConfigurableMethod.php',
106
- 'PHPUnit\\Framework\\MockObject\\ConfigurableMethodsAlreadyInitializedException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.php',
107
- 'PHPUnit\\Framework\\MockObject\\DuplicateMethodException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/DuplicateMethodException.php',
108
- 'PHPUnit\\Framework\\MockObject\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php',
109
- 'PHPUnit\\Framework\\MockObject\\Generator' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator.php',
110
- 'PHPUnit\\Framework\\MockObject\\IncompatibleReturnValueException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/IncompatibleReturnValueException.php',
111
- 'PHPUnit\\Framework\\MockObject\\InvalidMethodNameException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/InvalidMethodNameException.php',
112
- 'PHPUnit\\Framework\\MockObject\\Invocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invocation.php',
113
- 'PHPUnit\\Framework\\MockObject\\InvocationHandler' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/InvocationHandler.php',
114
- 'PHPUnit\\Framework\\MockObject\\MatchBuilderNotFoundException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MatchBuilderNotFoundException.php',
115
- 'PHPUnit\\Framework\\MockObject\\Matcher' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher.php',
116
- 'PHPUnit\\Framework\\MockObject\\MatcherAlreadyRegisteredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MatcherAlreadyRegisteredException.php',
117
- 'PHPUnit\\Framework\\MockObject\\Method' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Api/Method.php',
118
- 'PHPUnit\\Framework\\MockObject\\MethodCannotBeConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodCannotBeConfiguredException.php',
119
- 'PHPUnit\\Framework\\MockObject\\MethodNameAlreadyConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameAlreadyConfiguredException.php',
120
- 'PHPUnit\\Framework\\MockObject\\MethodNameConstraint' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MethodNameConstraint.php',
121
- 'PHPUnit\\Framework\\MockObject\\MethodNameNotConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameNotConfiguredException.php',
122
- 'PHPUnit\\Framework\\MockObject\\MethodParametersAlreadyConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodParametersAlreadyConfiguredException.php',
123
- 'PHPUnit\\Framework\\MockObject\\MockBuilder' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php',
124
- 'PHPUnit\\Framework\\MockObject\\MockClass' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockClass.php',
125
- 'PHPUnit\\Framework\\MockObject\\MockMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockMethod.php',
126
- 'PHPUnit\\Framework\\MockObject\\MockMethodSet' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php',
127
- 'PHPUnit\\Framework\\MockObject\\MockObject' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockObject.php',
128
- 'PHPUnit\\Framework\\MockObject\\MockTrait' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockTrait.php',
129
- 'PHPUnit\\Framework\\MockObject\\MockType' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockType.php',
130
- 'PHPUnit\\Framework\\MockObject\\MockedCloneMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Api/MockedCloneMethod.php',
131
- 'PHPUnit\\Framework\\MockObject\\OriginalConstructorInvocationRequiredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/OriginalConstructorInvocationRequiredException.php',
132
- 'PHPUnit\\Framework\\MockObject\\ReflectionException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReflectionException.php',
133
- 'PHPUnit\\Framework\\MockObject\\ReturnValueNotConfiguredException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php',
134
- 'PHPUnit\\Framework\\MockObject\\Rule\\AnyInvokedCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/AnyInvokedCount.php',
135
- 'PHPUnit\\Framework\\MockObject\\Rule\\AnyParameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/AnyParameters.php',
136
- 'PHPUnit\\Framework\\MockObject\\Rule\\ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/ConsecutiveParameters.php',
137
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvocationOrder' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvocationOrder.php',
138
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtIndex' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtIndex.php',
139
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastCount.php',
140
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastOnce.php',
141
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtMostCount.php',
142
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedCount.php',
143
- 'PHPUnit\\Framework\\MockObject\\Rule\\MethodName' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/MethodName.php',
144
- 'PHPUnit\\Framework\\MockObject\\Rule\\Parameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/Parameters.php',
145
- 'PHPUnit\\Framework\\MockObject\\Rule\\ParametersRule' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Rule/ParametersRule.php',
146
- 'PHPUnit\\Framework\\MockObject\\RuntimeException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php',
147
- 'PHPUnit\\Framework\\MockObject\\SoapExtensionNotAvailableException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/SoapExtensionNotAvailableException.php',
148
- 'PHPUnit\\Framework\\MockObject\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub.php',
149
- 'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ConsecutiveCalls.php',
150
- 'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/Exception.php',
151
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnArgument.php',
152
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnCallback.php',
153
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnReference.php',
154
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnSelf.php',
155
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnStub.php',
156
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnValueMap.php',
157
- 'PHPUnit\\Framework\\MockObject\\Stub\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/Stub.php',
158
- 'PHPUnit\\Framework\\MockObject\\UnknownClassException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownClassException.php',
159
- 'PHPUnit\\Framework\\MockObject\\UnknownTraitException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTraitException.php',
160
- 'PHPUnit\\Framework\\MockObject\\UnknownTypeException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTypeException.php',
161
- 'PHPUnit\\Framework\\MockObject\\UnmockedCloneMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Api/UnmockedCloneMethod.php',
162
- 'PHPUnit\\Framework\\MockObject\\Verifiable' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Verifiable.php',
163
- 'PHPUnit\\Framework\\NoChildTestSuiteException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php',
164
- 'PHPUnit\\Framework\\OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/OutputError.php',
165
- 'PHPUnit\\Framework\\PHPTAssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/PHPTAssertionFailedError.php',
166
- 'PHPUnit\\Framework\\Reorderable' => $vendorDir . '/phpunit/phpunit/src/Framework/Reorderable.php',
167
- 'PHPUnit\\Framework\\RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/RiskyTestError.php',
168
- 'PHPUnit\\Framework\\SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
169
- 'PHPUnit\\Framework\\SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php',
170
- 'PHPUnit\\Framework\\SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php',
171
- 'PHPUnit\\Framework\\SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/SkippedTestError.php',
172
- 'PHPUnit\\Framework\\SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/SkippedTestSuiteError.php',
173
- 'PHPUnit\\Framework\\SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/SyntheticError.php',
174
- 'PHPUnit\\Framework\\SyntheticSkippedError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/SyntheticSkippedError.php',
175
- 'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php',
176
- 'PHPUnit\\Framework\\TestBuilder' => $vendorDir . '/phpunit/phpunit/src/Framework/TestBuilder.php',
177
- 'PHPUnit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php',
178
- 'PHPUnit\\Framework\\TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php',
179
- 'PHPUnit\\Framework\\TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php',
180
- 'PHPUnit\\Framework\\TestListenerDefaultImplementation' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php',
181
- 'PHPUnit\\Framework\\TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php',
182
- 'PHPUnit\\Framework\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php',
183
- 'PHPUnit\\Framework\\TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php',
184
- 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/UnintentionallyCoveredCodeError.php',
185
- 'PHPUnit\\Framework\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/Warning.php',
186
- 'PHPUnit\\Framework\\WarningTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/WarningTestCase.php',
187
- 'PHPUnit\\Runner\\AfterIncompleteTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php',
188
- 'PHPUnit\\Runner\\AfterLastTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php',
189
- 'PHPUnit\\Runner\\AfterRiskyTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php',
190
- 'PHPUnit\\Runner\\AfterSkippedTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php',
191
- 'PHPUnit\\Runner\\AfterSuccessfulTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php',
192
- 'PHPUnit\\Runner\\AfterTestErrorHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php',
193
- 'PHPUnit\\Runner\\AfterTestFailureHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php',
194
- 'PHPUnit\\Runner\\AfterTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestHook.php',
195
- 'PHPUnit\\Runner\\AfterTestWarningHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php',
196
- 'PHPUnit\\Runner\\BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php',
197
- 'PHPUnit\\Runner\\BeforeFirstTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php',
198
- 'PHPUnit\\Runner\\BeforeTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php',
199
- 'PHPUnit\\Runner\\DefaultTestResultCache' => $vendorDir . '/phpunit/phpunit/src/Runner/DefaultTestResultCache.php',
200
- 'PHPUnit\\Runner\\Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php',
201
- 'PHPUnit\\Runner\\Extension\\ExtensionHandler' => $vendorDir . '/phpunit/phpunit/src/Runner/Extension/ExtensionHandler.php',
202
- 'PHPUnit\\Runner\\Extension\\PharLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/Extension/PharLoader.php',
203
- 'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php',
204
- 'PHPUnit\\Runner\\Filter\\Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php',
205
- 'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php',
206
- 'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php',
207
- 'PHPUnit\\Runner\\Filter\\NameFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php',
208
- 'PHPUnit\\Runner\\Hook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/Hook.php',
209
- 'PHPUnit\\Runner\\NullTestResultCache' => $vendorDir . '/phpunit/phpunit/src/Runner/NullTestResultCache.php',
210
- 'PHPUnit\\Runner\\PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Runner/PhptTestCase.php',
211
- 'PHPUnit\\Runner\\ResultCacheExtension' => $vendorDir . '/phpunit/phpunit/src/Runner/ResultCacheExtension.php',
212
- 'PHPUnit\\Runner\\StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php',
213
- 'PHPUnit\\Runner\\TestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/TestHook.php',
214
- 'PHPUnit\\Runner\\TestListenerAdapter' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/TestListenerAdapter.php',
215
- 'PHPUnit\\Runner\\TestResultCache' => $vendorDir . '/phpunit/phpunit/src/Runner/TestResultCache.php',
216
- 'PHPUnit\\Runner\\TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php',
217
- 'PHPUnit\\Runner\\TestSuiteSorter' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteSorter.php',
218
- 'PHPUnit\\Runner\\Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php',
219
- 'PHPUnit\\TextUI\\CliArguments\\Builder' => $vendorDir . '/phpunit/phpunit/src/TextUI/CliArguments/Builder.php',
220
- 'PHPUnit\\TextUI\\CliArguments\\Configuration' => $vendorDir . '/phpunit/phpunit/src/TextUI/CliArguments/Configuration.php',
221
- 'PHPUnit\\TextUI\\CliArguments\\Exception' => $vendorDir . '/phpunit/phpunit/src/TextUI/CliArguments/Exception.php',
222
- 'PHPUnit\\TextUI\\CliArguments\\Mapper' => $vendorDir . '/phpunit/phpunit/src/TextUI/CliArguments/Mapper.php',
223
- 'PHPUnit\\TextUI\\Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php',
224
- 'PHPUnit\\TextUI\\DefaultResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/DefaultResultPrinter.php',
225
- 'PHPUnit\\TextUI\\Exception' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/Exception.php',
226
- 'PHPUnit\\TextUI\\Help' => $vendorDir . '/phpunit/phpunit/src/TextUI/Help.php',
227
- 'PHPUnit\\TextUI\\ReflectionException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/ReflectionException.php',
228
- 'PHPUnit\\TextUI\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php',
229
- 'PHPUnit\\TextUI\\RuntimeException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php',
230
- 'PHPUnit\\TextUI\\TestDirectoryNotFoundException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/TestDirectoryNotFoundException.php',
231
- 'PHPUnit\\TextUI\\TestFileNotFoundException' => $vendorDir . '/phpunit/phpunit/src/TextUI/Exception/TestFileNotFoundException.php',
232
- 'PHPUnit\\TextUI\\TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php',
233
- 'PHPUnit\\TextUI\\TestSuiteMapper' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestSuiteMapper.php',
234
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/CodeCoverage.php',
235
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\FilterMapper' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/FilterMapper.php',
236
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Filter\\Directory' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/Directory.php',
237
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Filter\\DirectoryCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollection.php',
238
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Filter\\DirectoryCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollectionIterator.php',
239
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Clover.php',
240
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Cobertura' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Cobertura.php',
241
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Crap4j.php',
242
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Html' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Html.php',
243
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Php' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Php.php',
244
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Text.php',
245
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Xml' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Xml.php',
246
- 'PHPUnit\\TextUI\\XmlConfiguration\\Configuration' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Configuration.php',
247
- 'PHPUnit\\TextUI\\XmlConfiguration\\Constant' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Constant.php',
248
- 'PHPUnit\\TextUI\\XmlConfiguration\\ConstantCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollection.php',
249
- 'PHPUnit\\TextUI\\XmlConfiguration\\ConstantCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollectionIterator.php',
250
- 'PHPUnit\\TextUI\\XmlConfiguration\\ConvertLogTypes' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/ConvertLogTypes.php',
251
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageCloverToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCloverToReport.php',
252
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageCrap4jToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCrap4jToReport.php',
253
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageHtmlToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageHtmlToReport.php',
254
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoveragePhpToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoveragePhpToReport.php',
255
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageTextToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageTextToReport.php',
256
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageXmlToReport' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageXmlToReport.php',
257
- 'PHPUnit\\TextUI\\XmlConfiguration\\Directory' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/Directory.php',
258
- 'PHPUnit\\TextUI\\XmlConfiguration\\DirectoryCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollection.php',
259
- 'PHPUnit\\TextUI\\XmlConfiguration\\DirectoryCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollectionIterator.php',
260
- 'PHPUnit\\TextUI\\XmlConfiguration\\Exception' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Exception.php',
261
- 'PHPUnit\\TextUI\\XmlConfiguration\\Extension' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/Extension.php',
262
- 'PHPUnit\\TextUI\\XmlConfiguration\\ExtensionCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollection.php',
263
- 'PHPUnit\\TextUI\\XmlConfiguration\\ExtensionCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollectionIterator.php',
264
- 'PHPUnit\\TextUI\\XmlConfiguration\\File' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/File.php',
265
- 'PHPUnit\\TextUI\\XmlConfiguration\\FileCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollection.php',
266
- 'PHPUnit\\TextUI\\XmlConfiguration\\FileCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollectionIterator.php',
267
- 'PHPUnit\\TextUI\\XmlConfiguration\\Generator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Generator.php',
268
- 'PHPUnit\\TextUI\\XmlConfiguration\\Group' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Group.php',
269
- 'PHPUnit\\TextUI\\XmlConfiguration\\GroupCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollection.php',
270
- 'PHPUnit\\TextUI\\XmlConfiguration\\GroupCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollectionIterator.php',
271
- 'PHPUnit\\TextUI\\XmlConfiguration\\Groups' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Groups.php',
272
- 'PHPUnit\\TextUI\\XmlConfiguration\\IniSetting' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSetting.php',
273
- 'PHPUnit\\TextUI\\XmlConfiguration\\IniSettingCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollection.php',
274
- 'PHPUnit\\TextUI\\XmlConfiguration\\IniSettingCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollectionIterator.php',
275
- 'PHPUnit\\TextUI\\XmlConfiguration\\IntroduceCoverageElement' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/IntroduceCoverageElement.php',
276
- 'PHPUnit\\TextUI\\XmlConfiguration\\Loader' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Loader.php',
277
- 'PHPUnit\\TextUI\\XmlConfiguration\\LogToReportMigration' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/LogToReportMigration.php',
278
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\Junit' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Junit.php',
279
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\Logging' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Logging.php',
280
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TeamCity' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TeamCity.php',
281
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Html' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Html.php',
282
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Text' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Text.php',
283
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Xml' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Xml.php',
284
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\Text' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Text.php',
285
- 'PHPUnit\\TextUI\\XmlConfiguration\\Migration' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/Migration.php',
286
- 'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilder' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilder.php',
287
- 'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilderException' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilderException.php',
288
- 'PHPUnit\\TextUI\\XmlConfiguration\\MigrationException' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationException.php',
289
- 'PHPUnit\\TextUI\\XmlConfiguration\\Migrator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrator.php',
290
- 'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromFilterWhitelistToCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php',
291
- 'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromRootToCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromRootToCoverage.php',
292
- 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistDirectoriesToCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistDirectoriesToCoverage.php',
293
- 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistExcludesToCoverage' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistExcludesToCoverage.php',
294
- 'PHPUnit\\TextUI\\XmlConfiguration\\PHPUnit' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/PHPUnit.php',
295
- 'PHPUnit\\TextUI\\XmlConfiguration\\Php' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Php.php',
296
- 'PHPUnit\\TextUI\\XmlConfiguration\\PhpHandler' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/PhpHandler.php',
297
- 'PHPUnit\\TextUI\\XmlConfiguration\\RemoveCacheTokensAttribute' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveCacheTokensAttribute.php',
298
- 'PHPUnit\\TextUI\\XmlConfiguration\\RemoveEmptyFilter' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveEmptyFilter.php',
299
- 'PHPUnit\\TextUI\\XmlConfiguration\\RemoveLogTypes' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveLogTypes.php',
300
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestDirectory' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectory.php',
301
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestDirectoryCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollection.php',
302
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestDirectoryCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollectionIterator.php',
303
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestFile' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFile.php',
304
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestFileCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollection.php',
305
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestFileCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollectionIterator.php',
306
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuite.php',
307
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestSuiteCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollection.php',
308
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestSuiteCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollectionIterator.php',
309
- 'PHPUnit\\TextUI\\XmlConfiguration\\UpdateSchemaLocationTo93' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/UpdateSchemaLocationTo93.php',
310
- 'PHPUnit\\TextUI\\XmlConfiguration\\Variable' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Variable.php',
311
- 'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollection' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollection.php',
312
- 'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollectionIterator' => $vendorDir . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollectionIterator.php',
313
- 'PHPUnit\\Util\\Annotation\\DocBlock' => $vendorDir . '/phpunit/phpunit/src/Util/Annotation/DocBlock.php',
314
- 'PHPUnit\\Util\\Annotation\\Registry' => $vendorDir . '/phpunit/phpunit/src/Util/Annotation/Registry.php',
315
- 'PHPUnit\\Util\\Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php',
316
- 'PHPUnit\\Util\\Color' => $vendorDir . '/phpunit/phpunit/src/Util/Color.php',
317
- 'PHPUnit\\Util\\ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php',
318
- 'PHPUnit\\Util\\Exception' => $vendorDir . '/phpunit/phpunit/src/Util/Exception.php',
319
- 'PHPUnit\\Util\\ExcludeList' => $vendorDir . '/phpunit/phpunit/src/Util/ExcludeList.php',
320
- 'PHPUnit\\Util\\FileLoader' => $vendorDir . '/phpunit/phpunit/src/Util/FileLoader.php',
321
- 'PHPUnit\\Util\\Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php',
322
- 'PHPUnit\\Util\\Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php',
323
- 'PHPUnit\\Util\\GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php',
324
- 'PHPUnit\\Util\\InvalidDataSetException' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidDataSetException.php',
325
- 'PHPUnit\\Util\\Json' => $vendorDir . '/phpunit/phpunit/src/Util/Json.php',
326
- 'PHPUnit\\Util\\Log\\JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php',
327
- 'PHPUnit\\Util\\Log\\TeamCity' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TeamCity.php',
328
- 'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php',
329
- 'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php',
330
- 'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php',
331
- 'PHPUnit\\Util\\Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php',
332
- 'PHPUnit\\Util\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Util/RegularExpression.php',
333
- 'PHPUnit\\Util\\Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php',
334
- 'PHPUnit\\Util\\TestDox\\CliTestDoxPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/CliTestDoxPrinter.php',
335
- 'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php',
336
- 'PHPUnit\\Util\\TestDox\\NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php',
337
- 'PHPUnit\\Util\\TestDox\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php',
338
- 'PHPUnit\\Util\\TestDox\\TestDoxPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TestDoxPrinter.php',
339
- 'PHPUnit\\Util\\TestDox\\TextResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php',
340
- 'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php',
341
- 'PHPUnit\\Util\\TextTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/TextTestListRenderer.php',
342
- 'PHPUnit\\Util\\Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php',
343
- 'PHPUnit\\Util\\VersionComparisonOperator' => $vendorDir . '/phpunit/phpunit/src/Util/VersionComparisonOperator.php',
344
- 'PHPUnit\\Util\\XdebugFilterScriptGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/XdebugFilterScriptGenerator.php',
345
- 'PHPUnit\\Util\\Xml' => $vendorDir . '/phpunit/phpunit/src/Util/Xml.php',
346
- 'PHPUnit\\Util\\XmlTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php',
347
- 'PHPUnit\\Util\\Xml\\Exception' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/Exception.php',
348
- 'PHPUnit\\Util\\Xml\\FailedSchemaDetectionResult' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/FailedSchemaDetectionResult.php',
349
- 'PHPUnit\\Util\\Xml\\Loader' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/Loader.php',
350
- 'PHPUnit\\Util\\Xml\\SchemaDetectionResult' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SchemaDetectionResult.php',
351
- 'PHPUnit\\Util\\Xml\\SchemaDetector' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SchemaDetector.php',
352
- 'PHPUnit\\Util\\Xml\\SchemaFinder' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SchemaFinder.php',
353
- 'PHPUnit\\Util\\Xml\\SnapshotNodeList' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SnapshotNodeList.php',
354
- 'PHPUnit\\Util\\Xml\\SuccessfulSchemaDetectionResult' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/SuccessfulSchemaDetectionResult.php',
355
- 'PHPUnit\\Util\\Xml\\ValidationResult' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/ValidationResult.php',
356
- 'PHPUnit\\Util\\Xml\\Validator' => $vendorDir . '/phpunit/phpunit/src/Util/Xml/Validator.php',
357
- 'PharIo\\Manifest\\Application' => $vendorDir . '/phar-io/manifest/src/values/Application.php',
358
- 'PharIo\\Manifest\\ApplicationName' => $vendorDir . '/phar-io/manifest/src/values/ApplicationName.php',
359
- 'PharIo\\Manifest\\Author' => $vendorDir . '/phar-io/manifest/src/values/Author.php',
360
- 'PharIo\\Manifest\\AuthorCollection' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollection.php',
361
- 'PharIo\\Manifest\\AuthorCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollectionIterator.php',
362
- 'PharIo\\Manifest\\AuthorElement' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElement.php',
363
- 'PharIo\\Manifest\\AuthorElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElementCollection.php',
364
- 'PharIo\\Manifest\\BundledComponent' => $vendorDir . '/phar-io/manifest/src/values/BundledComponent.php',
365
- 'PharIo\\Manifest\\BundledComponentCollection' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollection.php',
366
- 'PharIo\\Manifest\\BundledComponentCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php',
367
- 'PharIo\\Manifest\\BundlesElement' => $vendorDir . '/phar-io/manifest/src/xml/BundlesElement.php',
368
- 'PharIo\\Manifest\\ComponentElement' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElement.php',
369
- 'PharIo\\Manifest\\ComponentElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElementCollection.php',
370
- 'PharIo\\Manifest\\ContainsElement' => $vendorDir . '/phar-io/manifest/src/xml/ContainsElement.php',
371
- 'PharIo\\Manifest\\CopyrightElement' => $vendorDir . '/phar-io/manifest/src/xml/CopyrightElement.php',
372
- 'PharIo\\Manifest\\CopyrightInformation' => $vendorDir . '/phar-io/manifest/src/values/CopyrightInformation.php',
373
- 'PharIo\\Manifest\\ElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ElementCollection.php',
374
- 'PharIo\\Manifest\\ElementCollectionException' => $vendorDir . '/phar-io/manifest/src/exceptions/ElementCollectionException.php',
375
- 'PharIo\\Manifest\\Email' => $vendorDir . '/phar-io/manifest/src/values/Email.php',
376
- 'PharIo\\Manifest\\Exception' => $vendorDir . '/phar-io/manifest/src/exceptions/Exception.php',
377
- 'PharIo\\Manifest\\ExtElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtElement.php',
378
- 'PharIo\\Manifest\\ExtElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ExtElementCollection.php',
379
- 'PharIo\\Manifest\\Extension' => $vendorDir . '/phar-io/manifest/src/values/Extension.php',
380
- 'PharIo\\Manifest\\ExtensionElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtensionElement.php',
381
- 'PharIo\\Manifest\\InvalidApplicationNameException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php',
382
- 'PharIo\\Manifest\\InvalidEmailException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidEmailException.php',
383
- 'PharIo\\Manifest\\InvalidUrlException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidUrlException.php',
384
- 'PharIo\\Manifest\\Library' => $vendorDir . '/phar-io/manifest/src/values/Library.php',
385
- 'PharIo\\Manifest\\License' => $vendorDir . '/phar-io/manifest/src/values/License.php',
386
- 'PharIo\\Manifest\\LicenseElement' => $vendorDir . '/phar-io/manifest/src/xml/LicenseElement.php',
387
- 'PharIo\\Manifest\\Manifest' => $vendorDir . '/phar-io/manifest/src/values/Manifest.php',
388
- 'PharIo\\Manifest\\ManifestDocument' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocument.php',
389
- 'PharIo\\Manifest\\ManifestDocumentException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php',
390
- 'PharIo\\Manifest\\ManifestDocumentLoadingException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentLoadingException.php',
391
- 'PharIo\\Manifest\\ManifestDocumentMapper' => $vendorDir . '/phar-io/manifest/src/ManifestDocumentMapper.php',
392
- 'PharIo\\Manifest\\ManifestDocumentMapperException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php',
393
- 'PharIo\\Manifest\\ManifestElement' => $vendorDir . '/phar-io/manifest/src/xml/ManifestElement.php',
394
- 'PharIo\\Manifest\\ManifestElementException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestElementException.php',
395
- 'PharIo\\Manifest\\ManifestLoader' => $vendorDir . '/phar-io/manifest/src/ManifestLoader.php',
396
- 'PharIo\\Manifest\\ManifestLoaderException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php',
397
- 'PharIo\\Manifest\\ManifestSerializer' => $vendorDir . '/phar-io/manifest/src/ManifestSerializer.php',
398
- 'PharIo\\Manifest\\PhpElement' => $vendorDir . '/phar-io/manifest/src/xml/PhpElement.php',
399
- 'PharIo\\Manifest\\PhpExtensionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpExtensionRequirement.php',
400
- 'PharIo\\Manifest\\PhpVersionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpVersionRequirement.php',
401
- 'PharIo\\Manifest\\Requirement' => $vendorDir . '/phar-io/manifest/src/values/Requirement.php',
402
- 'PharIo\\Manifest\\RequirementCollection' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollection.php',
403
- 'PharIo\\Manifest\\RequirementCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollectionIterator.php',
404
- 'PharIo\\Manifest\\RequiresElement' => $vendorDir . '/phar-io/manifest/src/xml/RequiresElement.php',
405
- 'PharIo\\Manifest\\Type' => $vendorDir . '/phar-io/manifest/src/values/Type.php',
406
- 'PharIo\\Manifest\\Url' => $vendorDir . '/phar-io/manifest/src/values/Url.php',
407
- 'PharIo\\Version\\AbstractVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/AbstractVersionConstraint.php',
408
- 'PharIo\\Version\\AndVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/constraints/AndVersionConstraintGroup.php',
409
- 'PharIo\\Version\\AnyVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/AnyVersionConstraint.php',
410
- 'PharIo\\Version\\ExactVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/ExactVersionConstraint.php',
411
- 'PharIo\\Version\\Exception' => $vendorDir . '/phar-io/version/src/exceptions/Exception.php',
412
- 'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php',
413
- 'PharIo\\Version\\InvalidPreReleaseSuffixException' => $vendorDir . '/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php',
414
- 'PharIo\\Version\\InvalidVersionException' => $vendorDir . '/phar-io/version/src/exceptions/InvalidVersionException.php',
415
- 'PharIo\\Version\\NoPreReleaseSuffixException' => $vendorDir . '/phar-io/version/src/exceptions/NoPreReleaseSuffixException.php',
416
- 'PharIo\\Version\\OrVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/constraints/OrVersionConstraintGroup.php',
417
- 'PharIo\\Version\\PreReleaseSuffix' => $vendorDir . '/phar-io/version/src/PreReleaseSuffix.php',
418
- 'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php',
419
- 'PharIo\\Version\\SpecificMajorVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php',
420
- 'PharIo\\Version\\UnsupportedVersionConstraintException' => $vendorDir . '/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php',
421
- 'PharIo\\Version\\Version' => $vendorDir . '/phar-io/version/src/Version.php',
422
- 'PharIo\\Version\\VersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/VersionConstraint.php',
423
- 'PharIo\\Version\\VersionConstraintParser' => $vendorDir . '/phar-io/version/src/VersionConstraintParser.php',
424
- 'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php',
425
- 'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php',
426
- 'SebastianBergmann\\CliParser\\AmbiguousOptionException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php',
427
- 'SebastianBergmann\\CliParser\\Exception' => $vendorDir . '/sebastian/cli-parser/src/exceptions/Exception.php',
428
- 'SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php',
429
- 'SebastianBergmann\\CliParser\\Parser' => $vendorDir . '/sebastian/cli-parser/src/Parser.php',
430
- 'SebastianBergmann\\CliParser\\RequiredOptionArgumentMissingException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/RequiredOptionArgumentMissingException.php',
431
- 'SebastianBergmann\\CliParser\\UnknownOptionException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/UnknownOptionException.php',
432
- 'SebastianBergmann\\CodeCoverage\\BranchAndPathCoverageNotSupportedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php',
433
- 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php',
434
- 'SebastianBergmann\\CodeCoverage\\CrapIndex' => $vendorDir . '/phpunit/php-code-coverage/src/CrapIndex.php',
435
- 'SebastianBergmann\\CodeCoverage\\DeadCodeDetectionNotSupportedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php',
436
- 'SebastianBergmann\\CodeCoverage\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Directory.php',
437
- 'SebastianBergmann\\CodeCoverage\\DirectoryCouldNotBeCreatedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php',
438
- 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php',
439
- 'SebastianBergmann\\CodeCoverage\\Driver\\PathExistsButIsNotDirectoryException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php',
440
- 'SebastianBergmann\\CodeCoverage\\Driver\\PcovDriver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PcovDriver.php',
441
- 'SebastianBergmann\\CodeCoverage\\Driver\\PcovNotAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/PcovNotAvailableException.php',
442
- 'SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgDriver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PhpdbgDriver.php',
443
- 'SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgNotAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/PhpdbgNotAvailableException.php',
444
- 'SebastianBergmann\\CodeCoverage\\Driver\\Selector' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Selector.php',
445
- 'SebastianBergmann\\CodeCoverage\\Driver\\WriteOperationFailedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php',
446
- 'SebastianBergmann\\CodeCoverage\\Driver\\WrongXdebugVersionException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/WrongXdebugVersionException.php',
447
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug2Driver.php',
448
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2NotEnabledException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Xdebug2NotEnabledException.php',
449
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug3Driver.php',
450
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3NotEnabledException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Xdebug3NotEnabledException.php',
451
- 'SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/XdebugNotAvailableException.php',
452
- 'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php',
453
- 'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php',
454
- 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
455
- 'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverAvailableException.php',
456
- 'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverWithPathCoverageSupportAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php',
457
- 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
458
- 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php',
459
- 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php',
460
- 'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php',
461
- 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php',
462
- 'SebastianBergmann\\CodeCoverage\\ParserException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/ParserException.php',
463
- 'SebastianBergmann\\CodeCoverage\\Percentage' => $vendorDir . '/phpunit/php-code-coverage/src/Percentage.php',
464
- 'SebastianBergmann\\CodeCoverage\\ProcessedCodeCoverageData' => $vendorDir . '/phpunit/php-code-coverage/src/ProcessedCodeCoverageData.php',
465
- 'SebastianBergmann\\CodeCoverage\\RawCodeCoverageData' => $vendorDir . '/phpunit/php-code-coverage/src/RawCodeCoverageData.php',
466
- 'SebastianBergmann\\CodeCoverage\\ReflectionException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/ReflectionException.php',
467
- 'SebastianBergmann\\CodeCoverage\\ReportAlreadyFinalizedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/ReportAlreadyFinalizedException.php',
468
- 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php',
469
- 'SebastianBergmann\\CodeCoverage\\Report\\Cobertura' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Cobertura.php',
470
- 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
471
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
472
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
473
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
474
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
475
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
476
- 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php',
477
- 'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php',
478
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php',
479
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
480
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
481
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
482
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
483
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
484
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
485
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
486
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
487
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Source.php',
488
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
489
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
490
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
491
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysisCacheNotConfiguredException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php',
492
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\Cache' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/Cache.php',
493
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CacheWarmer' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php',
494
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingCoveredFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CachingCoveredFileAnalyser.php',
495
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingUncoveredFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CachingUncoveredFileAnalyser.php',
496
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CodeUnitFindingVisitor' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CodeUnitFindingVisitor.php',
497
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CoveredFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CoveredFileAnalyser.php',
498
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ExecutableLinesFindingVisitor' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/ExecutableLinesFindingVisitor.php',
499
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\IgnoredLinesFindingVisitor' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/IgnoredLinesFindingVisitor.php',
500
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingCoveredFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/ParsingCoveredFileAnalyser.php',
501
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingUncoveredFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/ParsingUncoveredFileAnalyser.php',
502
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\UncoveredFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/UncoveredFileAnalyser.php',
503
- 'SebastianBergmann\\CodeCoverage\\TestIdMissingException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php',
504
- 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
505
- 'SebastianBergmann\\CodeCoverage\\Version' => $vendorDir . '/phpunit/php-code-coverage/src/Version.php',
506
- 'SebastianBergmann\\CodeCoverage\\XmlException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/XmlException.php',
507
- 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
508
- 'SebastianBergmann\\CodeUnit\\ClassMethodUnit' => $vendorDir . '/sebastian/code-unit/src/ClassMethodUnit.php',
509
- 'SebastianBergmann\\CodeUnit\\ClassUnit' => $vendorDir . '/sebastian/code-unit/src/ClassUnit.php',
510
- 'SebastianBergmann\\CodeUnit\\CodeUnit' => $vendorDir . '/sebastian/code-unit/src/CodeUnit.php',
511
- 'SebastianBergmann\\CodeUnit\\CodeUnitCollection' => $vendorDir . '/sebastian/code-unit/src/CodeUnitCollection.php',
512
- 'SebastianBergmann\\CodeUnit\\CodeUnitCollectionIterator' => $vendorDir . '/sebastian/code-unit/src/CodeUnitCollectionIterator.php',
513
- 'SebastianBergmann\\CodeUnit\\Exception' => $vendorDir . '/sebastian/code-unit/src/exceptions/Exception.php',
514
- 'SebastianBergmann\\CodeUnit\\FunctionUnit' => $vendorDir . '/sebastian/code-unit/src/FunctionUnit.php',
515
- 'SebastianBergmann\\CodeUnit\\InterfaceMethodUnit' => $vendorDir . '/sebastian/code-unit/src/InterfaceMethodUnit.php',
516
- 'SebastianBergmann\\CodeUnit\\InterfaceUnit' => $vendorDir . '/sebastian/code-unit/src/InterfaceUnit.php',
517
- 'SebastianBergmann\\CodeUnit\\InvalidCodeUnitException' => $vendorDir . '/sebastian/code-unit/src/exceptions/InvalidCodeUnitException.php',
518
- 'SebastianBergmann\\CodeUnit\\Mapper' => $vendorDir . '/sebastian/code-unit/src/Mapper.php',
519
- 'SebastianBergmann\\CodeUnit\\NoTraitException' => $vendorDir . '/sebastian/code-unit/src/exceptions/NoTraitException.php',
520
- 'SebastianBergmann\\CodeUnit\\ReflectionException' => $vendorDir . '/sebastian/code-unit/src/exceptions/ReflectionException.php',
521
- 'SebastianBergmann\\CodeUnit\\TraitMethodUnit' => $vendorDir . '/sebastian/code-unit/src/TraitMethodUnit.php',
522
- 'SebastianBergmann\\CodeUnit\\TraitUnit' => $vendorDir . '/sebastian/code-unit/src/TraitUnit.php',
523
- 'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php',
524
- 'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php',
525
- 'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php',
526
- 'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php',
527
- 'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php',
528
- 'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php',
529
- 'SebastianBergmann\\Comparator\\Exception' => $vendorDir . '/sebastian/comparator/src/exceptions/Exception.php',
530
- 'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php',
531
- 'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php',
532
- 'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php',
533
- 'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php',
534
- 'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php',
535
- 'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php',
536
- 'SebastianBergmann\\Comparator\\RuntimeException' => $vendorDir . '/sebastian/comparator/src/exceptions/RuntimeException.php',
537
- 'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php',
538
- 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php',
539
- 'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php',
540
- 'SebastianBergmann\\Complexity\\Calculator' => $vendorDir . '/sebastian/complexity/src/Calculator.php',
541
- 'SebastianBergmann\\Complexity\\Complexity' => $vendorDir . '/sebastian/complexity/src/Complexity/Complexity.php',
542
- 'SebastianBergmann\\Complexity\\ComplexityCalculatingVisitor' => $vendorDir . '/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php',
543
- 'SebastianBergmann\\Complexity\\ComplexityCollection' => $vendorDir . '/sebastian/complexity/src/Complexity/ComplexityCollection.php',
544
- 'SebastianBergmann\\Complexity\\ComplexityCollectionIterator' => $vendorDir . '/sebastian/complexity/src/Complexity/ComplexityCollectionIterator.php',
545
- 'SebastianBergmann\\Complexity\\CyclomaticComplexityCalculatingVisitor' => $vendorDir . '/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php',
546
- 'SebastianBergmann\\Complexity\\Exception' => $vendorDir . '/sebastian/complexity/src/Exception/Exception.php',
547
- 'SebastianBergmann\\Complexity\\RuntimeException' => $vendorDir . '/sebastian/complexity/src/Exception/RuntimeException.php',
548
- 'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php',
549
- 'SebastianBergmann\\Diff\\ConfigurationException' => $vendorDir . '/sebastian/diff/src/Exception/ConfigurationException.php',
550
- 'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php',
551
- 'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php',
552
- 'SebastianBergmann\\Diff\\Exception' => $vendorDir . '/sebastian/diff/src/Exception/Exception.php',
553
- 'SebastianBergmann\\Diff\\InvalidArgumentException' => $vendorDir . '/sebastian/diff/src/Exception/InvalidArgumentException.php',
554
- 'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php',
555
- 'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php',
556
- 'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php',
557
- 'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php',
558
- 'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php',
559
- 'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => $vendorDir . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php',
560
- 'SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php',
561
- 'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php',
562
- 'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php',
563
- 'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php',
564
- 'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php',
565
- 'SebastianBergmann\\Environment\\OperatingSystem' => $vendorDir . '/sebastian/environment/src/OperatingSystem.php',
566
- 'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php',
567
- 'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php',
568
- 'SebastianBergmann\\FileIterator\\Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php',
569
- 'SebastianBergmann\\FileIterator\\Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php',
570
- 'SebastianBergmann\\FileIterator\\Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php',
571
- 'SebastianBergmann\\GlobalState\\CodeExporter' => $vendorDir . '/sebastian/global-state/src/CodeExporter.php',
572
- 'SebastianBergmann\\GlobalState\\Exception' => $vendorDir . '/sebastian/global-state/src/exceptions/Exception.php',
573
- 'SebastianBergmann\\GlobalState\\ExcludeList' => $vendorDir . '/sebastian/global-state/src/ExcludeList.php',
574
- 'SebastianBergmann\\GlobalState\\Restorer' => $vendorDir . '/sebastian/global-state/src/Restorer.php',
575
- 'SebastianBergmann\\GlobalState\\RuntimeException' => $vendorDir . '/sebastian/global-state/src/exceptions/RuntimeException.php',
576
- 'SebastianBergmann\\GlobalState\\Snapshot' => $vendorDir . '/sebastian/global-state/src/Snapshot.php',
577
- 'SebastianBergmann\\Invoker\\Exception' => $vendorDir . '/phpunit/php-invoker/src/exceptions/Exception.php',
578
- 'SebastianBergmann\\Invoker\\Invoker' => $vendorDir . '/phpunit/php-invoker/src/Invoker.php',
579
- 'SebastianBergmann\\Invoker\\ProcessControlExtensionNotLoadedException' => $vendorDir . '/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php',
580
- 'SebastianBergmann\\Invoker\\TimeoutException' => $vendorDir . '/phpunit/php-invoker/src/exceptions/TimeoutException.php',
581
- 'SebastianBergmann\\LinesOfCode\\Counter' => $vendorDir . '/sebastian/lines-of-code/src/Counter.php',
582
- 'SebastianBergmann\\LinesOfCode\\Exception' => $vendorDir . '/sebastian/lines-of-code/src/Exception/Exception.php',
583
- 'SebastianBergmann\\LinesOfCode\\IllogicalValuesException' => $vendorDir . '/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php',
584
- 'SebastianBergmann\\LinesOfCode\\LineCountingVisitor' => $vendorDir . '/sebastian/lines-of-code/src/LineCountingVisitor.php',
585
- 'SebastianBergmann\\LinesOfCode\\LinesOfCode' => $vendorDir . '/sebastian/lines-of-code/src/LinesOfCode.php',
586
- 'SebastianBergmann\\LinesOfCode\\NegativeValueException' => $vendorDir . '/sebastian/lines-of-code/src/Exception/NegativeValueException.php',
587
- 'SebastianBergmann\\LinesOfCode\\RuntimeException' => $vendorDir . '/sebastian/lines-of-code/src/Exception/RuntimeException.php',
588
- 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => $vendorDir . '/sebastian/object-enumerator/src/Enumerator.php',
589
- 'SebastianBergmann\\ObjectEnumerator\\Exception' => $vendorDir . '/sebastian/object-enumerator/src/Exception.php',
590
- 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => $vendorDir . '/sebastian/object-enumerator/src/InvalidArgumentException.php',
591
- 'SebastianBergmann\\ObjectReflector\\Exception' => $vendorDir . '/sebastian/object-reflector/src/Exception.php',
592
- 'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => $vendorDir . '/sebastian/object-reflector/src/InvalidArgumentException.php',
593
- 'SebastianBergmann\\ObjectReflector\\ObjectReflector' => $vendorDir . '/sebastian/object-reflector/src/ObjectReflector.php',
594
- 'SebastianBergmann\\RecursionContext\\Context' => $vendorDir . '/sebastian/recursion-context/src/Context.php',
595
- 'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php',
596
- 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php',
597
- 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php',
598
- 'SebastianBergmann\\Template\\Exception' => $vendorDir . '/phpunit/php-text-template/src/exceptions/Exception.php',
599
- 'SebastianBergmann\\Template\\InvalidArgumentException' => $vendorDir . '/phpunit/php-text-template/src/exceptions/InvalidArgumentException.php',
600
- 'SebastianBergmann\\Template\\RuntimeException' => $vendorDir . '/phpunit/php-text-template/src/exceptions/RuntimeException.php',
601
- 'SebastianBergmann\\Template\\Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php',
602
- 'SebastianBergmann\\Timer\\Duration' => $vendorDir . '/phpunit/php-timer/src/Duration.php',
603
- 'SebastianBergmann\\Timer\\Exception' => $vendorDir . '/phpunit/php-timer/src/exceptions/Exception.php',
604
- 'SebastianBergmann\\Timer\\NoActiveTimerException' => $vendorDir . '/phpunit/php-timer/src/exceptions/NoActiveTimerException.php',
605
- 'SebastianBergmann\\Timer\\ResourceUsageFormatter' => $vendorDir . '/phpunit/php-timer/src/ResourceUsageFormatter.php',
606
- 'SebastianBergmann\\Timer\\TimeSinceStartOfRequestNotAvailableException' => $vendorDir . '/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php',
607
- 'SebastianBergmann\\Timer\\Timer' => $vendorDir . '/phpunit/php-timer/src/Timer.php',
608
- 'SebastianBergmann\\Type\\CallableType' => $vendorDir . '/sebastian/type/src/CallableType.php',
609
- 'SebastianBergmann\\Type\\Exception' => $vendorDir . '/sebastian/type/src/exception/Exception.php',
610
- 'SebastianBergmann\\Type\\FalseType' => $vendorDir . '/sebastian/type/src/FalseType.php',
611
- 'SebastianBergmann\\Type\\GenericObjectType' => $vendorDir . '/sebastian/type/src/GenericObjectType.php',
612
- 'SebastianBergmann\\Type\\IterableType' => $vendorDir . '/sebastian/type/src/IterableType.php',
613
- 'SebastianBergmann\\Type\\LogicException' => $vendorDir . '/sebastian/type/src/exception/LogicException.php',
614
- 'SebastianBergmann\\Type\\MixedType' => $vendorDir . '/sebastian/type/src/MixedType.php',
615
- 'SebastianBergmann\\Type\\NullType' => $vendorDir . '/sebastian/type/src/NullType.php',
616
- 'SebastianBergmann\\Type\\ObjectType' => $vendorDir . '/sebastian/type/src/ObjectType.php',
617
- 'SebastianBergmann\\Type\\ReflectionMapper' => $vendorDir . '/sebastian/type/src/ReflectionMapper.php',
618
- 'SebastianBergmann\\Type\\RuntimeException' => $vendorDir . '/sebastian/type/src/exception/RuntimeException.php',
619
- 'SebastianBergmann\\Type\\SimpleType' => $vendorDir . '/sebastian/type/src/SimpleType.php',
620
- 'SebastianBergmann\\Type\\StaticType' => $vendorDir . '/sebastian/type/src/StaticType.php',
621
- 'SebastianBergmann\\Type\\Type' => $vendorDir . '/sebastian/type/src/Type.php',
622
- 'SebastianBergmann\\Type\\TypeName' => $vendorDir . '/sebastian/type/src/TypeName.php',
623
- 'SebastianBergmann\\Type\\UnionType' => $vendorDir . '/sebastian/type/src/UnionType.php',
624
- 'SebastianBergmann\\Type\\UnknownType' => $vendorDir . '/sebastian/type/src/UnknownType.php',
625
- 'SebastianBergmann\\Type\\VoidType' => $vendorDir . '/sebastian/type/src/VoidType.php',
626
- 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php',
627
- 'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php',
628
- 'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php',
629
- 'TheSeer\\Tokenizer\\NamespaceUriException' => $vendorDir . '/theseer/tokenizer/src/NamespaceUriException.php',
630
- 'TheSeer\\Tokenizer\\Token' => $vendorDir . '/theseer/tokenizer/src/Token.php',
631
- 'TheSeer\\Tokenizer\\TokenCollection' => $vendorDir . '/theseer/tokenizer/src/TokenCollection.php',
632
- 'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php',
633
- 'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php',
634
- 'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php',
635
  );
7
 
8
  return array(
9
  'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
10
+ 'VektorInc\\VK_Breadcrumb\\VkBreadcrumb' => $vendorDir . '/vektor-inc/vk-breadcrumb/src/VkBreadcrumb.php',
11
+ 'VektorInc\\VK_Helpers\\VkHelpers' => $vendorDir . '/vektor-inc/vk-helpers/src/VkHelpers.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  );
vendor/composer/autoload_files.php DELETED
@@ -1,14 +0,0 @@
1
- <?php
2
-
3
- // autoload_files.php @generated by Composer
4
-
5
- $vendorDir = dirname(dirname(__FILE__));
6
- $baseDir = dirname($vendorDir);
7
-
8
- return array(
9
- 'ec07570ca5a812141189b1fa81503674' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert/Functions.php',
10
- '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
11
- '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
12
- '38fbb71d514eee25044aa9d94851ee76' => $vendorDir . '/wp-phpunit/wp-phpunit/__loaded.php',
13
- '7d3b315c4f303f2fc14aca642a738e50' => $vendorDir . '/yoast/phpunit-polyfills/phpunitpolyfills-autoload.php',
14
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/composer/autoload_psr4.php CHANGED
@@ -6,15 +6,6 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
- 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/reflection-docblock/src', $vendorDir . '/phpdocumentor/type-resolver/src'),
10
- 'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'),
11
  'VektorInc\\VK_Helpers\\' => array($vendorDir . '/vektor-inc/vk-helpers/src'),
12
  'VektorInc\\VK_Breadcrumb\\' => array($vendorDir . '/vektor-inc/vk-breadcrumb/src'),
13
- 'VariableAnalysis\\' => array($vendorDir . '/sirbrillig/phpcs-variable-analysis/VariableAnalysis'),
14
- 'VK_WP_Unit_Test_Tools\\' => array($vendorDir . '/vektor-inc/vk-wp-unit-test-tools/src'),
15
- 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
16
- 'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src/Prophecy'),
17
- 'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'),
18
- 'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'),
19
- 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'),
20
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
 
9
  'VektorInc\\VK_Helpers\\' => array($vendorDir . '/vektor-inc/vk-helpers/src'),
10
  'VektorInc\\VK_Breadcrumb\\' => array($vendorDir . '/vektor-inc/vk-breadcrumb/src'),
 
 
 
 
 
 
 
11
  );
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit048daf879f623e132cb9fa9c3192a738
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,15 @@ class ComposerAutoloaderInit048daf879f623e132cb9fa9c3192a738
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInit048daf879f623e132cb9fa9c3192a738', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
27
- spl_autoload_unregister(array('ComposerAutoloaderInit048daf879f623e132cb9fa9c3192a738', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require __DIR__ . '/autoload_static.php';
32
 
33
- call_user_func(\Composer\Autoload\ComposerStaticInit048daf879f623e132cb9fa9c3192a738::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
@@ -50,24 +50,6 @@ class ComposerAutoloaderInit048daf879f623e132cb9fa9c3192a738
50
 
51
  $loader->register(true);
52
 
53
- if ($useStaticLoader) {
54
- $includeFiles = Composer\Autoload\ComposerStaticInit048daf879f623e132cb9fa9c3192a738::$files;
55
- } else {
56
- $includeFiles = require __DIR__ . '/autoload_files.php';
57
- }
58
- foreach ($includeFiles as $fileIdentifier => $file) {
59
- composerRequire048daf879f623e132cb9fa9c3192a738($fileIdentifier, $file);
60
- }
61
-
62
  return $loader;
63
  }
64
  }
65
-
66
- function composerRequire048daf879f623e132cb9fa9c3192a738($fileIdentifier, $file)
67
- {
68
- if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
69
- require $file;
70
-
71
- $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
72
- }
73
- }
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderIniteb7b88c036354120a16cd7e46ba68ad7
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderIniteb7b88c036354120a16cd7e46ba68ad7', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
27
+ spl_autoload_unregister(array('ComposerAutoloaderIniteb7b88c036354120a16cd7e46ba68ad7', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require __DIR__ . '/autoload_static.php';
32
 
33
+ call_user_func(\Composer\Autoload\ComposerStaticIniteb7b88c036354120a16cd7e46ba68ad7::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
50
 
51
  $loader->register(true);
52
 
 
 
 
 
 
 
 
 
 
53
  return $loader;
54
  }
55
  }
 
 
 
 
 
 
 
 
 
vendor/composer/autoload_static.php CHANGED
@@ -4,59 +4,17 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit048daf879f623e132cb9fa9c3192a738
8
  {
9
- public static $files = array (
10
- 'ec07570ca5a812141189b1fa81503674' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert/Functions.php',
11
- '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
12
- '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
13
- '38fbb71d514eee25044aa9d94851ee76' => __DIR__ . '/..' . '/wp-phpunit/wp-phpunit/__loaded.php',
14
- '7d3b315c4f303f2fc14aca642a738e50' => __DIR__ . '/..' . '/yoast/phpunit-polyfills/phpunitpolyfills-autoload.php',
15
- );
16
-
17
  public static $prefixLengthsPsr4 = array (
18
- 'p' =>
19
- array (
20
- 'phpDocumentor\\Reflection\\' => 25,
21
- ),
22
- 'W' =>
23
- array (
24
- 'Webmozart\\Assert\\' => 17,
25
- ),
26
  'V' =>
27
  array (
28
  'VektorInc\\VK_Helpers\\' => 21,
29
  'VektorInc\\VK_Breadcrumb\\' => 24,
30
- 'VariableAnalysis\\' => 17,
31
- 'VK_WP_Unit_Test_Tools\\' => 22,
32
- ),
33
- 'S' =>
34
- array (
35
- 'Symfony\\Polyfill\\Ctype\\' => 23,
36
- ),
37
- 'P' =>
38
- array (
39
- 'Prophecy\\' => 9,
40
- 'PhpParser\\' => 10,
41
- ),
42
- 'D' =>
43
- array (
44
- 'Doctrine\\Instantiator\\' => 22,
45
- 'DeepCopy\\' => 9,
46
  ),
47
  );
48
 
49
  public static $prefixDirsPsr4 = array (
50
- 'phpDocumentor\\Reflection\\' =>
51
- array (
52
- 0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src',
53
- 1 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src',
54
- 2 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src',
55
- ),
56
- 'Webmozart\\Assert\\' =>
57
- array (
58
- 0 => __DIR__ . '/..' . '/webmozart/assert/src',
59
- ),
60
  'VektorInc\\VK_Helpers\\' =>
61
  array (
62
  0 => __DIR__ . '/..' . '/vektor-inc/vk-helpers/src',
@@ -65,671 +23,20 @@ class ComposerStaticInit048daf879f623e132cb9fa9c3192a738
65
  array (
66
  0 => __DIR__ . '/..' . '/vektor-inc/vk-breadcrumb/src',
67
  ),
68
- 'VariableAnalysis\\' =>
69
- array (
70
- 0 => __DIR__ . '/..' . '/sirbrillig/phpcs-variable-analysis/VariableAnalysis',
71
- ),
72
- 'VK_WP_Unit_Test_Tools\\' =>
73
- array (
74
- 0 => __DIR__ . '/..' . '/vektor-inc/vk-wp-unit-test-tools/src',
75
- ),
76
- 'Symfony\\Polyfill\\Ctype\\' =>
77
- array (
78
- 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
79
- ),
80
- 'Prophecy\\' =>
81
- array (
82
- 0 => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy',
83
- ),
84
- 'PhpParser\\' =>
85
- array (
86
- 0 => __DIR__ . '/..' . '/nikic/php-parser/lib/PhpParser',
87
- ),
88
- 'Doctrine\\Instantiator\\' =>
89
- array (
90
- 0 => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator',
91
- ),
92
- 'DeepCopy\\' =>
93
- array (
94
- 0 => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy',
95
- ),
96
  );
97
 
98
  public static $classMap = array (
99
  'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
100
- 'PHPUnit\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Exception.php',
101
- 'PHPUnit\\Framework\\ActualValueIsNotAnObjectException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/ActualValueIsNotAnObjectException.php',
102
- 'PHPUnit\\Framework\\Assert' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert.php',
103
- 'PHPUnit\\Framework\\AssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/AssertionFailedError.php',
104
- 'PHPUnit\\Framework\\CodeCoverageException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php',
105
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotAcceptParameterTypeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotAcceptParameterTypeException.php',
106
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotDeclareBoolReturnTypeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareBoolReturnTypeException.php',
107
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotDeclareExactlyOneParameterException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareExactlyOneParameterException.php',
108
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotDeclareParameterTypeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareParameterTypeException.php',
109
- 'PHPUnit\\Framework\\ComparisonMethodDoesNotExistException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotExistException.php',
110
- 'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Traversable/ArrayHasKey.php',
111
- 'PHPUnit\\Framework\\Constraint\\BinaryOperator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Operator/BinaryOperator.php',
112
- 'PHPUnit\\Framework\\Constraint\\Callback' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Callback.php',
113
- 'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasAttribute.php',
114
- 'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasStaticAttribute.php',
115
- 'PHPUnit\\Framework\\Constraint\\Constraint' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php',
116
- 'PHPUnit\\Framework\\Constraint\\Count' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/Count.php',
117
- 'PHPUnit\\Framework\\Constraint\\DirectoryExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/DirectoryExists.php',
118
- 'PHPUnit\\Framework\\Constraint\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Exception/Exception.php',
119
- 'PHPUnit\\Framework\\Constraint\\ExceptionCode' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionCode.php',
120
- 'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessage.php',
121
- 'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessageRegularExpression.php',
122
- 'PHPUnit\\Framework\\Constraint\\FileExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/FileExists.php',
123
- 'PHPUnit\\Framework\\Constraint\\GreaterThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/GreaterThan.php',
124
- 'PHPUnit\\Framework\\Constraint\\IsAnything' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php',
125
- 'PHPUnit\\Framework\\Constraint\\IsEmpty' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/IsEmpty.php',
126
- 'PHPUnit\\Framework\\Constraint\\IsEqual' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqual.php',
127
- 'PHPUnit\\Framework\\Constraint\\IsEqualCanonicalizing' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualCanonicalizing.php',
128
- 'PHPUnit\\Framework\\Constraint\\IsEqualIgnoringCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualIgnoringCase.php',
129
- 'PHPUnit\\Framework\\Constraint\\IsEqualWithDelta' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualWithDelta.php',
130
- 'PHPUnit\\Framework\\Constraint\\IsFalse' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Boolean/IsFalse.php',
131
- 'PHPUnit\\Framework\\Constraint\\IsFinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Math/IsFinite.php',
132
- 'PHPUnit\\Framework\\Constraint\\IsIdentical' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php',
133
- 'PHPUnit\\Framework\\Constraint\\IsInfinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Math/IsInfinite.php',
134
- 'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Type/IsInstanceOf.php',
135
- 'PHPUnit\\Framework\\Constraint\\IsJson' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/String/IsJson.php',
136
- 'PHPUnit\\Framework\\Constraint\\IsNan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Math/IsNan.php',
137
- 'PHPUnit\\Framework\\Constraint\\IsNull' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Type/IsNull.php',
138
- 'PHPUnit\\Framework\\Constraint\\IsReadable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsReadable.php',
139
- 'PHPUnit\\Framework\\Constraint\\IsTrue' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Boolean/IsTrue.php',
140
- 'PHPUnit\\Framework\\Constraint\\IsType' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Type/IsType.php',
141
- 'PHPUnit\\Framework\\Constraint\\IsWritable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsWritable.php',
142
- 'PHPUnit\\Framework\\Constraint\\JsonMatches' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php',
143
- 'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php',
144
- 'PHPUnit\\Framework\\Constraint\\LessThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/LessThan.php',
145
- 'PHPUnit\\Framework\\Constraint\\LogicalAnd' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalAnd.php',
146
- 'PHPUnit\\Framework\\Constraint\\LogicalNot' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalNot.php',
147
- 'PHPUnit\\Framework\\Constraint\\LogicalOr' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalOr.php',
148
- 'PHPUnit\\Framework\\Constraint\\LogicalXor' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalXor.php',
149
- 'PHPUnit\\Framework\\Constraint\\ObjectEquals' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Object/ObjectEquals.php',
150
- 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Object/ObjectHasAttribute.php',
151
- 'PHPUnit\\Framework\\Constraint\\Operator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Operator/Operator.php',
152
- 'PHPUnit\\Framework\\Constraint\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/String/RegularExpression.php',
153
- 'PHPUnit\\Framework\\Constraint\\SameSize' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Cardinality/SameSize.php',
154
- 'PHPUnit\\Framework\\Constraint\\StringContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/String/StringContains.php',
155
- 'PHPUnit\\Framework\\Constraint\\StringEndsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/String/StringEndsWith.php',
156
- 'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/String/StringMatchesFormatDescription.php',
157
- 'PHPUnit\\Framework\\Constraint\\StringStartsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/String/StringStartsWith.php',
158
- 'PHPUnit\\Framework\\Constraint\\TraversableContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContains.php',
159
- 'PHPUnit\\Framework\\Constraint\\TraversableContainsEqual' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsEqual.php',
160
- 'PHPUnit\\Framework\\Constraint\\TraversableContainsIdentical' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsIdentical.php',
161
- 'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsOnly.php',
162
- 'PHPUnit\\Framework\\Constraint\\UnaryOperator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Operator/UnaryOperator.php',
163
- 'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/CoveredCodeNotExecutedException.php',
164
- 'PHPUnit\\Framework\\DataProviderTestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php',
165
- 'PHPUnit\\Framework\\Error' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/Error.php',
166
- 'PHPUnit\\Framework\\ErrorTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ErrorTestCase.php',
167
- 'PHPUnit\\Framework\\Error\\Deprecated' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Deprecated.php',
168
- 'PHPUnit\\Framework\\Error\\Error' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Error.php',
169
- 'PHPUnit\\Framework\\Error\\Notice' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Notice.php',
170
- 'PHPUnit\\Framework\\Error\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Warning.php',
171
- 'PHPUnit\\Framework\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/Exception.php',
172
- 'PHPUnit\\Framework\\ExceptionWrapper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php',
173
- 'PHPUnit\\Framework\\ExecutionOrderDependency' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExecutionOrderDependency.php',
174
- 'PHPUnit\\Framework\\ExpectationFailedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/ExpectationFailedException.php',
175
- 'PHPUnit\\Framework\\IncompleteTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTest.php',
176
- 'PHPUnit\\Framework\\IncompleteTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php',
177
- 'PHPUnit\\Framework\\IncompleteTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/IncompleteTestError.php',
178
- 'PHPUnit\\Framework\\InvalidArgumentException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/InvalidArgumentException.php',
179
- 'PHPUnit\\Framework\\InvalidCoversTargetException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/InvalidCoversTargetException.php',
180
- 'PHPUnit\\Framework\\InvalidDataProviderException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php',
181
- 'PHPUnit\\Framework\\InvalidParameterGroupException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/InvalidParameterGroupException.php',
182
- 'PHPUnit\\Framework\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/MissingCoversAnnotationException.php',
183
- 'PHPUnit\\Framework\\MockObject\\Api' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Api/Api.php',
184
- 'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php',
185
- 'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/Identity.php',
186
- 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationMocker.php',
187
- 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationStubber' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationStubber.php',
188
- 'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/MethodNameMatch.php',
189
- 'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/ParametersMatch.php',
190
- 'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php',
191
- 'PHPUnit\\Framework\\MockObject\\CannotUseAddMethodsException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseAddMethodsException.php',
192
- 'PHPUnit\\Framework\\MockObject\\CannotUseOnlyMethodsException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php',
193
- 'PHPUnit\\Framework\\MockObject\\ClassAlreadyExistsException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/ClassAlreadyExistsException.php',
194
- 'PHPUnit\\Framework\\MockObject\\ClassIsFinalException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/ClassIsFinalException.php',
195
- 'PHPUnit\\Framework\\MockObject\\ConfigurableMethod' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/ConfigurableMethod.php',
196
- 'PHPUnit\\Framework\\MockObject\\ConfigurableMethodsAlreadyInitializedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.php',
197
- 'PHPUnit\\Framework\\MockObject\\DuplicateMethodException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/DuplicateMethodException.php',
198
- 'PHPUnit\\Framework\\MockObject\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php',
199
- 'PHPUnit\\Framework\\MockObject\\Generator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator.php',
200
- 'PHPUnit\\Framework\\MockObject\\IncompatibleReturnValueException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/IncompatibleReturnValueException.php',
201
- 'PHPUnit\\Framework\\MockObject\\InvalidMethodNameException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/InvalidMethodNameException.php',
202
- 'PHPUnit\\Framework\\MockObject\\Invocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Invocation.php',
203
- 'PHPUnit\\Framework\\MockObject\\InvocationHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/InvocationHandler.php',
204
- 'PHPUnit\\Framework\\MockObject\\MatchBuilderNotFoundException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/MatchBuilderNotFoundException.php',
205
- 'PHPUnit\\Framework\\MockObject\\Matcher' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher.php',
206
- 'PHPUnit\\Framework\\MockObject\\MatcherAlreadyRegisteredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/MatcherAlreadyRegisteredException.php',
207
- 'PHPUnit\\Framework\\MockObject\\Method' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Api/Method.php',
208
- 'PHPUnit\\Framework\\MockObject\\MethodCannotBeConfiguredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodCannotBeConfiguredException.php',
209
- 'PHPUnit\\Framework\\MockObject\\MethodNameAlreadyConfiguredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameAlreadyConfiguredException.php',
210
- 'PHPUnit\\Framework\\MockObject\\MethodNameConstraint' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MethodNameConstraint.php',
211
- 'PHPUnit\\Framework\\MockObject\\MethodNameNotConfiguredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameNotConfiguredException.php',
212
- 'PHPUnit\\Framework\\MockObject\\MethodParametersAlreadyConfiguredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/MethodParametersAlreadyConfiguredException.php',
213
- 'PHPUnit\\Framework\\MockObject\\MockBuilder' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php',
214
- 'PHPUnit\\Framework\\MockObject\\MockClass' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockClass.php',
215
- 'PHPUnit\\Framework\\MockObject\\MockMethod' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockMethod.php',
216
- 'PHPUnit\\Framework\\MockObject\\MockMethodSet' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php',
217
- 'PHPUnit\\Framework\\MockObject\\MockObject' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockObject.php',
218
- 'PHPUnit\\Framework\\MockObject\\MockTrait' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockTrait.php',
219
- 'PHPUnit\\Framework\\MockObject\\MockType' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockType.php',
220
- 'PHPUnit\\Framework\\MockObject\\MockedCloneMethod' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Api/MockedCloneMethod.php',
221
- 'PHPUnit\\Framework\\MockObject\\OriginalConstructorInvocationRequiredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/OriginalConstructorInvocationRequiredException.php',
222
- 'PHPUnit\\Framework\\MockObject\\ReflectionException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReflectionException.php',
223
- 'PHPUnit\\Framework\\MockObject\\ReturnValueNotConfiguredException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php',
224
- 'PHPUnit\\Framework\\MockObject\\Rule\\AnyInvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/AnyInvokedCount.php',
225
- 'PHPUnit\\Framework\\MockObject\\Rule\\AnyParameters' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/AnyParameters.php',
226
- 'PHPUnit\\Framework\\MockObject\\Rule\\ConsecutiveParameters' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/ConsecutiveParameters.php',
227
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvocationOrder' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvocationOrder.php',
228
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtIndex' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtIndex.php',
229
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtLeastCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastCount.php',
230
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtLeastOnce' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastOnce.php',
231
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedAtMostCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtMostCount.php',
232
- 'PHPUnit\\Framework\\MockObject\\Rule\\InvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedCount.php',
233
- 'PHPUnit\\Framework\\MockObject\\Rule\\MethodName' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/MethodName.php',
234
- 'PHPUnit\\Framework\\MockObject\\Rule\\Parameters' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/Parameters.php',
235
- 'PHPUnit\\Framework\\MockObject\\Rule\\ParametersRule' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Rule/ParametersRule.php',
236
- 'PHPUnit\\Framework\\MockObject\\RuntimeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php',
237
- 'PHPUnit\\Framework\\MockObject\\SoapExtensionNotAvailableException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/SoapExtensionNotAvailableException.php',
238
- 'PHPUnit\\Framework\\MockObject\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub.php',
239
- 'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ConsecutiveCalls.php',
240
- 'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/Exception.php',
241
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnArgument.php',
242
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnCallback.php',
243
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnReference.php',
244
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnSelf.php',
245
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnStub.php',
246
- 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnValueMap.php',
247
- 'PHPUnit\\Framework\\MockObject\\Stub\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/Stub.php',
248
- 'PHPUnit\\Framework\\MockObject\\UnknownClassException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownClassException.php',
249
- 'PHPUnit\\Framework\\MockObject\\UnknownTraitException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTraitException.php',
250
- 'PHPUnit\\Framework\\MockObject\\UnknownTypeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTypeException.php',
251
- 'PHPUnit\\Framework\\MockObject\\UnmockedCloneMethod' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Api/UnmockedCloneMethod.php',
252
- 'PHPUnit\\Framework\\MockObject\\Verifiable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Verifiable.php',
253
- 'PHPUnit\\Framework\\NoChildTestSuiteException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php',
254
- 'PHPUnit\\Framework\\OutputError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/OutputError.php',
255
- 'PHPUnit\\Framework\\PHPTAssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/PHPTAssertionFailedError.php',
256
- 'PHPUnit\\Framework\\Reorderable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Reorderable.php',
257
- 'PHPUnit\\Framework\\RiskyTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/RiskyTestError.php',
258
- 'PHPUnit\\Framework\\SelfDescribing' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
259
- 'PHPUnit\\Framework\\SkippedTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTest.php',
260
- 'PHPUnit\\Framework\\SkippedTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestCase.php',
261
- 'PHPUnit\\Framework\\SkippedTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/SkippedTestError.php',
262
- 'PHPUnit\\Framework\\SkippedTestSuiteError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/SkippedTestSuiteError.php',
263
- 'PHPUnit\\Framework\\SyntheticError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/SyntheticError.php',
264
- 'PHPUnit\\Framework\\SyntheticSkippedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/SyntheticSkippedError.php',
265
- 'PHPUnit\\Framework\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Test.php',
266
- 'PHPUnit\\Framework\\TestBuilder' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestBuilder.php',
267
- 'PHPUnit\\Framework\\TestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestCase.php',
268
- 'PHPUnit\\Framework\\TestFailure' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestFailure.php',
269
- 'PHPUnit\\Framework\\TestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListener.php',
270
- 'PHPUnit\\Framework\\TestListenerDefaultImplementation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php',
271
- 'PHPUnit\\Framework\\TestResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestResult.php',
272
- 'PHPUnit\\Framework\\TestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuite.php',
273
- 'PHPUnit\\Framework\\TestSuiteIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php',
274
- 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/UnintentionallyCoveredCodeError.php',
275
- 'PHPUnit\\Framework\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/Warning.php',
276
- 'PHPUnit\\Framework\\WarningTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/WarningTestCase.php',
277
- 'PHPUnit\\Runner\\AfterIncompleteTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php',
278
- 'PHPUnit\\Runner\\AfterLastTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php',
279
- 'PHPUnit\\Runner\\AfterRiskyTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php',
280
- 'PHPUnit\\Runner\\AfterSkippedTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php',
281
- 'PHPUnit\\Runner\\AfterSuccessfulTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php',
282
- 'PHPUnit\\Runner\\AfterTestErrorHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php',
283
- 'PHPUnit\\Runner\\AfterTestFailureHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php',
284
- 'PHPUnit\\Runner\\AfterTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestHook.php',
285
- 'PHPUnit\\Runner\\AfterTestWarningHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php',
286
- 'PHPUnit\\Runner\\BaseTestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/BaseTestRunner.php',
287
- 'PHPUnit\\Runner\\BeforeFirstTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php',
288
- 'PHPUnit\\Runner\\BeforeTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php',
289
- 'PHPUnit\\Runner\\DefaultTestResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/DefaultTestResultCache.php',
290
- 'PHPUnit\\Runner\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception.php',
291
- 'PHPUnit\\Runner\\Extension\\ExtensionHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Extension/ExtensionHandler.php',
292
- 'PHPUnit\\Runner\\Extension\\PharLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Extension/PharLoader.php',
293
- 'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php',
294
- 'PHPUnit\\Runner\\Filter\\Factory' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Factory.php',
295
- 'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php',
296
- 'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php',
297
- 'PHPUnit\\Runner\\Filter\\NameFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php',
298
- 'PHPUnit\\Runner\\Hook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/Hook.php',
299
- 'PHPUnit\\Runner\\NullTestResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/NullTestResultCache.php',
300
- 'PHPUnit\\Runner\\PhptTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/PhptTestCase.php',
301
- 'PHPUnit\\Runner\\ResultCacheExtension' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/ResultCacheExtension.php',
302
- 'PHPUnit\\Runner\\StandardTestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php',
303
- 'PHPUnit\\Runner\\TestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/TestHook.php',
304
- 'PHPUnit\\Runner\\TestListenerAdapter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/TestListenerAdapter.php',
305
- 'PHPUnit\\Runner\\TestResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestResultCache.php',
306
- 'PHPUnit\\Runner\\TestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php',
307
- 'PHPUnit\\Runner\\TestSuiteSorter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteSorter.php',
308
- 'PHPUnit\\Runner\\Version' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Version.php',
309
- 'PHPUnit\\TextUI\\CliArguments\\Builder' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/CliArguments/Builder.php',
310
- 'PHPUnit\\TextUI\\CliArguments\\Configuration' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/CliArguments/Configuration.php',
311
- 'PHPUnit\\TextUI\\CliArguments\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/CliArguments/Exception.php',
312
- 'PHPUnit\\TextUI\\CliArguments\\Mapper' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/CliArguments/Mapper.php',
313
- 'PHPUnit\\TextUI\\Command' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Command.php',
314
- 'PHPUnit\\TextUI\\DefaultResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/DefaultResultPrinter.php',
315
- 'PHPUnit\\TextUI\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/Exception.php',
316
- 'PHPUnit\\TextUI\\Help' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Help.php',
317
- 'PHPUnit\\TextUI\\ReflectionException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/ReflectionException.php',
318
- 'PHPUnit\\TextUI\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/ResultPrinter.php',
319
- 'PHPUnit\\TextUI\\RuntimeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php',
320
- 'PHPUnit\\TextUI\\TestDirectoryNotFoundException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/TestDirectoryNotFoundException.php',
321
- 'PHPUnit\\TextUI\\TestFileNotFoundException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Exception/TestFileNotFoundException.php',
322
- 'PHPUnit\\TextUI\\TestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/TestRunner.php',
323
- 'PHPUnit\\TextUI\\TestSuiteMapper' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/TestSuiteMapper.php',
324
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/CodeCoverage.php',
325
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\FilterMapper' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/FilterMapper.php',
326
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Filter\\Directory' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/Directory.php',
327
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Filter\\DirectoryCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollection.php',
328
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Filter\\DirectoryCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollectionIterator.php',
329
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Clover' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Clover.php',
330
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Cobertura' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Cobertura.php',
331
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Crap4j' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Crap4j.php',
332
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Html' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Html.php',
333
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Php' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Php.php',
334
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Text' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Text.php',
335
- 'PHPUnit\\TextUI\\XmlConfiguration\\CodeCoverage\\Report\\Xml' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Xml.php',
336
- 'PHPUnit\\TextUI\\XmlConfiguration\\Configuration' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Configuration.php',
337
- 'PHPUnit\\TextUI\\XmlConfiguration\\Constant' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Constant.php',
338
- 'PHPUnit\\TextUI\\XmlConfiguration\\ConstantCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollection.php',
339
- 'PHPUnit\\TextUI\\XmlConfiguration\\ConstantCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollectionIterator.php',
340
- 'PHPUnit\\TextUI\\XmlConfiguration\\ConvertLogTypes' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/ConvertLogTypes.php',
341
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageCloverToReport' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCloverToReport.php',
342
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageCrap4jToReport' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCrap4jToReport.php',
343
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageHtmlToReport' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageHtmlToReport.php',
344
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoveragePhpToReport' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoveragePhpToReport.php',
345
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageTextToReport' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageTextToReport.php',
346
- 'PHPUnit\\TextUI\\XmlConfiguration\\CoverageXmlToReport' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageXmlToReport.php',
347
- 'PHPUnit\\TextUI\\XmlConfiguration\\Directory' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/Directory.php',
348
- 'PHPUnit\\TextUI\\XmlConfiguration\\DirectoryCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollection.php',
349
- 'PHPUnit\\TextUI\\XmlConfiguration\\DirectoryCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollectionIterator.php',
350
- 'PHPUnit\\TextUI\\XmlConfiguration\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Exception.php',
351
- 'PHPUnit\\TextUI\\XmlConfiguration\\Extension' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/Extension.php',
352
- 'PHPUnit\\TextUI\\XmlConfiguration\\ExtensionCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollection.php',
353
- 'PHPUnit\\TextUI\\XmlConfiguration\\ExtensionCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollectionIterator.php',
354
- 'PHPUnit\\TextUI\\XmlConfiguration\\File' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/File.php',
355
- 'PHPUnit\\TextUI\\XmlConfiguration\\FileCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollection.php',
356
- 'PHPUnit\\TextUI\\XmlConfiguration\\FileCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollectionIterator.php',
357
- 'PHPUnit\\TextUI\\XmlConfiguration\\Generator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Generator.php',
358
- 'PHPUnit\\TextUI\\XmlConfiguration\\Group' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Group.php',
359
- 'PHPUnit\\TextUI\\XmlConfiguration\\GroupCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollection.php',
360
- 'PHPUnit\\TextUI\\XmlConfiguration\\GroupCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollectionIterator.php',
361
- 'PHPUnit\\TextUI\\XmlConfiguration\\Groups' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Groups.php',
362
- 'PHPUnit\\TextUI\\XmlConfiguration\\IniSetting' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSetting.php',
363
- 'PHPUnit\\TextUI\\XmlConfiguration\\IniSettingCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollection.php',
364
- 'PHPUnit\\TextUI\\XmlConfiguration\\IniSettingCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollectionIterator.php',
365
- 'PHPUnit\\TextUI\\XmlConfiguration\\IntroduceCoverageElement' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/IntroduceCoverageElement.php',
366
- 'PHPUnit\\TextUI\\XmlConfiguration\\Loader' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Loader.php',
367
- 'PHPUnit\\TextUI\\XmlConfiguration\\LogToReportMigration' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/LogToReportMigration.php',
368
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\Junit' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Junit.php',
369
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\Logging' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Logging.php',
370
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TeamCity' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TeamCity.php',
371
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Html' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Html.php',
372
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Text' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Text.php',
373
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\TestDox\\Xml' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Xml.php',
374
- 'PHPUnit\\TextUI\\XmlConfiguration\\Logging\\Text' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Text.php',
375
- 'PHPUnit\\TextUI\\XmlConfiguration\\Migration' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/Migration.php',
376
- 'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilder' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilder.php',
377
- 'PHPUnit\\TextUI\\XmlConfiguration\\MigrationBuilderException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilderException.php',
378
- 'PHPUnit\\TextUI\\XmlConfiguration\\MigrationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationException.php',
379
- 'PHPUnit\\TextUI\\XmlConfiguration\\Migrator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrator.php',
380
- 'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromFilterWhitelistToCoverage' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php',
381
- 'PHPUnit\\TextUI\\XmlConfiguration\\MoveAttributesFromRootToCoverage' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromRootToCoverage.php',
382
- 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistDirectoriesToCoverage' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistDirectoriesToCoverage.php',
383
- 'PHPUnit\\TextUI\\XmlConfiguration\\MoveWhitelistExcludesToCoverage' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistExcludesToCoverage.php',
384
- 'PHPUnit\\TextUI\\XmlConfiguration\\PHPUnit' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/PHPUnit.php',
385
- 'PHPUnit\\TextUI\\XmlConfiguration\\Php' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Php.php',
386
- 'PHPUnit\\TextUI\\XmlConfiguration\\PhpHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/PhpHandler.php',
387
- 'PHPUnit\\TextUI\\XmlConfiguration\\RemoveCacheTokensAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveCacheTokensAttribute.php',
388
- 'PHPUnit\\TextUI\\XmlConfiguration\\RemoveEmptyFilter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveEmptyFilter.php',
389
- 'PHPUnit\\TextUI\\XmlConfiguration\\RemoveLogTypes' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveLogTypes.php',
390
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestDirectory' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectory.php',
391
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestDirectoryCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollection.php',
392
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestDirectoryCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollectionIterator.php',
393
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestFile' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFile.php',
394
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestFileCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollection.php',
395
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestFileCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollectionIterator.php',
396
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuite.php',
397
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestSuiteCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollection.php',
398
- 'PHPUnit\\TextUI\\XmlConfiguration\\TestSuiteCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollectionIterator.php',
399
- 'PHPUnit\\TextUI\\XmlConfiguration\\UpdateSchemaLocationTo93' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/UpdateSchemaLocationTo93.php',
400
- 'PHPUnit\\TextUI\\XmlConfiguration\\Variable' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Variable.php',
401
- 'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollection.php',
402
- 'PHPUnit\\TextUI\\XmlConfiguration\\VariableCollectionIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollectionIterator.php',
403
- 'PHPUnit\\Util\\Annotation\\DocBlock' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Annotation/DocBlock.php',
404
- 'PHPUnit\\Util\\Annotation\\Registry' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Annotation/Registry.php',
405
- 'PHPUnit\\Util\\Blacklist' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Blacklist.php',
406
- 'PHPUnit\\Util\\Color' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Color.php',
407
- 'PHPUnit\\Util\\ErrorHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ErrorHandler.php',
408
- 'PHPUnit\\Util\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Exception.php',
409
- 'PHPUnit\\Util\\ExcludeList' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ExcludeList.php',
410
- 'PHPUnit\\Util\\FileLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/FileLoader.php',
411
- 'PHPUnit\\Util\\Filesystem' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filesystem.php',
412
- 'PHPUnit\\Util\\Filter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filter.php',
413
- 'PHPUnit\\Util\\GlobalState' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/GlobalState.php',
414
- 'PHPUnit\\Util\\InvalidDataSetException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/InvalidDataSetException.php',
415
- 'PHPUnit\\Util\\Json' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Json.php',
416
- 'PHPUnit\\Util\\Log\\JUnit' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/JUnit.php',
417
- 'PHPUnit\\Util\\Log\\TeamCity' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/TeamCity.php',
418
- 'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php',
419
- 'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php',
420
- 'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php',
421
- 'PHPUnit\\Util\\Printer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Printer.php',
422
- 'PHPUnit\\Util\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/RegularExpression.php',
423
- 'PHPUnit\\Util\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Test.php',
424
- 'PHPUnit\\Util\\TestDox\\CliTestDoxPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/CliTestDoxPrinter.php',
425
- 'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php',
426
- 'PHPUnit\\Util\\TestDox\\NamePrettifier' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php',
427
- 'PHPUnit\\Util\\TestDox\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php',
428
- 'PHPUnit\\Util\\TestDox\\TestDoxPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/TestDoxPrinter.php',
429
- 'PHPUnit\\Util\\TestDox\\TextResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php',
430
- 'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php',
431
- 'PHPUnit\\Util\\TextTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TextTestListRenderer.php',
432
- 'PHPUnit\\Util\\Type' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Type.php',
433
- 'PHPUnit\\Util\\VersionComparisonOperator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/VersionComparisonOperator.php',
434
- 'PHPUnit\\Util\\XdebugFilterScriptGenerator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/XdebugFilterScriptGenerator.php',
435
- 'PHPUnit\\Util\\Xml' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml.php',
436
- 'PHPUnit\\Util\\XmlTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php',
437
- 'PHPUnit\\Util\\Xml\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/Exception.php',
438
- 'PHPUnit\\Util\\Xml\\FailedSchemaDetectionResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/FailedSchemaDetectionResult.php',
439
- 'PHPUnit\\Util\\Xml\\Loader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/Loader.php',
440
- 'PHPUnit\\Util\\Xml\\SchemaDetectionResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/SchemaDetectionResult.php',
441
- 'PHPUnit\\Util\\Xml\\SchemaDetector' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/SchemaDetector.php',
442
- 'PHPUnit\\Util\\Xml\\SchemaFinder' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/SchemaFinder.php',
443
- 'PHPUnit\\Util\\Xml\\SnapshotNodeList' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/SnapshotNodeList.php',
444
- 'PHPUnit\\Util\\Xml\\SuccessfulSchemaDetectionResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/SuccessfulSchemaDetectionResult.php',
445
- 'PHPUnit\\Util\\Xml\\ValidationResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/ValidationResult.php',
446
- 'PHPUnit\\Util\\Xml\\Validator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml/Validator.php',
447
- 'PharIo\\Manifest\\Application' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Application.php',
448
- 'PharIo\\Manifest\\ApplicationName' => __DIR__ . '/..' . '/phar-io/manifest/src/values/ApplicationName.php',
449
- 'PharIo\\Manifest\\Author' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Author.php',
450
- 'PharIo\\Manifest\\AuthorCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollection.php',
451
- 'PharIo\\Manifest\\AuthorCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollectionIterator.php',
452
- 'PharIo\\Manifest\\AuthorElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElement.php',
453
- 'PharIo\\Manifest\\AuthorElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElementCollection.php',
454
- 'PharIo\\Manifest\\BundledComponent' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponent.php',
455
- 'PharIo\\Manifest\\BundledComponentCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollection.php',
456
- 'PharIo\\Manifest\\BundledComponentCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php',
457
- 'PharIo\\Manifest\\BundlesElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/BundlesElement.php',
458
- 'PharIo\\Manifest\\ComponentElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElement.php',
459
- 'PharIo\\Manifest\\ComponentElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElementCollection.php',
460
- 'PharIo\\Manifest\\ContainsElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ContainsElement.php',
461
- 'PharIo\\Manifest\\CopyrightElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/CopyrightElement.php',
462
- 'PharIo\\Manifest\\CopyrightInformation' => __DIR__ . '/..' . '/phar-io/manifest/src/values/CopyrightInformation.php',
463
- 'PharIo\\Manifest\\ElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ElementCollection.php',
464
- 'PharIo\\Manifest\\ElementCollectionException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ElementCollectionException.php',
465
- 'PharIo\\Manifest\\Email' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Email.php',
466
- 'PharIo\\Manifest\\Exception' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/Exception.php',
467
- 'PharIo\\Manifest\\ExtElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElement.php',
468
- 'PharIo\\Manifest\\ExtElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElementCollection.php',
469
- 'PharIo\\Manifest\\Extension' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Extension.php',
470
- 'PharIo\\Manifest\\ExtensionElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtensionElement.php',
471
- 'PharIo\\Manifest\\InvalidApplicationNameException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php',
472
- 'PharIo\\Manifest\\InvalidEmailException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidEmailException.php',
473
- 'PharIo\\Manifest\\InvalidUrlException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidUrlException.php',
474
- 'PharIo\\Manifest\\Library' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Library.php',
475
- 'PharIo\\Manifest\\License' => __DIR__ . '/..' . '/phar-io/manifest/src/values/License.php',
476
- 'PharIo\\Manifest\\LicenseElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/LicenseElement.php',
477
- 'PharIo\\Manifest\\Manifest' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Manifest.php',
478
- 'PharIo\\Manifest\\ManifestDocument' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestDocument.php',
479
- 'PharIo\\Manifest\\ManifestDocumentException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php',
480
- 'PharIo\\Manifest\\ManifestDocumentLoadingException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentLoadingException.php',
481
- 'PharIo\\Manifest\\ManifestDocumentMapper' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestDocumentMapper.php',
482
- 'PharIo\\Manifest\\ManifestDocumentMapperException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php',
483
- 'PharIo\\Manifest\\ManifestElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestElement.php',
484
- 'PharIo\\Manifest\\ManifestElementException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestElementException.php',
485
- 'PharIo\\Manifest\\ManifestLoader' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestLoader.php',
486
- 'PharIo\\Manifest\\ManifestLoaderException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php',
487
- 'PharIo\\Manifest\\ManifestSerializer' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestSerializer.php',
488
- 'PharIo\\Manifest\\PhpElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/PhpElement.php',
489
- 'PharIo\\Manifest\\PhpExtensionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpExtensionRequirement.php',
490
- 'PharIo\\Manifest\\PhpVersionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpVersionRequirement.php',
491
- 'PharIo\\Manifest\\Requirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Requirement.php',
492
- 'PharIo\\Manifest\\RequirementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollection.php',
493
- 'PharIo\\Manifest\\RequirementCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollectionIterator.php',
494
- 'PharIo\\Manifest\\RequiresElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/RequiresElement.php',
495
- 'PharIo\\Manifest\\Type' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Type.php',
496
- 'PharIo\\Manifest\\Url' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Url.php',
497
- 'PharIo\\Version\\AbstractVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/AbstractVersionConstraint.php',
498
- 'PharIo\\Version\\AndVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/constraints/AndVersionConstraintGroup.php',
499
- 'PharIo\\Version\\AnyVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/AnyVersionConstraint.php',
500
- 'PharIo\\Version\\ExactVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/ExactVersionConstraint.php',
501
- 'PharIo\\Version\\Exception' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/Exception.php',
502
- 'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php',
503
- 'PharIo\\Version\\InvalidPreReleaseSuffixException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php',
504
- 'PharIo\\Version\\InvalidVersionException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/InvalidVersionException.php',
505
- 'PharIo\\Version\\NoPreReleaseSuffixException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/NoPreReleaseSuffixException.php',
506
- 'PharIo\\Version\\OrVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/constraints/OrVersionConstraintGroup.php',
507
- 'PharIo\\Version\\PreReleaseSuffix' => __DIR__ . '/..' . '/phar-io/version/src/PreReleaseSuffix.php',
508
- 'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php',
509
- 'PharIo\\Version\\SpecificMajorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php',
510
- 'PharIo\\Version\\UnsupportedVersionConstraintException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php',
511
- 'PharIo\\Version\\Version' => __DIR__ . '/..' . '/phar-io/version/src/Version.php',
512
- 'PharIo\\Version\\VersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/VersionConstraint.php',
513
- 'PharIo\\Version\\VersionConstraintParser' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintParser.php',
514
- 'PharIo\\Version\\VersionConstraintValue' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintValue.php',
515
- 'PharIo\\Version\\VersionNumber' => __DIR__ . '/..' . '/phar-io/version/src/VersionNumber.php',
516
- 'SebastianBergmann\\CliParser\\AmbiguousOptionException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php',
517
- 'SebastianBergmann\\CliParser\\Exception' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/Exception.php',
518
- 'SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php',
519
- 'SebastianBergmann\\CliParser\\Parser' => __DIR__ . '/..' . '/sebastian/cli-parser/src/Parser.php',
520
- 'SebastianBergmann\\CliParser\\RequiredOptionArgumentMissingException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/RequiredOptionArgumentMissingException.php',
521
- 'SebastianBergmann\\CliParser\\UnknownOptionException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/UnknownOptionException.php',
522
- 'SebastianBergmann\\CodeCoverage\\BranchAndPathCoverageNotSupportedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php',
523
- 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/CodeCoverage.php',
524
- 'SebastianBergmann\\CodeCoverage\\CrapIndex' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/CrapIndex.php',
525
- 'SebastianBergmann\\CodeCoverage\\DeadCodeDetectionNotSupportedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php',
526
- 'SebastianBergmann\\CodeCoverage\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Directory.php',
527
- 'SebastianBergmann\\CodeCoverage\\DirectoryCouldNotBeCreatedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php',
528
- 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Driver.php',
529
- 'SebastianBergmann\\CodeCoverage\\Driver\\PathExistsButIsNotDirectoryException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php',
530
- 'SebastianBergmann\\CodeCoverage\\Driver\\PcovDriver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/PcovDriver.php',
531
- 'SebastianBergmann\\CodeCoverage\\Driver\\PcovNotAvailableException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/PcovNotAvailableException.php',
532
- 'SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgDriver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/PhpdbgDriver.php',
533
- 'SebastianBergmann\\CodeCoverage\\Driver\\PhpdbgNotAvailableException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/PhpdbgNotAvailableException.php',
534
- 'SebastianBergmann\\CodeCoverage\\Driver\\Selector' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Selector.php',
535
- 'SebastianBergmann\\CodeCoverage\\Driver\\WriteOperationFailedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php',
536
- 'SebastianBergmann\\CodeCoverage\\Driver\\WrongXdebugVersionException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/WrongXdebugVersionException.php',
537
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Xdebug2Driver.php',
538
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug2NotEnabledException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/Xdebug2NotEnabledException.php',
539
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Xdebug3Driver.php',
540
- 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug3NotEnabledException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/Xdebug3NotEnabledException.php',
541
- 'SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotAvailableException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/XdebugNotAvailableException.php',
542
- 'SebastianBergmann\\CodeCoverage\\Exception' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/Exception.php',
543
- 'SebastianBergmann\\CodeCoverage\\Filter' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Filter.php',
544
- 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
545
- 'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverAvailableException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverAvailableException.php',
546
- 'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverWithPathCoverageSupportAvailableException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php',
547
- 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
548
- 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Builder.php',
549
- 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Directory.php',
550
- 'SebastianBergmann\\CodeCoverage\\Node\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/File.php',
551
- 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Iterator.php',
552
- 'SebastianBergmann\\CodeCoverage\\ParserException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/ParserException.php',
553
- 'SebastianBergmann\\CodeCoverage\\Percentage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Percentage.php',
554
- 'SebastianBergmann\\CodeCoverage\\ProcessedCodeCoverageData' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/ProcessedCodeCoverageData.php',
555
- 'SebastianBergmann\\CodeCoverage\\RawCodeCoverageData' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/RawCodeCoverageData.php',
556
- 'SebastianBergmann\\CodeCoverage\\ReflectionException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/ReflectionException.php',
557
- 'SebastianBergmann\\CodeCoverage\\ReportAlreadyFinalizedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/ReportAlreadyFinalizedException.php',
558
- 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Clover.php',
559
- 'SebastianBergmann\\CodeCoverage\\Report\\Cobertura' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Cobertura.php',
560
- 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
561
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
562
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
563
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
564
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
565
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
566
- 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/PHP.php',
567
- 'SebastianBergmann\\CodeCoverage\\Report\\Text' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Text.php',
568
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php',
569
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
570
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
571
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
572
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
573
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
574
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
575
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
576
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
577
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Source.php',
578
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
579
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
580
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
581
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysisCacheNotConfiguredException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php',
582
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\Cache' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/Cache.php',
583
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CacheWarmer' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php',
584
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingCoveredFileAnalyser' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/CachingCoveredFileAnalyser.php',
585
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingUncoveredFileAnalyser' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/CachingUncoveredFileAnalyser.php',
586
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CodeUnitFindingVisitor' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/CodeUnitFindingVisitor.php',
587
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CoveredFileAnalyser' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/CoveredFileAnalyser.php',
588
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ExecutableLinesFindingVisitor' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/ExecutableLinesFindingVisitor.php',
589
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\IgnoredLinesFindingVisitor' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/IgnoredLinesFindingVisitor.php',
590
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingCoveredFileAnalyser' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/ParsingCoveredFileAnalyser.php',
591
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingUncoveredFileAnalyser' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/ParsingUncoveredFileAnalyser.php',
592
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\UncoveredFileAnalyser' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/UncoveredFileAnalyser.php',
593
- 'SebastianBergmann\\CodeCoverage\\TestIdMissingException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php',
594
- 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
595
- 'SebastianBergmann\\CodeCoverage\\Version' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Version.php',
596
- 'SebastianBergmann\\CodeCoverage\\XmlException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/XmlException.php',
597
- 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => __DIR__ . '/..' . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
598
- 'SebastianBergmann\\CodeUnit\\ClassMethodUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/ClassMethodUnit.php',
599
- 'SebastianBergmann\\CodeUnit\\ClassUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/ClassUnit.php',
600
- 'SebastianBergmann\\CodeUnit\\CodeUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/CodeUnit.php',
601
- 'SebastianBergmann\\CodeUnit\\CodeUnitCollection' => __DIR__ . '/..' . '/sebastian/code-unit/src/CodeUnitCollection.php',
602
- 'SebastianBergmann\\CodeUnit\\CodeUnitCollectionIterator' => __DIR__ . '/..' . '/sebastian/code-unit/src/CodeUnitCollectionIterator.php',
603
- 'SebastianBergmann\\CodeUnit\\Exception' => __DIR__ . '/..' . '/sebastian/code-unit/src/exceptions/Exception.php',
604
- 'SebastianBergmann\\CodeUnit\\FunctionUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/FunctionUnit.php',
605
- 'SebastianBergmann\\CodeUnit\\InterfaceMethodUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/InterfaceMethodUnit.php',
606
- 'SebastianBergmann\\CodeUnit\\InterfaceUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/InterfaceUnit.php',
607
- 'SebastianBergmann\\CodeUnit\\InvalidCodeUnitException' => __DIR__ . '/..' . '/sebastian/code-unit/src/exceptions/InvalidCodeUnitException.php',
608
- 'SebastianBergmann\\CodeUnit\\Mapper' => __DIR__ . '/..' . '/sebastian/code-unit/src/Mapper.php',
609
- 'SebastianBergmann\\CodeUnit\\NoTraitException' => __DIR__ . '/..' . '/sebastian/code-unit/src/exceptions/NoTraitException.php',
610
- 'SebastianBergmann\\CodeUnit\\ReflectionException' => __DIR__ . '/..' . '/sebastian/code-unit/src/exceptions/ReflectionException.php',
611
- 'SebastianBergmann\\CodeUnit\\TraitMethodUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/TraitMethodUnit.php',
612
- 'SebastianBergmann\\CodeUnit\\TraitUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/TraitUnit.php',
613
- 'SebastianBergmann\\Comparator\\ArrayComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ArrayComparator.php',
614
- 'SebastianBergmann\\Comparator\\Comparator' => __DIR__ . '/..' . '/sebastian/comparator/src/Comparator.php',
615
- 'SebastianBergmann\\Comparator\\ComparisonFailure' => __DIR__ . '/..' . '/sebastian/comparator/src/ComparisonFailure.php',
616
- 'SebastianBergmann\\Comparator\\DOMNodeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DOMNodeComparator.php',
617
- 'SebastianBergmann\\Comparator\\DateTimeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DateTimeComparator.php',
618
- 'SebastianBergmann\\Comparator\\DoubleComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DoubleComparator.php',
619
- 'SebastianBergmann\\Comparator\\Exception' => __DIR__ . '/..' . '/sebastian/comparator/src/exceptions/Exception.php',
620
- 'SebastianBergmann\\Comparator\\ExceptionComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ExceptionComparator.php',
621
- 'SebastianBergmann\\Comparator\\Factory' => __DIR__ . '/..' . '/sebastian/comparator/src/Factory.php',
622
- 'SebastianBergmann\\Comparator\\MockObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/MockObjectComparator.php',
623
- 'SebastianBergmann\\Comparator\\NumericComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/NumericComparator.php',
624
- 'SebastianBergmann\\Comparator\\ObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ObjectComparator.php',
625
- 'SebastianBergmann\\Comparator\\ResourceComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ResourceComparator.php',
626
- 'SebastianBergmann\\Comparator\\RuntimeException' => __DIR__ . '/..' . '/sebastian/comparator/src/exceptions/RuntimeException.php',
627
- 'SebastianBergmann\\Comparator\\ScalarComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ScalarComparator.php',
628
- 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/SplObjectStorageComparator.php',
629
- 'SebastianBergmann\\Comparator\\TypeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/TypeComparator.php',
630
- 'SebastianBergmann\\Complexity\\Calculator' => __DIR__ . '/..' . '/sebastian/complexity/src/Calculator.php',
631
- 'SebastianBergmann\\Complexity\\Complexity' => __DIR__ . '/..' . '/sebastian/complexity/src/Complexity/Complexity.php',
632
- 'SebastianBergmann\\Complexity\\ComplexityCalculatingVisitor' => __DIR__ . '/..' . '/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php',
633
- 'SebastianBergmann\\Complexity\\ComplexityCollection' => __DIR__ . '/..' . '/sebastian/complexity/src/Complexity/ComplexityCollection.php',
634
- 'SebastianBergmann\\Complexity\\ComplexityCollectionIterator' => __DIR__ . '/..' . '/sebastian/complexity/src/Complexity/ComplexityCollectionIterator.php',
635
- 'SebastianBergmann\\Complexity\\CyclomaticComplexityCalculatingVisitor' => __DIR__ . '/..' . '/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php',
636
- 'SebastianBergmann\\Complexity\\Exception' => __DIR__ . '/..' . '/sebastian/complexity/src/Exception/Exception.php',
637
- 'SebastianBergmann\\Complexity\\RuntimeException' => __DIR__ . '/..' . '/sebastian/complexity/src/Exception/RuntimeException.php',
638
- 'SebastianBergmann\\Diff\\Chunk' => __DIR__ . '/..' . '/sebastian/diff/src/Chunk.php',
639
- 'SebastianBergmann\\Diff\\ConfigurationException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/ConfigurationException.php',
640
- 'SebastianBergmann\\Diff\\Diff' => __DIR__ . '/..' . '/sebastian/diff/src/Diff.php',
641
- 'SebastianBergmann\\Diff\\Differ' => __DIR__ . '/..' . '/sebastian/diff/src/Differ.php',
642
- 'SebastianBergmann\\Diff\\Exception' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/Exception.php',
643
- 'SebastianBergmann\\Diff\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/InvalidArgumentException.php',
644
- 'SebastianBergmann\\Diff\\Line' => __DIR__ . '/..' . '/sebastian/diff/src/Line.php',
645
- 'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php',
646
- 'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php',
647
- 'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php',
648
- 'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php',
649
- 'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php',
650
- 'SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php',
651
- 'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php',
652
- 'SebastianBergmann\\Diff\\Parser' => __DIR__ . '/..' . '/sebastian/diff/src/Parser.php',
653
- 'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php',
654
- 'SebastianBergmann\\Environment\\Console' => __DIR__ . '/..' . '/sebastian/environment/src/Console.php',
655
- 'SebastianBergmann\\Environment\\OperatingSystem' => __DIR__ . '/..' . '/sebastian/environment/src/OperatingSystem.php',
656
- 'SebastianBergmann\\Environment\\Runtime' => __DIR__ . '/..' . '/sebastian/environment/src/Runtime.php',
657
- 'SebastianBergmann\\Exporter\\Exporter' => __DIR__ . '/..' . '/sebastian/exporter/src/Exporter.php',
658
- 'SebastianBergmann\\FileIterator\\Facade' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Facade.php',
659
- 'SebastianBergmann\\FileIterator\\Factory' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Factory.php',
660
- 'SebastianBergmann\\FileIterator\\Iterator' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Iterator.php',
661
- 'SebastianBergmann\\GlobalState\\CodeExporter' => __DIR__ . '/..' . '/sebastian/global-state/src/CodeExporter.php',
662
- 'SebastianBergmann\\GlobalState\\Exception' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/Exception.php',
663
- 'SebastianBergmann\\GlobalState\\ExcludeList' => __DIR__ . '/..' . '/sebastian/global-state/src/ExcludeList.php',
664
- 'SebastianBergmann\\GlobalState\\Restorer' => __DIR__ . '/..' . '/sebastian/global-state/src/Restorer.php',
665
- 'SebastianBergmann\\GlobalState\\RuntimeException' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/RuntimeException.php',
666
- 'SebastianBergmann\\GlobalState\\Snapshot' => __DIR__ . '/..' . '/sebastian/global-state/src/Snapshot.php',
667
- 'SebastianBergmann\\Invoker\\Exception' => __DIR__ . '/..' . '/phpunit/php-invoker/src/exceptions/Exception.php',
668
- 'SebastianBergmann\\Invoker\\Invoker' => __DIR__ . '/..' . '/phpunit/php-invoker/src/Invoker.php',
669
- 'SebastianBergmann\\Invoker\\ProcessControlExtensionNotLoadedException' => __DIR__ . '/..' . '/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php',
670
- 'SebastianBergmann\\Invoker\\TimeoutException' => __DIR__ . '/..' . '/phpunit/php-invoker/src/exceptions/TimeoutException.php',
671
- 'SebastianBergmann\\LinesOfCode\\Counter' => __DIR__ . '/..' . '/sebastian/lines-of-code/src/Counter.php',
672
- 'SebastianBergmann\\LinesOfCode\\Exception' => __DIR__ . '/..' . '/sebastian/lines-of-code/src/Exception/Exception.php',
673
- 'SebastianBergmann\\LinesOfCode\\IllogicalValuesException' => __DIR__ . '/..' . '/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php',
674
- 'SebastianBergmann\\LinesOfCode\\LineCountingVisitor' => __DIR__ . '/..' . '/sebastian/lines-of-code/src/LineCountingVisitor.php',
675
- 'SebastianBergmann\\LinesOfCode\\LinesOfCode' => __DIR__ . '/..' . '/sebastian/lines-of-code/src/LinesOfCode.php',
676
- 'SebastianBergmann\\LinesOfCode\\NegativeValueException' => __DIR__ . '/..' . '/sebastian/lines-of-code/src/Exception/NegativeValueException.php',
677
- 'SebastianBergmann\\LinesOfCode\\RuntimeException' => __DIR__ . '/..' . '/sebastian/lines-of-code/src/Exception/RuntimeException.php',
678
- 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Enumerator.php',
679
- 'SebastianBergmann\\ObjectEnumerator\\Exception' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Exception.php',
680
- 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/InvalidArgumentException.php',
681
- 'SebastianBergmann\\ObjectReflector\\Exception' => __DIR__ . '/..' . '/sebastian/object-reflector/src/Exception.php',
682
- 'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-reflector/src/InvalidArgumentException.php',
683
- 'SebastianBergmann\\ObjectReflector\\ObjectReflector' => __DIR__ . '/..' . '/sebastian/object-reflector/src/ObjectReflector.php',
684
- 'SebastianBergmann\\RecursionContext\\Context' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Context.php',
685
- 'SebastianBergmann\\RecursionContext\\Exception' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Exception.php',
686
- 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/recursion-context/src/InvalidArgumentException.php',
687
- 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => __DIR__ . '/..' . '/sebastian/resource-operations/src/ResourceOperations.php',
688
- 'SebastianBergmann\\Template\\Exception' => __DIR__ . '/..' . '/phpunit/php-text-template/src/exceptions/Exception.php',
689
- 'SebastianBergmann\\Template\\InvalidArgumentException' => __DIR__ . '/..' . '/phpunit/php-text-template/src/exceptions/InvalidArgumentException.php',
690
- 'SebastianBergmann\\Template\\RuntimeException' => __DIR__ . '/..' . '/phpunit/php-text-template/src/exceptions/RuntimeException.php',
691
- 'SebastianBergmann\\Template\\Template' => __DIR__ . '/..' . '/phpunit/php-text-template/src/Template.php',
692
- 'SebastianBergmann\\Timer\\Duration' => __DIR__ . '/..' . '/phpunit/php-timer/src/Duration.php',
693
- 'SebastianBergmann\\Timer\\Exception' => __DIR__ . '/..' . '/phpunit/php-timer/src/exceptions/Exception.php',
694
- 'SebastianBergmann\\Timer\\NoActiveTimerException' => __DIR__ . '/..' . '/phpunit/php-timer/src/exceptions/NoActiveTimerException.php',
695
- 'SebastianBergmann\\Timer\\ResourceUsageFormatter' => __DIR__ . '/..' . '/phpunit/php-timer/src/ResourceUsageFormatter.php',
696
- 'SebastianBergmann\\Timer\\TimeSinceStartOfRequestNotAvailableException' => __DIR__ . '/..' . '/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php',
697
- 'SebastianBergmann\\Timer\\Timer' => __DIR__ . '/..' . '/phpunit/php-timer/src/Timer.php',
698
- 'SebastianBergmann\\Type\\CallableType' => __DIR__ . '/..' . '/sebastian/type/src/CallableType.php',
699
- 'SebastianBergmann\\Type\\Exception' => __DIR__ . '/..' . '/sebastian/type/src/exception/Exception.php',
700
- 'SebastianBergmann\\Type\\FalseType' => __DIR__ . '/..' . '/sebastian/type/src/FalseType.php',
701
- 'SebastianBergmann\\Type\\GenericObjectType' => __DIR__ . '/..' . '/sebastian/type/src/GenericObjectType.php',
702
- 'SebastianBergmann\\Type\\IterableType' => __DIR__ . '/..' . '/sebastian/type/src/IterableType.php',
703
- 'SebastianBergmann\\Type\\LogicException' => __DIR__ . '/..' . '/sebastian/type/src/exception/LogicException.php',
704
- 'SebastianBergmann\\Type\\MixedType' => __DIR__ . '/..' . '/sebastian/type/src/MixedType.php',
705
- 'SebastianBergmann\\Type\\NullType' => __DIR__ . '/..' . '/sebastian/type/src/NullType.php',
706
- 'SebastianBergmann\\Type\\ObjectType' => __DIR__ . '/..' . '/sebastian/type/src/ObjectType.php',
707
- 'SebastianBergmann\\Type\\ReflectionMapper' => __DIR__ . '/..' . '/sebastian/type/src/ReflectionMapper.php',
708
- 'SebastianBergmann\\Type\\RuntimeException' => __DIR__ . '/..' . '/sebastian/type/src/exception/RuntimeException.php',
709
- 'SebastianBergmann\\Type\\SimpleType' => __DIR__ . '/..' . '/sebastian/type/src/SimpleType.php',
710
- 'SebastianBergmann\\Type\\StaticType' => __DIR__ . '/..' . '/sebastian/type/src/StaticType.php',
711
- 'SebastianBergmann\\Type\\Type' => __DIR__ . '/..' . '/sebastian/type/src/Type.php',
712
- 'SebastianBergmann\\Type\\TypeName' => __DIR__ . '/..' . '/sebastian/type/src/TypeName.php',
713
- 'SebastianBergmann\\Type\\UnionType' => __DIR__ . '/..' . '/sebastian/type/src/UnionType.php',
714
- 'SebastianBergmann\\Type\\UnknownType' => __DIR__ . '/..' . '/sebastian/type/src/UnknownType.php',
715
- 'SebastianBergmann\\Type\\VoidType' => __DIR__ . '/..' . '/sebastian/type/src/VoidType.php',
716
- 'SebastianBergmann\\Version' => __DIR__ . '/..' . '/sebastian/version/src/Version.php',
717
- 'TheSeer\\Tokenizer\\Exception' => __DIR__ . '/..' . '/theseer/tokenizer/src/Exception.php',
718
- 'TheSeer\\Tokenizer\\NamespaceUri' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUri.php',
719
- 'TheSeer\\Tokenizer\\NamespaceUriException' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUriException.php',
720
- 'TheSeer\\Tokenizer\\Token' => __DIR__ . '/..' . '/theseer/tokenizer/src/Token.php',
721
- 'TheSeer\\Tokenizer\\TokenCollection' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollection.php',
722
- 'TheSeer\\Tokenizer\\TokenCollectionException' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollectionException.php',
723
- 'TheSeer\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/theseer/tokenizer/src/Tokenizer.php',
724
- 'TheSeer\\Tokenizer\\XMLSerializer' => __DIR__ . '/..' . '/theseer/tokenizer/src/XMLSerializer.php',
725
  );
726
 
727
  public static function getInitializer(ClassLoader $loader)
728
  {
729
  return \Closure::bind(function () use ($loader) {
730
- $loader->prefixLengthsPsr4 = ComposerStaticInit048daf879f623e132cb9fa9c3192a738::$prefixLengthsPsr4;
731
- $loader->prefixDirsPsr4 = ComposerStaticInit048daf879f623e132cb9fa9c3192a738::$prefixDirsPsr4;
732
- $loader->classMap = ComposerStaticInit048daf879f623e132cb9fa9c3192a738::$classMap;
733
 
734
  }, null, ClassLoader::class);
735
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticIniteb7b88c036354120a16cd7e46ba68ad7
8
  {
 
 
 
 
 
 
 
 
9
  public static $prefixLengthsPsr4 = array (
 
 
 
 
 
 
 
 
10
  'V' =>
11
  array (
12
  'VektorInc\\VK_Helpers\\' => 21,
13
  'VektorInc\\VK_Breadcrumb\\' => 24,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ),
15
  );
16
 
17
  public static $prefixDirsPsr4 = array (
 
 
 
 
 
 
 
 
 
 
18
  'VektorInc\\VK_Helpers\\' =>
19
  array (
20
  0 => __DIR__ . '/..' . '/vektor-inc/vk-helpers/src',
23
  array (
24
  0 => __DIR__ . '/..' . '/vektor-inc/vk-breadcrumb/src',
25
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  );
27
 
28
  public static $classMap = array (
29
  'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
30
+ 'VektorInc\\VK_Breadcrumb\\VkBreadcrumb' => __DIR__ . '/..' . '/vektor-inc/vk-breadcrumb/src/VkBreadcrumb.php',
31
+ 'VektorInc\\VK_Helpers\\VkHelpers' => __DIR__ . '/..' . '/vektor-inc/vk-helpers/src/VkHelpers.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  );
33
 
34
  public static function getInitializer(ClassLoader $loader)
35
  {
36
  return \Closure::bind(function () use ($loader) {
37
+ $loader->prefixLengthsPsr4 = ComposerStaticIniteb7b88c036354120a16cd7e46ba68ad7::$prefixLengthsPsr4;
38
+ $loader->prefixDirsPsr4 = ComposerStaticIniteb7b88c036354120a16cd7e46ba68ad7::$prefixDirsPsr4;
39
+ $loader->classMap = ComposerStaticIniteb7b88c036354120a16cd7e46ba68ad7::$classMap;
40
 
41
  }, null, ClassLoader::class);
42
  }
vendor/composer/installed.json CHANGED
@@ -1,2257 +1,5 @@
1
  {
2
  "packages": [
3
- {
4
- "name": "doctrine/instantiator",
5
- "version": "1.4.0",
6
- "version_normalized": "1.4.0.0",
7
- "source": {
8
- "type": "git",
9
- "url": "https://github.com/doctrine/instantiator.git",
10
- "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
11
- },
12
- "dist": {
13
- "type": "zip",
14
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
15
- "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
16
- "shasum": ""
17
- },
18
- "require": {
19
- "php": "^7.1 || ^8.0"
20
- },
21
- "require-dev": {
22
- "doctrine/coding-standard": "^8.0",
23
- "ext-pdo": "*",
24
- "ext-phar": "*",
25
- "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
26
- "phpstan/phpstan": "^0.12",
27
- "phpstan/phpstan-phpunit": "^0.12",
28
- "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
29
- },
30
- "time": "2020-11-10T18:47:58+00:00",
31
- "type": "library",
32
- "installation-source": "dist",
33
- "autoload": {
34
- "psr-4": {
35
- "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
36
- }
37
- },
38
- "notification-url": "https://packagist.org/downloads/",
39
- "license": [
40
- "MIT"
41
- ],
42
- "authors": [
43
- {
44
- "name": "Marco Pivetta",
45
- "email": "ocramius@gmail.com",
46
- "homepage": "https://ocramius.github.io/"
47
- }
48
- ],
49
- "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
50
- "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
51
- "keywords": [
52
- "constructor",
53
- "instantiate"
54
- ],
55
- "support": {
56
- "issues": "https://github.com/doctrine/instantiator/issues",
57
- "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
58
- },
59
- "funding": [
60
- {
61
- "url": "https://www.doctrine-project.org/sponsorship.html",
62
- "type": "custom"
63
- },
64
- {
65
- "url": "https://www.patreon.com/phpdoctrine",
66
- "type": "patreon"
67
- },
68
- {
69
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
70
- "type": "tidelift"
71
- }
72
- ],
73
- "install-path": "../doctrine/instantiator"
74
- },
75
- {
76
- "name": "myclabs/deep-copy",
77
- "version": "1.10.2",
78
- "version_normalized": "1.10.2.0",
79
- "source": {
80
- "type": "git",
81
- "url": "https://github.com/myclabs/DeepCopy.git",
82
- "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
83
- },
84
- "dist": {
85
- "type": "zip",
86
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
87
- "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
88
- "shasum": ""
89
- },
90
- "require": {
91
- "php": "^7.1 || ^8.0"
92
- },
93
- "replace": {
94
- "myclabs/deep-copy": "self.version"
95
- },
96
- "require-dev": {
97
- "doctrine/collections": "^1.0",
98
- "doctrine/common": "^2.6",
99
- "phpunit/phpunit": "^7.1"
100
- },
101
- "time": "2020-11-13T09:40:50+00:00",
102
- "type": "library",
103
- "installation-source": "dist",
104
- "autoload": {
105
- "files": [
106
- "src/DeepCopy/deep_copy.php"
107
- ],
108
- "psr-4": {
109
- "DeepCopy\\": "src/DeepCopy/"
110
- }
111
- },
112
- "notification-url": "https://packagist.org/downloads/",
113
- "license": [
114
- "MIT"
115
- ],
116
- "description": "Create deep copies (clones) of your objects",
117
- "keywords": [
118
- "clone",
119
- "copy",
120
- "duplicate",
121
- "object",
122
- "object graph"
123
- ],
124
- "support": {
125
- "issues": "https://github.com/myclabs/DeepCopy/issues",
126
- "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
127
- },
128
- "funding": [
129
- {
130
- "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
131
- "type": "tidelift"
132
- }
133
- ],
134
- "install-path": "../myclabs/deep-copy"
135
- },
136
- {
137
- "name": "nikic/php-parser",
138
- "version": "v4.13.2",
139
- "version_normalized": "4.13.2.0",
140
- "source": {
141
- "type": "git",
142
- "url": "https://github.com/nikic/PHP-Parser.git",
143
- "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
144
- },
145
- "dist": {
146
- "type": "zip",
147
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
148
- "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
149
- "shasum": ""
150
- },
151
- "require": {
152
- "ext-tokenizer": "*",
153
- "php": ">=7.0"
154
- },
155
- "require-dev": {
156
- "ircmaxell/php-yacc": "^0.0.7",
157
- "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
158
- },
159
- "time": "2021-11-30T19:35:32+00:00",
160
- "bin": [
161
- "bin/php-parse"
162
- ],
163
- "type": "library",
164
- "extra": {
165
- "branch-alias": {
166
- "dev-master": "4.9-dev"
167
- }
168
- },
169
- "installation-source": "dist",
170
- "autoload": {
171
- "psr-4": {
172
- "PhpParser\\": "lib/PhpParser"
173
- }
174
- },
175
- "notification-url": "https://packagist.org/downloads/",
176
- "license": [
177
- "BSD-3-Clause"
178
- ],
179
- "authors": [
180
- {
181
- "name": "Nikita Popov"
182
- }
183
- ],
184
- "description": "A PHP parser written in PHP",
185
- "keywords": [
186
- "parser",
187
- "php"
188
- ],
189
- "support": {
190
- "issues": "https://github.com/nikic/PHP-Parser/issues",
191
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
192
- },
193
- "install-path": "../nikic/php-parser"
194
- },
195
- {
196
- "name": "phar-io/manifest",
197
- "version": "2.0.3",
198
- "version_normalized": "2.0.3.0",
199
- "source": {
200
- "type": "git",
201
- "url": "https://github.com/phar-io/manifest.git",
202
- "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
203
- },
204
- "dist": {
205
- "type": "zip",
206
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
207
- "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
208
- "shasum": ""
209
- },
210
- "require": {
211
- "ext-dom": "*",
212
- "ext-phar": "*",
213
- "ext-xmlwriter": "*",
214
- "phar-io/version": "^3.0.1",
215
- "php": "^7.2 || ^8.0"
216
- },
217
- "time": "2021-07-20T11:28:43+00:00",
218
- "type": "library",
219
- "extra": {
220
- "branch-alias": {
221
- "dev-master": "2.0.x-dev"
222
- }
223
- },
224
- "installation-source": "dist",
225
- "autoload": {
226
- "classmap": [
227
- "src/"
228
- ]
229
- },
230
- "notification-url": "https://packagist.org/downloads/",
231
- "license": [
232
- "BSD-3-Clause"
233
- ],
234
- "authors": [
235
- {
236
- "name": "Arne Blankerts",
237
- "email": "arne@blankerts.de",
238
- "role": "Developer"
239
- },
240
- {
241
- "name": "Sebastian Heuer",
242
- "email": "sebastian@phpeople.de",
243
- "role": "Developer"
244
- },
245
- {
246
- "name": "Sebastian Bergmann",
247
- "email": "sebastian@phpunit.de",
248
- "role": "Developer"
249
- }
250
- ],
251
- "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
252
- "support": {
253
- "issues": "https://github.com/phar-io/manifest/issues",
254
- "source": "https://github.com/phar-io/manifest/tree/2.0.3"
255
- },
256
- "install-path": "../phar-io/manifest"
257
- },
258
- {
259
- "name": "phar-io/version",
260
- "version": "3.1.1",
261
- "version_normalized": "3.1.1.0",
262
- "source": {
263
- "type": "git",
264
- "url": "https://github.com/phar-io/version.git",
265
- "reference": "15a90844ad40f127afd244c0cad228de2a80052a"
266
- },
267
- "dist": {
268
- "type": "zip",
269
- "url": "https://api.github.com/repos/phar-io/version/zipball/15a90844ad40f127afd244c0cad228de2a80052a",
270
- "reference": "15a90844ad40f127afd244c0cad228de2a80052a",
271
- "shasum": ""
272
- },
273
- "require": {
274
- "php": "^7.2 || ^8.0"
275
- },
276
- "time": "2022-02-07T21:56:48+00:00",
277
- "type": "library",
278
- "installation-source": "dist",
279
- "autoload": {
280
- "classmap": [
281
- "src/"
282
- ]
283
- },
284
- "notification-url": "https://packagist.org/downloads/",
285
- "license": [
286
- "BSD-3-Clause"
287
- ],
288
- "authors": [
289
- {
290
- "name": "Arne Blankerts",
291
- "email": "arne@blankerts.de",
292
- "role": "Developer"
293
- },
294
- {
295
- "name": "Sebastian Heuer",
296
- "email": "sebastian@phpeople.de",
297
- "role": "Developer"
298
- },
299
- {
300
- "name": "Sebastian Bergmann",
301
- "email": "sebastian@phpunit.de",
302
- "role": "Developer"
303
- }
304
- ],
305
- "description": "Library for handling version information and constraints",
306
- "support": {
307
- "issues": "https://github.com/phar-io/version/issues",
308
- "source": "https://github.com/phar-io/version/tree/3.1.1"
309
- },
310
- "install-path": "../phar-io/version"
311
- },
312
- {
313
- "name": "phpdocumentor/reflection-common",
314
- "version": "2.2.0",
315
- "version_normalized": "2.2.0.0",
316
- "source": {
317
- "type": "git",
318
- "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
319
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
320
- },
321
- "dist": {
322
- "type": "zip",
323
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
324
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
325
- "shasum": ""
326
- },
327
- "require": {
328
- "php": "^7.2 || ^8.0"
329
- },
330
- "time": "2020-06-27T09:03:43+00:00",
331
- "type": "library",
332
- "extra": {
333
- "branch-alias": {
334
- "dev-2.x": "2.x-dev"
335
- }
336
- },
337
- "installation-source": "dist",
338
- "autoload": {
339
- "psr-4": {
340
- "phpDocumentor\\Reflection\\": "src/"
341
- }
342
- },
343
- "notification-url": "https://packagist.org/downloads/",
344
- "license": [
345
- "MIT"
346
- ],
347
- "authors": [
348
- {
349
- "name": "Jaap van Otterdijk",
350
- "email": "opensource@ijaap.nl"
351
- }
352
- ],
353
- "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
354
- "homepage": "http://www.phpdoc.org",
355
- "keywords": [
356
- "FQSEN",
357
- "phpDocumentor",
358
- "phpdoc",
359
- "reflection",
360
- "static analysis"
361
- ],
362
- "support": {
363
- "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
364
- "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
365
- },
366
- "install-path": "../phpdocumentor/reflection-common"
367
- },
368
- {
369
- "name": "phpdocumentor/reflection-docblock",
370
- "version": "5.3.0",
371
- "version_normalized": "5.3.0.0",
372
- "source": {
373
- "type": "git",
374
- "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
375
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
376
- },
377
- "dist": {
378
- "type": "zip",
379
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
380
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
381
- "shasum": ""
382
- },
383
- "require": {
384
- "ext-filter": "*",
385
- "php": "^7.2 || ^8.0",
386
- "phpdocumentor/reflection-common": "^2.2",
387
- "phpdocumentor/type-resolver": "^1.3",
388
- "webmozart/assert": "^1.9.1"
389
- },
390
- "require-dev": {
391
- "mockery/mockery": "~1.3.2",
392
- "psalm/phar": "^4.8"
393
- },
394
- "time": "2021-10-19T17:43:47+00:00",
395
- "type": "library",
396
- "extra": {
397
- "branch-alias": {
398
- "dev-master": "5.x-dev"
399
- }
400
- },
401
- "installation-source": "dist",
402
- "autoload": {
403
- "psr-4": {
404
- "phpDocumentor\\Reflection\\": "src"
405
- }
406
- },
407
- "notification-url": "https://packagist.org/downloads/",
408
- "license": [
409
- "MIT"
410
- ],
411
- "authors": [
412
- {
413
- "name": "Mike van Riel",
414
- "email": "me@mikevanriel.com"
415
- },
416
- {
417
- "name": "Jaap van Otterdijk",
418
- "email": "account@ijaap.nl"
419
- }
420
- ],
421
- "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
422
- "support": {
423
- "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
424
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
425
- },
426
- "install-path": "../phpdocumentor/reflection-docblock"
427
- },
428
- {
429
- "name": "phpdocumentor/type-resolver",
430
- "version": "1.6.0",
431
- "version_normalized": "1.6.0.0",
432
- "source": {
433
- "type": "git",
434
- "url": "https://github.com/phpDocumentor/TypeResolver.git",
435
- "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
436
- },
437
- "dist": {
438
- "type": "zip",
439
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
440
- "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
441
- "shasum": ""
442
- },
443
- "require": {
444
- "php": "^7.2 || ^8.0",
445
- "phpdocumentor/reflection-common": "^2.0"
446
- },
447
- "require-dev": {
448
- "ext-tokenizer": "*",
449
- "psalm/phar": "^4.8"
450
- },
451
- "time": "2022-01-04T19:58:01+00:00",
452
- "type": "library",
453
- "extra": {
454
- "branch-alias": {
455
- "dev-1.x": "1.x-dev"
456
- }
457
- },
458
- "installation-source": "dist",
459
- "autoload": {
460
- "psr-4": {
461
- "phpDocumentor\\Reflection\\": "src"
462
- }
463
- },
464
- "notification-url": "https://packagist.org/downloads/",
465
- "license": [
466
- "MIT"
467
- ],
468
- "authors": [
469
- {
470
- "name": "Mike van Riel",
471
- "email": "me@mikevanriel.com"
472
- }
473
- ],
474
- "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
475
- "support": {
476
- "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
477
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
478
- },
479
- "install-path": "../phpdocumentor/type-resolver"
480
- },
481
- {
482
- "name": "phpspec/prophecy",
483
- "version": "v1.15.0",
484
- "version_normalized": "1.15.0.0",
485
- "source": {
486
- "type": "git",
487
- "url": "https://github.com/phpspec/prophecy.git",
488
- "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
489
- },
490
- "dist": {
491
- "type": "zip",
492
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
493
- "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
494
- "shasum": ""
495
- },
496
- "require": {
497
- "doctrine/instantiator": "^1.2",
498
- "php": "^7.2 || ~8.0, <8.2",
499
- "phpdocumentor/reflection-docblock": "^5.2",
500
- "sebastian/comparator": "^3.0 || ^4.0",
501
- "sebastian/recursion-context": "^3.0 || ^4.0"
502
- },
503
- "require-dev": {
504
- "phpspec/phpspec": "^6.0 || ^7.0",
505
- "phpunit/phpunit": "^8.0 || ^9.0"
506
- },
507
- "time": "2021-12-08T12:19:24+00:00",
508
- "type": "library",
509
- "extra": {
510
- "branch-alias": {
511
- "dev-master": "1.x-dev"
512
- }
513
- },
514
- "installation-source": "dist",
515
- "autoload": {
516
- "psr-4": {
517
- "Prophecy\\": "src/Prophecy"
518
- }
519
- },
520
- "notification-url": "https://packagist.org/downloads/",
521
- "license": [
522
- "MIT"
523
- ],
524
- "authors": [
525
- {
526
- "name": "Konstantin Kudryashov",
527
- "email": "ever.zet@gmail.com",
528
- "homepage": "http://everzet.com"
529
- },
530
- {
531
- "name": "Marcello Duarte",
532
- "email": "marcello.duarte@gmail.com"
533
- }
534
- ],
535
- "description": "Highly opinionated mocking framework for PHP 5.3+",
536
- "homepage": "https://github.com/phpspec/prophecy",
537
- "keywords": [
538
- "Double",
539
- "Dummy",
540
- "fake",
541
- "mock",
542
- "spy",
543
- "stub"
544
- ],
545
- "support": {
546
- "issues": "https://github.com/phpspec/prophecy/issues",
547
- "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
548
- },
549
- "install-path": "../phpspec/prophecy"
550
- },
551
- {
552
- "name": "phpunit/php-code-coverage",
553
- "version": "9.2.10",
554
- "version_normalized": "9.2.10.0",
555
- "source": {
556
- "type": "git",
557
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
558
- "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687"
559
- },
560
- "dist": {
561
- "type": "zip",
562
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/d5850aaf931743067f4bfc1ae4cbd06468400687",
563
- "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687",
564
- "shasum": ""
565
- },
566
- "require": {
567
- "ext-dom": "*",
568
- "ext-libxml": "*",
569
- "ext-xmlwriter": "*",
570
- "nikic/php-parser": "^4.13.0",
571
- "php": ">=7.3",
572
- "phpunit/php-file-iterator": "^3.0.3",
573
- "phpunit/php-text-template": "^2.0.2",
574
- "sebastian/code-unit-reverse-lookup": "^2.0.2",
575
- "sebastian/complexity": "^2.0",
576
- "sebastian/environment": "^5.1.2",
577
- "sebastian/lines-of-code": "^1.0.3",
578
- "sebastian/version": "^3.0.1",
579
- "theseer/tokenizer": "^1.2.0"
580
- },
581
- "require-dev": {
582
- "phpunit/phpunit": "^9.3"
583
- },
584
- "suggest": {
585
- "ext-pcov": "*",
586
- "ext-xdebug": "*"
587
- },
588
- "time": "2021-12-05T09:12:13+00:00",
589
- "type": "library",
590
- "extra": {
591
- "branch-alias": {
592
- "dev-master": "9.2-dev"
593
- }
594
- },
595
- "installation-source": "dist",
596
- "autoload": {
597
- "classmap": [
598
- "src/"
599
- ]
600
- },
601
- "notification-url": "https://packagist.org/downloads/",
602
- "license": [
603
- "BSD-3-Clause"
604
- ],
605
- "authors": [
606
- {
607
- "name": "Sebastian Bergmann",
608
- "email": "sebastian@phpunit.de",
609
- "role": "lead"
610
- }
611
- ],
612
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
613
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
614
- "keywords": [
615
- "coverage",
616
- "testing",
617
- "xunit"
618
- ],
619
- "support": {
620
- "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
621
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.10"
622
- },
623
- "funding": [
624
- {
625
- "url": "https://github.com/sebastianbergmann",
626
- "type": "github"
627
- }
628
- ],
629
- "install-path": "../phpunit/php-code-coverage"
630
- },
631
- {
632
- "name": "phpunit/php-file-iterator",
633
- "version": "3.0.6",
634
- "version_normalized": "3.0.6.0",
635
- "source": {
636
- "type": "git",
637
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
638
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
639
- },
640
- "dist": {
641
- "type": "zip",
642
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
643
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
644
- "shasum": ""
645
- },
646
- "require": {
647
- "php": ">=7.3"
648
- },
649
- "require-dev": {
650
- "phpunit/phpunit": "^9.3"
651
- },
652
- "time": "2021-12-02T12:48:52+00:00",
653
- "type": "library",
654
- "extra": {
655
- "branch-alias": {
656
- "dev-master": "3.0-dev"
657
- }
658
- },
659
- "installation-source": "dist",
660
- "autoload": {
661
- "classmap": [
662
- "src/"
663
- ]
664
- },
665
- "notification-url": "https://packagist.org/downloads/",
666
- "license": [
667
- "BSD-3-Clause"
668
- ],
669
- "authors": [
670
- {
671
- "name": "Sebastian Bergmann",
672
- "email": "sebastian@phpunit.de",
673
- "role": "lead"
674
- }
675
- ],
676
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
677
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
678
- "keywords": [
679
- "filesystem",
680
- "iterator"
681
- ],
682
- "support": {
683
- "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
684
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
685
- },
686
- "funding": [
687
- {
688
- "url": "https://github.com/sebastianbergmann",
689
- "type": "github"
690
- }
691
- ],
692
- "install-path": "../phpunit/php-file-iterator"
693
- },
694
- {
695
- "name": "phpunit/php-invoker",
696
- "version": "3.1.1",
697
- "version_normalized": "3.1.1.0",
698
- "source": {
699
- "type": "git",
700
- "url": "https://github.com/sebastianbergmann/php-invoker.git",
701
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
702
- },
703
- "dist": {
704
- "type": "zip",
705
- "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
706
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
707
- "shasum": ""
708
- },
709
- "require": {
710
- "php": ">=7.3"
711
- },
712
- "require-dev": {
713
- "ext-pcntl": "*",
714
- "phpunit/phpunit": "^9.3"
715
- },
716
- "suggest": {
717
- "ext-pcntl": "*"
718
- },
719
- "time": "2020-09-28T05:58:55+00:00",
720
- "type": "library",
721
- "extra": {
722
- "branch-alias": {
723
- "dev-master": "3.1-dev"
724
- }
725
- },
726
- "installation-source": "dist",
727
- "autoload": {
728
- "classmap": [
729
- "src/"
730
- ]
731
- },
732
- "notification-url": "https://packagist.org/downloads/",
733
- "license": [
734
- "BSD-3-Clause"
735
- ],
736
- "authors": [
737
- {
738
- "name": "Sebastian Bergmann",
739
- "email": "sebastian@phpunit.de",
740
- "role": "lead"
741
- }
742
- ],
743
- "description": "Invoke callables with a timeout",
744
- "homepage": "https://github.com/sebastianbergmann/php-invoker/",
745
- "keywords": [
746
- "process"
747
- ],
748
- "support": {
749
- "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
750
- "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
751
- },
752
- "funding": [
753
- {
754
- "url": "https://github.com/sebastianbergmann",
755
- "type": "github"
756
- }
757
- ],
758
- "install-path": "../phpunit/php-invoker"
759
- },
760
- {
761
- "name": "phpunit/php-text-template",
762
- "version": "2.0.4",
763
- "version_normalized": "2.0.4.0",
764
- "source": {
765
- "type": "git",
766
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
767
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
768
- },
769
- "dist": {
770
- "type": "zip",
771
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
772
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
773
- "shasum": ""
774
- },
775
- "require": {
776
- "php": ">=7.3"
777
- },
778
- "require-dev": {
779
- "phpunit/phpunit": "^9.3"
780
- },
781
- "time": "2020-10-26T05:33:50+00:00",
782
- "type": "library",
783
- "extra": {
784
- "branch-alias": {
785
- "dev-master": "2.0-dev"
786
- }
787
- },
788
- "installation-source": "dist",
789
- "autoload": {
790
- "classmap": [
791
- "src/"
792
- ]
793
- },
794
- "notification-url": "https://packagist.org/downloads/",
795
- "license": [
796
- "BSD-3-Clause"
797
- ],
798
- "authors": [
799
- {
800
- "name": "Sebastian Bergmann",
801
- "email": "sebastian@phpunit.de",
802
- "role": "lead"
803
- }
804
- ],
805
- "description": "Simple template engine.",
806
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
807
- "keywords": [
808
- "template"
809
- ],
810
- "support": {
811
- "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
812
- "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
813
- },
814
- "funding": [
815
- {
816
- "url": "https://github.com/sebastianbergmann",
817
- "type": "github"
818
- }
819
- ],
820
- "install-path": "../phpunit/php-text-template"
821
- },
822
- {
823
- "name": "phpunit/php-timer",
824
- "version": "5.0.3",
825
- "version_normalized": "5.0.3.0",
826
- "source": {
827
- "type": "git",
828
- "url": "https://github.com/sebastianbergmann/php-timer.git",
829
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
830
- },
831
- "dist": {
832
- "type": "zip",
833
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
834
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
835
- "shasum": ""
836
- },
837
- "require": {
838
- "php": ">=7.3"
839
- },
840
- "require-dev": {
841
- "phpunit/phpunit": "^9.3"
842
- },
843
- "time": "2020-10-26T13:16:10+00:00",
844
- "type": "library",
845
- "extra": {
846
- "branch-alias": {
847
- "dev-master": "5.0-dev"
848
- }
849
- },
850
- "installation-source": "dist",
851
- "autoload": {
852
- "classmap": [
853
- "src/"
854
- ]
855
- },
856
- "notification-url": "https://packagist.org/downloads/",
857
- "license": [
858
- "BSD-3-Clause"
859
- ],
860
- "authors": [
861
- {
862
- "name": "Sebastian Bergmann",
863
- "email": "sebastian@phpunit.de",
864
- "role": "lead"
865
- }
866
- ],
867
- "description": "Utility class for timing",
868
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
869
- "keywords": [
870
- "timer"
871
- ],
872
- "support": {
873
- "issues": "https://github.com/sebastianbergmann/php-timer/issues",
874
- "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
875
- },
876
- "funding": [
877
- {
878
- "url": "https://github.com/sebastianbergmann",
879
- "type": "github"
880
- }
881
- ],
882
- "install-path": "../phpunit/php-timer"
883
- },
884
- {
885
- "name": "phpunit/phpunit",
886
- "version": "9.5.13",
887
- "version_normalized": "9.5.13.0",
888
- "source": {
889
- "type": "git",
890
- "url": "https://github.com/sebastianbergmann/phpunit.git",
891
- "reference": "597cb647654ede35e43b137926dfdfef0fb11743"
892
- },
893
- "dist": {
894
- "type": "zip",
895
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/597cb647654ede35e43b137926dfdfef0fb11743",
896
- "reference": "597cb647654ede35e43b137926dfdfef0fb11743",
897
- "shasum": ""
898
- },
899
- "require": {
900
- "doctrine/instantiator": "^1.3.1",
901
- "ext-dom": "*",
902
- "ext-json": "*",
903
- "ext-libxml": "*",
904
- "ext-mbstring": "*",
905
- "ext-xml": "*",
906
- "ext-xmlwriter": "*",
907
- "myclabs/deep-copy": "^1.10.1",
908
- "phar-io/manifest": "^2.0.3",
909
- "phar-io/version": "^3.0.2",
910
- "php": ">=7.3",
911
- "phpspec/prophecy": "^1.12.1",
912
- "phpunit/php-code-coverage": "^9.2.7",
913
- "phpunit/php-file-iterator": "^3.0.5",
914
- "phpunit/php-invoker": "^3.1.1",
915
- "phpunit/php-text-template": "^2.0.3",
916
- "phpunit/php-timer": "^5.0.2",
917
- "sebastian/cli-parser": "^1.0.1",
918
- "sebastian/code-unit": "^1.0.6",
919
- "sebastian/comparator": "^4.0.5",
920
- "sebastian/diff": "^4.0.3",
921
- "sebastian/environment": "^5.1.3",
922
- "sebastian/exporter": "^4.0.3",
923
- "sebastian/global-state": "^5.0.1",
924
- "sebastian/object-enumerator": "^4.0.3",
925
- "sebastian/resource-operations": "^3.0.3",
926
- "sebastian/type": "^2.3.4",
927
- "sebastian/version": "^3.0.2"
928
- },
929
- "require-dev": {
930
- "ext-pdo": "*",
931
- "phpspec/prophecy-phpunit": "^2.0.1"
932
- },
933
- "suggest": {
934
- "ext-soap": "*",
935
- "ext-xdebug": "*"
936
- },
937
- "time": "2022-01-24T07:33:35+00:00",
938
- "bin": [
939
- "phpunit"
940
- ],
941
- "type": "library",
942
- "extra": {
943
- "branch-alias": {
944
- "dev-master": "9.5-dev"
945
- }
946
- },
947
- "installation-source": "dist",
948
- "autoload": {
949
- "files": [
950
- "src/Framework/Assert/Functions.php"
951
- ],
952
- "classmap": [
953
- "src/"
954
- ]
955
- },
956
- "notification-url": "https://packagist.org/downloads/",
957
- "license": [
958
- "BSD-3-Clause"
959
- ],
960
- "authors": [
961
- {
962
- "name": "Sebastian Bergmann",
963
- "email": "sebastian@phpunit.de",
964
- "role": "lead"
965
- }
966
- ],
967
- "description": "The PHP Unit Testing framework.",
968
- "homepage": "https://phpunit.de/",
969
- "keywords": [
970
- "phpunit",
971
- "testing",
972
- "xunit"
973
- ],
974
- "support": {
975
- "issues": "https://github.com/sebastianbergmann/phpunit/issues",
976
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.13"
977
- },
978
- "funding": [
979
- {
980
- "url": "https://phpunit.de/sponsors.html",
981
- "type": "custom"
982
- },
983
- {
984
- "url": "https://github.com/sebastianbergmann",
985
- "type": "github"
986
- }
987
- ],
988
- "install-path": "../phpunit/phpunit"
989
- },
990
- {
991
- "name": "sebastian/cli-parser",
992
- "version": "1.0.1",
993
- "version_normalized": "1.0.1.0",
994
- "source": {
995
- "type": "git",
996
- "url": "https://github.com/sebastianbergmann/cli-parser.git",
997
- "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
998
- },
999
- "dist": {
1000
- "type": "zip",
1001
- "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
1002
- "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
1003
- "shasum": ""
1004
- },
1005
- "require": {
1006
- "php": ">=7.3"
1007
- },
1008
- "require-dev": {
1009
- "phpunit/phpunit": "^9.3"
1010
- },
1011
- "time": "2020-09-28T06:08:49+00:00",
1012
- "type": "library",
1013
- "extra": {
1014
- "branch-alias": {
1015
- "dev-master": "1.0-dev"
1016
- }
1017
- },
1018
- "installation-source": "dist",
1019
- "autoload": {
1020
- "classmap": [
1021
- "src/"
1022
- ]
1023
- },
1024
- "notification-url": "https://packagist.org/downloads/",
1025
- "license": [
1026
- "BSD-3-Clause"
1027
- ],
1028
- "authors": [
1029
- {
1030
- "name": "Sebastian Bergmann",
1031
- "email": "sebastian@phpunit.de",
1032
- "role": "lead"
1033
- }
1034
- ],
1035
- "description": "Library for parsing CLI options",
1036
- "homepage": "https://github.com/sebastianbergmann/cli-parser",
1037
- "support": {
1038
- "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
1039
- "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
1040
- },
1041
- "funding": [
1042
- {
1043
- "url": "https://github.com/sebastianbergmann",
1044
- "type": "github"
1045
- }
1046
- ],
1047
- "install-path": "../sebastian/cli-parser"
1048
- },
1049
- {
1050
- "name": "sebastian/code-unit",
1051
- "version": "1.0.8",
1052
- "version_normalized": "1.0.8.0",
1053
- "source": {
1054
- "type": "git",
1055
- "url": "https://github.com/sebastianbergmann/code-unit.git",
1056
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
1057
- },
1058
- "dist": {
1059
- "type": "zip",
1060
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
1061
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
1062
- "shasum": ""
1063
- },
1064
- "require": {
1065
- "php": ">=7.3"
1066
- },
1067
- "require-dev": {
1068
- "phpunit/phpunit": "^9.3"
1069
- },
1070
- "time": "2020-10-26T13:08:54+00:00",
1071
- "type": "library",
1072
- "extra": {
1073
- "branch-alias": {
1074
- "dev-master": "1.0-dev"
1075
- }
1076
- },
1077
- "installation-source": "dist",
1078
- "autoload": {
1079
- "classmap": [
1080
- "src/"
1081
- ]
1082
- },
1083
- "notification-url": "https://packagist.org/downloads/",
1084
- "license": [
1085
- "BSD-3-Clause"
1086
- ],
1087
- "authors": [
1088
- {
1089
- "name": "Sebastian Bergmann",
1090
- "email": "sebastian@phpunit.de",
1091
- "role": "lead"
1092
- }
1093
- ],
1094
- "description": "Collection of value objects that represent the PHP code units",
1095
- "homepage": "https://github.com/sebastianbergmann/code-unit",
1096
- "support": {
1097
- "issues": "https://github.com/sebastianbergmann/code-unit/issues",
1098
- "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
1099
- },
1100
- "funding": [
1101
- {
1102
- "url": "https://github.com/sebastianbergmann",
1103
- "type": "github"
1104
- }
1105
- ],
1106
- "install-path": "../sebastian/code-unit"
1107
- },
1108
- {
1109
- "name": "sebastian/code-unit-reverse-lookup",
1110
- "version": "2.0.3",
1111
- "version_normalized": "2.0.3.0",
1112
- "source": {
1113
- "type": "git",
1114
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
1115
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
1116
- },
1117
- "dist": {
1118
- "type": "zip",
1119
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
1120
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
1121
- "shasum": ""
1122
- },
1123
- "require": {
1124
- "php": ">=7.3"
1125
- },
1126
- "require-dev": {
1127
- "phpunit/phpunit": "^9.3"
1128
- },
1129
- "time": "2020-09-28T05:30:19+00:00",
1130
- "type": "library",
1131
- "extra": {
1132
- "branch-alias": {
1133
- "dev-master": "2.0-dev"
1134
- }
1135
- },
1136
- "installation-source": "dist",
1137
- "autoload": {
1138
- "classmap": [
1139
- "src/"
1140
- ]
1141
- },
1142
- "notification-url": "https://packagist.org/downloads/",
1143
- "license": [
1144
- "BSD-3-Clause"
1145
- ],
1146
- "authors": [
1147
- {
1148
- "name": "Sebastian Bergmann",
1149
- "email": "sebastian@phpunit.de"
1150
- }
1151
- ],
1152
- "description": "Looks up which function or method a line of code belongs to",
1153
- "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
1154
- "support": {
1155
- "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
1156
- "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
1157
- },
1158
- "funding": [
1159
- {
1160
- "url": "https://github.com/sebastianbergmann",
1161
- "type": "github"
1162
- }
1163
- ],
1164
- "install-path": "../sebastian/code-unit-reverse-lookup"
1165
- },
1166
- {
1167
- "name": "sebastian/comparator",
1168
- "version": "4.0.6",
1169
- "version_normalized": "4.0.6.0",
1170
- "source": {
1171
- "type": "git",
1172
- "url": "https://github.com/sebastianbergmann/comparator.git",
1173
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
1174
- },
1175
- "dist": {
1176
- "type": "zip",
1177
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
1178
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
1179
- "shasum": ""
1180
- },
1181
- "require": {
1182
- "php": ">=7.3",
1183
- "sebastian/diff": "^4.0",
1184
- "sebastian/exporter": "^4.0"
1185
- },
1186
- "require-dev": {
1187
- "phpunit/phpunit": "^9.3"
1188
- },
1189
- "time": "2020-10-26T15:49:45+00:00",
1190
- "type": "library",
1191
- "extra": {
1192
- "branch-alias": {
1193
- "dev-master": "4.0-dev"
1194
- }
1195
- },
1196
- "installation-source": "dist",
1197
- "autoload": {
1198
- "classmap": [
1199
- "src/"
1200
- ]
1201
- },
1202
- "notification-url": "https://packagist.org/downloads/",
1203
- "license": [
1204
- "BSD-3-Clause"
1205
- ],
1206
- "authors": [
1207
- {
1208
- "name": "Sebastian Bergmann",
1209
- "email": "sebastian@phpunit.de"
1210
- },
1211
- {
1212
- "name": "Jeff Welch",
1213
- "email": "whatthejeff@gmail.com"
1214
- },
1215
- {
1216
- "name": "Volker Dusch",
1217
- "email": "github@wallbash.com"
1218
- },
1219
- {
1220
- "name": "Bernhard Schussek",
1221
- "email": "bschussek@2bepublished.at"
1222
- }
1223
- ],
1224
- "description": "Provides the functionality to compare PHP values for equality",
1225
- "homepage": "https://github.com/sebastianbergmann/comparator",
1226
- "keywords": [
1227
- "comparator",
1228
- "compare",
1229
- "equality"
1230
- ],
1231
- "support": {
1232
- "issues": "https://github.com/sebastianbergmann/comparator/issues",
1233
- "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
1234
- },
1235
- "funding": [
1236
- {
1237
- "url": "https://github.com/sebastianbergmann",
1238
- "type": "github"
1239
- }
1240
- ],
1241
- "install-path": "../sebastian/comparator"
1242
- },
1243
- {
1244
- "name": "sebastian/complexity",
1245
- "version": "2.0.2",
1246
- "version_normalized": "2.0.2.0",
1247
- "source": {
1248
- "type": "git",
1249
- "url": "https://github.com/sebastianbergmann/complexity.git",
1250
- "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
1251
- },
1252
- "dist": {
1253
- "type": "zip",
1254
- "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
1255
- "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
1256
- "shasum": ""
1257
- },
1258
- "require": {
1259
- "nikic/php-parser": "^4.7",
1260
- "php": ">=7.3"
1261
- },
1262
- "require-dev": {
1263
- "phpunit/phpunit": "^9.3"
1264
- },
1265
- "time": "2020-10-26T15:52:27+00:00",
1266
- "type": "library",
1267
- "extra": {
1268
- "branch-alias": {
1269
- "dev-master": "2.0-dev"
1270
- }
1271
- },
1272
- "installation-source": "dist",
1273
- "autoload": {
1274
- "classmap": [
1275
- "src/"
1276
- ]
1277
- },
1278
- "notification-url": "https://packagist.org/downloads/",
1279
- "license": [
1280
- "BSD-3-Clause"
1281
- ],
1282
- "authors": [
1283
- {
1284
- "name": "Sebastian Bergmann",
1285
- "email": "sebastian@phpunit.de",
1286
- "role": "lead"
1287
- }
1288
- ],
1289
- "description": "Library for calculating the complexity of PHP code units",
1290
- "homepage": "https://github.com/sebastianbergmann/complexity",
1291
- "support": {
1292
- "issues": "https://github.com/sebastianbergmann/complexity/issues",
1293
- "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
1294
- },
1295
- "funding": [
1296
- {
1297
- "url": "https://github.com/sebastianbergmann",
1298
- "type": "github"
1299
- }
1300
- ],
1301
- "install-path": "../sebastian/complexity"
1302
- },
1303
- {
1304
- "name": "sebastian/diff",
1305
- "version": "4.0.4",
1306
- "version_normalized": "4.0.4.0",
1307
- "source": {
1308
- "type": "git",
1309
- "url": "https://github.com/sebastianbergmann/diff.git",
1310
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
1311
- },
1312
- "dist": {
1313
- "type": "zip",
1314
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
1315
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
1316
- "shasum": ""
1317
- },
1318
- "require": {
1319
- "php": ">=7.3"
1320
- },
1321
- "require-dev": {
1322
- "phpunit/phpunit": "^9.3",
1323
- "symfony/process": "^4.2 || ^5"
1324
- },
1325
- "time": "2020-10-26T13:10:38+00:00",
1326
- "type": "library",
1327
- "extra": {
1328
- "branch-alias": {
1329
- "dev-master": "4.0-dev"
1330
- }
1331
- },
1332
- "installation-source": "dist",
1333
- "autoload": {
1334
- "classmap": [
1335
- "src/"
1336
- ]
1337
- },
1338
- "notification-url": "https://packagist.org/downloads/",
1339
- "license": [
1340
- "BSD-3-Clause"
1341
- ],
1342
- "authors": [
1343
- {
1344
- "name": "Sebastian Bergmann",
1345
- "email": "sebastian@phpunit.de"
1346
- },
1347
- {
1348
- "name": "Kore Nordmann",
1349
- "email": "mail@kore-nordmann.de"
1350
- }
1351
- ],
1352
- "description": "Diff implementation",
1353
- "homepage": "https://github.com/sebastianbergmann/diff",
1354
- "keywords": [
1355
- "diff",
1356
- "udiff",
1357
- "unidiff",
1358
- "unified diff"
1359
- ],
1360
- "support": {
1361
- "issues": "https://github.com/sebastianbergmann/diff/issues",
1362
- "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
1363
- },
1364
- "funding": [
1365
- {
1366
- "url": "https://github.com/sebastianbergmann",
1367
- "type": "github"
1368
- }
1369
- ],
1370
- "install-path": "../sebastian/diff"
1371
- },
1372
- {
1373
- "name": "sebastian/environment",
1374
- "version": "5.1.3",
1375
- "version_normalized": "5.1.3.0",
1376
- "source": {
1377
- "type": "git",
1378
- "url": "https://github.com/sebastianbergmann/environment.git",
1379
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
1380
- },
1381
- "dist": {
1382
- "type": "zip",
1383
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
1384
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
1385
- "shasum": ""
1386
- },
1387
- "require": {
1388
- "php": ">=7.3"
1389
- },
1390
- "require-dev": {
1391
- "phpunit/phpunit": "^9.3"
1392
- },
1393
- "suggest": {
1394
- "ext-posix": "*"
1395
- },
1396
- "time": "2020-09-28T05:52:38+00:00",
1397
- "type": "library",
1398
- "extra": {
1399
- "branch-alias": {
1400
- "dev-master": "5.1-dev"
1401
- }
1402
- },
1403
- "installation-source": "dist",
1404
- "autoload": {
1405
- "classmap": [
1406
- "src/"
1407
- ]
1408
- },
1409
- "notification-url": "https://packagist.org/downloads/",
1410
- "license": [
1411
- "BSD-3-Clause"
1412
- ],
1413
- "authors": [
1414
- {
1415
- "name": "Sebastian Bergmann",
1416
- "email": "sebastian@phpunit.de"
1417
- }
1418
- ],
1419
- "description": "Provides functionality to handle HHVM/PHP environments",
1420
- "homepage": "http://www.github.com/sebastianbergmann/environment",
1421
- "keywords": [
1422
- "Xdebug",
1423
- "environment",
1424
- "hhvm"
1425
- ],
1426
- "support": {
1427
- "issues": "https://github.com/sebastianbergmann/environment/issues",
1428
- "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
1429
- },
1430
- "funding": [
1431
- {
1432
- "url": "https://github.com/sebastianbergmann",
1433
- "type": "github"
1434
- }
1435
- ],
1436
- "install-path": "../sebastian/environment"
1437
- },
1438
- {
1439
- "name": "sebastian/exporter",
1440
- "version": "4.0.4",
1441
- "version_normalized": "4.0.4.0",
1442
- "source": {
1443
- "type": "git",
1444
- "url": "https://github.com/sebastianbergmann/exporter.git",
1445
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
1446
- },
1447
- "dist": {
1448
- "type": "zip",
1449
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
1450
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
1451
- "shasum": ""
1452
- },
1453
- "require": {
1454
- "php": ">=7.3",
1455
- "sebastian/recursion-context": "^4.0"
1456
- },
1457
- "require-dev": {
1458
- "ext-mbstring": "*",
1459
- "phpunit/phpunit": "^9.3"
1460
- },
1461
- "time": "2021-11-11T14:18:36+00:00",
1462
- "type": "library",
1463
- "extra": {
1464
- "branch-alias": {
1465
- "dev-master": "4.0-dev"
1466
- }
1467
- },
1468
- "installation-source": "dist",
1469
- "autoload": {
1470
- "classmap": [
1471
- "src/"
1472
- ]
1473
- },
1474
- "notification-url": "https://packagist.org/downloads/",
1475
- "license": [
1476
- "BSD-3-Clause"
1477
- ],
1478
- "authors": [
1479
- {
1480
- "name": "Sebastian Bergmann",
1481
- "email": "sebastian@phpunit.de"
1482
- },
1483
- {
1484
- "name": "Jeff Welch",
1485
- "email": "whatthejeff@gmail.com"
1486
- },
1487
- {
1488
- "name": "Volker Dusch",
1489
- "email": "github@wallbash.com"
1490
- },
1491
- {
1492
- "name": "Adam Harvey",
1493
- "email": "aharvey@php.net"
1494
- },
1495
- {
1496
- "name": "Bernhard Schussek",
1497
- "email": "bschussek@gmail.com"
1498
- }
1499
- ],
1500
- "description": "Provides the functionality to export PHP variables for visualization",
1501
- "homepage": "https://www.github.com/sebastianbergmann/exporter",
1502
- "keywords": [
1503
- "export",
1504
- "exporter"
1505
- ],
1506
- "support": {
1507
- "issues": "https://github.com/sebastianbergmann/exporter/issues",
1508
- "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
1509
- },
1510
- "funding": [
1511
- {
1512
- "url": "https://github.com/sebastianbergmann",
1513
- "type": "github"
1514
- }
1515
- ],
1516
- "install-path": "../sebastian/exporter"
1517
- },
1518
- {
1519
- "name": "sebastian/global-state",
1520
- "version": "5.0.5",
1521
- "version_normalized": "5.0.5.0",
1522
- "source": {
1523
- "type": "git",
1524
- "url": "https://github.com/sebastianbergmann/global-state.git",
1525
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
1526
- },
1527
- "dist": {
1528
- "type": "zip",
1529
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
1530
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
1531
- "shasum": ""
1532
- },
1533
- "require": {
1534
- "php": ">=7.3",
1535
- "sebastian/object-reflector": "^2.0",
1536
- "sebastian/recursion-context": "^4.0"
1537
- },
1538
- "require-dev": {
1539
- "ext-dom": "*",
1540
- "phpunit/phpunit": "^9.3"
1541
- },
1542
- "suggest": {
1543
- "ext-uopz": "*"
1544
- },
1545
- "time": "2022-02-14T08:28:10+00:00",
1546
- "type": "library",
1547
- "extra": {
1548
- "branch-alias": {
1549
- "dev-master": "5.0-dev"
1550
- }
1551
- },
1552
- "installation-source": "dist",
1553
- "autoload": {
1554
- "classmap": [
1555
- "src/"
1556
- ]
1557
- },
1558
- "notification-url": "https://packagist.org/downloads/",
1559
- "license": [
1560
- "BSD-3-Clause"
1561
- ],
1562
- "authors": [
1563
- {
1564
- "name": "Sebastian Bergmann",
1565
- "email": "sebastian@phpunit.de"
1566
- }
1567
- ],
1568
- "description": "Snapshotting of global state",
1569
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
1570
- "keywords": [
1571
- "global state"
1572
- ],
1573
- "support": {
1574
- "issues": "https://github.com/sebastianbergmann/global-state/issues",
1575
- "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
1576
- },
1577
- "funding": [
1578
- {
1579
- "url": "https://github.com/sebastianbergmann",
1580
- "type": "github"
1581
- }
1582
- ],
1583
- "install-path": "../sebastian/global-state"
1584
- },
1585
- {
1586
- "name": "sebastian/lines-of-code",
1587
- "version": "1.0.3",
1588
- "version_normalized": "1.0.3.0",
1589
- "source": {
1590
- "type": "git",
1591
- "url": "https://github.com/sebastianbergmann/lines-of-code.git",
1592
- "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
1593
- },
1594
- "dist": {
1595
- "type": "zip",
1596
- "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
1597
- "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
1598
- "shasum": ""
1599
- },
1600
- "require": {
1601
- "nikic/php-parser": "^4.6",
1602
- "php": ">=7.3"
1603
- },
1604
- "require-dev": {
1605
- "phpunit/phpunit": "^9.3"
1606
- },
1607
- "time": "2020-11-28T06:42:11+00:00",
1608
- "type": "library",
1609
- "extra": {
1610
- "branch-alias": {
1611
- "dev-master": "1.0-dev"
1612
- }
1613
- },
1614
- "installation-source": "dist",
1615
- "autoload": {
1616
- "classmap": [
1617
- "src/"
1618
- ]
1619
- },
1620
- "notification-url": "https://packagist.org/downloads/",
1621
- "license": [
1622
- "BSD-3-Clause"
1623
- ],
1624
- "authors": [
1625
- {
1626
- "name": "Sebastian Bergmann",
1627
- "email": "sebastian@phpunit.de",
1628
- "role": "lead"
1629
- }
1630
- ],
1631
- "description": "Library for counting the lines of code in PHP source code",
1632
- "homepage": "https://github.com/sebastianbergmann/lines-of-code",
1633
- "support": {
1634
- "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
1635
- "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
1636
- },
1637
- "funding": [
1638
- {
1639
- "url": "https://github.com/sebastianbergmann",
1640
- "type": "github"
1641
- }
1642
- ],
1643
- "install-path": "../sebastian/lines-of-code"
1644
- },
1645
- {
1646
- "name": "sebastian/object-enumerator",
1647
- "version": "4.0.4",
1648
- "version_normalized": "4.0.4.0",
1649
- "source": {
1650
- "type": "git",
1651
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
1652
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
1653
- },
1654
- "dist": {
1655
- "type": "zip",
1656
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
1657
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
1658
- "shasum": ""
1659
- },
1660
- "require": {
1661
- "php": ">=7.3",
1662
- "sebastian/object-reflector": "^2.0",
1663
- "sebastian/recursion-context": "^4.0"
1664
- },
1665
- "require-dev": {
1666
- "phpunit/phpunit": "^9.3"
1667
- },
1668
- "time": "2020-10-26T13:12:34+00:00",
1669
- "type": "library",
1670
- "extra": {
1671
- "branch-alias": {
1672
- "dev-master": "4.0-dev"
1673
- }
1674
- },
1675
- "installation-source": "dist",
1676
- "autoload": {
1677
- "classmap": [
1678
- "src/"
1679
- ]
1680
- },
1681
- "notification-url": "https://packagist.org/downloads/",
1682
- "license": [
1683
- "BSD-3-Clause"
1684
- ],
1685
- "authors": [
1686
- {
1687
- "name": "Sebastian Bergmann",
1688
- "email": "sebastian@phpunit.de"
1689
- }
1690
- ],
1691
- "description": "Traverses array structures and object graphs to enumerate all referenced objects",
1692
- "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
1693
- "support": {
1694
- "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
1695
- "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
1696
- },
1697
- "funding": [
1698
- {
1699
- "url": "https://github.com/sebastianbergmann",
1700
- "type": "github"
1701
- }
1702
- ],
1703
- "install-path": "../sebastian/object-enumerator"
1704
- },
1705
- {
1706
- "name": "sebastian/object-reflector",
1707
- "version": "2.0.4",
1708
- "version_normalized": "2.0.4.0",
1709
- "source": {
1710
- "type": "git",
1711
- "url": "https://github.com/sebastianbergmann/object-reflector.git",
1712
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
1713
- },
1714
- "dist": {
1715
- "type": "zip",
1716
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
1717
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
1718
- "shasum": ""
1719
- },
1720
- "require": {
1721
- "php": ">=7.3"
1722
- },
1723
- "require-dev": {
1724
- "phpunit/phpunit": "^9.3"
1725
- },
1726
- "time": "2020-10-26T13:14:26+00:00",
1727
- "type": "library",
1728
- "extra": {
1729
- "branch-alias": {
1730
- "dev-master": "2.0-dev"
1731
- }
1732
- },
1733
- "installation-source": "dist",
1734
- "autoload": {
1735
- "classmap": [
1736
- "src/"
1737
- ]
1738
- },
1739
- "notification-url": "https://packagist.org/downloads/",
1740
- "license": [
1741
- "BSD-3-Clause"
1742
- ],
1743
- "authors": [
1744
- {
1745
- "name": "Sebastian Bergmann",
1746
- "email": "sebastian@phpunit.de"
1747
- }
1748
- ],
1749
- "description": "Allows reflection of object attributes, including inherited and non-public ones",
1750
- "homepage": "https://github.com/sebastianbergmann/object-reflector/",
1751
- "support": {
1752
- "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
1753
- "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
1754
- },
1755
- "funding": [
1756
- {
1757
- "url": "https://github.com/sebastianbergmann",
1758
- "type": "github"
1759
- }
1760
- ],
1761
- "install-path": "../sebastian/object-reflector"
1762
- },
1763
- {
1764
- "name": "sebastian/recursion-context",
1765
- "version": "4.0.4",
1766
- "version_normalized": "4.0.4.0",
1767
- "source": {
1768
- "type": "git",
1769
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
1770
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
1771
- },
1772
- "dist": {
1773
- "type": "zip",
1774
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
1775
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
1776
- "shasum": ""
1777
- },
1778
- "require": {
1779
- "php": ">=7.3"
1780
- },
1781
- "require-dev": {
1782
- "phpunit/phpunit": "^9.3"
1783
- },
1784
- "time": "2020-10-26T13:17:30+00:00",
1785
- "type": "library",
1786
- "extra": {
1787
- "branch-alias": {
1788
- "dev-master": "4.0-dev"
1789
- }
1790
- },
1791
- "installation-source": "dist",
1792
- "autoload": {
1793
- "classmap": [
1794
- "src/"
1795
- ]
1796
- },
1797
- "notification-url": "https://packagist.org/downloads/",
1798
- "license": [
1799
- "BSD-3-Clause"
1800
- ],
1801
- "authors": [
1802
- {
1803
- "name": "Sebastian Bergmann",
1804
- "email": "sebastian@phpunit.de"
1805
- },
1806
- {
1807
- "name": "Jeff Welch",
1808
- "email": "whatthejeff@gmail.com"
1809
- },
1810
- {
1811
- "name": "Adam Harvey",
1812
- "email": "aharvey@php.net"
1813
- }
1814
- ],
1815
- "description": "Provides functionality to recursively process PHP variables",
1816
- "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
1817
- "support": {
1818
- "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
1819
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
1820
- },
1821
- "funding": [
1822
- {
1823
- "url": "https://github.com/sebastianbergmann",
1824
- "type": "github"
1825
- }
1826
- ],
1827
- "install-path": "../sebastian/recursion-context"
1828
- },
1829
- {
1830
- "name": "sebastian/resource-operations",
1831
- "version": "3.0.3",
1832
- "version_normalized": "3.0.3.0",
1833
- "source": {
1834
- "type": "git",
1835
- "url": "https://github.com/sebastianbergmann/resource-operations.git",
1836
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
1837
- },
1838
- "dist": {
1839
- "type": "zip",
1840
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
1841
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
1842
- "shasum": ""
1843
- },
1844
- "require": {
1845
- "php": ">=7.3"
1846
- },
1847
- "require-dev": {
1848
- "phpunit/phpunit": "^9.0"
1849
- },
1850
- "time": "2020-09-28T06:45:17+00:00",
1851
- "type": "library",
1852
- "extra": {
1853
- "branch-alias": {
1854
- "dev-master": "3.0-dev"
1855
- }
1856
- },
1857
- "installation-source": "dist",
1858
- "autoload": {
1859
- "classmap": [
1860
- "src/"
1861
- ]
1862
- },
1863
- "notification-url": "https://packagist.org/downloads/",
1864
- "license": [
1865
- "BSD-3-Clause"
1866
- ],
1867
- "authors": [
1868
- {
1869
- "name": "Sebastian Bergmann",
1870
- "email": "sebastian@phpunit.de"
1871
- }
1872
- ],
1873
- "description": "Provides a list of PHP built-in functions that operate on resources",
1874
- "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
1875
- "support": {
1876
- "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
1877
- "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
1878
- },
1879
- "funding": [
1880
- {
1881
- "url": "https://github.com/sebastianbergmann",
1882
- "type": "github"
1883
- }
1884
- ],
1885
- "install-path": "../sebastian/resource-operations"
1886
- },
1887
- {
1888
- "name": "sebastian/type",
1889
- "version": "2.3.4",
1890
- "version_normalized": "2.3.4.0",
1891
- "source": {
1892
- "type": "git",
1893
- "url": "https://github.com/sebastianbergmann/type.git",
1894
- "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
1895
- },
1896
- "dist": {
1897
- "type": "zip",
1898
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
1899
- "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
1900
- "shasum": ""
1901
- },
1902
- "require": {
1903
- "php": ">=7.3"
1904
- },
1905
- "require-dev": {
1906
- "phpunit/phpunit": "^9.3"
1907
- },
1908
- "time": "2021-06-15T12:49:02+00:00",
1909
- "type": "library",
1910
- "extra": {
1911
- "branch-alias": {
1912
- "dev-master": "2.3-dev"
1913
- }
1914
- },
1915
- "installation-source": "dist",
1916
- "autoload": {
1917
- "classmap": [
1918
- "src/"
1919
- ]
1920
- },
1921
- "notification-url": "https://packagist.org/downloads/",
1922
- "license": [
1923
- "BSD-3-Clause"
1924
- ],
1925
- "authors": [
1926
- {
1927
- "name": "Sebastian Bergmann",
1928
- "email": "sebastian@phpunit.de",
1929
- "role": "lead"
1930
- }
1931
- ],
1932
- "description": "Collection of value objects that represent the types of the PHP type system",
1933
- "homepage": "https://github.com/sebastianbergmann/type",
1934
- "support": {
1935
- "issues": "https://github.com/sebastianbergmann/type/issues",
1936
- "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
1937
- },
1938
- "funding": [
1939
- {
1940
- "url": "https://github.com/sebastianbergmann",
1941
- "type": "github"
1942
- }
1943
- ],
1944
- "install-path": "../sebastian/type"
1945
- },
1946
- {
1947
- "name": "sebastian/version",
1948
- "version": "3.0.2",
1949
- "version_normalized": "3.0.2.0",
1950
- "source": {
1951
- "type": "git",
1952
- "url": "https://github.com/sebastianbergmann/version.git",
1953
- "reference": "c6c1022351a901512170118436c764e473f6de8c"
1954
- },
1955
- "dist": {
1956
- "type": "zip",
1957
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
1958
- "reference": "c6c1022351a901512170118436c764e473f6de8c",
1959
- "shasum": ""
1960
- },
1961
- "require": {
1962
- "php": ">=7.3"
1963
- },
1964
- "time": "2020-09-28T06:39:44+00:00",
1965
- "type": "library",
1966
- "extra": {
1967
- "branch-alias": {
1968
- "dev-master": "3.0-dev"
1969
- }
1970
- },
1971
- "installation-source": "dist",
1972
- "autoload": {
1973
- "classmap": [
1974
- "src/"
1975
- ]
1976
- },
1977
- "notification-url": "https://packagist.org/downloads/",
1978
- "license": [
1979
- "BSD-3-Clause"
1980
- ],
1981
- "authors": [
1982
- {
1983
- "name": "Sebastian Bergmann",
1984
- "email": "sebastian@phpunit.de",
1985
- "role": "lead"
1986
- }
1987
- ],
1988
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
1989
- "homepage": "https://github.com/sebastianbergmann/version",
1990
- "support": {
1991
- "issues": "https://github.com/sebastianbergmann/version/issues",
1992
- "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
1993
- },
1994
- "funding": [
1995
- {
1996
- "url": "https://github.com/sebastianbergmann",
1997
- "type": "github"
1998
- }
1999
- ],
2000
- "install-path": "../sebastian/version"
2001
- },
2002
- {
2003
- "name": "sirbrillig/phpcs-variable-analysis",
2004
- "version": "v2.11.2",
2005
- "version_normalized": "2.11.2.0",
2006
- "source": {
2007
- "type": "git",
2008
- "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git",
2009
- "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e"
2010
- },
2011
- "dist": {
2012
- "type": "zip",
2013
- "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3fad28475bfbdbf8aa5c440f8a8f89824983d85e",
2014
- "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e",
2015
- "shasum": ""
2016
- },
2017
- "require": {
2018
- "php": ">=5.4.0",
2019
- "squizlabs/php_codesniffer": "^3.5"
2020
- },
2021
- "require-dev": {
2022
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
2023
- "limedeck/phpunit-detailed-printer": "^3.1 || ^4.0 || ^5.0",
2024
- "phpstan/phpstan": "^0.11.8",
2025
- "phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^8.0",
2026
- "sirbrillig/phpcs-import-detection": "^1.1"
2027
- },
2028
- "time": "2021-07-06T23:45:17+00:00",
2029
- "type": "phpcodesniffer-standard",
2030
- "installation-source": "dist",
2031
- "autoload": {
2032
- "psr-4": {
2033
- "VariableAnalysis\\": "VariableAnalysis/"
2034
- }
2035
- },
2036
- "notification-url": "https://packagist.org/downloads/",
2037
- "license": [
2038
- "BSD-2-Clause"
2039
- ],
2040
- "authors": [
2041
- {
2042
- "name": "Sam Graham",
2043
- "email": "php-codesniffer-variableanalysis@illusori.co.uk"
2044
- },
2045
- {
2046
- "name": "Payton Swick",
2047
- "email": "payton@foolord.com"
2048
- }
2049
- ],
2050
- "description": "A PHPCS sniff to detect problems with variables.",
2051
- "support": {
2052
- "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues",
2053
- "source": "https://github.com/sirbrillig/phpcs-variable-analysis",
2054
- "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki"
2055
- },
2056
- "install-path": "../sirbrillig/phpcs-variable-analysis"
2057
- },
2058
- {
2059
- "name": "squizlabs/php_codesniffer",
2060
- "version": "3.6.2",
2061
- "version_normalized": "3.6.2.0",
2062
- "source": {
2063
- "type": "git",
2064
- "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
2065
- "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a"
2066
- },
2067
- "dist": {
2068
- "type": "zip",
2069
- "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/5e4e71592f69da17871dba6e80dd51bce74a351a",
2070
- "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a",
2071
- "shasum": ""
2072
- },
2073
- "require": {
2074
- "ext-simplexml": "*",
2075
- "ext-tokenizer": "*",
2076
- "ext-xmlwriter": "*",
2077
- "php": ">=5.4.0"
2078
- },
2079
- "require-dev": {
2080
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
2081
- },
2082
- "time": "2021-12-12T21:44:58+00:00",
2083
- "bin": [
2084
- "bin/phpcs",
2085
- "bin/phpcbf"
2086
- ],
2087
- "type": "library",
2088
- "extra": {
2089
- "branch-alias": {
2090
- "dev-master": "3.x-dev"
2091
- }
2092
- },
2093
- "installation-source": "dist",
2094
- "notification-url": "https://packagist.org/downloads/",
2095
- "license": [
2096
- "BSD-3-Clause"
2097
- ],
2098
- "authors": [
2099
- {
2100
- "name": "Greg Sherwood",
2101
- "role": "lead"
2102
- }
2103
- ],
2104
- "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
2105
- "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
2106
- "keywords": [
2107
- "phpcs",
2108
- "standards"
2109
- ],
2110
- "support": {
2111
- "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
2112
- "source": "https://github.com/squizlabs/PHP_CodeSniffer",
2113
- "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
2114
- },
2115
- "install-path": "../squizlabs/php_codesniffer"
2116
- },
2117
- {
2118
- "name": "symfony/polyfill-ctype",
2119
- "version": "v1.24.0",
2120
- "version_normalized": "1.24.0.0",
2121
- "source": {
2122
- "type": "git",
2123
- "url": "https://github.com/symfony/polyfill-ctype.git",
2124
- "reference": "30885182c981ab175d4d034db0f6f469898070ab"
2125
- },
2126
- "dist": {
2127
- "type": "zip",
2128
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
2129
- "reference": "30885182c981ab175d4d034db0f6f469898070ab",
2130
- "shasum": ""
2131
- },
2132
- "require": {
2133
- "php": ">=7.1"
2134
- },
2135
- "provide": {
2136
- "ext-ctype": "*"
2137
- },
2138
- "suggest": {
2139
- "ext-ctype": "For best performance"
2140
- },
2141
- "time": "2021-10-20T20:35:02+00:00",
2142
- "type": "library",
2143
- "extra": {
2144
- "branch-alias": {
2145
- "dev-main": "1.23-dev"
2146
- },
2147
- "thanks": {
2148
- "name": "symfony/polyfill",
2149
- "url": "https://github.com/symfony/polyfill"
2150
- }
2151
- },
2152
- "installation-source": "dist",
2153
- "autoload": {
2154
- "psr-4": {
2155
- "Symfony\\Polyfill\\Ctype\\": ""
2156
- },
2157
- "files": [
2158
- "bootstrap.php"
2159
- ]
2160
- },
2161
- "notification-url": "https://packagist.org/downloads/",
2162
- "license": [
2163
- "MIT"
2164
- ],
2165
- "authors": [
2166
- {
2167
- "name": "Gert de Pagter",
2168
- "email": "BackEndTea@gmail.com"
2169
- },
2170
- {
2171
- "name": "Symfony Community",
2172
- "homepage": "https://symfony.com/contributors"
2173
- }
2174
- ],
2175
- "description": "Symfony polyfill for ctype functions",
2176
- "homepage": "https://symfony.com",
2177
- "keywords": [
2178
- "compatibility",
2179
- "ctype",
2180
- "polyfill",
2181
- "portable"
2182
- ],
2183
- "support": {
2184
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
2185
- },
2186
- "funding": [
2187
- {
2188
- "url": "https://symfony.com/sponsor",
2189
- "type": "custom"
2190
- },
2191
- {
2192
- "url": "https://github.com/fabpot",
2193
- "type": "github"
2194
- },
2195
- {
2196
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2197
- "type": "tidelift"
2198
- }
2199
- ],
2200
- "install-path": "../symfony/polyfill-ctype"
2201
- },
2202
- {
2203
- "name": "theseer/tokenizer",
2204
- "version": "1.2.1",
2205
- "version_normalized": "1.2.1.0",
2206
- "source": {
2207
- "type": "git",
2208
- "url": "https://github.com/theseer/tokenizer.git",
2209
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
2210
- },
2211
- "dist": {
2212
- "type": "zip",
2213
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
2214
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
2215
- "shasum": ""
2216
- },
2217
- "require": {
2218
- "ext-dom": "*",
2219
- "ext-tokenizer": "*",
2220
- "ext-xmlwriter": "*",
2221
- "php": "^7.2 || ^8.0"
2222
- },
2223
- "time": "2021-07-28T10:34:58+00:00",
2224
- "type": "library",
2225
- "installation-source": "dist",
2226
- "autoload": {
2227
- "classmap": [
2228
- "src/"
2229
- ]
2230
- },
2231
- "notification-url": "https://packagist.org/downloads/",
2232
- "license": [
2233
- "BSD-3-Clause"
2234
- ],
2235
- "authors": [
2236
- {
2237
- "name": "Arne Blankerts",
2238
- "email": "arne@blankerts.de",
2239
- "role": "Developer"
2240
- }
2241
- ],
2242
- "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
2243
- "support": {
2244
- "issues": "https://github.com/theseer/tokenizer/issues",
2245
- "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
2246
- },
2247
- "funding": [
2248
- {
2249
- "url": "https://github.com/theseer",
2250
- "type": "github"
2251
- }
2252
- ],
2253
- "install-path": "../theseer/tokenizer"
2254
- },
2255
  {
2256
  "name": "vektor-inc/vk-breadcrumb",
2257
  "version": "0.0.4",
@@ -2334,264 +82,8 @@
2334
  "source": "https://github.com/vektor-inc/vk-helpers/tree/0.0.2"
2335
  },
2336
  "install-path": "../vektor-inc/vk-helpers"
2337
- },
2338
- {
2339
- "name": "vektor-inc/vk-wp-unit-test-tools",
2340
- "version": "0.10.0",
2341
- "version_normalized": "0.10.0.0",
2342
- "source": {
2343
- "type": "git",
2344
- "url": "https://github.com/vektor-inc/vk-wp-unit-test-tools.git",
2345
- "reference": "5ce9eb397ba1ec76193664e6877288ffa22b9422"
2346
- },
2347
- "dist": {
2348
- "type": "zip",
2349
- "url": "https://api.github.com/repos/vektor-inc/vk-wp-unit-test-tools/zipball/5ce9eb397ba1ec76193664e6877288ffa22b9422",
2350
- "reference": "5ce9eb397ba1ec76193664e6877288ffa22b9422",
2351
- "shasum": ""
2352
- },
2353
- "time": "2021-09-03T10:14:12+00:00",
2354
- "type": "library",
2355
- "installation-source": "dist",
2356
- "autoload": {
2357
- "psr-4": {
2358
- "VK_WP_Unit_Test_Tools\\": "src/"
2359
- }
2360
- },
2361
- "notification-url": "https://packagist.org/downloads/",
2362
- "license": [
2363
- "MIT"
2364
- ],
2365
- "authors": [
2366
- {
2367
- "name": "kurudrive",
2368
- "email": "kurudrive@gmail.com"
2369
- }
2370
- ],
2371
- "description": "WordPress PHPUnit test tools",
2372
- "support": {
2373
- "issues": "https://github.com/vektor-inc/vk-wp-unit-test-tools/issues",
2374
- "source": "https://github.com/vektor-inc/vk-wp-unit-test-tools/tree/0.10.0"
2375
- },
2376
- "install-path": "../vektor-inc/vk-wp-unit-test-tools"
2377
- },
2378
- {
2379
- "name": "webmozart/assert",
2380
- "version": "1.10.0",
2381
- "version_normalized": "1.10.0.0",
2382
- "source": {
2383
- "type": "git",
2384
- "url": "https://github.com/webmozarts/assert.git",
2385
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
2386
- },
2387
- "dist": {
2388
- "type": "zip",
2389
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
2390
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
2391
- "shasum": ""
2392
- },
2393
- "require": {
2394
- "php": "^7.2 || ^8.0",
2395
- "symfony/polyfill-ctype": "^1.8"
2396
- },
2397
- "conflict": {
2398
- "phpstan/phpstan": "<0.12.20",
2399
- "vimeo/psalm": "<4.6.1 || 4.6.2"
2400
- },
2401
- "require-dev": {
2402
- "phpunit/phpunit": "^8.5.13"
2403
- },
2404
- "time": "2021-03-09T10:59:23+00:00",
2405
- "type": "library",
2406
- "extra": {
2407
- "branch-alias": {
2408
- "dev-master": "1.10-dev"
2409
- }
2410
- },
2411
- "installation-source": "dist",
2412
- "autoload": {
2413
- "psr-4": {
2414
- "Webmozart\\Assert\\": "src/"
2415
- }
2416
- },
2417
- "notification-url": "https://packagist.org/downloads/",
2418
- "license": [
2419
- "MIT"
2420
- ],
2421
- "authors": [
2422
- {
2423
- "name": "Bernhard Schussek",
2424
- "email": "bschussek@gmail.com"
2425
- }
2426
- ],
2427
- "description": "Assertions to validate method input/output with nice error messages.",
2428
- "keywords": [
2429
- "assert",
2430
- "check",
2431
- "validate"
2432
- ],
2433
- "support": {
2434
- "issues": "https://github.com/webmozarts/assert/issues",
2435
- "source": "https://github.com/webmozarts/assert/tree/1.10.0"
2436
- },
2437
- "install-path": "../webmozart/assert"
2438
- },
2439
- {
2440
- "name": "wp-phpunit/wp-phpunit",
2441
- "version": "5.9.0",
2442
- "version_normalized": "5.9.0.0",
2443
- "source": {
2444
- "type": "git",
2445
- "url": "https://github.com/wp-phpunit/wp-phpunit.git",
2446
- "reference": "02d98f9d5f15442489b5d98c1f4c486901e3e110"
2447
- },
2448
- "dist": {
2449
- "type": "zip",
2450
- "url": "https://api.github.com/repos/wp-phpunit/wp-phpunit/zipball/02d98f9d5f15442489b5d98c1f4c486901e3e110",
2451
- "reference": "02d98f9d5f15442489b5d98c1f4c486901e3e110",
2452
- "shasum": ""
2453
- },
2454
- "time": "2022-01-25T20:37:14+00:00",
2455
- "type": "library",
2456
- "installation-source": "dist",
2457
- "autoload": {
2458
- "files": [
2459
- "__loaded.php"
2460
- ]
2461
- },
2462
- "notification-url": "https://packagist.org/downloads/",
2463
- "license": [
2464
- "GPL-2.0-or-later"
2465
- ],
2466
- "authors": [
2467
- {
2468
- "name": "Evan Mattson",
2469
- "email": "me@aaemnnost.tv"
2470
- },
2471
- {
2472
- "name": "WordPress Community",
2473
- "homepage": "https://wordpress.org/about/"
2474
- }
2475
- ],
2476
- "description": "WordPress core PHPUnit library",
2477
- "homepage": "https://github.com/wp-phpunit",
2478
- "keywords": [
2479
- "phpunit",
2480
- "test",
2481
- "wordpress"
2482
- ],
2483
- "support": {
2484
- "docs": "https://github.com/wp-phpunit/docs",
2485
- "issues": "https://github.com/wp-phpunit/issues",
2486
- "source": "https://github.com/wp-phpunit/wp-phpunit"
2487
- },
2488
- "install-path": "../wp-phpunit/wp-phpunit"
2489
- },
2490
- {
2491
- "name": "yoast/phpunit-polyfills",
2492
- "version": "1.0.3",
2493
- "version_normalized": "1.0.3.0",
2494
- "source": {
2495
- "type": "git",
2496
- "url": "https://github.com/Yoast/PHPUnit-Polyfills.git",
2497
- "reference": "5ea3536428944955f969bc764bbe09738e151ada"
2498
- },
2499
- "dist": {
2500
- "type": "zip",
2501
- "url": "https://api.github.com/repos/Yoast/PHPUnit-Polyfills/zipball/5ea3536428944955f969bc764bbe09738e151ada",
2502
- "reference": "5ea3536428944955f969bc764bbe09738e151ada",
2503
- "shasum": ""
2504
- },
2505
- "require": {
2506
- "php": ">=5.4",
2507
- "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
2508
- },
2509
- "require-dev": {
2510
- "yoast/yoastcs": "^2.2.0"
2511
- },
2512
- "time": "2021-11-23T01:37:03+00:00",
2513
- "type": "library",
2514
- "extra": {
2515
- "branch-alias": {
2516
- "dev-main": "1.x-dev",
2517
- "dev-develop": "1.x-dev"
2518
- }
2519
- },
2520
- "installation-source": "dist",
2521
- "autoload": {
2522
- "files": [
2523
- "phpunitpolyfills-autoload.php"
2524
- ]
2525
- },
2526
- "notification-url": "https://packagist.org/downloads/",
2527
- "license": [
2528
- "BSD-3-Clause"
2529
- ],
2530
- "authors": [
2531
- {
2532
- "name": "Team Yoast",
2533
- "email": "support@yoast.com",
2534
- "homepage": "https://yoast.com"
2535
- },
2536
- {
2537
- "name": "Contributors",
2538
- "homepage": "https://github.com/Yoast/PHPUnit-Polyfills/graphs/contributors"
2539
- }
2540
- ],
2541
- "description": "Set of polyfills for changed PHPUnit functionality to allow for creating PHPUnit cross-version compatible tests",
2542
- "homepage": "https://github.com/Yoast/PHPUnit-Polyfills",
2543
- "keywords": [
2544
- "phpunit",
2545
- "polyfill",
2546
- "testing"
2547
- ],
2548
- "support": {
2549
- "issues": "https://github.com/Yoast/PHPUnit-Polyfills/issues",
2550
- "source": "https://github.com/Yoast/PHPUnit-Polyfills"
2551
- },
2552
- "install-path": "../yoast/phpunit-polyfills"
2553
  }
2554
  ],
2555
- "dev": true,
2556
- "dev-package-names": [
2557
- "doctrine/instantiator",
2558
- "myclabs/deep-copy",
2559
- "nikic/php-parser",
2560
- "phar-io/manifest",
2561
- "phar-io/version",
2562
- "phpdocumentor/reflection-common",
2563
- "phpdocumentor/reflection-docblock",
2564
- "phpdocumentor/type-resolver",
2565
- "phpspec/prophecy",
2566
- "phpunit/php-code-coverage",
2567
- "phpunit/php-file-iterator",
2568
- "phpunit/php-invoker",
2569
- "phpunit/php-text-template",
2570
- "phpunit/php-timer",
2571
- "phpunit/phpunit",
2572
- "sebastian/cli-parser",
2573
- "sebastian/code-unit",
2574
- "sebastian/code-unit-reverse-lookup",
2575
- "sebastian/comparator",
2576
- "sebastian/complexity",
2577
- "sebastian/diff",
2578
- "sebastian/environment",
2579
- "sebastian/exporter",
2580
- "sebastian/global-state",
2581
- "sebastian/lines-of-code",
2582
- "sebastian/object-enumerator",
2583
- "sebastian/object-reflector",
2584
- "sebastian/recursion-context",
2585
- "sebastian/resource-operations",
2586
- "sebastian/type",
2587
- "sebastian/version",
2588
- "sirbrillig/phpcs-variable-analysis",
2589
- "squizlabs/php_codesniffer",
2590
- "symfony/polyfill-ctype",
2591
- "theseer/tokenizer",
2592
- "vektor-inc/vk-wp-unit-test-tools",
2593
- "webmozart/assert",
2594
- "wp-phpunit/wp-phpunit",
2595
- "yoast/phpunit-polyfills"
2596
- ]
2597
  }
1
  {
2
  "packages": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  {
4
  "name": "vektor-inc/vk-breadcrumb",
5
  "version": "0.0.4",
82
  "source": "https://github.com/vektor-inc/vk-helpers/tree/0.0.2"
83
  },
84
  "install-path": "../vektor-inc/vk-helpers"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  }
86
  ],
87
+ "dev": false,
88
+ "dev-package-names": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  }
vendor/composer/installed.php CHANGED
@@ -1,340 +1,22 @@
1
  <?php return array(
2
  'root' => array(
3
- 'pretty_version' => 'dev-develop',
4
- 'version' => 'dev-develop',
5
  'type' => 'project',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
- 'reference' => '6a2015035980c4523e51c1a7635f48a36c8a287a',
9
  'name' => 'vektor-inc/vk-all-in-one-expansion-unit',
10
- 'dev' => true,
11
  ),
12
  'versions' => array(
13
- 'doctrine/instantiator' => array(
14
- 'pretty_version' => '1.4.0',
15
- 'version' => '1.4.0.0',
16
- 'type' => 'library',
17
- 'install_path' => __DIR__ . '/../doctrine/instantiator',
18
- 'aliases' => array(),
19
- 'reference' => 'd56bf6102915de5702778fe20f2de3b2fe570b5b',
20
- 'dev_requirement' => true,
21
- ),
22
- 'myclabs/deep-copy' => array(
23
- 'pretty_version' => '1.10.2',
24
- 'version' => '1.10.2.0',
25
- 'type' => 'library',
26
- 'install_path' => __DIR__ . '/../myclabs/deep-copy',
27
- 'aliases' => array(),
28
- 'reference' => '776f831124e9c62e1a2c601ecc52e776d8bb7220',
29
- 'dev_requirement' => true,
30
- 'replaced' => array(
31
- 0 => '1.10.2',
32
- ),
33
- ),
34
- 'nikic/php-parser' => array(
35
- 'pretty_version' => 'v4.13.2',
36
- 'version' => '4.13.2.0',
37
- 'type' => 'library',
38
- 'install_path' => __DIR__ . '/../nikic/php-parser',
39
- 'aliases' => array(),
40
- 'reference' => '210577fe3cf7badcc5814d99455df46564f3c077',
41
- 'dev_requirement' => true,
42
- ),
43
- 'phar-io/manifest' => array(
44
- 'pretty_version' => '2.0.3',
45
- 'version' => '2.0.3.0',
46
- 'type' => 'library',
47
- 'install_path' => __DIR__ . '/../phar-io/manifest',
48
- 'aliases' => array(),
49
- 'reference' => '97803eca37d319dfa7826cc2437fc020857acb53',
50
- 'dev_requirement' => true,
51
- ),
52
- 'phar-io/version' => array(
53
- 'pretty_version' => '3.1.1',
54
- 'version' => '3.1.1.0',
55
- 'type' => 'library',
56
- 'install_path' => __DIR__ . '/../phar-io/version',
57
- 'aliases' => array(),
58
- 'reference' => '15a90844ad40f127afd244c0cad228de2a80052a',
59
- 'dev_requirement' => true,
60
- ),
61
- 'phpdocumentor/reflection-common' => array(
62
- 'pretty_version' => '2.2.0',
63
- 'version' => '2.2.0.0',
64
- 'type' => 'library',
65
- 'install_path' => __DIR__ . '/../phpdocumentor/reflection-common',
66
- 'aliases' => array(),
67
- 'reference' => '1d01c49d4ed62f25aa84a747ad35d5a16924662b',
68
- 'dev_requirement' => true,
69
- ),
70
- 'phpdocumentor/reflection-docblock' => array(
71
- 'pretty_version' => '5.3.0',
72
- 'version' => '5.3.0.0',
73
- 'type' => 'library',
74
- 'install_path' => __DIR__ . '/../phpdocumentor/reflection-docblock',
75
- 'aliases' => array(),
76
- 'reference' => '622548b623e81ca6d78b721c5e029f4ce664f170',
77
- 'dev_requirement' => true,
78
- ),
79
- 'phpdocumentor/type-resolver' => array(
80
- 'pretty_version' => '1.6.0',
81
- 'version' => '1.6.0.0',
82
- 'type' => 'library',
83
- 'install_path' => __DIR__ . '/../phpdocumentor/type-resolver',
84
- 'aliases' => array(),
85
- 'reference' => '93ebd0014cab80c4ea9f5e297ea48672f1b87706',
86
- 'dev_requirement' => true,
87
- ),
88
- 'phpspec/prophecy' => array(
89
- 'pretty_version' => 'v1.15.0',
90
- 'version' => '1.15.0.0',
91
- 'type' => 'library',
92
- 'install_path' => __DIR__ . '/../phpspec/prophecy',
93
- 'aliases' => array(),
94
- 'reference' => 'bbcd7380b0ebf3961ee21409db7b38bc31d69a13',
95
- 'dev_requirement' => true,
96
- ),
97
- 'phpunit/php-code-coverage' => array(
98
- 'pretty_version' => '9.2.10',
99
- 'version' => '9.2.10.0',
100
- 'type' => 'library',
101
- 'install_path' => __DIR__ . '/../phpunit/php-code-coverage',
102
- 'aliases' => array(),
103
- 'reference' => 'd5850aaf931743067f4bfc1ae4cbd06468400687',
104
- 'dev_requirement' => true,
105
- ),
106
- 'phpunit/php-file-iterator' => array(
107
- 'pretty_version' => '3.0.6',
108
- 'version' => '3.0.6.0',
109
- 'type' => 'library',
110
- 'install_path' => __DIR__ . '/../phpunit/php-file-iterator',
111
- 'aliases' => array(),
112
- 'reference' => 'cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf',
113
- 'dev_requirement' => true,
114
- ),
115
- 'phpunit/php-invoker' => array(
116
- 'pretty_version' => '3.1.1',
117
- 'version' => '3.1.1.0',
118
- 'type' => 'library',
119
- 'install_path' => __DIR__ . '/../phpunit/php-invoker',
120
- 'aliases' => array(),
121
- 'reference' => '5a10147d0aaf65b58940a0b72f71c9ac0423cc67',
122
- 'dev_requirement' => true,
123
- ),
124
- 'phpunit/php-text-template' => array(
125
- 'pretty_version' => '2.0.4',
126
- 'version' => '2.0.4.0',
127
- 'type' => 'library',
128
- 'install_path' => __DIR__ . '/../phpunit/php-text-template',
129
- 'aliases' => array(),
130
- 'reference' => '5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28',
131
- 'dev_requirement' => true,
132
- ),
133
- 'phpunit/php-timer' => array(
134
- 'pretty_version' => '5.0.3',
135
- 'version' => '5.0.3.0',
136
- 'type' => 'library',
137
- 'install_path' => __DIR__ . '/../phpunit/php-timer',
138
- 'aliases' => array(),
139
- 'reference' => '5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2',
140
- 'dev_requirement' => true,
141
- ),
142
- 'phpunit/phpunit' => array(
143
- 'pretty_version' => '9.5.13',
144
- 'version' => '9.5.13.0',
145
- 'type' => 'library',
146
- 'install_path' => __DIR__ . '/../phpunit/phpunit',
147
- 'aliases' => array(),
148
- 'reference' => '597cb647654ede35e43b137926dfdfef0fb11743',
149
- 'dev_requirement' => true,
150
- ),
151
- 'sebastian/cli-parser' => array(
152
- 'pretty_version' => '1.0.1',
153
- 'version' => '1.0.1.0',
154
- 'type' => 'library',
155
- 'install_path' => __DIR__ . '/../sebastian/cli-parser',
156
- 'aliases' => array(),
157
- 'reference' => '442e7c7e687e42adc03470c7b668bc4b2402c0b2',
158
- 'dev_requirement' => true,
159
- ),
160
- 'sebastian/code-unit' => array(
161
- 'pretty_version' => '1.0.8',
162
- 'version' => '1.0.8.0',
163
- 'type' => 'library',
164
- 'install_path' => __DIR__ . '/../sebastian/code-unit',
165
- 'aliases' => array(),
166
- 'reference' => '1fc9f64c0927627ef78ba436c9b17d967e68e120',
167
- 'dev_requirement' => true,
168
- ),
169
- 'sebastian/code-unit-reverse-lookup' => array(
170
- 'pretty_version' => '2.0.3',
171
- 'version' => '2.0.3.0',
172
- 'type' => 'library',
173
- 'install_path' => __DIR__ . '/../sebastian/code-unit-reverse-lookup',
174
- 'aliases' => array(),
175
- 'reference' => 'ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5',
176
- 'dev_requirement' => true,
177
- ),
178
- 'sebastian/comparator' => array(
179
- 'pretty_version' => '4.0.6',
180
- 'version' => '4.0.6.0',
181
- 'type' => 'library',
182
- 'install_path' => __DIR__ . '/../sebastian/comparator',
183
- 'aliases' => array(),
184
- 'reference' => '55f4261989e546dc112258c7a75935a81a7ce382',
185
- 'dev_requirement' => true,
186
- ),
187
- 'sebastian/complexity' => array(
188
- 'pretty_version' => '2.0.2',
189
- 'version' => '2.0.2.0',
190
- 'type' => 'library',
191
- 'install_path' => __DIR__ . '/../sebastian/complexity',
192
- 'aliases' => array(),
193
- 'reference' => '739b35e53379900cc9ac327b2147867b8b6efd88',
194
- 'dev_requirement' => true,
195
- ),
196
- 'sebastian/diff' => array(
197
- 'pretty_version' => '4.0.4',
198
- 'version' => '4.0.4.0',
199
- 'type' => 'library',
200
- 'install_path' => __DIR__ . '/../sebastian/diff',
201
- 'aliases' => array(),
202
- 'reference' => '3461e3fccc7cfdfc2720be910d3bd73c69be590d',
203
- 'dev_requirement' => true,
204
- ),
205
- 'sebastian/environment' => array(
206
- 'pretty_version' => '5.1.3',
207
- 'version' => '5.1.3.0',
208
- 'type' => 'library',
209
- 'install_path' => __DIR__ . '/../sebastian/environment',
210
- 'aliases' => array(),
211
- 'reference' => '388b6ced16caa751030f6a69e588299fa09200ac',
212
- 'dev_requirement' => true,
213
- ),
214
- 'sebastian/exporter' => array(
215
- 'pretty_version' => '4.0.4',
216
- 'version' => '4.0.4.0',
217
- 'type' => 'library',
218
- 'install_path' => __DIR__ . '/../sebastian/exporter',
219
- 'aliases' => array(),
220
- 'reference' => '65e8b7db476c5dd267e65eea9cab77584d3cfff9',
221
- 'dev_requirement' => true,
222
- ),
223
- 'sebastian/global-state' => array(
224
- 'pretty_version' => '5.0.5',
225
- 'version' => '5.0.5.0',
226
- 'type' => 'library',
227
- 'install_path' => __DIR__ . '/../sebastian/global-state',
228
- 'aliases' => array(),
229
- 'reference' => '0ca8db5a5fc9c8646244e629625ac486fa286bf2',
230
- 'dev_requirement' => true,
231
- ),
232
- 'sebastian/lines-of-code' => array(
233
- 'pretty_version' => '1.0.3',
234
- 'version' => '1.0.3.0',
235
- 'type' => 'library',
236
- 'install_path' => __DIR__ . '/../sebastian/lines-of-code',
237
- 'aliases' => array(),
238
- 'reference' => 'c1c2e997aa3146983ed888ad08b15470a2e22ecc',
239
- 'dev_requirement' => true,
240
- ),
241
- 'sebastian/object-enumerator' => array(
242
- 'pretty_version' => '4.0.4',
243
- 'version' => '4.0.4.0',
244
- 'type' => 'library',
245
- 'install_path' => __DIR__ . '/../sebastian/object-enumerator',
246
- 'aliases' => array(),
247
- 'reference' => '5c9eeac41b290a3712d88851518825ad78f45c71',
248
- 'dev_requirement' => true,
249
- ),
250
- 'sebastian/object-reflector' => array(
251
- 'pretty_version' => '2.0.4',
252
- 'version' => '2.0.4.0',
253
- 'type' => 'library',
254
- 'install_path' => __DIR__ . '/../sebastian/object-reflector',
255
- 'aliases' => array(),
256
- 'reference' => 'b4f479ebdbf63ac605d183ece17d8d7fe49c15c7',
257
- 'dev_requirement' => true,
258
- ),
259
- 'sebastian/recursion-context' => array(
260
- 'pretty_version' => '4.0.4',
261
- 'version' => '4.0.4.0',
262
- 'type' => 'library',
263
- 'install_path' => __DIR__ . '/../sebastian/recursion-context',
264
- 'aliases' => array(),
265
- 'reference' => 'cd9d8cf3c5804de4341c283ed787f099f5506172',
266
- 'dev_requirement' => true,
267
- ),
268
- 'sebastian/resource-operations' => array(
269
- 'pretty_version' => '3.0.3',
270
- 'version' => '3.0.3.0',
271
- 'type' => 'library',
272
- 'install_path' => __DIR__ . '/../sebastian/resource-operations',
273
- 'aliases' => array(),
274
- 'reference' => '0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8',
275
- 'dev_requirement' => true,
276
- ),
277
- 'sebastian/type' => array(
278
- 'pretty_version' => '2.3.4',
279
- 'version' => '2.3.4.0',
280
- 'type' => 'library',
281
- 'install_path' => __DIR__ . '/../sebastian/type',
282
- 'aliases' => array(),
283
- 'reference' => 'b8cd8a1c753c90bc1a0f5372170e3e489136f914',
284
- 'dev_requirement' => true,
285
- ),
286
- 'sebastian/version' => array(
287
- 'pretty_version' => '3.0.2',
288
- 'version' => '3.0.2.0',
289
- 'type' => 'library',
290
- 'install_path' => __DIR__ . '/../sebastian/version',
291
- 'aliases' => array(),
292
- 'reference' => 'c6c1022351a901512170118436c764e473f6de8c',
293
- 'dev_requirement' => true,
294
- ),
295
- 'sirbrillig/phpcs-variable-analysis' => array(
296
- 'pretty_version' => 'v2.11.2',
297
- 'version' => '2.11.2.0',
298
- 'type' => 'phpcodesniffer-standard',
299
- 'install_path' => __DIR__ . '/../sirbrillig/phpcs-variable-analysis',
300
- 'aliases' => array(),
301
- 'reference' => '3fad28475bfbdbf8aa5c440f8a8f89824983d85e',
302
- 'dev_requirement' => true,
303
- ),
304
- 'squizlabs/php_codesniffer' => array(
305
- 'pretty_version' => '3.6.2',
306
- 'version' => '3.6.2.0',
307
- 'type' => 'library',
308
- 'install_path' => __DIR__ . '/../squizlabs/php_codesniffer',
309
- 'aliases' => array(),
310
- 'reference' => '5e4e71592f69da17871dba6e80dd51bce74a351a',
311
- 'dev_requirement' => true,
312
- ),
313
- 'symfony/polyfill-ctype' => array(
314
- 'pretty_version' => 'v1.24.0',
315
- 'version' => '1.24.0.0',
316
- 'type' => 'library',
317
- 'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
318
- 'aliases' => array(),
319
- 'reference' => '30885182c981ab175d4d034db0f6f469898070ab',
320
- 'dev_requirement' => true,
321
- ),
322
- 'theseer/tokenizer' => array(
323
- 'pretty_version' => '1.2.1',
324
- 'version' => '1.2.1.0',
325
- 'type' => 'library',
326
- 'install_path' => __DIR__ . '/../theseer/tokenizer',
327
- 'aliases' => array(),
328
- 'reference' => '34a41e998c2183e22995f158c581e7b5e755ab9e',
329
- 'dev_requirement' => true,
330
- ),
331
  'vektor-inc/vk-all-in-one-expansion-unit' => array(
332
- 'pretty_version' => 'dev-develop',
333
- 'version' => 'dev-develop',
334
  'type' => 'project',
335
  'install_path' => __DIR__ . '/../../',
336
  'aliases' => array(),
337
- 'reference' => '6a2015035980c4523e51c1a7635f48a36c8a287a',
338
  'dev_requirement' => false,
339
  ),
340
  'vektor-inc/vk-breadcrumb' => array(
@@ -355,41 +37,5 @@
355
  'reference' => '320155b9df7f9f57a889e144dd8b379184ac15ec',
356
  'dev_requirement' => false,
357
  ),
358
- 'vektor-inc/vk-wp-unit-test-tools' => array(
359
- 'pretty_version' => '0.10.0',
360
- 'version' => '0.10.0.0',
361
- 'type' => 'library',
362
- 'install_path' => __DIR__ . '/../vektor-inc/vk-wp-unit-test-tools',
363
- 'aliases' => array(),
364
- 'reference' => '5ce9eb397ba1ec76193664e6877288ffa22b9422',
365
- 'dev_requirement' => true,
366
- ),
367
- 'webmozart/assert' => array(
368
- 'pretty_version' => '1.10.0',
369
- 'version' => '1.10.0.0',
370
- 'type' => 'library',
371
- 'install_path' => __DIR__ . '/../webmozart/assert',
372
- 'aliases' => array(),
373
- 'reference' => '6964c76c7804814a842473e0c8fd15bab0f18e25',
374
- 'dev_requirement' => true,
375
- ),
376
- 'wp-phpunit/wp-phpunit' => array(
377
- 'pretty_version' => '5.9.0',
378
- 'version' => '5.9.0.0',
379
- 'type' => 'library',
380
- 'install_path' => __DIR__ . '/../wp-phpunit/wp-phpunit',
381
- 'aliases' => array(),
382
- 'reference' => '02d98f9d5f15442489b5d98c1f4c486901e3e110',
383
- 'dev_requirement' => true,
384
- ),
385
- 'yoast/phpunit-polyfills' => array(
386
- 'pretty_version' => '1.0.3',
387
- 'version' => '1.0.3.0',
388
- 'type' => 'library',
389
- 'install_path' => __DIR__ . '/../yoast/phpunit-polyfills',
390
- 'aliases' => array(),
391
- 'reference' => '5ea3536428944955f969bc764bbe09738e151ada',
392
- 'dev_requirement' => true,
393
- ),
394
  ),
395
  );
1
  <?php return array(
2
  'root' => array(
3
+ 'pretty_version' => '9.71.0.25',
4
+ 'version' => '9.71.0.25',
5
  'type' => 'project',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
+ 'reference' => '8a3a1bd46a7026fecc86195d03bd690c3b50cd98',
9
  'name' => 'vektor-inc/vk-all-in-one-expansion-unit',
10
+ 'dev' => false,
11
  ),
12
  'versions' => array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  'vektor-inc/vk-all-in-one-expansion-unit' => array(
14
+ 'pretty_version' => '9.71.0.25',
15
+ 'version' => '9.71.0.25',
16
  'type' => 'project',
17
  'install_path' => __DIR__ . '/../../',
18
  'aliases' => array(),
19
+ 'reference' => '8a3a1bd46a7026fecc86195d03bd690c3b50cd98',
20
  'dev_requirement' => false,
21
  ),
22
  'vektor-inc/vk-breadcrumb' => array(
37
  'reference' => '320155b9df7f9f57a889e144dd8b379184ac15ec',
38
  'dev_requirement' => false,
39
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  ),
41
  );
vendor/vektor-inc/vk-breadcrumb/.gitignore DELETED
@@ -1,2 +0,0 @@
1
- .git
2
- vendor
 
 
vendor/vektor-inc/vk-breadcrumb/composer.json DELETED
@@ -1,19 +0,0 @@
1
- {
2
- "name": "vektor-inc/vk-breadcrumb",
3
- "description": "WordPress Bread Crumb Class",
4
- "license": "GPL-2.0+",
5
- "autoload": {
6
- "psr-4": {
7
- "VektorInc\\VK_Breadcrumb\\": "src/"
8
- }
9
- },
10
- "authors": [
11
- {
12
- "name": "Vektor,Inc.",
13
- "email": "kurudrive@gmail.com"
14
- }
15
- ],
16
- "require": {
17
- "vektor-inc/vk-helpers": "^0.0.2"
18
- }
19
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/vektor-inc/vk-breadcrumb/composer.lock DELETED
@@ -1,56 +0,0 @@
1
- {
2
- "_readme": [
3
- "This file locks the dependencies of your project to a known state",
4
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
- "This file is @generated automatically"
6
- ],
7
- "content-hash": "a7e84b84b24136cc65f54540832f0040",
8
- "packages": [
9
- {
10
- "name": "vektor-inc/vk-helpers",
11
- "version": "0.0.2",
12
- "source": {
13
- "type": "git",
14
- "url": "https://github.com/vektor-inc/vk-helpers.git",
15
- "reference": "320155b9df7f9f57a889e144dd8b379184ac15ec"
16
- },
17
- "dist": {
18
- "type": "zip",
19
- "url": "https://api.github.com/repos/vektor-inc/vk-helpers/zipball/320155b9df7f9f57a889e144dd8b379184ac15ec",
20
- "reference": "320155b9df7f9f57a889e144dd8b379184ac15ec",
21
- "shasum": ""
22
- },
23
- "type": "library",
24
- "autoload": {
25
- "psr-4": {
26
- "VektorInc\\VK_Helpers\\": "src/"
27
- }
28
- },
29
- "notification-url": "https://packagist.org/downloads/",
30
- "license": [
31
- "GPL-2.0+"
32
- ],
33
- "authors": [
34
- {
35
- "name": "Vektor,Inc.",
36
- "email": "kurudrive@gmail.com"
37
- }
38
- ],
39
- "description": "WordPress Helpers Class",
40
- "support": {
41
- "issues": "https://github.com/vektor-inc/vk-helpers/issues",
42
- "source": "https://github.com/vektor-inc/vk-helpers/tree/0.0.2"
43
- },
44
- "time": "2022-02-08T18:38:08+00:00"
45
- }
46
- ],
47
- "packages-dev": [],
48
- "aliases": [],
49
- "minimum-stability": "stable",
50
- "stability-flags": [],
51
- "prefer-stable": false,
52
- "prefer-lowest": false,
53
- "platform": [],
54
- "platform-dev": [],
55
- "plugin-api-version": "2.1.0"
56
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/vektor-inc/vk-helpers/.gitignore DELETED
@@ -1 +0,0 @@
1
- .git
 
vendor/vektor-inc/vk-helpers/composer.json DELETED
@@ -1,17 +0,0 @@
1
- {
2
- "name": "vektor-inc/vk-helpers",
3
- "description": "WordPress Helpers Class",
4
- "license": "GPL-2.0+",
5
- "autoload": {
6
- "psr-4": {
7
- "VektorInc\\VK_Helpers\\": "src/"
8
- }
9
- },
10
- "authors": [
11
- {
12
- "name": "Vektor,Inc.",
13
- "email": "kurudrive@gmail.com"
14
- }
15
- ],
16
- "require": {}
17
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vkExUnit.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
- * Version: 9.71.0.0
7
  * Requires PHP: 7.0
8
  * Author: Vektor,Inc.
9
  * Text Domain: vk-all-in-one-expansion-unit
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
+ * Version: 9.71.0.16
7
  * Requires PHP: 7.0
8
  * Author: Vektor,Inc.
9
  * Text Domain: vk-all-in-one-expansion-unit