diff --git a/.idea/misc.xml b/.idea/misc.xml
index 930837569..b36abeb89 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -17,6 +17,7 @@
+
diff --git a/gulpfile.js b/gulpfile.js
deleted file mode 100755
index e13758c78..000000000
--- a/gulpfile.js
+++ /dev/null
@@ -1,503 +0,0 @@
-/*
- * OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
- * Copyright (C) DevCode s.r.l.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
- */
-
-// Librerie NPM richieste per l'esecuzione
-const gulp = require('gulp');
-const merge = require('merge-stream');
-const del = require('del');
-const gulpIf = require('gulp-if');
-const babel = require('gulp-babel');
-
-// Minificatori
-const minifyJS = require('gulp-uglify');
-const minifyCSS = require('gulp-clean-css');
-const minifyJSON = require('gulp-json-minify');
-
-// Interpretatori CSS
-const sass = require('gulp-sass');
-const less = require('gulp-less');
-const stylus = require('gulp-stylus');
-const autoprefixer = require('gulp-autoprefixer');
-
-// Concatenatore
-const concat = require('gulp-concat');
-
-// Altro
-const flatten = require('gulp-flatten');
-const rename = require('gulp-rename');
-
-// Release
-const glob = require('globby');
-const md5File = require('md5-file')
-const fs = require('fs');
-const archiver = require('archiver');
-const shell = require('shelljs');
-const inquirer = require('inquirer');
-
-// Configurazione
-const config = {
- production: 'assets/dist', // Cartella di destinazione
- development: 'assets/src', // Cartella dei file di personalizzazione
- debug: false,
- nodeDirectory: './node_modules', // Percorso per node_modules
- paths: {
- js: 'js',
- css: 'css',
- images: 'img',
- fonts: 'fonts'
- },
- babelOptions: {
- compact: true,
- presets: [
- ['@babel/env', {
- modules: false
- }],
- ],
- },
- minifiers: {
- css: {
- rebase: false,
- }
- }
-};
-config.babelOptions.compact = !config.debug;
-
-// Elaborazione e minificazione di JS
-const JS = gulp.parallel(() => {
- const vendor = [
- 'jquery/dist/jquery.js',
- 'autosize/dist/autosize.js',
- 'autocompleter/autocomplete.js',
- 'html5sortable/dist/html5sortable.js',
- 'bootstrap-colorpicker/dist/js/bootstrap-colorpicker.js',
- 'moment/moment.js',
- 'components-jqueryui/jquery-ui.js',
- 'datatables.net/js/jquery.dataTables.js',
- 'datatables.net-buttons/js/dataTables.buttons.js',
- 'datatables.net-buttons/js/buttons.colVis.js',
- 'datatables.net-buttons/js/buttons.flash.js',
- 'datatables.net-buttons/js/buttons.html5.js',
- 'datatables.net-buttons/js/buttons.print.js',
- 'datatables.net-scroller/js/dataTables.scroller.js',
- 'datatables.net-select/js/dataTables.select.js',
- 'dropzone/dist/dropzone.js',
- 'autonumeric/dist/autoNumeric.min.js',
- 'eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js',
- 'fullcalendar/dist/fullcalendar.js',
- 'geocomplete/jquery.geocomplete.js',
- 'inputmask/dist/min/jquery.inputmask.bundle.min.js',
- 'jquery-form/src/jquery.form.js',
- 'jquery-ui-touch-punch/jquery.ui.touch-punch.js',
- 'jquery.shorten/src/jquery.shorten.js',
- 'numeral/numeral.js',
- 'parsleyjs/dist/parsley.js',
- 'select2/dist/js/select2.min.js',
- 'signature_pad/dist/signature_pad.js',
- 'sweetalert2/dist/sweetalert2.js',
- 'toastr/build/toastr.min.js',
- 'tooltipster/dist/js/tooltipster.bundle.js',
- 'admin-lte/dist/js/adminlte.js',
- 'bootstrap/dist/js/bootstrap.min.js',
- 'bootstrap-daterangepicker/daterangepicker.js',
- 'datatables.net-bs/js/dataTables.bootstrap.js',
- 'datatables.net-buttons-bs/js/buttons.bootstrap.js',
- 'smartwizard/dist/js/jquery.smartWizard.min.js',
- 'bootstrap-maxlength/dist/bootstrap-maxlength.js',
- ];
-
- for (const i in vendor) {
- vendor[i] = config.nodeDirectory + '/' + vendor[i];
- }
-
- return gulp.src(vendor)
- .pipe(babel(config.babelOptions))
- .pipe(concat('app.min.js'))
- .pipe(minifyJS())
- .pipe(gulp.dest(config.production + '/' + config.paths.js));
-}, srcJS);
-
-// Elaborazione e minificazione di JS personalizzati
-function srcJS() {
- const js = gulp.src([
- config.development + '/' + config.paths.js + '/base/*.js',
- ])
- .pipe(babel(config.babelOptions))
- .pipe(concat('custom.min.js'))
- .pipe(gulpIf(!config.debug, minifyJS()))
- .pipe(gulp.dest(config.production + '/' + config.paths.js));
-
- const functions = gulp.src([
- config.development + '/' + config.paths.js + '/functions/*.js',
- ])
- .pipe(babel(config.babelOptions))
- .pipe(concat('functions.min.js'))
- .pipe(gulpIf(!config.debug, minifyJS()))
- .pipe(gulp.dest(config.production + '/' + config.paths.js));
-
- return merge(js, functions);
-}
-
-// Elaborazione e minificazione di CSS
-const CSS = gulp.parallel(() => {
- const vendor = [
- 'bootstrap-colorpicker/dist/css/bootstrap-colorpicker.css',
- 'dropzone/dist/dropzone.css',
- 'eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css',
- 'font-awesome/css/font-awesome.min.css',
- 'fullcalendar/dist/fullcalendar.css',
- 'parsleyjs/src/parsley.css',
- 'select2/dist/css/select2.min.css',
- 'sweetalert2/dist/sweetalert2.css',
- 'toastr/build/toastr.min.css',
- 'tooltipster/dist/css/tooltipster.bundle.css',
- 'admin-lte/dist/css/AdminLTE.css',
- 'bootstrap/dist/css/bootstrap.min.css',
- 'bootstrap-daterangepicker/daterangepicker.css',
- 'datatables.net-bs/css/dataTables.bootstrap.css',
- 'datatables.net-buttons-bs/css/buttons.bootstrap.css',
- 'datatables.net-scroller-bs/css/scroller.bootstrap.css',
- 'datatables.net-select-bs/css/select.bootstrap.css',
- 'select2-bootstrap-theme/dist/select2-bootstrap.css',
- 'smartwizard/dist/css/smart_wizard.min.css',
- 'smartwizard/dist/css/smart_wizard_theme_arrows.min.css',
- ];
-
- for (const i in vendor) {
- vendor[i] = config.nodeDirectory + '/' + vendor[i];
- }
-
- return gulp.src(vendor)
- .pipe(gulpIf('*.scss', sass(), gulpIf('*.less', less(), gulpIf('*.styl', stylus()))))
- .pipe(autoprefixer())
- .pipe(minifyCSS({
- rebase: false,
- }))
- .pipe(concat('app.min.css'))
- .pipe(gulp.dest(config.production + '/' + config.paths.css));
-}, srcCSS);
-
-// Elaborazione e minificazione di CSS personalizzati
-function srcCSS() {
- const css = gulp.src([
- config.development + '/' + config.paths.css + '/*.{css,scss,less,styl}',
- ])
- .pipe(gulpIf('*.scss', sass(), gulpIf('*.less', less(), gulpIf('*.styl', stylus()))))
- .pipe(autoprefixer())
- .pipe(gulpIf(!config.debug, minifyCSS(config.minifiers.css)))
- .pipe(concat('style.min.css'))
- .pipe(gulp.dest(config.production + '/' + config.paths.css));
-
- const print = gulp.src([
- config.development + '/' + config.paths.css + '/print/*.{css,scss,less,styl}',
- config.nodeDirectory + '/fullcalendar/fullcalendar.print.css',
- ], {
- allowEmpty: true
- })
- .pipe(gulpIf('*.scss', sass(), gulpIf('*.less', less(), gulpIf('*.styl', stylus()))))
- .pipe(autoprefixer())
- .pipe(gulpIf(!config.debug, minifyCSS(config.minifiers.css)))
- .pipe(concat('print.min.css'))
- .pipe(gulp.dest(config.production + '/' + config.paths.css));
-
- const themes = gulp.src([
- config.development + '/' + config.paths.css + '/themes/*.{css,scss,less,styl}',
- config.nodeDirectory + '/admin-lte/dist/css/skins/_all-skins.min.css',
- ])
- .pipe(gulpIf('*.scss', sass(), gulpIf('*.less', less(), gulpIf('*.styl', stylus()))))
- .pipe(autoprefixer())
- .pipe(gulpIf(!config.debug, minifyCSS(config.minifiers.css)))
- .pipe(concat('themes.min.css'))
- .pipe(flatten())
- .pipe(gulp.dest(config.production + '/' + config.paths.css));
-
- return merge(css, print, themes);
-}
-
-
-// Elaborazione delle immagini
-const images = srcImages;
-
-// Elaborazione delle immagini personalizzate
-function srcImages() {
- return gulp.src([
- config.development + '/' + config.paths.images + '/**/*.{jpg,png,jpeg,gif}',
- ])
- .pipe(gulp.dest(config.production + '/' + config.paths.images));
-}
-
-
-// Elaborazione dei fonts
-const fonts = gulp.parallel(() => {
- const vendor = [
- 'font-awesome/fonts/fontawesome-webfont.eot',
- 'font-awesome/fonts/fontawesome-webfont.svg',
- 'font-awesome/fonts/fontawesome-webfont.ttf',
- 'font-awesome/fonts/fontawesome-webfont.woff',
- 'font-awesome/fonts/fontawesome-webfont.woff2',
- 'font-awesome/fonts/FontAwesome.otf',
- 'bootstrap/dist/fonts/glyphicons-halflings-regular.eot',
- 'bootstrap/dist/fonts/glyphicons-halflings-regular.svg',
- 'bootstrap/dist/fonts/glyphicons-halflings-regular.ttf',
- 'bootstrap/dist/fonts/glyphicons-halflings-regular.woff',
- 'bootstrap/dist/fonts/glyphicons-halflings-regular.woff2',
- ];
-
- for (const i in vendor) {
- vendor[i] = config.nodeDirectory + '/' + vendor[i];
- }
-
- return gulp.src(vendor)
- .pipe(flatten())
- .pipe(gulp.dest(config.production + '/' + config.paths.fonts));
-}, srcFonts);
-
-// Elaborazione dei fonts personalizzati
-function srcFonts() {
- return gulp.src([
- config.development + '/' + config.paths.fonts + '/**/*.{otf,eot,svg,ttf,woff,woff2}',
- ])
- .pipe(flatten())
- .pipe(gulp.dest(config.production + '/' + config.paths.fonts));
-}
-
-function ckeditor() {
- return gulp.src([
- config.nodeDirectory + '/ckeditor4/{adapters,lang,skins,plugins,core}/**/*.{js,json,css,png}',
- config.nodeDirectory + '/ckeditor4/*.{js,css}',
- ])
- .pipe(gulp.dest(config.production + '/' + config.paths.js + '/ckeditor'));
-}
-
-function colorpicker() {
- return gulp.src([
- config.nodeDirectory + '/bootstrap-colorpicker/dist/**/*.{jpg,png,jpeg}',
- ])
- .pipe(flatten())
- .pipe(gulp.dest(config.production + '/' + config.paths.images + '/bootstrap-colorpicker'));
-}
-
-function password_strength() {
- return gulp.src([
- config.nodeDirectory + '/pwstrength-bootstrap/dist/*.js',
- ])
- .pipe(concat('password.min.js'))
- .pipe(minifyJS())
- .pipe(gulp.dest(config.production + '/password-strength'));
-}
-
-function hotkeys() {
- return gulp.src([
- config.nodeDirectory + '/hotkeys-js/dist/hotkeys.min.js',
- ])
- .pipe(flatten())
- .pipe(gulp.dest(config.production + '/' + config.paths.js + '/hotkeys-js'));
-}
-
-function chartjs() {
- return gulp.src([
- config.nodeDirectory + '/chart.js/dist/Chart.min.js',
- ])
- .pipe(flatten())
- .pipe(gulp.dest(config.production + '/' + config.paths.js + '/chartjs'));
-}
-
-function csrf() {
- return gulp.src([
- './vendor/owasp/csrf-protector-php/js/csrfprotector.js',
- ])
- .pipe(flatten())
- .pipe(gulp.dest(config.production + '/' + config.paths.js + '/csrf'));
-}
-
-function pdfjs() {
- const web = gulp.src([
- config.nodeDirectory + '/pdf.js/web/**/*',
- '!' + config.nodeDirectory + '/pdf.js/web/cmaps/*',
- '!' + config.nodeDirectory + '/pdf.js/web/*.map',
- '!' + config.nodeDirectory + '/pdf.js/web/*.pdf',
- ])
- .pipe(gulp.dest(config.production + '/pdfjs/web'));
-
- const build = gulp.src([
- config.nodeDirectory + '/pdf.js/build/*',
- '!' + config.nodeDirectory + '/pdf.js/build/*.map',
- ])
- .pipe(gulp.dest(config.production + '/pdfjs/build'));
-
- return merge(web, build);
-}
-
-// Elaborazione e minificazione delle informazioni sull'internazionalizzazione
-function i18n() {
- return gulp.src([
- config.nodeDirectory + '/**/{i18n,lang,locale,locales}/*.{js,json}',
- config.development + '/' + config.paths.js + '/i18n/**/*.{js,json}',
- '!' + config.nodeDirectory + '/**/{src,plugins}/**',
- '!' + config.nodeDirectory + '/ckeditor4/**',
- '!' + config.nodeDirectory + '/summernote/**',
- '!' + config.nodeDirectory + '/jquery-ui/**',
- ])
- //.pipe(gulpIf('*.js', minifyJS(), gulpIf('*.json', minifyJSON())))
- .pipe(gulpIf('!*.min.*', rename({
- suffix: '.min'
- })))
- .pipe(flatten({
- includeParents: 1
- }))
- .pipe(gulp.dest(config.production + '/' + config.paths.js + '/i18n'));
-}
-
-// PHP DebugBar assets
-function phpDebugBar() {
- return gulp.src([
- './vendor/maximebf/debugbar/src/DebugBar/Resources/**/*',
- '!./vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/**/*',
- ])
- .pipe(gulpIf('*.css', minifyCSS(), gulpIf('*.js', minifyJS())))
- .pipe(gulp.dest(config.production + '/php-debugbar'));
-}
-
-// Operazioni per la release
-function release(done) {
- // Impostazione dello zip
- let output = fs.createWriteStream('./release.zip', {flags: 'w'});
- let archive = archiver('zip');
-
- output.on('close', function () {
- console.log('ZIP completato!');
- });
-
- archive.on('error', function (err) {
- throw err;
- });
-
- archive.pipe(output);
-
- // Individuazione dei file da aggiungere
- glob([
- '**/*',
- '!checksum.json',
- '!database.json',
- '!.idea/**',
- '!.git/**',
- '!node_modules/**',
- '!include/custom/**',
- '!backup/**',
- '!files/**',
- '!logs/**',
- '!config.inc.php',
- '!update/structure.php',
- '!**/*.(lock|phar|log|zip|bak|jar|txt)',
- '!**/~*',
- '!vendor/tecnickcom/tcpdf/examples/**',
- '!vendor/tecnickcom/tcpdf/fonts/*',
- 'vendor/tecnickcom/tcpdf/fonts/*helvetica*',
- '!vendor/mpdf/mpdf/tmp/*',
- '!vendor/mpdf/mpdf/ttfonts/*',
- 'vendor/mpdf/mpdf/ttfonts/DejaVuinfo.txt',
- 'vendor/mpdf/mpdf/ttfonts/DejaVu*Condensed*',
- '!vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/**',
- '!vendor/respect/validation/tests/**',
- '!vendor/willdurand/geocoder/tests/**',
- ], {
- dot: true,
- }).then(function (files) {
- // Aggiunta dei file con i relativi checksum
- let checksum = {};
- for (const file of files) {
- if (fs.lstatSync(file).isDirectory()) {
- archive.directory(file, file);
- } else {
- archive.file(file);
-
- if (!file.startsWith('vendor')) {
- checksum[file] = md5File.sync(file);
- }
- }
- }
-
- // Eccezioni
- archive.file('backup/.htaccess', {});
- archive.file('files/.htaccess', {});
- archive.file('files/my_impianti/componente.ini', {});
- archive.file('logs/.htaccess', {});
-
- // Aggiunta del file dei checksum
- let checksumFile = fs.createWriteStream('./checksum.json', {flags: 'w'});
- checksumFile.write(JSON.stringify(checksum));
- checksumFile.close();
- archive.file('checksum.json', {});
-
- // Aggiunta del file per il controllo di integrità del database
- archive.append(shell.exec('php update/structure.php', {
- silent: true
- }).stdout, {
- name: 'database.json'
- });
-
- // Aggiunta del commit corrente nel file REVISION
- archive.append(shell.exec('git rev-parse --short HEAD', {
- silent: true
- }).stdout, {
- name: 'REVISION'
- });
-
- // Opzioni sulla release
- inquirer.prompt([{
- type: 'input',
- name: 'version',
- message: 'Numero di versione:',
- }, {
- type: 'confirm',
- name: 'beta',
- message: 'Versione beta?',
- default: false,
- }]).then(function (result) {
- let version = result.version;
-
- if (result.beta) {
- version += 'beta';
- }
-
- archive.append(version, {
- name: 'VERSION'
- });
-
- // Completamento dello zip
- archive.finalize();
-
- done();
- });
- });
-}
-
-// Pulizia
-function clean() {
- return del([config.production]);
-}
-
-// Operazioni di default per la generazione degli assets
-const bower = gulp.series(clean, gulp.parallel(JS, CSS, images, fonts, phpDebugBar, ckeditor, colorpicker, i18n, pdfjs, hotkeys, chartjs, password_strength, csrf));
-
-// Debug su CSS e JS
-exports.srcJS = srcJS;
-exports.srcCSS = srcCSS;
-
-exports.bower = bower;
-exports.release = release;
-exports.default = bower;
diff --git a/gulpfile.ts b/gulpfile.ts
new file mode 100644
index 000000000..498bc7603
--- /dev/null
+++ b/gulpfile.ts
@@ -0,0 +1,20 @@
+/* eslint-disable no-console */
+/*
+ * OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
+ * Copyright (C) DevCode s.r.l.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+import gulp from 'gulp';
diff --git a/package.json b/package.json
index ed3bdeffd..f3a03e3ae 100644
--- a/package.json
+++ b/package.json
@@ -62,11 +62,13 @@
"devDependencies": {
"@maicol07/eslint-config": "^2.1.2",
"@openstamanager/vite-config": "github:devcode-it/openstamanager-vite-config",
+ "@types/gulp": "^4.0.0",
"@types/lodash": "^4.14.178",
"@types/mithril": "^2.0.8",
"@types/ziggy-js": "^1.3.0",
"concurrently": "^7.0.0",
"csstype": "^3.0.10",
+ "gulp": "^4.0.2",
"laravel-vite": "^0.0.23",
"sass": "^1.47.0",
"stylelint": "^14.2.0",
@@ -75,6 +77,8 @@
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-config-standard": "^24.0.0",
"stylelint-scss": "^4.1.0",
+ "typescript": "^4.5.5",
+ "ts-node": "^8.0.2",
"typed-scss-modules": "^4.1.2",
"vite": "2.7.10",
"vite-plugin-pwa": "^0.11.12"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 716932efc..71931ccac 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -32,6 +32,7 @@ specifiers:
'@material/typography': ^13.0.0
'@mdi/font': ^6.5.95
'@openstamanager/vite-config': github:devcode-it/openstamanager-vite-config
+ '@types/gulp': ^4.0.0
'@types/lodash': ^4.14.178
'@types/mithril': ^2.0.8
'@types/ziggy-js': ^1.3.0
@@ -42,6 +43,7 @@ specifiers:
coloquent: ^2.4.1
concurrently: ^7.0.0
csstype: ^3.0.10
+ gulp: ^4.0.2
include-media: ^1.4.10
laravel-vite: ^0.0.23
lit: ^2.1.1
@@ -59,7 +61,9 @@ specifiers:
stylelint-config-recommended-scss: ^5.0.2
stylelint-config-standard: ^24.0.0
stylelint-scss: ^4.1.0
+ ts-node: ^8.0.2
typed-scss-modules: ^4.1.2
+ typescript: ^4.5.5
vite: 2.7.10
vite-plugin-pwa: ^0.11.12
@@ -111,11 +115,13 @@ dependencies:
devDependencies:
'@maicol07/eslint-config': 2.1.2
'@openstamanager/vite-config': github.com/devcode-it/openstamanager-vite-config/9399c4a34b39c0a80408db47575794f089465be5_sass@1.47.0
+ '@types/gulp': 4.0.9
'@types/lodash': 4.14.178
'@types/mithril': 2.0.8
'@types/ziggy-js': 1.3.0
concurrently: 7.0.0
csstype: 3.0.10
+ gulp: 4.0.2
laravel-vite: 0.0.23
sass: 1.47.0
stylelint: 14.2.0
@@ -124,7 +130,9 @@ devDependencies:
stylelint-config-recommended-scss: 5.0.2_stylelint@14.2.0
stylelint-config-standard: 24.0.0_stylelint@14.2.0
stylelint-scss: 4.1.0_stylelint@14.2.0
+ ts-node: 8.10.2_typescript@4.5.5
typed-scss-modules: 4.1.2_sass@1.47.0
+ typescript: 4.5.5
vite: 2.7.10_sass@1.47.0
vite-plugin-pwa: 0.11.12_vite@2.7.10
@@ -1329,8 +1337,8 @@ packages:
/@maicol07/eslint-config/2.1.2:
resolution: {integrity: sha512-9h75NkOwRvAUh52O1NsvYeFaVkOGxd8QNwQtpPLxXYjoM2IrJO59Al6wG+rVaI2np25ssMVuag+s3RO0rzuzeg==}
dependencies:
- '@typescript-eslint/eslint-plugin': 5.9.1_b7b2e42b32ee097737cd3e626b10847b
- '@typescript-eslint/parser': 5.9.1_eslint@8.6.0+typescript@4.5.4
+ '@typescript-eslint/eslint-plugin': 5.9.1_46ff1e3eeda39b5395c18b563a83af7a
+ '@typescript-eslint/parser': 5.9.1_eslint@8.6.0+typescript@4.5.5
eslint: 8.6.0
eslint-config-airbnb-base: 15.0.0_b5a36b8c1535387c8dd00eff7ec6b551
eslint-config-airbnb-typescript: 16.1.0_eb949f259c3a8e2b942df376380b10bf
@@ -1344,7 +1352,7 @@ packages:
eslint-plugin-unicorn: 40.0.0_eslint@8.6.0
eslint-plugin-wc: 1.3.2_eslint@8.6.0
eslint-plugin-you-dont-need-lodash-underscore: 6.12.0
- typescript: 4.5.4
+ typescript: 4.5.5
transitivePeerDependencies:
- supports-color
dev: true
@@ -1354,7 +1362,7 @@ packages:
dependencies:
'@inertiajs/inertia': 0.10.1
mithril: 2.0.4
- typescript: 4.5.4
+ typescript: 4.5.5
transitivePeerDependencies:
- debug
dev: false
@@ -2401,6 +2409,32 @@ packages:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
dev: true
+ /@types/expect/1.20.4:
+ resolution: {integrity: sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==}
+ dev: true
+
+ /@types/glob-stream/6.1.1:
+ resolution: {integrity: sha512-AGOUTsTdbPkRS0qDeyeS+6KypmfVpbT5j23SN8UPG63qjKXNKjXn6V9wZUr8Fin0m9l8oGYaPK8b2WUMF8xI1A==}
+ dependencies:
+ '@types/glob': 7.2.0
+ '@types/node': 17.0.8
+ dev: true
+
+ /@types/glob/7.2.0:
+ resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
+ dependencies:
+ '@types/minimatch': 3.0.5
+ '@types/node': 17.0.8
+ dev: true
+
+ /@types/gulp/4.0.9:
+ resolution: {integrity: sha512-zzT+wfQ8uwoXjDhRK9Zkmmk09/fbLLmN/yDHFizJiEKIve85qutOnXcP/TM2sKPBTU+Jc16vfPbOMkORMUBN7Q==}
+ dependencies:
+ '@types/undertaker': 1.2.7
+ '@types/vinyl-fs': 2.4.12
+ chokidar: 3.5.2
+ dev: true
+
/@types/history/4.7.9:
resolution: {integrity: sha512-MUc6zSmU3tEVnkQ78q0peeEjKWPUADMlC/t++2bI8WnAG2tvYRPIgHG8lWkXwqc8MsUF6Z2MOf+Mh5sazOmhiQ==}
dev: true
@@ -2417,6 +2451,10 @@ packages:
resolution: {integrity: sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw==}
dev: true
+ /@types/minimatch/3.0.5:
+ resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
+ dev: true
+
/@types/minimist/1.2.2:
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
dev: true
@@ -2446,13 +2484,40 @@ packages:
/@types/trusted-types/2.0.2:
resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==}
+ /@types/undertaker-registry/1.0.1:
+ resolution: {integrity: sha512-Z4TYuEKn9+RbNVk1Ll2SS4x1JeLHecolIbM/a8gveaHsW0Hr+RQMraZACwTO2VD7JvepgA6UO1A1VrbktQrIbQ==}
+ dev: true
+
+ /@types/undertaker/1.2.7:
+ resolution: {integrity: sha512-xuY7nBwo1zSRoY2aitp/HArHfTulFAKql2Fr4b4mWbBBP+F50n7Jm6nwISTTMaDk2xvl92O10TTejVF0Q9mInw==}
+ dependencies:
+ '@types/node': 17.0.8
+ '@types/undertaker-registry': 1.0.1
+ async-done: 1.3.2
+ dev: true
+
+ /@types/vinyl-fs/2.4.12:
+ resolution: {integrity: sha512-LgBpYIWuuGsihnlF+OOWWz4ovwCYlT03gd3DuLwex50cYZLmX3yrW+sFF9ndtmh7zcZpS6Ri47PrIu+fV+sbXw==}
+ dependencies:
+ '@types/glob-stream': 6.1.1
+ '@types/node': 17.0.8
+ '@types/vinyl': 2.0.6
+ dev: true
+
+ /@types/vinyl/2.0.6:
+ resolution: {integrity: sha512-ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g==}
+ dependencies:
+ '@types/expect': 1.20.4
+ '@types/node': 17.0.8
+ dev: true
+
/@types/ziggy-js/1.3.0:
resolution: {integrity: sha512-032wBOrdDKZPA6drFTdd6xkzbainwgLc3h0uBrg+iEL82iSW/BEQFRNm/mpBPG+INFYHfmYaaxryI2uNj9B9qg==}
dependencies:
'@types/history': 4.7.9
dev: true
- /@typescript-eslint/eslint-plugin/5.9.1_b7b2e42b32ee097737cd3e626b10847b:
+ /@typescript-eslint/eslint-plugin/5.9.1_46ff1e3eeda39b5395c18b563a83af7a:
resolution: {integrity: sha512-Xv9tkFlyD4MQGpJgTo6wqDqGvHIRmRgah/2Sjz1PUnJTawjHWIwBivUE9x0QtU2WVii9baYgavo/bHjrZJkqTw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -2463,23 +2528,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/experimental-utils': 5.9.1_eslint@8.6.0+typescript@4.5.4
- '@typescript-eslint/parser': 5.9.1_eslint@8.6.0+typescript@4.5.4
+ '@typescript-eslint/experimental-utils': 5.9.1_eslint@8.6.0+typescript@4.5.5
+ '@typescript-eslint/parser': 5.9.1_eslint@8.6.0+typescript@4.5.5
'@typescript-eslint/scope-manager': 5.9.1
- '@typescript-eslint/type-utils': 5.9.1_eslint@8.6.0+typescript@4.5.4
+ '@typescript-eslint/type-utils': 5.9.1_eslint@8.6.0+typescript@4.5.5
debug: 4.3.3
eslint: 8.6.0
functional-red-black-tree: 1.0.1
ignore: 5.2.0
regexpp: 3.2.0
semver: 7.3.5
- tsutils: 3.21.0_typescript@4.5.4
- typescript: 4.5.4
+ tsutils: 3.21.0_typescript@4.5.5
+ typescript: 4.5.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/experimental-utils/5.9.1_eslint@8.6.0+typescript@4.5.4:
+ /@typescript-eslint/experimental-utils/5.9.1_eslint@8.6.0+typescript@4.5.5:
resolution: {integrity: sha512-cb1Njyss0mLL9kLXgS/eEY53SZQ9sT519wpX3i+U457l2UXRDuo87hgKfgRazmu9/tQb0x2sr3Y0yrU+Zz0y+w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -2488,7 +2553,7 @@ packages:
'@types/json-schema': 7.0.9
'@typescript-eslint/scope-manager': 5.9.1
'@typescript-eslint/types': 5.9.1
- '@typescript-eslint/typescript-estree': 5.9.1_typescript@4.5.4
+ '@typescript-eslint/typescript-estree': 5.9.1_typescript@4.5.5
eslint: 8.6.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.6.0
@@ -2497,7 +2562,7 @@ packages:
- typescript
dev: true
- /@typescript-eslint/parser/5.9.1_eslint@8.6.0+typescript@4.5.4:
+ /@typescript-eslint/parser/5.9.1_eslint@8.6.0+typescript@4.5.5:
resolution: {integrity: sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -2509,10 +2574,10 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.9.1
'@typescript-eslint/types': 5.9.1
- '@typescript-eslint/typescript-estree': 5.9.1_typescript@4.5.4
+ '@typescript-eslint/typescript-estree': 5.9.1_typescript@4.5.5
debug: 4.3.3
eslint: 8.6.0
- typescript: 4.5.4
+ typescript: 4.5.5
transitivePeerDependencies:
- supports-color
dev: true
@@ -2525,7 +2590,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.9.1
dev: true
- /@typescript-eslint/type-utils/5.9.1_eslint@8.6.0+typescript@4.5.4:
+ /@typescript-eslint/type-utils/5.9.1_eslint@8.6.0+typescript@4.5.5:
resolution: {integrity: sha512-tRSpdBnPRssjlUh35rE9ug5HrUvaB9ntREy7gPXXKwmIx61TNN7+l5YKgi1hMKxo5NvqZCfYhA5FvyuJG6X6vg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -2535,11 +2600,11 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/experimental-utils': 5.9.1_eslint@8.6.0+typescript@4.5.4
+ '@typescript-eslint/experimental-utils': 5.9.1_eslint@8.6.0+typescript@4.5.5
debug: 4.3.3
eslint: 8.6.0
- tsutils: 3.21.0_typescript@4.5.4
- typescript: 4.5.4
+ tsutils: 3.21.0_typescript@4.5.5
+ typescript: 4.5.5
transitivePeerDependencies:
- supports-color
dev: true
@@ -2549,7 +2614,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.9.1_typescript@4.5.4:
+ /@typescript-eslint/typescript-estree/5.9.1_typescript@4.5.5:
resolution: {integrity: sha512-gL1sP6A/KG0HwrahVXI9fZyeVTxEYV//6PmcOn1tD0rw8VhUWYeZeuWHwwhnewnvEMcHjhnJLOBhA9rK4vmb8A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -2564,8 +2629,8 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.5
- tsutils: 3.21.0_typescript@4.5.4
- typescript: 4.5.4
+ tsutils: 3.21.0_typescript@4.5.5
+ typescript: 4.5.5
transitivePeerDependencies:
- supports-color
dev: true
@@ -2610,11 +2675,25 @@ packages:
uri-js: 4.4.1
dev: true
+ /ansi-colors/1.1.0:
+ resolution: {integrity: sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ ansi-wrap: 0.1.0
+ dev: true
+
/ansi-colors/4.1.1:
resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
engines: {node: '>=6'}
dev: true
+ /ansi-gray/0.1.1:
+ resolution: {integrity: sha1-KWLPVOyXksSFEKPetSRDaGHvclE=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ ansi-wrap: 0.1.0
+ dev: true
+
/ansi-regex/2.1.1:
resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=}
engines: {node: '>=0.10.0'}
@@ -2644,6 +2723,18 @@ packages:
color-convert: 2.0.1
dev: true
+ /ansi-wrap/0.1.0:
+ resolution: {integrity: sha1-qCJQ3bABXponyoLoLqYDu/pF768=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /anymatch/2.0.0:
+ resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==}
+ dependencies:
+ micromatch: 3.1.10
+ normalize-path: 2.1.1
+ dev: true
+
/anymatch/3.1.2:
resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
engines: {node: '>= 8'}
@@ -2652,10 +2743,59 @@ packages:
picomatch: 2.3.1
dev: true
+ /append-buffer/1.0.2:
+ resolution: {integrity: sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ buffer-equal: 1.0.0
+ dev: true
+
+ /archy/1.0.0:
+ resolution: {integrity: sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=}
+ dev: true
+
+ /arg/4.1.3:
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
+ dev: true
+
/argparse/2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: true
+ /arr-diff/4.0.0:
+ resolution: {integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /arr-filter/1.1.2:
+ resolution: {integrity: sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ make-iterator: 1.0.1
+ dev: true
+
+ /arr-flatten/1.1.0:
+ resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /arr-map/2.0.2:
+ resolution: {integrity: sha1-Onc0X/wc814qkYJWAfnljy4kysQ=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ make-iterator: 1.0.1
+ dev: true
+
+ /arr-union/3.1.0:
+ resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /array-each/1.0.1:
+ resolution: {integrity: sha1-p5SvDAWrF1KEbudTofIRoFugxE8=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/array-includes/3.1.4:
resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==}
engines: {node: '>= 0.4'}
@@ -2667,11 +2807,45 @@ packages:
is-string: 1.0.7
dev: true
+ /array-initial/1.1.0:
+ resolution: {integrity: sha1-L6dLJnOTccOUe9enrcc74zSz15U=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-slice: 1.1.0
+ is-number: 4.0.0
+ dev: true
+
+ /array-last/1.3.0:
+ resolution: {integrity: sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 4.0.0
+ dev: true
+
+ /array-slice/1.1.0:
+ resolution: {integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /array-sort/1.0.0:
+ resolution: {integrity: sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ default-compare: 1.0.0
+ get-value: 2.0.6
+ kind-of: 5.1.0
+ dev: true
+
/array-union/2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
dev: true
+ /array-unique/0.3.2:
+ resolution: {integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/array.prototype.flat/1.2.5:
resolution: {integrity: sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==}
engines: {node: '>= 0.4'}
@@ -2686,11 +2860,37 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /assign-symbols/1.0.0:
+ resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/astral-regex/2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
dev: true
+ /async-done/1.3.2:
+ resolution: {integrity: sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ process-nextick-args: 2.0.1
+ stream-exhaust: 1.0.2
+ dev: true
+
+ /async-each/1.0.3:
+ resolution: {integrity: sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==}
+ dev: true
+
+ /async-settle/1.0.0:
+ resolution: {integrity: sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ async-done: 1.3.2
+ dev: true
+
/async-wait-until/2.0.12:
resolution: {integrity: sha512-SXy/vDs6UPJMG6YeEYOQ4ilA/JnGxk187KPGqFx9O+qVxsjkSl+jH+3P50qSNyMpEmDgr8qOFGOKCJckWb1i7A==}
engines: {node: '>= 0.12.0', npm: '>= 1.0.0'}
@@ -2705,6 +2905,12 @@ packages:
engines: {node: '>= 4.0.0'}
dev: true
+ /atob/2.1.2:
+ resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
+ engines: {node: '>= 4.5.0'}
+ hasBin: true
+ dev: true
+
/autoprefixer/10.4.2_postcss@8.4.5:
resolution: {integrity: sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==}
engines: {node: ^10 || ^12 || >=14}
@@ -2771,6 +2977,21 @@ packages:
- supports-color
dev: true
+ /bach/1.2.0:
+ resolution: {integrity: sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ arr-filter: 1.1.2
+ arr-flatten: 1.1.0
+ arr-map: 2.0.2
+ array-each: 1.0.1
+ array-initial: 1.1.0
+ array-last: 1.3.0
+ async-done: 1.3.2
+ async-settle: 1.0.0
+ now-and-later: 2.0.1
+ dev: true
+
/balanced-match/1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
dev: true
@@ -2779,11 +3000,37 @@ packages:
resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
dev: true
+ /base/0.11.2:
+ resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ cache-base: 1.0.1
+ class-utils: 0.3.6
+ component-emitter: 1.3.0
+ define-property: 1.0.0
+ isobject: 3.0.1
+ mixin-deep: 1.3.2
+ pascalcase: 0.1.1
+ dev: true
+
+ /binary-extensions/1.13.1:
+ resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/binary-extensions/2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
dev: true
+ /bindings/1.5.0:
+ resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
+ requiresBuild: true
+ dependencies:
+ file-uri-to-path: 1.0.0
+ dev: true
+ optional: true
+
/blocking-elements/0.1.1:
resolution: {integrity: sha512-/SLWbEzMoVIMZACCyhD/4Ya2M1PWP1qMKuiymowPcI+PdWDARqeARBjhj73kbUBCxEmTZCUu5TAqxtwUO9C1Ig==}
dev: false
@@ -2795,6 +3042,22 @@ packages:
concat-map: 0.0.1
dev: true
+ /braces/2.3.2:
+ resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.4
+ snapdragon: 0.8.2
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ dev: true
+
/braces/3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
@@ -2814,6 +3077,11 @@ packages:
picocolors: 1.0.0
dev: true
+ /buffer-equal/1.0.0:
+ resolution: {integrity: sha1-WWFrSYME1Var1GaWayLu2j7KX74=}
+ engines: {node: '>=0.4.0'}
+ dev: true
+
/buffer-from/1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
dev: true
@@ -2823,6 +3091,21 @@ packages:
engines: {node: '>=6'}
dev: true
+ /cache-base/1.0.1:
+ resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ collection-visit: 1.0.0
+ component-emitter: 1.3.0
+ get-value: 2.0.6
+ has-value: 1.0.0
+ isobject: 3.0.1
+ set-value: 2.0.1
+ to-object-path: 0.3.0
+ union-value: 1.0.1
+ unset-value: 1.0.0
+ dev: true
+
/call-bind/1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
@@ -2843,6 +3126,11 @@ packages:
quick-lru: 4.0.1
dev: true
+ /camelcase/3.0.0:
+ resolution: {integrity: sha1-MvxLn82vhF/N9+c7uXysImHwqwo=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/camelcase/5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
@@ -2892,6 +3180,25 @@ packages:
supports-color: 7.2.0
dev: true
+ /chokidar/2.1.8:
+ resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==}
+ deprecated: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
+ dependencies:
+ anymatch: 2.0.0
+ async-each: 1.0.3
+ braces: 2.3.2
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1
+ upath: 1.2.0
+ optionalDependencies:
+ fsevents: 1.2.13
+ dev: true
+
/chokidar/3.5.2:
resolution: {integrity: sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==}
engines: {node: '>= 8.10.0'}
@@ -2911,6 +3218,16 @@ packages:
resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==}
dev: true
+ /class-utils/0.3.6:
+ resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ define-property: 0.2.5
+ isobject: 3.0.1
+ static-extend: 0.1.2
+ dev: true
+
/classnames/2.3.1:
resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==}
dev: false
@@ -2922,6 +3239,14 @@ packages:
escape-string-regexp: 1.0.5
dev: true
+ /cliui/3.2.0:
+ resolution: {integrity: sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=}
+ dependencies:
+ string-width: 1.0.2
+ strip-ansi: 3.0.1
+ wrap-ansi: 2.1.0
+ dev: true
+
/cliui/6.0.0:
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
dependencies:
@@ -2938,6 +3263,11 @@ packages:
wrap-ansi: 7.0.0
dev: true
+ /clone-buffer/1.0.0:
+ resolution: {integrity: sha1-4+JbIHrE5wGvch4staFnksrD3Fg=}
+ engines: {node: '>= 0.10'}
+ dev: true
+
/clone-regexp/2.2.0:
resolution: {integrity: sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==}
engines: {node: '>=6'}
@@ -2945,10 +3275,49 @@ packages:
is-regexp: 2.1.0
dev: true
+ /clone-stats/1.0.0:
+ resolution: {integrity: sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=}
+ dev: true
+
+ /clone/2.1.2:
+ resolution: {integrity: sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=}
+ engines: {node: '>=0.8'}
+ dev: true
+
+ /cloneable-readable/1.1.3:
+ resolution: {integrity: sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==}
+ dependencies:
+ inherits: 2.0.4
+ process-nextick-args: 2.0.1
+ readable-stream: 2.3.7
+ dev: true
+
+ /code-point-at/1.1.0:
+ resolution: {integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/collect.js/4.30.7:
resolution: {integrity: sha512-5+G52m+yBOk9olVUdtiMZK4tJvAEj/FkKanHrVDCqaUmt3QDSjXQl1QaluhnISYAZTDGzlp0QjRB5UujgyPqcQ==}
dev: false
+ /collection-map/1.0.0:
+ resolution: {integrity: sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-map: 2.0.2
+ for-own: 1.0.0
+ make-iterator: 1.0.1
+ dev: true
+
+ /collection-visit/1.0.0:
+ resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-visit: 1.0.0
+ object-visit: 1.0.1
+ dev: true
+
/coloquent/2.4.1:
resolution: {integrity: sha512-a0lXsMGgcP9la9wWC13v16AXA1EJ6YEmtg2RvJ8D5iozcupF5fUaAAevgKXEDuRtRrq+c5XWLCRP2xub9QeksQ==}
dependencies:
@@ -2977,6 +3346,11 @@ packages:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
dev: true
+ /color-support/1.1.3:
+ resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
+ hasBin: true
+ dev: true
+
/colord/2.9.2:
resolution: {integrity: sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==}
dev: true
@@ -2995,10 +3369,24 @@ packages:
engines: {node: '>=4.0.0'}
dev: true
+ /component-emitter/1.3.0:
+ resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
+ dev: true
+
/concat-map/0.0.1:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
dev: true
+ /concat-stream/1.6.2:
+ resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
+ engines: {'0': node >= 0.8}
+ dependencies:
+ buffer-from: 1.1.2
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ typedarray: 0.0.6
+ dev: true
+
/concurrently/7.0.0:
resolution: {integrity: sha512-WKM7PUsI8wyXpF80H+zjHP32fsgsHNQfPLw/e70Z5dYkV7hF+rf8q3D+ScWJIEr57CpkO3OWBko6hwhQLPR8Pw==}
engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0}
@@ -3024,6 +3412,18 @@ packages:
safe-buffer: 5.1.2
dev: true
+ /copy-descriptor/0.1.1:
+ resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /copy-props/2.0.5:
+ resolution: {integrity: sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==}
+ dependencies:
+ each-props: 1.3.2
+ is-plain-object: 5.0.0
+ dev: true
+
/core-js-compat/3.20.2:
resolution: {integrity: sha512-qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg==}
dependencies:
@@ -3031,6 +3431,10 @@ packages:
semver: 7.0.0
dev: true
+ /core-util-is/1.0.3:
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ dev: true
+
/cosmiconfig/7.0.1:
resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
engines: {node: '>=10'}
@@ -3084,6 +3488,13 @@ packages:
resolution: {integrity: sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==}
dev: true
+ /d/1.0.1:
+ resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
+ dependencies:
+ es5-ext: 0.10.53
+ type: 1.2.0
+ dev: true
+
/date-fns/2.28.0:
resolution: {integrity: sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==}
engines: {node: '>=0.11'}
@@ -3126,6 +3537,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /decode-uri-component/0.2.0:
+ resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=}
+ engines: {node: '>=0.10'}
+ dev: true
+
/deep-is/0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
@@ -3134,6 +3550,18 @@ packages:
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
engines: {node: '>=0.10.0'}
+ /default-compare/1.0.0:
+ resolution: {integrity: sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 5.1.0
+ dev: true
+
+ /default-resolution/2.0.0:
+ resolution: {integrity: sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=}
+ engines: {node: '>= 0.10'}
+ dev: true
+
/define-properties/1.1.3:
resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
engines: {node: '>= 0.4'}
@@ -3141,6 +3569,38 @@ packages:
object-keys: 1.1.1
dev: true
+ /define-property/0.2.5:
+ resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 0.1.6
+ dev: true
+
+ /define-property/1.0.0:
+ resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 1.0.2
+ dev: true
+
+ /define-property/2.0.2:
+ resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 1.0.2
+ isobject: 3.0.1
+ dev: true
+
+ /detect-file/1.0.0:
+ resolution: {integrity: sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /diff/4.0.2:
+ resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
+ engines: {node: '>=0.3.1'}
+ dev: true
+
/dir-glob/3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -3178,6 +3638,22 @@ packages:
engines: {node: '>=10'}
dev: true
+ /duplexify/3.7.1:
+ resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
+ dependencies:
+ end-of-stream: 1.4.4
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ stream-shift: 1.0.1
+ dev: true
+
+ /each-props/1.3.2:
+ resolution: {integrity: sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==}
+ dependencies:
+ is-plain-object: 2.0.4
+ object.defaults: 1.1.0
+ dev: true
+
/ejs/3.1.6:
resolution: {integrity: sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==}
engines: {node: '>=0.10.0'}
@@ -3194,6 +3670,12 @@ packages:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
dev: true
+ /end-of-stream/1.4.4:
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ dependencies:
+ once: 1.4.0
+ dev: true
+
/enquirer/2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
@@ -3248,6 +3730,38 @@ packages:
is-symbol: 1.0.4
dev: true
+ /es5-ext/0.10.53:
+ resolution: {integrity: sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==}
+ dependencies:
+ es6-iterator: 2.0.3
+ es6-symbol: 3.1.3
+ next-tick: 1.0.0
+ dev: true
+
+ /es6-iterator/2.0.3:
+ resolution: {integrity: sha1-p96IkUGgWpSwhUQDstCg+/qY87c=}
+ dependencies:
+ d: 1.0.1
+ es5-ext: 0.10.53
+ es6-symbol: 3.1.3
+ dev: true
+
+ /es6-symbol/3.1.3:
+ resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
+ dependencies:
+ d: 1.0.1
+ ext: 1.6.0
+ dev: true
+
+ /es6-weak-map/2.0.3:
+ resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==}
+ dependencies:
+ d: 1.0.1
+ es5-ext: 0.10.53
+ es6-iterator: 2.0.3
+ es6-symbol: 3.1.3
+ dev: true
+
/esbuild-android-arm64/0.13.15:
resolution: {integrity: sha512-m602nft/XXeO8YQPUDVoHfjyRVPdPgjyyXOxZ44MK/agewFFkPa8tUo6lAzSWh5Ui5PB4KR9UIFTSBKh/RrCmg==}
cpu: [arm64]
@@ -3444,8 +3958,8 @@ packages:
'@typescript-eslint/eslint-plugin': ^5.0.0
'@typescript-eslint/parser': ^5.0.0
dependencies:
- '@typescript-eslint/eslint-plugin': 5.9.1_b7b2e42b32ee097737cd3e626b10847b
- '@typescript-eslint/parser': 5.9.1_eslint@8.6.0+typescript@4.5.4
+ '@typescript-eslint/eslint-plugin': 5.9.1_46ff1e3eeda39b5395c18b563a83af7a
+ '@typescript-eslint/parser': 5.9.1_eslint@8.6.0+typescript@4.5.5
eslint-config-airbnb-base: 15.0.0_b5a36b8c1535387c8dd00eff7ec6b551
transitivePeerDependencies:
- eslint
@@ -3739,6 +4253,75 @@ packages:
clone-regexp: 2.2.0
dev: true
+ /expand-brackets/2.1.4:
+ resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+
+ /expand-tilde/2.0.2:
+ resolution: {integrity: sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ homedir-polyfill: 1.0.3
+ dev: true
+
+ /ext/1.6.0:
+ resolution: {integrity: sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==}
+ dependencies:
+ type: 2.5.0
+ dev: true
+
+ /extend-shallow/2.0.1:
+ resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extendable: 0.1.1
+ dev: true
+
+ /extend-shallow/3.0.2:
+ resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ assign-symbols: 1.0.0
+ is-extendable: 1.0.1
+ dev: true
+
+ /extend/3.0.2:
+ resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+ dev: true
+
+ /extglob/2.0.4:
+ resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+
+ /fancy-log/1.3.3:
+ resolution: {integrity: sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ ansi-gray: 0.1.1
+ color-support: 1.1.3
+ parse-node-version: 1.0.1
+ time-stamp: 1.1.0
+ dev: true
+
/fast-deep-equal/3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
dev: true
@@ -3758,6 +4341,10 @@ packages:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: true
+ /fast-levenshtein/1.1.4:
+ resolution: {integrity: sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=}
+ dev: true
+
/fast-levenshtein/2.0.6:
resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=}
dev: true
@@ -3783,12 +4370,28 @@ packages:
flat-cache: 3.0.4
dev: true
+ /file-uri-to-path/1.0.0:
+ resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
+ requiresBuild: true
+ dev: true
+ optional: true
+
/filelist/1.0.2:
resolution: {integrity: sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==}
dependencies:
minimatch: 3.0.4
dev: true
+ /fill-range/4.0.0:
+ resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 2.0.1
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ to-regex-range: 2.1.1
+ dev: true
+
/fill-range/7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
@@ -3796,6 +4399,14 @@ packages:
to-regex-range: 5.0.1
dev: true
+ /find-up/1.1.2:
+ resolution: {integrity: sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ path-exists: 2.1.0
+ pinkie-promise: 2.0.1
+ dev: true
+
/find-up/2.1.0:
resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=}
engines: {node: '>=4'}
@@ -3811,6 +4422,42 @@ packages:
path-exists: 4.0.0
dev: true
+ /findup-sync/2.0.0:
+ resolution: {integrity: sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ detect-file: 1.0.0
+ is-glob: 3.1.0
+ micromatch: 3.1.10
+ resolve-dir: 1.0.1
+ dev: true
+
+ /findup-sync/3.0.0:
+ resolution: {integrity: sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ detect-file: 1.0.0
+ is-glob: 4.0.3
+ micromatch: 3.1.10
+ resolve-dir: 1.0.1
+ dev: true
+
+ /fined/1.2.0:
+ resolution: {integrity: sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ expand-tilde: 2.0.2
+ is-plain-object: 2.0.4
+ object.defaults: 1.1.0
+ object.pick: 1.3.0
+ parse-filepath: 1.0.2
+ dev: true
+
+ /flagged-respawn/1.0.1:
+ resolution: {integrity: sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==}
+ engines: {node: '>= 0.10'}
+ dev: true
+
/flat-cache/3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -3823,6 +4470,13 @@ packages:
resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==}
dev: true
+ /flush-write-stream/1.1.1:
+ resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.7
+ dev: true
+
/follow-redirects/1.14.7:
resolution: {integrity: sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==}
engines: {node: '>=4.0'}
@@ -3833,10 +4487,29 @@ packages:
optional: true
dev: false
+ /for-in/1.0.2:
+ resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /for-own/1.0.0:
+ resolution: {integrity: sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-in: 1.0.2
+ dev: true
+
/fraction.js/4.1.2:
resolution: {integrity: sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==}
dev: true
+ /fragment-cache/0.2.1:
+ resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-cache: 0.2.2
+ dev: true
+
/fs-extra/9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
@@ -3847,10 +4520,30 @@ packages:
universalify: 2.0.0
dev: true
+ /fs-mkdirp-stream/1.0.0:
+ resolution: {integrity: sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ graceful-fs: 4.2.9
+ through2: 2.0.5
+ dev: true
+
/fs.realpath/1.0.0:
resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
dev: true
+ /fsevents/1.2.13:
+ resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
+ engines: {node: '>= 4.0'}
+ os: [darwin]
+ deprecated: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
+ requiresBuild: true
+ dependencies:
+ bindings: 1.5.0
+ nan: 2.15.0
+ dev: true
+ optional: true
+
/fsevents/2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -3871,6 +4564,10 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
+ /get-caller-file/1.0.3:
+ resolution: {integrity: sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==}
+ dev: true
+
/get-caller-file/2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
@@ -3905,6 +4602,18 @@ packages:
get-intrinsic: 1.1.1
dev: true
+ /get-value/2.0.6:
+ resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /glob-parent/3.1.0:
+ resolution: {integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=}
+ dependencies:
+ is-glob: 3.1.0
+ path-dirname: 1.0.2
+ dev: true
+
/glob-parent/5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
@@ -3919,6 +4628,35 @@ packages:
is-glob: 4.0.3
dev: true
+ /glob-stream/6.1.0:
+ resolution: {integrity: sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ extend: 3.0.2
+ glob: 7.2.0
+ glob-parent: 3.1.0
+ is-negated-glob: 1.0.0
+ ordered-read-streams: 1.0.1
+ pumpify: 1.5.1
+ readable-stream: 2.3.7
+ remove-trailing-separator: 1.1.0
+ to-absolute-glob: 2.0.2
+ unique-stream: 2.3.1
+ dev: true
+
+ /glob-watcher/5.0.5:
+ resolution: {integrity: sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ anymatch: 2.0.0
+ async-done: 1.3.2
+ chokidar: 2.1.8
+ is-negated-glob: 1.0.0
+ just-debounce: 1.1.0
+ normalize-path: 3.0.0
+ object.defaults: 1.1.0
+ dev: true
+
/glob/7.2.0:
resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
dependencies:
@@ -3930,6 +4668,15 @@ packages:
path-is-absolute: 1.0.1
dev: true
+ /global-modules/1.0.0:
+ resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ global-prefix: 1.0.2
+ is-windows: 1.0.2
+ resolve-dir: 1.0.1
+ dev: true
+
/global-modules/2.0.0:
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
engines: {node: '>=6'}
@@ -3937,6 +4684,17 @@ packages:
global-prefix: 3.0.0
dev: true
+ /global-prefix/1.0.2:
+ resolution: {integrity: sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ expand-tilde: 2.0.2
+ homedir-polyfill: 1.0.3
+ ini: 1.3.8
+ is-windows: 1.0.2
+ which: 1.3.1
+ dev: true
+
/global-prefix/3.0.0:
resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
engines: {node: '>=6'}
@@ -3974,6 +4732,13 @@ packages:
resolution: {integrity: sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=}
dev: true
+ /glogg/1.0.2:
+ resolution: {integrity: sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ sparkles: 1.0.1
+ dev: true
+
/graceful-fs/4.2.9:
resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
dev: true
@@ -3982,6 +4747,49 @@ packages:
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
dev: true
+ /gulp-cli/2.3.0:
+ resolution: {integrity: sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==}
+ engines: {node: '>= 0.10'}
+ hasBin: true
+ dependencies:
+ ansi-colors: 1.1.0
+ archy: 1.0.0
+ array-sort: 1.0.0
+ color-support: 1.1.3
+ concat-stream: 1.6.2
+ copy-props: 2.0.5
+ fancy-log: 1.3.3
+ gulplog: 1.0.0
+ interpret: 1.4.0
+ isobject: 3.0.1
+ liftoff: 3.1.0
+ matchdep: 2.0.0
+ mute-stdout: 1.0.1
+ pretty-hrtime: 1.0.3
+ replace-homedir: 1.0.0
+ semver-greatest-satisfied-range: 1.1.0
+ v8flags: 3.2.0
+ yargs: 7.1.2
+ dev: true
+
+ /gulp/4.0.2:
+ resolution: {integrity: sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==}
+ engines: {node: '>= 0.10'}
+ hasBin: true
+ dependencies:
+ glob-watcher: 5.0.5
+ gulp-cli: 2.3.0
+ undertaker: 1.3.0
+ vinyl-fs: 3.0.3
+ dev: true
+
+ /gulplog/1.0.0:
+ resolution: {integrity: sha1-4oxNRdBey77YGDY86PnFkmIp/+U=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ glogg: 1.0.2
+ dev: true
+
/hard-rejection/2.1.0:
resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
engines: {node: '>=6'}
@@ -4024,12 +4832,50 @@ packages:
has-symbols: 1.0.2
dev: true
+ /has-value/0.3.1:
+ resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 0.1.4
+ isobject: 2.1.0
+ dev: true
+
+ /has-value/1.0.0:
+ resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 1.0.0
+ isobject: 3.0.1
+ dev: true
+
+ /has-values/0.1.4:
+ resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /has-values/1.0.0:
+ resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ kind-of: 4.0.0
+ dev: true
+
/has/1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
+ /homedir-polyfill/1.0.3:
+ resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ parse-passwd: 1.0.0
+ dev: true
+
/hosted-git-info/2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
dev: true
@@ -4128,6 +4974,38 @@ packages:
side-channel: 1.0.4
dev: true
+ /interpret/1.4.0:
+ resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
+ engines: {node: '>= 0.10'}
+ dev: true
+
+ /invert-kv/1.0.0:
+ resolution: {integrity: sha1-EEqOSqym09jNFXqO+L+rLXo//bY=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-absolute/1.0.0:
+ resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-relative: 1.0.0
+ is-windows: 1.0.2
+ dev: true
+
+ /is-accessor-descriptor/0.1.6:
+ resolution: {integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /is-accessor-descriptor/1.0.0:
+ resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
+ dev: true
+
/is-arrayish/0.2.1:
resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
dev: true
@@ -4138,6 +5016,13 @@ packages:
has-bigints: 1.0.1
dev: true
+ /is-binary-path/1.0.1:
+ resolution: {integrity: sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ binary-extensions: 1.13.1
+ dev: true
+
/is-binary-path/2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
@@ -4153,6 +5038,10 @@ packages:
has-tostringtag: 1.0.0
dev: true
+ /is-buffer/1.1.6:
+ resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
+ dev: true
+
/is-builtin-module/3.1.0:
resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==}
engines: {node: '>=6'}
@@ -4171,6 +5060,20 @@ packages:
has: 1.0.3
dev: true
+ /is-data-descriptor/0.1.4:
+ resolution: {integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /is-data-descriptor/1.0.0:
+ resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
+ dev: true
+
/is-date-object/1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
@@ -4178,16 +5081,60 @@ packages:
has-tostringtag: 1.0.0
dev: true
+ /is-descriptor/0.1.6:
+ resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-accessor-descriptor: 0.1.6
+ is-data-descriptor: 0.1.4
+ kind-of: 5.1.0
+ dev: true
+
+ /is-descriptor/1.0.2:
+ resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-accessor-descriptor: 1.0.0
+ is-data-descriptor: 1.0.0
+ kind-of: 6.0.3
+ dev: true
+
+ /is-extendable/0.1.1:
+ resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-extendable/1.0.1:
+ resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-plain-object: 2.0.4
+ dev: true
+
/is-extglob/2.1.1:
resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
engines: {node: '>=0.10.0'}
dev: true
+ /is-fullwidth-code-point/1.0.0:
+ resolution: {integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ number-is-nan: 1.0.1
+ dev: true
+
/is-fullwidth-code-point/3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
dev: true
+ /is-glob/3.1.0:
+ resolution: {integrity: sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extglob: 2.1.1
+ dev: true
+
/is-glob/4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
@@ -4199,6 +5146,11 @@ packages:
resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=}
dev: true
+ /is-negated-glob/1.0.0:
+ resolution: {integrity: sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/is-negative-zero/2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
@@ -4211,6 +5163,18 @@ packages:
has-tostringtag: 1.0.0
dev: true
+ /is-number/3.0.0:
+ resolution: {integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /is-number/4.0.0:
+ resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/is-number/7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
@@ -4226,6 +5190,13 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /is-plain-object/2.0.4:
+ resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+
/is-plain-object/5.0.0:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'}
@@ -4253,6 +5224,13 @@ packages:
engines: {node: '>=6'}
dev: true
+ /is-relative/1.0.0:
+ resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-unc-path: 1.0.0
+ dev: true
+
/is-shared-array-buffer/1.0.1:
resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==}
dev: true
@@ -4280,18 +5258,43 @@ packages:
resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=}
dev: true
+ /is-unc-path/1.0.0:
+ resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ unc-path-regex: 0.1.2
+ dev: true
+
+ /is-utf8/0.2.1:
+ resolution: {integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=}
+ dev: true
+
/is-valid-element-name/1.0.0:
resolution: {integrity: sha1-Ju8/12zfHxItEFQG4y01sN4AWYE=}
dependencies:
is-potential-custom-element-name: 1.0.1
dev: true
+ /is-valid-glob/1.0.0:
+ resolution: {integrity: sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/is-weakref/1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
call-bind: 1.0.2
dev: true
+ /is-windows/1.0.2:
+ resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /isarray/1.0.0:
+ resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=}
+ dev: true
+
/isexe/2.0.0:
resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
dev: true
@@ -4313,6 +5316,18 @@ packages:
engines: {node: '>=6.0'}
dev: false
+ /isobject/2.1.0:
+ resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isarray: 1.0.0
+ dev: true
+
+ /isobject/3.0.1:
+ resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/jake/10.8.2:
resolution: {integrity: sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==}
hasBin: true
@@ -4420,10 +5435,33 @@ packages:
object.assign: 4.1.2
dev: true
+ /just-debounce/1.1.0:
+ resolution: {integrity: sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==}
+ dev: true
+
/kebab-case/1.0.1:
resolution: {integrity: sha512-txPHx6nVLhv8PHGXIlAk0nYoh894SpAqGPXNvbg2hh8spvHXIah3+vT87DLoa59nKgC6scD3u3xAuRIgiMqbfQ==}
dev: true
+ /kind-of/3.2.2:
+ resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+
+ /kind-of/4.0.0:
+ resolution: {integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+
+ /kind-of/5.1.0:
+ resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/kind-of/6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
@@ -4446,6 +5484,35 @@ packages:
- supports-color
dev: true
+ /last-run/1.1.1:
+ resolution: {integrity: sha1-RblpQsF7HHnHchmCWbqUO+v4yls=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ default-resolution: 2.0.0
+ es6-weak-map: 2.0.3
+ dev: true
+
+ /lazystream/1.0.1:
+ resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
+ engines: {node: '>= 0.6.3'}
+ dependencies:
+ readable-stream: 2.3.7
+ dev: true
+
+ /lcid/1.0.0:
+ resolution: {integrity: sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ invert-kv: 1.0.0
+ dev: true
+
+ /lead/1.0.0:
+ resolution: {integrity: sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ flush-write-stream: 1.1.1
+ dev: true
+
/leven/3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
@@ -4459,6 +5526,20 @@ packages:
type-check: 0.4.0
dev: true
+ /liftoff/3.1.0:
+ resolution: {integrity: sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ extend: 3.0.2
+ findup-sync: 3.0.0
+ fined: 1.2.0
+ flagged-respawn: 1.0.1
+ is-plain-object: 2.0.4
+ object.map: 1.0.1
+ rechoir: 0.6.2
+ resolve: 1.21.0
+ dev: true
+
/lines-and-columns/1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true
@@ -4484,6 +5565,17 @@ packages:
lit-html: 2.1.1
dev: false
+ /load-json-file/1.1.0:
+ resolution: {integrity: sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ graceful-fs: 4.2.9
+ parse-json: 2.2.0
+ pify: 2.3.0
+ pinkie-promise: 2.0.1
+ strip-bom: 2.0.0
+ dev: true
+
/locale-code/2.0.2:
resolution: {integrity: sha512-wNcUMwk6Nlc10pnZZXWtKArAOZHhH8p2vohPEIENg7ImwMrib/CwKSvyV4g9Wm7KjylyHzXnEMz4i/W3w57wlw==}
dependencies:
@@ -4553,6 +5645,22 @@ packages:
sourcemap-codec: 1.4.8
dev: true
+ /make-error/1.3.6:
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+ dev: true
+
+ /make-iterator/1.0.1:
+ resolution: {integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
+ dev: true
+
+ /map-cache/0.2.2:
+ resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/map-obj/1.0.1:
resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=}
engines: {node: '>=0.10.0'}
@@ -4563,6 +5671,23 @@ packages:
engines: {node: '>=8'}
dev: true
+ /map-visit/1.0.0:
+ resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ object-visit: 1.0.1
+ dev: true
+
+ /matchdep/2.0.0:
+ resolution: {integrity: sha1-xvNINKDY28OzfCfui7yyfHd1WC4=}
+ engines: {node: '>= 0.10.0'}
+ dependencies:
+ findup-sync: 2.0.0
+ micromatch: 3.1.10
+ resolve: 1.21.0
+ stack-trace: 0.0.10
+ dev: true
+
/mathml-tag-names/2.1.3:
resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
dev: true
@@ -4594,6 +5719,25 @@ packages:
engines: {node: '>= 8'}
dev: true
+ /micromatch/3.1.10:
+ resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4
+ fragment-cache: 0.2.1
+ kind-of: 6.0.3
+ nanomatch: 1.2.13
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+
/micromatch/4.0.4:
resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==}
engines: {node: '>=8.6'}
@@ -4644,6 +5788,14 @@ packages:
hasBin: true
dev: false
+ /mixin-deep/1.3.2:
+ resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-in: 1.0.2
+ is-extendable: 1.0.1
+ dev: true
+
/modern-normalize/1.1.0:
resolution: {integrity: sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==}
engines: {node: '>=6'}
@@ -4665,16 +5817,48 @@ packages:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: true
+ /mute-stdout/1.0.1:
+ resolution: {integrity: sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==}
+ engines: {node: '>= 0.10'}
+ dev: true
+
+ /nan/2.15.0:
+ resolution: {integrity: sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==}
+ requiresBuild: true
+ dev: true
+ optional: true
+
/nanoid/3.1.30:
resolution: {integrity: sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
dev: true
+ /nanomatch/1.2.13:
+ resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.3
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ dev: true
+
/natural-compare/1.4.0:
resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=}
dev: true
+ /next-tick/1.0.0:
+ resolution: {integrity: sha1-yobR/ogoFpsBICCOPchCS524NCw=}
+ dev: true
+
/no-case/3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
@@ -4705,6 +5889,13 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
+ /normalize-path/2.1.1:
+ resolution: {integrity: sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ remove-trailing-separator: 1.1.0
+ dev: true
+
/normalize-path/3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
@@ -4719,6 +5910,13 @@ packages:
resolution: {integrity: sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=}
dev: true
+ /now-and-later/2.0.1:
+ resolution: {integrity: sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ once: 1.4.0
+ dev: true
+
/npm-run-path/4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -4730,6 +5928,20 @@ packages:
resolution: {integrity: sha1-y480xTIT2JVyP8urkH6UIq28r7E=}
dev: false
+ /number-is-nan/1.0.1:
+ resolution: {integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /object-copy/0.1.0:
+ resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ copy-descriptor: 0.1.1
+ define-property: 0.2.5
+ kind-of: 3.2.2
+ dev: true
+
/object-inspect/1.12.0:
resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==}
@@ -4738,6 +5950,13 @@ packages:
engines: {node: '>= 0.4'}
dev: true
+ /object-visit/1.0.1:
+ resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+
/object.assign/4.1.2:
resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==}
engines: {node: '>= 0.4'}
@@ -4748,6 +5967,16 @@ packages:
object-keys: 1.1.1
dev: true
+ /object.defaults/1.1.0:
+ resolution: {integrity: sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-each: 1.0.1
+ array-slice: 1.1.0
+ for-own: 1.0.0
+ isobject: 3.0.1
+ dev: true
+
/object.entries/1.1.5:
resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==}
engines: {node: '>= 0.4'}
@@ -4757,6 +5986,29 @@ packages:
es-abstract: 1.19.1
dev: true
+ /object.map/1.0.1:
+ resolution: {integrity: sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-own: 1.0.0
+ make-iterator: 1.0.1
+ dev: true
+
+ /object.pick/1.3.0:
+ resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+
+ /object.reduce/1.0.1:
+ resolution: {integrity: sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-own: 1.0.0
+ make-iterator: 1.0.1
+ dev: true
+
/object.values/1.1.5:
resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==}
engines: {node: '>= 0.4'}
@@ -4791,6 +6043,19 @@ packages:
word-wrap: 1.2.3
dev: true
+ /ordered-read-streams/1.0.1:
+ resolution: {integrity: sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=}
+ dependencies:
+ readable-stream: 2.3.7
+ dev: true
+
+ /os-locale/1.4.0:
+ resolution: {integrity: sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ lcid: 1.0.0
+ dev: true
+
/p-limit/1.3.0:
resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
engines: {node: '>=4'}
@@ -4843,6 +6108,22 @@ packages:
callsites: 3.1.0
dev: true
+ /parse-filepath/1.0.2:
+ resolution: {integrity: sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=}
+ engines: {node: '>=0.8'}
+ dependencies:
+ is-absolute: 1.0.0
+ map-cache: 0.2.2
+ path-root: 0.1.1
+ dev: true
+
+ /parse-json/2.2.0:
+ resolution: {integrity: sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ error-ex: 1.3.2
+ dev: true
+
/parse-json/5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -4853,6 +6134,16 @@ packages:
lines-and-columns: 1.2.4
dev: true
+ /parse-node-version/1.0.1:
+ resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
+ engines: {node: '>= 0.10'}
+ dev: true
+
+ /parse-passwd/1.0.0:
+ resolution: {integrity: sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/parse5-htmlparser2-tree-adapter/6.0.1:
resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
dependencies:
@@ -4863,6 +6154,22 @@ packages:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: true
+ /pascalcase/0.1.1:
+ resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /path-dirname/1.0.2:
+ resolution: {integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=}
+ dev: true
+
+ /path-exists/2.1.0:
+ resolution: {integrity: sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ pinkie-promise: 2.0.1
+ dev: true
+
/path-exists/3.0.0:
resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
engines: {node: '>=4'}
@@ -4887,6 +6194,27 @@ packages:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
dev: true
+ /path-root-regex/0.1.2:
+ resolution: {integrity: sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /path-root/0.1.1:
+ resolution: {integrity: sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ path-root-regex: 0.1.2
+ dev: true
+
+ /path-type/1.1.0:
+ resolution: {integrity: sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ graceful-fs: 4.2.9
+ pify: 2.3.0
+ pinkie-promise: 2.0.1
+ dev: true
+
/path-type/4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
@@ -4916,11 +6244,33 @@ packages:
engines: {node: '>=8.6'}
dev: true
+ /pify/2.3.0:
+ resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /pinkie-promise/2.0.1:
+ resolution: {integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ pinkie: 2.0.4
+ dev: true
+
+ /pinkie/2.0.4:
+ resolution: {integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/pluralize/8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
dev: true
+ /posix-character-classes/0.1.1:
+ resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/postcss-media-query-parser/0.2.3:
resolution: {integrity: sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=}
dev: true
@@ -5028,6 +6378,15 @@ packages:
engines: {node: '>=6'}
dev: true
+ /pretty-hrtime/1.0.3:
+ resolution: {integrity: sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /process-nextick-args/2.0.1:
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+ dev: true
+
/process/0.11.10:
resolution: {integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=}
engines: {node: '>= 0.6.0'}
@@ -5038,6 +6397,21 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
+ /pump/2.0.1:
+ resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: true
+
+ /pumpify/1.5.1:
+ resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
+ dependencies:
+ duplexify: 3.7.1
+ inherits: 2.0.4
+ pump: 2.0.1
+ dev: true
+
/punycode/2.1.1:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
@@ -5065,6 +6439,14 @@ packages:
safe-buffer: 5.2.1
dev: true
+ /read-pkg-up/1.0.1:
+ resolution: {integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ find-up: 1.1.2
+ read-pkg: 1.1.0
+ dev: true
+
/read-pkg-up/7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
engines: {node: '>=8'}
@@ -5074,6 +6456,15 @@ packages:
type-fest: 0.8.1
dev: true
+ /read-pkg/1.1.0:
+ resolution: {integrity: sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ load-json-file: 1.1.0
+ normalize-package-data: 2.5.0
+ path-type: 1.1.0
+ dev: true
+
/read-pkg/5.2.0:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'}
@@ -5084,6 +6475,27 @@ packages:
type-fest: 0.6.0
dev: true
+ /readable-stream/2.3.7:
+ resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
+ dependencies:
+ core-util-is: 1.0.3
+ inherits: 2.0.4
+ isarray: 1.0.0
+ process-nextick-args: 2.0.1
+ safe-buffer: 5.1.2
+ string_decoder: 1.1.1
+ util-deprecate: 1.0.2
+ dev: true
+
+ /readdirp/2.2.1:
+ resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ graceful-fs: 4.2.9
+ micromatch: 3.1.10
+ readable-stream: 2.3.7
+ dev: true
+
/readdirp/3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
@@ -5091,6 +6503,13 @@ packages:
picomatch: 2.3.1
dev: true
+ /rechoir/0.6.2:
+ resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ resolve: 1.21.0
+ dev: true
+
/redaxios/0.4.1:
resolution: {integrity: sha512-+Jhh1j8/H0KBro+Hih/MrDEJ1PICaU10JA6iu5b3+uvgRI+5n2M7qpMNXq7eC/0fspP0tTq49ONXlGWFdRoNLg==}
dev: false
@@ -5130,6 +6549,14 @@ packages:
'@babel/runtime': 7.16.7
dev: true
+ /regex-not/1.0.2:
+ resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 3.0.2
+ safe-regex: 1.1.0
+ dev: true
+
/regexp-ast-analysis/0.2.4:
resolution: {integrity: sha512-8L7kOZQaKPxKKAwGuUZxTQtlO3WZ+tiXy4s6G6PKL6trbOXcZoumwC3AOHHFtI/xoSbNxt7jgLvCnP1UADLWqg==}
dependencies:
@@ -5185,6 +6612,51 @@ packages:
jsesc: 0.5.0
dev: true
+ /remove-bom-buffer/3.0.0:
+ resolution: {integrity: sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ is-utf8: 0.2.1
+ dev: true
+
+ /remove-bom-stream/1.2.0:
+ resolution: {integrity: sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ remove-bom-buffer: 3.0.0
+ safe-buffer: 5.2.1
+ through2: 2.0.5
+ dev: true
+
+ /remove-trailing-separator/1.1.0:
+ resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=}
+ dev: true
+
+ /repeat-element/1.1.4:
+ resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /repeat-string/1.6.1:
+ resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=}
+ engines: {node: '>=0.10'}
+ dev: true
+
+ /replace-ext/1.0.1:
+ resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==}
+ engines: {node: '>= 0.10'}
+ dev: true
+
+ /replace-homedir/1.0.0:
+ resolution: {integrity: sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ homedir-polyfill: 1.0.3
+ is-absolute: 1.0.0
+ remove-trailing-separator: 1.1.0
+ dev: true
+
/require-directory/2.1.1:
resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=}
engines: {node: '>=0.10.0'}
@@ -5195,6 +6667,10 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /require-main-filename/1.0.1:
+ resolution: {integrity: sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=}
+ dev: true
+
/require-main-filename/2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
dev: true
@@ -5208,6 +6684,14 @@ packages:
resolution: {integrity: sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=}
dev: true
+ /resolve-dir/1.0.1:
+ resolution: {integrity: sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ expand-tilde: 2.0.2
+ global-modules: 1.0.0
+ dev: true
+
/resolve-from/4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
@@ -5218,6 +6702,18 @@ packages:
engines: {node: '>=8'}
dev: true
+ /resolve-options/1.1.0:
+ resolution: {integrity: sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ value-or-function: 3.0.0
+ dev: true
+
+ /resolve-url/0.2.1:
+ resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=}
+ deprecated: https://github.com/lydell/resolve-url#deprecated
+ dev: true
+
/resolve/1.21.0:
resolution: {integrity: sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==}
hasBin: true
@@ -5227,6 +6723,11 @@ packages:
supports-preserve-symlinks-flag: 1.0.0
dev: true
+ /ret/0.1.15:
+ resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
+ engines: {node: '>=0.12'}
+ dev: true
+
/reusify/1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -5282,6 +6783,12 @@ packages:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
dev: true
+ /safe-regex/1.1.0:
+ resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=}
+ dependencies:
+ ret: 0.1.15
+ dev: true
+
/safe-regex/2.1.1:
resolution: {integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==}
dependencies:
@@ -5306,6 +6813,13 @@ packages:
regexpp: 3.2.0
dev: true
+ /semver-greatest-satisfied-range/1.1.0:
+ resolution: {integrity: sha1-E+jCZYq5aRywzXEJMkAoDTb3els=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ sver-compat: 1.5.0
+ dev: true
+
/semver/5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
@@ -5339,6 +6853,16 @@ packages:
resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=}
dev: true
+ /set-value/2.0.1:
+ resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 2.0.1
+ is-extendable: 0.1.1
+ is-plain-object: 2.0.4
+ split-string: 3.1.0
+ dev: true
+
/shebang-command/2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -5376,11 +6900,52 @@ packages:
is-fullwidth-code-point: 3.0.0
dev: true
+ /snapdragon-node/2.1.1:
+ resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 1.0.0
+ isobject: 3.0.1
+ snapdragon-util: 3.0.1
+ dev: true
+
+ /snapdragon-util/3.0.1:
+ resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /snapdragon/0.8.2:
+ resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ base: 0.11.2
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
+ dev: true
+
/source-map-js/1.0.1:
resolution: {integrity: sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==}
engines: {node: '>=0.10.0'}
dev: true
+ /source-map-resolve/0.5.3:
+ resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
+ deprecated: See https://github.com/lydell/source-map-resolve#deprecated
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.0
+ resolve-url: 0.2.1
+ source-map-url: 0.4.1
+ urix: 0.1.0
+ dev: true
+
/source-map-support/0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
@@ -5390,6 +6955,7 @@ packages:
/source-map-url/0.4.1:
resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
+ deprecated: See https://github.com/lydell/source-map-url#deprecated
dev: true
/source-map/0.5.7:
@@ -5418,6 +6984,11 @@ packages:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
dev: true
+ /sparkles/1.0.1:
+ resolution: {integrity: sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==}
+ engines: {node: '>= 0.10'}
+ dev: true
+
/spawn-command/0.0.2-1:
resolution: {integrity: sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=}
dev: true
@@ -5449,10 +7020,46 @@ packages:
hasBin: true
dev: true
+ /split-string/3.1.0:
+ resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 3.0.2
+ dev: true
+
+ /stack-trace/0.0.10:
+ resolution: {integrity: sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=}
+ dev: true
+
/stackframe/1.2.0:
resolution: {integrity: sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==}
dev: false
+ /static-extend/0.1.2:
+ resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 0.2.5
+ object-copy: 0.1.0
+ dev: true
+
+ /stream-exhaust/1.0.2:
+ resolution: {integrity: sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==}
+ dev: true
+
+ /stream-shift/1.0.1:
+ resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
+ dev: true
+
+ /string-width/1.0.2:
+ resolution: {integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ code-point-at: 1.1.0
+ is-fullwidth-code-point: 1.0.0
+ strip-ansi: 3.0.1
+ dev: true
+
/string-width/4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
@@ -5489,6 +7096,12 @@ packages:
define-properties: 1.1.3
dev: true
+ /string_decoder/1.1.1:
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: true
+
/stringify-object/3.3.0:
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
engines: {node: '>=4'}
@@ -5512,6 +7125,13 @@ packages:
ansi-regex: 5.0.1
dev: true
+ /strip-bom/2.0.0:
+ resolution: {integrity: sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-utf8: 0.2.1
+ dev: true
+
/strip-bom/3.0.0:
resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
engines: {node: '>=4'}
@@ -5703,6 +7323,13 @@ packages:
engines: {node: '>= 0.4'}
dev: true
+ /sver-compat/1.5.0:
+ resolution: {integrity: sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=}
+ dependencies:
+ es6-iterator: 2.0.3
+ es6-symbol: 3.1.3
+ dev: true
+
/svg-tags/1.0.0:
resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=}
dev: true
@@ -5753,11 +7380,53 @@ packages:
resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
dev: true
+ /through2-filter/3.0.0:
+ resolution: {integrity: sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==}
+ dependencies:
+ through2: 2.0.5
+ xtend: 4.0.2
+ dev: true
+
+ /through2/2.0.5:
+ resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
+ dependencies:
+ readable-stream: 2.3.7
+ xtend: 4.0.2
+ dev: true
+
+ /time-stamp/1.1.0:
+ resolution: {integrity: sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /to-absolute-glob/2.0.2:
+ resolution: {integrity: sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-absolute: 1.0.0
+ is-negated-glob: 1.0.0
+ dev: true
+
/to-fast-properties/2.0.0:
resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
engines: {node: '>=4'}
dev: true
+ /to-object-path/0.3.0:
+ resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /to-regex-range/2.1.1:
+ resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ dev: true
+
/to-regex-range/5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -5765,6 +7434,23 @@ packages:
is-number: 7.0.0
dev: true
+ /to-regex/3.0.2:
+ resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ regex-not: 1.0.2
+ safe-regex: 1.1.0
+ dev: true
+
+ /to-through/2.0.0:
+ resolution: {integrity: sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ through2: 2.0.5
+ dev: true
+
/tr46/1.0.1:
resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=}
dependencies:
@@ -5781,6 +7467,21 @@ packages:
engines: {node: '>=8'}
dev: true
+ /ts-node/8.10.2_typescript@4.5.5:
+ resolution: {integrity: sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=2.7'
+ dependencies:
+ arg: 4.1.3
+ diff: 4.0.2
+ make-error: 1.3.6
+ source-map-support: 0.5.21
+ typescript: 4.5.5
+ yn: 3.1.1
+ dev: true
+
/tsconfig-paths/3.12.0:
resolution: {integrity: sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==}
dependencies:
@@ -5797,14 +7498,14 @@ packages:
/tslib/2.3.1:
resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
- /tsutils/3.21.0_typescript@4.5.4:
+ /tsutils/3.21.0_typescript@4.5.5:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 4.5.4
+ typescript: 4.5.5
dev: true
/type-check/0.4.0:
@@ -5839,6 +7540,14 @@ packages:
engines: {node: '>=8'}
dev: true
+ /type/1.2.0:
+ resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
+ dev: true
+
+ /type/2.5.0:
+ resolution: {integrity: sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==}
+ dev: true
+
/typed-scss-modules/4.1.2_sass@1.47.0:
resolution: {integrity: sha512-D2FZRC+KaKTEqqzeNRdMZnhjQcAOo9xNbGtuDKh2Q7BKJ9fuU2FKhs7z8lrIyt9nh5E3O6YWCXLufqcL8Zqg8w==}
hasBin: true
@@ -5870,8 +7579,12 @@ packages:
is-typedarray: 1.0.0
dev: true
- /typescript/4.5.4:
- resolution: {integrity: sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==}
+ /typedarray/0.0.6:
+ resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=}
+ dev: true
+
+ /typescript/4.5.5:
+ resolution: {integrity: sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==}
engines: {node: '>=4.2.0'}
hasBin: true
@@ -5884,6 +7597,32 @@ packages:
which-boxed-primitive: 1.0.2
dev: true
+ /unc-path-regex/0.1.2:
+ resolution: {integrity: sha1-5z3T17DXxe2G+6xrCufYxqadUPo=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /undertaker-registry/1.0.1:
+ resolution: {integrity: sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=}
+ engines: {node: '>= 0.10'}
+ dev: true
+
+ /undertaker/1.3.0:
+ resolution: {integrity: sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ arr-flatten: 1.1.0
+ arr-map: 2.0.2
+ bach: 1.2.0
+ collection-map: 1.0.0
+ es6-weak-map: 2.0.3
+ fast-levenshtein: 1.1.4
+ last-run: 1.1.1
+ object.defaults: 1.1.0
+ object.reduce: 1.0.1
+ undertaker-registry: 1.0.1
+ dev: true
+
/unicode-canonical-property-names-ecmascript/2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
@@ -5907,6 +7646,23 @@ packages:
engines: {node: '>=4'}
dev: true
+ /union-value/1.0.1:
+ resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ get-value: 2.0.6
+ is-extendable: 0.1.1
+ set-value: 2.0.1
+ dev: true
+
+ /unique-stream/2.3.1:
+ resolution: {integrity: sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==}
+ dependencies:
+ json-stable-stringify-without-jsonify: 1.0.1
+ through2-filter: 3.0.0
+ dev: true
+
/unique-string/2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
@@ -5919,6 +7675,14 @@ packages:
engines: {node: '>= 10.0.0'}
dev: true
+ /unset-value/1.0.0:
+ resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ has-value: 0.3.1
+ isobject: 3.0.1
+ dev: true
+
/upath/1.2.0:
resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
engines: {node: '>=4'}
@@ -5930,6 +7694,16 @@ packages:
punycode: 2.1.1
dev: true
+ /urix/0.1.0:
+ resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=}
+ deprecated: Please see https://github.com/lydell/urix#deprecated
+ dev: true
+
+ /use/3.1.1:
+ resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/util-deprecate/1.0.2:
resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
dev: true
@@ -5944,6 +7718,13 @@ packages:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
dev: true
+ /v8flags/3.2.0:
+ resolution: {integrity: sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ homedir-polyfill: 1.0.3
+ dev: true
+
/validate-npm-package-license/3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
@@ -5951,6 +7732,59 @@ packages:
spdx-expression-parse: 3.0.1
dev: true
+ /value-or-function/3.0.0:
+ resolution: {integrity: sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=}
+ engines: {node: '>= 0.10'}
+ dev: true
+
+ /vinyl-fs/3.0.3:
+ resolution: {integrity: sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ fs-mkdirp-stream: 1.0.0
+ glob-stream: 6.1.0
+ graceful-fs: 4.2.9
+ is-valid-glob: 1.0.0
+ lazystream: 1.0.1
+ lead: 1.0.0
+ object.assign: 4.1.2
+ pumpify: 1.5.1
+ readable-stream: 2.3.7
+ remove-bom-buffer: 3.0.0
+ remove-bom-stream: 1.2.0
+ resolve-options: 1.1.0
+ through2: 2.0.5
+ to-through: 2.0.0
+ value-or-function: 3.0.0
+ vinyl: 2.2.1
+ vinyl-sourcemap: 1.1.0
+ dev: true
+
+ /vinyl-sourcemap/1.1.0:
+ resolution: {integrity: sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ append-buffer: 1.0.2
+ convert-source-map: 1.8.0
+ graceful-fs: 4.2.9
+ normalize-path: 2.1.1
+ now-and-later: 2.0.1
+ remove-bom-buffer: 3.0.0
+ vinyl: 2.2.1
+ dev: true
+
+ /vinyl/2.2.1:
+ resolution: {integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ clone: 2.1.2
+ clone-buffer: 1.0.0
+ clone-stats: 1.0.0
+ cloneable-readable: 1.1.3
+ remove-trailing-separator: 1.1.0
+ replace-ext: 1.0.1
+ dev: true
+
/vite-plugin-pwa/0.11.12_vite@2.7.10:
resolution: {integrity: sha512-XqFmA4y9C4RBb5osSsa26GVwOSwbzf2GNVcT5+06KYYdguqLpuI9FW7iV/akZqg0OUNUpH4tHfme8SnHA4PIXA==}
peerDependencies:
@@ -6016,6 +7850,10 @@ packages:
is-symbol: 1.0.4
dev: true
+ /which-module/1.0.0:
+ resolution: {integrity: sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=}
+ dev: true
+
/which-module/2.0.0:
resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=}
dev: true
@@ -6192,6 +8030,14 @@ packages:
workbox-core: 6.4.2
dev: true
+ /wrap-ansi/2.1.0:
+ resolution: {integrity: sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ string-width: 1.0.2
+ strip-ansi: 3.0.1
+ dev: true
+
/wrap-ansi/6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
@@ -6223,6 +8069,15 @@ packages:
typedarray-to-buffer: 3.1.5
dev: true
+ /xtend/4.0.2:
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
+ engines: {node: '>=0.4'}
+ dev: true
+
+ /y18n/3.2.2:
+ resolution: {integrity: sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==}
+ dev: true
+
/y18n/4.0.3:
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
dev: true
@@ -6254,6 +8109,13 @@ packages:
engines: {node: '>=10'}
dev: true
+ /yargs-parser/5.0.1:
+ resolution: {integrity: sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==}
+ dependencies:
+ camelcase: 3.0.0
+ object.assign: 4.1.2
+ dev: true
+
/yargs/15.4.1:
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
engines: {node: '>=8'}
@@ -6284,6 +8146,29 @@ packages:
yargs-parser: 20.2.9
dev: true
+ /yargs/7.1.2:
+ resolution: {integrity: sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==}
+ dependencies:
+ camelcase: 3.0.0
+ cliui: 3.2.0
+ decamelize: 1.2.0
+ get-caller-file: 1.0.3
+ os-locale: 1.4.0
+ read-pkg-up: 1.0.1
+ require-directory: 2.1.1
+ require-main-filename: 1.0.1
+ set-blocking: 2.0.0
+ string-width: 1.0.2
+ which-module: 1.0.0
+ y18n: 3.2.2
+ yargs-parser: 5.0.1
+ dev: true
+
+ /yn/3.1.1:
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
+ dev: true
+
github.com/devcode-it/openstamanager-vite-config/9399c4a34b39c0a80408db47575794f089465be5_sass@1.47.0:
resolution: {tarball: https://codeload.github.com/devcode-it/openstamanager-vite-config/tar.gz/9399c4a34b39c0a80408db47575794f089465be5}
id: github.com/devcode-it/openstamanager-vite-config/9399c4a34b39c0a80408db47575794f089465be5
diff --git a/tsconfig.json b/tsconfig.json
index 756d77380..6ee2ae0db 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -26,6 +26,12 @@
"exclude": ["**/node_modules", "**/.*/"],
"include": [
"resources/js/**/*",
+ "gulpfile.ts",
"vite.config.ts"
- ]
+ ],
+ "ts-node": {
+ "compilerOptions": {
+ "module": "commonjs"
+ }
+ }
}