elderwand 0.1.75 → 0.1.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Environment/environment.js +2 -2
- package/NoDuplicate/README.md +94 -46
- package/NoDuplicate/no-duplicate.js +43 -25
- package/NoDuplicate/package-lock.json +1420 -0
- package/NoDuplicate/package.json +22 -24
- package/NoDuplicate/tests/characterization.test.js +359 -0
- package/SoftDelete/mongoose-soft-delete.js +60 -8
- package/SoftDelete/package-lock.json +1391 -0
- package/SoftDelete/package.json +20 -22
- package/SoftDelete/tests/characterization.test.js +375 -0
- package/ToolBox/RequestTrackTools.js +0 -14
- package/ToolBox/Routes.js +148 -54
- package/ToolBox/package-lock.json +2533 -0
- package/ToolBox/package.json +23 -7
- package/ToolBox/tests/event-log.test.js +365 -0
- package/ToolBox/tests/helpers.js +241 -0
- package/ToolBox/tests/request-track-tools.test.js +197 -0
- package/ToolBox/tests/routes.test.js +313 -0
- package/package.json +39 -29
- package/threads/Workers/ControllerWorker.js +38 -58
- package/threads/Workers/DBWorker.js +21 -17
- package/threads/Workers/MongoClientWorker.js +36 -24
- package/threads/package-lock.json +2082 -27
- package/threads/package.json +21 -10
- package/threads/tests/CrashWorker.js +17 -0
- package/threads/tests/DuplicatePartialWorker.js +32 -0
- package/threads/tests/EchoWorker.js +13 -0
- package/threads/tests/LargePayloadWorker.js +39 -0
- package/threads/tests/MalformedPartialWorker.js +27 -0
- package/threads/tests/SlowWorker.js +17 -0
- package/threads/tests/StreamingPartialWorker.js +47 -0
- package/threads/tests/bug-reproducers.js +309 -0
- package/threads/tests/locked-interface.js +250 -0
- package/threads/tests/tests.js +529 -46
- package/threads/threads.js +438 -382
- package/utils/package-lock.json +1343 -0
- package/utils/package.json +14 -5
- package/utils/tests/coordination.test.js +247 -0
- package/utils/tests/crypto.test.js +81 -0
- package/utils/tests/helpers.js +111 -0
- package/utils/tests/http.test.js +324 -0
- package/utils/tests/pure.test.js +284 -0
- package/utils/tests/strings.test.js +112 -0
- package/utils/utils.js +37 -17
- package/.idea/.name +0 -1
- package/.idea/encodings.xml +0 -6
- package/.idea/jsLibraryMappings.xml +0 -6
- package/.idea/kle-ElderWand.iml +0 -9
- package/.idea/libraries/kle_ElderWand_node_modules.xml +0 -14
- package/.idea/misc.xml +0 -13
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -793
- package/BoilerPlate/Documents/.editorconfig +0 -10
- package/BoilerPlate/Documents/.sailsrc +0 -5
- package/BoilerPlate/Documents/CONTRIBUTING.md +0 -1
- package/BoilerPlate/Documents/LICENSE.txt +0 -21
- package/BoilerPlate/Documents/Procfile +0 -1
- package/BoilerPlate/Documents/README.md +0 -63
- package/BoilerPlate/Documents/app/controllers/documents.js +0 -45
- package/BoilerPlate/Documents/app/controllers/sectionGrups.js +0 -22
- package/BoilerPlate/Documents/app/controllers/sectionTypes.js +0 -51
- package/BoilerPlate/Documents/app/controllers/sections.js +0 -139
- package/BoilerPlate/Documents/app/controllers/users.js +0 -74
- package/BoilerPlate/Documents/app/models/document.js +0 -105
- package/BoilerPlate/Documents/app/models/section.js +0 -156
- package/BoilerPlate/Documents/app/models/sectionGrup.js +0 -136
- package/BoilerPlate/Documents/app/models/sectionType.js +0 -135
- package/BoilerPlate/Documents/app/models/user.js +0 -202
- package/BoilerPlate/Documents/app/views/404.html +0 -5
- package/BoilerPlate/Documents/app/views/500.html +0 -13
- package/BoilerPlate/Documents/app/views/documentation.html +0 -37
- package/BoilerPlate/Documents/app/views/documents/document.html +0 -11
- package/BoilerPlate/Documents/app/views/documents/edit.html +0 -1
- package/BoilerPlate/Documents/app/views/documents/form.html +0 -43
- package/BoilerPlate/Documents/app/views/documents/index.html +0 -58
- package/BoilerPlate/Documents/app/views/documents/new.html +0 -1
- package/BoilerPlate/Documents/app/views/documents/show.html +0 -2
- package/BoilerPlate/Documents/app/views/includes/foot.html +0 -29
- package/BoilerPlate/Documents/app/views/includes/footer.html +0 -1
- package/BoilerPlate/Documents/app/views/includes/head.html +0 -31
- package/BoilerPlate/Documents/app/views/includes/header.html +0 -47
- package/BoilerPlate/Documents/app/views/includes/messages.html +0 -43
- package/BoilerPlate/Documents/app/views/layouts/default.html +0 -25
- package/BoilerPlate/Documents/app/views/sectionGrups/edit.html +0 -1
- package/BoilerPlate/Documents/app/views/sectionGrups/form.html +0 -47
- package/BoilerPlate/Documents/app/views/sectionGrups/index.html +0 -33
- package/BoilerPlate/Documents/app/views/sectionGrups/new.html +0 -1
- package/BoilerPlate/Documents/app/views/sectionGrups/sectionGrup.html +0 -11
- package/BoilerPlate/Documents/app/views/sectionGrups/show.html +0 -55
- package/BoilerPlate/Documents/app/views/sectionTypes/edit.html +0 -1
- package/BoilerPlate/Documents/app/views/sectionTypes/form.html +0 -42
- package/BoilerPlate/Documents/app/views/sectionTypes/index.html +0 -33
- package/BoilerPlate/Documents/app/views/sectionTypes/new.html +0 -1
- package/BoilerPlate/Documents/app/views/sectionTypes/sectionType.html +0 -17
- package/BoilerPlate/Documents/app/views/sectionTypes/show.html +0 -55
- package/BoilerPlate/Documents/app/views/sections/edit.html +0 -320
- package/BoilerPlate/Documents/app/views/sections/form.html +0 -277
- package/BoilerPlate/Documents/app/views/sections/index.html +0 -40
- package/BoilerPlate/Documents/app/views/sections/liste.html +0 -39
- package/BoilerPlate/Documents/app/views/sections/new.html +0 -1
- package/BoilerPlate/Documents/app/views/sections/section.html +0 -1
- package/BoilerPlate/Documents/app/views/sections/section_Like_blog.html +0 -32
- package/BoilerPlate/Documents/app/views/sections/section_Like_project.html +0 -35
- package/BoilerPlate/Documents/app/views/sections/section_about.html +0 -31
- package/BoilerPlate/Documents/app/views/sections/section_blog.html +0 -47
- package/BoilerPlate/Documents/app/views/sections/section_clients.html +0 -23
- package/BoilerPlate/Documents/app/views/sections/section_contact.html +0 -74
- package/BoilerPlate/Documents/app/views/sections/section_detay1Resimli.html +0 -23
- package/BoilerPlate/Documents/app/views/sections/section_detay1Resimsiz.html +0 -11
- package/BoilerPlate/Documents/app/views/sections/section_features.html +0 -23
- package/BoilerPlate/Documents/app/views/sections/section_funfact.html +0 -19
- package/BoilerPlate/Documents/app/views/sections/section_projects.html +0 -49
- package/BoilerPlate/Documents/app/views/sections/section_sadeceParagraf.html +0 -13
- package/BoilerPlate/Documents/app/views/sections/section_services.html +0 -34
- package/BoilerPlate/Documents/app/views/sections/section_slider.html +0 -195
- package/BoilerPlate/Documents/app/views/sections/section_team.html +0 -42
- package/BoilerPlate/Documents/app/views/sections/section_testimonialSSS.html +0 -51
- package/BoilerPlate/Documents/app/views/sections/section_video_about.html +0 -31
- package/BoilerPlate/Documents/app/views/sections/show.html +0 -55
- package/BoilerPlate/Documents/app/views/users/auth.html +0 -12
- package/BoilerPlate/Documents/app/views/users/index.html +0 -26
- package/BoilerPlate/Documents/app/views/users/login.html +0 -33
- package/BoilerPlate/Documents/app/views/users/show.html +0 -5
- package/BoilerPlate/Documents/app/views/users/signup.html +0 -43
- package/BoilerPlate/Documents/app/views/users/user.html +0 -28
- package/BoilerPlate/Documents/config/config.js +0 -35
- package/BoilerPlate/Documents/config/env/development.js +0 -53
- package/BoilerPlate/Documents/config/env/env.json +0 -12
- package/BoilerPlate/Documents/config/env/production.js +0 -33
- package/BoilerPlate/Documents/config/env/test.js +0 -33
- package/BoilerPlate/Documents/config/express.js +0 -124
- package/BoilerPlate/Documents/config/imager.js +0 -36
- package/BoilerPlate/Documents/config/middlewares/authorization.js +0 -55
- package/BoilerPlate/Documents/config/passport/facebook.js +0 -43
- package/BoilerPlate/Documents/config/passport/github.js +0 -43
- package/BoilerPlate/Documents/config/passport/google.js +0 -43
- package/BoilerPlate/Documents/config/passport/linkedin.js +0 -44
- package/BoilerPlate/Documents/config/passport/local.js +0 -37
- package/BoilerPlate/Documents/config/passport/twitter.js +0 -42
- package/BoilerPlate/Documents/config/passport.js +0 -40
- package/BoilerPlate/Documents/config/routes.js +0 -104
- package/BoilerPlate/Documents/lib/utils.js +0 -79
- package/BoilerPlate/Documents/nodemon.json +0 -5
- package/BoilerPlate/Documents/package-lock.json +0 -8993
- package/BoilerPlate/Documents/package.json +0 -49
- package/BoilerPlate/Documents/public/css/TheDocs.min.css +0 -1
- package/BoilerPlate/Documents/public/css/custom.css +0 -102
- package/BoilerPlate/Documents/public/css/skin/skin-blue.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-blue.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-blue.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-brown.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-brown.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-brown.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-cyan.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-cyan.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-cyan.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-dark.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-dark.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-dark.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-gray.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-gray.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-gray.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-green.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-green.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-green.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-orange.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-orange.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-orange.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-pink.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-pink.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-pink.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-purple.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-purple.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-purple.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-red.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-red.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-red.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-teal.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-teal.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-teal.min.css +0 -1
- package/BoilerPlate/Documents/public/css/skin/skin-yellow.css +0 -71
- package/BoilerPlate/Documents/public/css/skin/skin-yellow.css.map +0 -10
- package/BoilerPlate/Documents/public/css/skin/skin-yellow.min.css +0 -1
- package/BoilerPlate/Documents/public/css/theDocs/_alerts.scss +0 -49
- package/BoilerPlate/Documents/public/css/theDocs/_banner.scss +0 -225
- package/BoilerPlate/Documents/public/css/theDocs/_blog.scss +0 -240
- package/BoilerPlate/Documents/public/css/theDocs/_breadcrumb.scss +0 -10
- package/BoilerPlate/Documents/public/css/theDocs/_buttons.scss +0 -143
- package/BoilerPlate/Documents/public/css/theDocs/_carousel.scss +0 -92
- package/BoilerPlate/Documents/public/css/theDocs/_code.scss +0 -372
- package/BoilerPlate/Documents/public/css/theDocs/_color.scss +0 -38
- package/BoilerPlate/Documents/public/css/theDocs/_content.scss +0 -108
- package/BoilerPlate/Documents/public/css/theDocs/_faq.scss +0 -82
- package/BoilerPlate/Documents/public/css/theDocs/_files.scss +0 -137
- package/BoilerPlate/Documents/public/css/theDocs/_footer.scss +0 -82
- package/BoilerPlate/Documents/public/css/theDocs/_form.scss +0 -24
- package/BoilerPlate/Documents/public/css/theDocs/_header.scss +0 -374
- package/BoilerPlate/Documents/public/css/theDocs/_jumbotron.scss +0 -150
- package/BoilerPlate/Documents/public/css/theDocs/_labels.scss +0 -23
- package/BoilerPlate/Documents/public/css/theDocs/_media.scss +0 -24
- package/BoilerPlate/Documents/public/css/theDocs/_mixins.scss +0 -66
- package/BoilerPlate/Documents/public/css/theDocs/_pagination.scss +0 -75
- package/BoilerPlate/Documents/public/css/theDocs/_promo.scss +0 -112
- package/BoilerPlate/Documents/public/css/theDocs/_requirements.scss +0 -53
- package/BoilerPlate/Documents/public/css/theDocs/_sidebar.scss +0 -666
- package/BoilerPlate/Documents/public/css/theDocs/_step.scss +0 -161
- package/BoilerPlate/Documents/public/css/theDocs/_tab.scss +0 -105
- package/BoilerPlate/Documents/public/css/theDocs/_tables.scss +0 -106
- package/BoilerPlate/Documents/public/css/theDocs/_toc.scss +0 -78
- package/BoilerPlate/Documents/public/css/theDocs/_typography.scss +0 -282
- package/BoilerPlate/Documents/public/css/theDocs/_variables.scss +0 -98
- package/BoilerPlate/Documents/public/css/theDocs/_views.scss +0 -215
- package/BoilerPlate/Documents/public/css/theDocs/skins/_skin.scss +0 -76
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-blue.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-brown.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-cyan.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-dark.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-gray.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-green.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-orange.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-pink.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-purple.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-red.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-teal.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs/skins/skin-yellow.scss +0 -3
- package/BoilerPlate/Documents/public/css/theDocs.all.min.css +0 -24
- package/BoilerPlate/Documents/public/css/theDocs.css +0 -3945
- package/BoilerPlate/Documents/public/css/theDocs.css.map +0 -38
- package/BoilerPlate/Documents/public/css/theDocs.scss +0 -70
- package/BoilerPlate/Documents/public/fonts/FontAwesome.otf +0 -0
- package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.eot +0 -0
- package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.svg +0 -2671
- package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.ttf +0 -0
- package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.woff +0 -0
- package/BoilerPlate/Documents/public/fonts/fontawesome-webfont.woff2 +0 -0
- package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.eot +0 -0
- package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.svg +0 -288
- package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.woff +0 -0
- package/BoilerPlate/Documents/public/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/BoilerPlate/Documents/public/img/apple-touch-icon-114x114.png +0 -0
- package/BoilerPlate/Documents/public/img/apple-touch-icon-72x72.png +0 -0
- package/BoilerPlate/Documents/public/img/apple-touch-icon.png +0 -0
- package/BoilerPlate/Documents/public/img/arrow-circle-down.svg +0 -1
- package/BoilerPlate/Documents/public/img/arrow-circle-right.svg +0 -1
- package/BoilerPlate/Documents/public/img/atlassian.svg +0 -1
- package/BoilerPlate/Documents/public/img/avatar-1.jpg +0 -0
- package/BoilerPlate/Documents/public/img/banner-default.png +0 -0
- package/BoilerPlate/Documents/public/img/banner-full-height.png +0 -0
- package/BoilerPlate/Documents/public/img/banner-lg.png +0 -0
- package/BoilerPlate/Documents/public/img/banner-sample1.png +0 -0
- package/BoilerPlate/Documents/public/img/banner-sample2.png +0 -0
- package/BoilerPlate/Documents/public/img/banner-sample3.png +0 -0
- package/BoilerPlate/Documents/public/img/banner-sm.png +0 -0
- package/BoilerPlate/Documents/public/img/banner.jpg +0 -0
- package/BoilerPlate/Documents/public/img/banner1.jpg +0 -0
- package/BoilerPlate/Documents/public/img/banner2.jpg +0 -0
- package/BoilerPlate/Documents/public/img/banner3.jpg +0 -0
- package/BoilerPlate/Documents/public/img/banner4.png +0 -0
- package/BoilerPlate/Documents/public/img/banner5.png +0 -0
- package/BoilerPlate/Documents/public/img/check-circle.svg +0 -1
- package/BoilerPlate/Documents/public/img/chevron-circle-right.svg +0 -1
- package/BoilerPlate/Documents/public/img/circle-with-minus.svg +0 -1
- package/BoilerPlate/Documents/public/img/circle-with-plus.svg +0 -1
- package/BoilerPlate/Documents/public/img/cloud.svg +0 -1
- package/BoilerPlate/Documents/public/img/conference-image-1.jpg +0 -0
- package/BoilerPlate/Documents/public/img/conference-image-2.jpg +0 -0
- package/BoilerPlate/Documents/public/img/conference-image-3.jpg +0 -0
- package/BoilerPlate/Documents/public/img/edward.jpg +0 -0
- package/BoilerPlate/Documents/public/img/elderwand-logo.png +0 -0
- package/BoilerPlate/Documents/public/img/email.svg +0 -1
- package/BoilerPlate/Documents/public/img/envato.svg +0 -1
- package/BoilerPlate/Documents/public/img/facebook.svg +0 -1
- package/BoilerPlate/Documents/public/img/favicon.png +0 -0
- package/BoilerPlate/Documents/public/img/heart.svg +0 -1
- package/BoilerPlate/Documents/public/img/images.svg +0 -1
- package/BoilerPlate/Documents/public/img/index.png +0 -0
- package/BoilerPlate/Documents/public/img/jacob.jpg +0 -0
- package/BoilerPlate/Documents/public/img/jquery.svg +0 -1
- package/BoilerPlate/Documents/public/img/jumbotron-bg.png +0 -0
- package/BoilerPlate/Documents/public/img/layout-single1.png +0 -0
- package/BoilerPlate/Documents/public/img/layout-single2.png +0 -0
- package/BoilerPlate/Documents/public/img/layout-single3.png +0 -0
- package/BoilerPlate/Documents/public/img/location-pin.svg +0 -1
- package/BoilerPlate/Documents/public/img/lucy.jpg +0 -0
- package/BoilerPlate/Documents/public/img/mamtas-logo-simple.png +0 -0
- package/BoilerPlate/Documents/public/img/music.svg +0 -1
- package/BoilerPlate/Documents/public/img/nathan.jpg +0 -0
- package/BoilerPlate/Documents/public/img/navbar-dark.png +0 -0
- package/BoilerPlate/Documents/public/img/navbar-default.png +0 -0
- package/BoilerPlate/Documents/public/img/navbar-fullwidth.png +0 -0
- package/BoilerPlate/Documents/public/img/navbar-lg.png +0 -0
- package/BoilerPlate/Documents/public/img/navbar-light.png +0 -0
- package/BoilerPlate/Documents/public/img/navbar-sm.png +0 -0
- package/BoilerPlate/Documents/public/img/phone.svg +0 -1
- package/BoilerPlate/Documents/public/img/placeholder-1900.png +0 -0
- package/BoilerPlate/Documents/public/img/placeholder.png +0 -0
- package/BoilerPlate/Documents/public/img/sidebar-default.png +0 -0
- package/BoilerPlate/Documents/public/img/sidebar-icon.png +0 -0
- package/BoilerPlate/Documents/public/img/sidebar-line.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-blue.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-brown.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-cyan.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-dark.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-default.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-gray.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-green.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-orange.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-pink.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-purple.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-red.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-teal.png +0 -0
- package/BoilerPlate/Documents/public/img/skin-yellow.png +0 -0
- package/BoilerPlate/Documents/public/img/skype.svg +0 -1
- package/BoilerPlate/Documents/public/img/step1.png +0 -0
- package/BoilerPlate/Documents/public/img/step2.png +0 -0
- package/BoilerPlate/Documents/public/img/step3.png +0 -0
- package/BoilerPlate/Documents/public/img/step4.png +0 -0
- package/BoilerPlate/Documents/public/img/tumblr.svg +0 -1
- package/BoilerPlate/Documents/public/img/twitter.svg +0 -1
- package/BoilerPlate/Documents/public/img/video-dawn.mp4 +0 -0
- package/BoilerPlate/Documents/public/img/video.svg +0 -1
- package/BoilerPlate/Documents/public/js/custom.js +0 -26
- package/BoilerPlate/Documents/public/js/default.js +0 -1
- package/BoilerPlate/Documents/public/js/theDocs.all.min.js +0 -102
- package/BoilerPlate/Documents/public/js/theDocs.js +0 -482
- package/BoilerPlate/Documents/public/js/theDocs.min.js +0 -6
- package/BoilerPlate/Documents/public/js/vendor/bootstrap.carousel.js +0 -1
- package/BoilerPlate/Documents/public/js/vendor/bootstrap.collapse.js +0 -1
- package/BoilerPlate/Documents/public/js/vendor/bootstrap.dropdown.js +0 -1
- package/BoilerPlate/Documents/public/js/vendor/bootstrap.tab.js +0 -1
- package/BoilerPlate/Documents/public/js/vendor/bootstrap.transition.js +0 -1
- package/BoilerPlate/Documents/public/js/vendor/jquery-1.11.3.min.js +0 -4
- package/BoilerPlate/Documents/public/js/vendor/jquery.drawsvg.js +0 -1
- package/BoilerPlate/Documents/public/js/vendor/jquery.mobile.custom.min.js +0 -1
- package/BoilerPlate/Documents/public/js/vendor/webfontloader.js +0 -1
- package/BoilerPlate/Documents/public/sample.html +0 -530
- package/BoilerPlate/Documents/public/style.css +0 -10
- package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap-theme.css +0 -587
- package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap-theme.css.map +0 -1
- package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap-theme.min.css +0 -6
- package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap-theme.min.css.map +0 -1
- package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap.css +0 -6757
- package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap.css.map +0 -1
- package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap.min.css +0 -6
- package/BoilerPlate/Documents/public/vendors/bootstrap/css/bootstrap.min.css.map +0 -1
- package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.svg +0 -288
- package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- package/BoilerPlate/Documents/public/vendors/bootstrap/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/BoilerPlate/Documents/public/vendors/bootstrap/js/bootstrap.js +0 -2377
- package/BoilerPlate/Documents/public/vendors/bootstrap/js/bootstrap.min.js +0 -7
- package/BoilerPlate/Documents/public/vendors/bootstrap/js/npm.js +0 -13
- package/BoilerPlate/Documents/public/vendors/clipboard.js/clipboard.js +0 -778
- package/BoilerPlate/Documents/public/vendors/clipboard.js/clipboard.min.js +0 -7
- package/BoilerPlate/Documents/public/vendors/fitvids/jquery.fitvids.js +0 -11
- package/BoilerPlate/Documents/public/vendors/font-awesome/css/font-awesome.css +0 -2337
- package/BoilerPlate/Documents/public/vendors/font-awesome/css/font-awesome.min.css +0 -4
- package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/FontAwesome.otf +0 -0
- package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.svg +0 -2671
- package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- package/BoilerPlate/Documents/public/vendors/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/animated.less +0 -34
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/bordered-pulled.less +0 -25
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/core.less +0 -12
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/fixed-width.less +0 -6
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/font-awesome.less +0 -18
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/icons.less +0 -789
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/larger.less +0 -13
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/list.less +0 -19
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/mixins.less +0 -60
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/path.less +0 -15
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/rotated-flipped.less +0 -20
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/screen-reader.less +0 -5
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/stacked.less +0 -20
- package/BoilerPlate/Documents/public/vendors/font-awesome/less/variables.less +0 -800
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_animated.scss +0 -34
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_bordered-pulled.scss +0 -25
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_core.scss +0 -12
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_fixed-width.scss +0 -6
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_icons.scss +0 -789
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_larger.scss +0 -13
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_list.scss +0 -19
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_mixins.scss +0 -60
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_path.scss +0 -15
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_rotated-flipped.scss +0 -20
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_screen-reader.scss +0 -5
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_stacked.scss +0 -20
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/_variables.scss +0 -800
- package/BoilerPlate/Documents/public/vendors/font-awesome/scss/font-awesome.scss +0 -18
- package/BoilerPlate/Documents/public/vendors/jquery/jquery.min.js +0 -4
- package/BoilerPlate/Documents/public/vendors/lity/lity.css +0 -200
- package/BoilerPlate/Documents/public/vendors/lity/lity.js +0 -637
- package/BoilerPlate/Documents/public/vendors/lity/lity.min.css +0 -3
- package/BoilerPlate/Documents/public/vendors/lity/lity.min.js +0 -4
- package/BoilerPlate/Documents/public/vendors/matchHeight.min.js +0 -11
- package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/css/perfect-scrollbar.css +0 -113
- package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/css/perfect-scrollbar.min.css +0 -2
- package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/js/perfect-scrollbar.jquery.js +0 -1580
- package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/js/perfect-scrollbar.jquery.min.js +0 -2
- package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/js/perfect-scrollbar.js +0 -1553
- package/BoilerPlate/Documents/public/vendors/perfect-scrollbar/js/perfect-scrollbar.min.js +0 -2
- package/BoilerPlate/Documents/public/vendors/prism/prism.css +0 -7
- package/BoilerPlate/Documents/public/vendors/prism/prism.js +0 -54
- package/BoilerPlate/Documents/server.js +0 -63
- package/BoilerPlate/Documents/tempUploads/068f2b77c0e0723b97909b2ffa438fe6.pdf +0 -0
- package/BoilerPlate/Documents/tempUploads/6443f8fd5d507b5a5f76829962fc2dc0.docx +0 -0
- package/BoilerPlate/Documents/tempUploads/7e4560af2cd6cae130bdb79fecaa6437.pdf +0 -0
- package/BoilerPlate/Documents/tempUploads/84b6ad7e0deefc348cfd582c9715ec1d.pdf +0 -0
- package/BoilerPlate/Documents/tempUploads/a894549ed062ada5f48f364a236a7e76.png +0 -0
- package/BoilerPlate/Documents/tempUploads/c2727b94bc909b118b25ae35f0897713.png +0 -0
- package/BoilerPlate/Documents/tempUploads/c588a76c8b0c4b76df2e36bd602a8821.docx +0 -0
- package/BoilerPlate/Documents/tempUploads/d6476c43a03950899e6db91c95dbc8aa.docx +0 -0
- package/BoilerPlate/Documents/tempUploads/dc4ffdc0a703353e0280384afc6ad082.png +0 -0
- package/BoilerPlate/Documents/test/helper.js +0 -27
- package/BoilerPlate/Documents/test/test-articles.js +0 -176
- package/BoilerPlate/Documents/test/test-users.js +0 -106
- package/BoilerPlate/Documents/uploads/section/5ad9bb9853017c217c6673d5/0cb1f166cbb6b46ffc630cb1c86db0a1.png +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9bb9853017c217c6673d5/37fbc499e5eea091ab7215855bf7918b.png +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9bb9853017c217c6673d5/4b0d6e11c87b31cc6c32e18be5a49b6b.pdf +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9bb9853017c217c6673d5/d4248bccecc0f55dd2fe7cd388c4c1ce.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9bbd853017c217c6673d8/7c7b0d7f03359c38e3411ec448bdc746.png +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9bbd853017c217c6673d8/8c7eeb092084ee8349f12ceb7e6dab2d.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9bbd853017c217c6673d8/b512a8558523894f0d9292f39dcd9d82.pdf +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9bc111b67922eb0f547d5/06cdca751d7c5897179af1bb956e13d3.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9bc111b67922eb0f547d5/4fe0695295a41c9e3e5af0d2fd52bbae.png +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9c7ce673a50173865614b/1c68ca7ae23099cd139801766ccec600.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9c7ce673a50173865614b/7d7d49834eea7899d77a29dda1d25bf4.pdf +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9c826673a50173865614e/301398c02f647d1e1804d48233e9e7e0.pdf +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9c826673a50173865614e/c9ca2431eed90529a633f88c6781e686.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9c85f673a501738656153/71b1d92caefe43821426d139e6c931d1.pdf +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9c85f673a501738656153/a0735aa1e0befd14449b26063c112d46.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9ce22f534442218fb8016/31724098865f19fd968d6167736bd388.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9d714f534442218fb801b/a71e1f795a7c2f260ccbd877e9e03b17.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9d755f534442218fb801e/c23154466cfcbb8aa9101509cc990962.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9d816f534442218fb8021/e90f3adde177c831dd96d8fcf2f6bf17.docx +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9d83bf534442218fb8024/11a310205cd7c1b3f0a53cd4a3e1cd91.png +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9d83bf534442218fb8024/4c45d0286d8b0ae23fe1ccfd2d0f6b52.pdf +0 -0
- package/BoilerPlate/Documents/uploads/section/5ad9d83bf534442218fb8024/6dd38b8628ef60ea09e982c375720d94.docx +0 -0
- package/dump.rdb +0 -0
|
@@ -0,0 +1,1420 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "elderwand-mongoose-no-duplicate",
|
|
3
|
+
"version": "0.6.3",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "elderwand-mongoose-no-duplicate",
|
|
9
|
+
"version": "0.6.3",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"async": "~3.2.5",
|
|
13
|
+
"mocha": "^9.2.2",
|
|
14
|
+
"mongoose": "~4.13.21",
|
|
15
|
+
"should": "^13.2.3",
|
|
16
|
+
"sinon": "^14.0.2"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=14"
|
|
20
|
+
},
|
|
21
|
+
"peerDependencies": {
|
|
22
|
+
"mongoose": "~4.13.21"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"node_modules/@sinonjs/commons": {
|
|
26
|
+
"version": "2.0.0",
|
|
27
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz",
|
|
28
|
+
"integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==",
|
|
29
|
+
"dev": true,
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"type-detect": "4.0.8"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"node_modules/@sinonjs/fake-timers": {
|
|
35
|
+
"version": "9.1.2",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz",
|
|
37
|
+
"integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==",
|
|
38
|
+
"dev": true,
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@sinonjs/commons": "^1.7.0"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"node_modules/@sinonjs/fake-timers/node_modules/@sinonjs/commons": {
|
|
44
|
+
"version": "1.8.6",
|
|
45
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
|
|
46
|
+
"integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
|
|
47
|
+
"dev": true,
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"type-detect": "4.0.8"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"node_modules/@sinonjs/samsam": {
|
|
53
|
+
"version": "7.0.1",
|
|
54
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-7.0.1.tgz",
|
|
55
|
+
"integrity": "sha512-zsAk2Jkiq89mhZovB2LLOdTCxJF4hqqTToGP0ASWlhp4I1hqOjcfmZGafXntCN7MDC6yySH0mFHrYtHceOeLmw==",
|
|
56
|
+
"dev": true,
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@sinonjs/commons": "^2.0.0",
|
|
59
|
+
"lodash.get": "^4.4.2",
|
|
60
|
+
"type-detect": "^4.0.8"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"node_modules/@sinonjs/text-encoding": {
|
|
64
|
+
"version": "0.7.3",
|
|
65
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.3.tgz",
|
|
66
|
+
"integrity": "sha512-DE427ROAphMQzU4ENbliGYrBSYPXF+TtLg9S8vzeA+OF4ZKzoDdzfL8sxuMUGS/lgRhM6j1URSk9ghf7Xo1tyA==",
|
|
67
|
+
"deprecated": "Deprecated: no longer maintained and no longer used by Sinon packages. See\n https://github.com/sinonjs/nise/issues/243 for replacement details.",
|
|
68
|
+
"dev": true
|
|
69
|
+
},
|
|
70
|
+
"node_modules/@ungap/promise-all-settled": {
|
|
71
|
+
"version": "1.1.2",
|
|
72
|
+
"resolved": "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz",
|
|
73
|
+
"integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==",
|
|
74
|
+
"dev": true
|
|
75
|
+
},
|
|
76
|
+
"node_modules/ansi-colors": {
|
|
77
|
+
"version": "4.1.1",
|
|
78
|
+
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
|
|
79
|
+
"integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
|
|
80
|
+
"dev": true,
|
|
81
|
+
"engines": {
|
|
82
|
+
"node": ">=6"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"node_modules/ansi-regex": {
|
|
86
|
+
"version": "5.0.1",
|
|
87
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
88
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
89
|
+
"dev": true,
|
|
90
|
+
"engines": {
|
|
91
|
+
"node": ">=8"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"node_modules/ansi-styles": {
|
|
95
|
+
"version": "4.3.0",
|
|
96
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
97
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
98
|
+
"dev": true,
|
|
99
|
+
"dependencies": {
|
|
100
|
+
"color-convert": "^2.0.1"
|
|
101
|
+
},
|
|
102
|
+
"engines": {
|
|
103
|
+
"node": ">=8"
|
|
104
|
+
},
|
|
105
|
+
"funding": {
|
|
106
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"node_modules/anymatch": {
|
|
110
|
+
"version": "3.1.3",
|
|
111
|
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
|
112
|
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
|
113
|
+
"dev": true,
|
|
114
|
+
"dependencies": {
|
|
115
|
+
"normalize-path": "^3.0.0",
|
|
116
|
+
"picomatch": "^2.0.4"
|
|
117
|
+
},
|
|
118
|
+
"engines": {
|
|
119
|
+
"node": ">= 8"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"node_modules/argparse": {
|
|
123
|
+
"version": "2.0.1",
|
|
124
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
125
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
126
|
+
"dev": true
|
|
127
|
+
},
|
|
128
|
+
"node_modules/async": {
|
|
129
|
+
"version": "3.2.6",
|
|
130
|
+
"resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
|
|
131
|
+
"integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
|
|
132
|
+
"dev": true
|
|
133
|
+
},
|
|
134
|
+
"node_modules/balanced-match": {
|
|
135
|
+
"version": "1.0.2",
|
|
136
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
137
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
138
|
+
"dev": true
|
|
139
|
+
},
|
|
140
|
+
"node_modules/binary-extensions": {
|
|
141
|
+
"version": "2.3.0",
|
|
142
|
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
143
|
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
|
144
|
+
"dev": true,
|
|
145
|
+
"engines": {
|
|
146
|
+
"node": ">=8"
|
|
147
|
+
},
|
|
148
|
+
"funding": {
|
|
149
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"node_modules/bluebird": {
|
|
153
|
+
"version": "3.5.0",
|
|
154
|
+
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.0.tgz",
|
|
155
|
+
"integrity": "sha512-3LE8m8bqjGdoxfvf71yhFNrUcwy3NLy00SAo+b6MfJ8l+Bc2DzQ7mUHwX6pjK2AxfgV+YfsjCeVW3T5HLQTBsQ==",
|
|
156
|
+
"dev": true
|
|
157
|
+
},
|
|
158
|
+
"node_modules/brace-expansion": {
|
|
159
|
+
"version": "1.1.15",
|
|
160
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz",
|
|
161
|
+
"integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==",
|
|
162
|
+
"dev": true,
|
|
163
|
+
"dependencies": {
|
|
164
|
+
"balanced-match": "^1.0.0",
|
|
165
|
+
"concat-map": "0.0.1"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"node_modules/braces": {
|
|
169
|
+
"version": "3.0.3",
|
|
170
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
171
|
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
172
|
+
"dev": true,
|
|
173
|
+
"dependencies": {
|
|
174
|
+
"fill-range": "^7.1.1"
|
|
175
|
+
},
|
|
176
|
+
"engines": {
|
|
177
|
+
"node": ">=8"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"node_modules/browser-stdout": {
|
|
181
|
+
"version": "1.3.1",
|
|
182
|
+
"resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
|
|
183
|
+
"integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
|
|
184
|
+
"dev": true
|
|
185
|
+
},
|
|
186
|
+
"node_modules/bson": {
|
|
187
|
+
"version": "1.0.9",
|
|
188
|
+
"resolved": "https://registry.npmjs.org/bson/-/bson-1.0.9.tgz",
|
|
189
|
+
"integrity": "sha512-IQX9/h7WdMBIW/q/++tGd+emQr0XMdeZ6icnT/74Xk9fnabWn+gZgpE+9V+gujL3hhJOoNrnDVY7tWdzc7NUTg==",
|
|
190
|
+
"deprecated": "Fixed a critical issue with BSON serialization documented in CVE-2019-2391, see https://bit.ly/2KcpXdo for more details",
|
|
191
|
+
"dev": true,
|
|
192
|
+
"engines": {
|
|
193
|
+
"node": ">=0.6.19"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"node_modules/buffer-shims": {
|
|
197
|
+
"version": "1.0.0",
|
|
198
|
+
"resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz",
|
|
199
|
+
"integrity": "sha512-Zy8ZXMyxIT6RMTeY7OP/bDndfj6bwCan7SS98CEndS6deHwWPpseeHlwarNcBim+etXnF9HBc1non5JgDaJU1g==",
|
|
200
|
+
"dev": true
|
|
201
|
+
},
|
|
202
|
+
"node_modules/camelcase": {
|
|
203
|
+
"version": "6.3.0",
|
|
204
|
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
|
|
205
|
+
"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
|
|
206
|
+
"dev": true,
|
|
207
|
+
"engines": {
|
|
208
|
+
"node": ">=10"
|
|
209
|
+
},
|
|
210
|
+
"funding": {
|
|
211
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"node_modules/chalk": {
|
|
215
|
+
"version": "4.1.2",
|
|
216
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
217
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
218
|
+
"dev": true,
|
|
219
|
+
"dependencies": {
|
|
220
|
+
"ansi-styles": "^4.1.0",
|
|
221
|
+
"supports-color": "^7.1.0"
|
|
222
|
+
},
|
|
223
|
+
"engines": {
|
|
224
|
+
"node": ">=10"
|
|
225
|
+
},
|
|
226
|
+
"funding": {
|
|
227
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"node_modules/chalk/node_modules/supports-color": {
|
|
231
|
+
"version": "7.2.0",
|
|
232
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
233
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
234
|
+
"dev": true,
|
|
235
|
+
"dependencies": {
|
|
236
|
+
"has-flag": "^4.0.0"
|
|
237
|
+
},
|
|
238
|
+
"engines": {
|
|
239
|
+
"node": ">=8"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"node_modules/chokidar": {
|
|
243
|
+
"version": "3.5.3",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
|
|
245
|
+
"integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
|
|
246
|
+
"dev": true,
|
|
247
|
+
"funding": [
|
|
248
|
+
{
|
|
249
|
+
"type": "individual",
|
|
250
|
+
"url": "https://paulmillr.com/funding/"
|
|
251
|
+
}
|
|
252
|
+
],
|
|
253
|
+
"dependencies": {
|
|
254
|
+
"anymatch": "~3.1.2",
|
|
255
|
+
"braces": "~3.0.2",
|
|
256
|
+
"glob-parent": "~5.1.2",
|
|
257
|
+
"is-binary-path": "~2.1.0",
|
|
258
|
+
"is-glob": "~4.0.1",
|
|
259
|
+
"normalize-path": "~3.0.0",
|
|
260
|
+
"readdirp": "~3.6.0"
|
|
261
|
+
},
|
|
262
|
+
"engines": {
|
|
263
|
+
"node": ">= 8.10.0"
|
|
264
|
+
},
|
|
265
|
+
"optionalDependencies": {
|
|
266
|
+
"fsevents": "~2.3.2"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
"node_modules/cliui": {
|
|
270
|
+
"version": "7.0.4",
|
|
271
|
+
"resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
|
|
272
|
+
"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
|
|
273
|
+
"dev": true,
|
|
274
|
+
"dependencies": {
|
|
275
|
+
"string-width": "^4.2.0",
|
|
276
|
+
"strip-ansi": "^6.0.0",
|
|
277
|
+
"wrap-ansi": "^7.0.0"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"node_modules/color-convert": {
|
|
281
|
+
"version": "2.0.1",
|
|
282
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
283
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
284
|
+
"dev": true,
|
|
285
|
+
"dependencies": {
|
|
286
|
+
"color-name": "~1.1.4"
|
|
287
|
+
},
|
|
288
|
+
"engines": {
|
|
289
|
+
"node": ">=7.0.0"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"node_modules/color-name": {
|
|
293
|
+
"version": "1.1.4",
|
|
294
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
295
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
296
|
+
"dev": true
|
|
297
|
+
},
|
|
298
|
+
"node_modules/concat-map": {
|
|
299
|
+
"version": "0.0.1",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
301
|
+
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
|
|
302
|
+
"dev": true
|
|
303
|
+
},
|
|
304
|
+
"node_modules/core-util-is": {
|
|
305
|
+
"version": "1.0.3",
|
|
306
|
+
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
|
|
307
|
+
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
|
308
|
+
"dev": true
|
|
309
|
+
},
|
|
310
|
+
"node_modules/debug": {
|
|
311
|
+
"version": "4.3.3",
|
|
312
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
|
|
313
|
+
"integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
|
|
314
|
+
"dev": true,
|
|
315
|
+
"dependencies": {
|
|
316
|
+
"ms": "2.1.2"
|
|
317
|
+
},
|
|
318
|
+
"engines": {
|
|
319
|
+
"node": ">=6.0"
|
|
320
|
+
},
|
|
321
|
+
"peerDependenciesMeta": {
|
|
322
|
+
"supports-color": {
|
|
323
|
+
"optional": true
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
"node_modules/debug/node_modules/ms": {
|
|
328
|
+
"version": "2.1.2",
|
|
329
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
|
330
|
+
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
|
|
331
|
+
"dev": true
|
|
332
|
+
},
|
|
333
|
+
"node_modules/decamelize": {
|
|
334
|
+
"version": "4.0.0",
|
|
335
|
+
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz",
|
|
336
|
+
"integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==",
|
|
337
|
+
"dev": true,
|
|
338
|
+
"engines": {
|
|
339
|
+
"node": ">=10"
|
|
340
|
+
},
|
|
341
|
+
"funding": {
|
|
342
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"node_modules/diff": {
|
|
346
|
+
"version": "5.0.0",
|
|
347
|
+
"resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
|
|
348
|
+
"integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==",
|
|
349
|
+
"dev": true,
|
|
350
|
+
"engines": {
|
|
351
|
+
"node": ">=0.3.1"
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"node_modules/emoji-regex": {
|
|
355
|
+
"version": "8.0.0",
|
|
356
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
357
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
358
|
+
"dev": true
|
|
359
|
+
},
|
|
360
|
+
"node_modules/es6-promise": {
|
|
361
|
+
"version": "3.2.1",
|
|
362
|
+
"resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.2.1.tgz",
|
|
363
|
+
"integrity": "sha512-oj4jOSXvWglTsc3wrw86iom3LDPOx1nbipQk+jaG3dy+sMRM6ReSgVr/VlmBuF6lXUrflN9DCcQHeSbAwGUl4g==",
|
|
364
|
+
"dev": true
|
|
365
|
+
},
|
|
366
|
+
"node_modules/escalade": {
|
|
367
|
+
"version": "3.2.0",
|
|
368
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
369
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
370
|
+
"dev": true,
|
|
371
|
+
"engines": {
|
|
372
|
+
"node": ">=6"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"node_modules/escape-string-regexp": {
|
|
376
|
+
"version": "4.0.0",
|
|
377
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
378
|
+
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
|
379
|
+
"dev": true,
|
|
380
|
+
"engines": {
|
|
381
|
+
"node": ">=10"
|
|
382
|
+
},
|
|
383
|
+
"funding": {
|
|
384
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
"node_modules/fill-range": {
|
|
388
|
+
"version": "7.1.1",
|
|
389
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
390
|
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
391
|
+
"dev": true,
|
|
392
|
+
"dependencies": {
|
|
393
|
+
"to-regex-range": "^5.0.1"
|
|
394
|
+
},
|
|
395
|
+
"engines": {
|
|
396
|
+
"node": ">=8"
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
"node_modules/find-up": {
|
|
400
|
+
"version": "5.0.0",
|
|
401
|
+
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
|
|
402
|
+
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
|
|
403
|
+
"dev": true,
|
|
404
|
+
"dependencies": {
|
|
405
|
+
"locate-path": "^6.0.0",
|
|
406
|
+
"path-exists": "^4.0.0"
|
|
407
|
+
},
|
|
408
|
+
"engines": {
|
|
409
|
+
"node": ">=10"
|
|
410
|
+
},
|
|
411
|
+
"funding": {
|
|
412
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"node_modules/flat": {
|
|
416
|
+
"version": "5.0.2",
|
|
417
|
+
"resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
|
|
418
|
+
"integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
|
|
419
|
+
"dev": true,
|
|
420
|
+
"bin": {
|
|
421
|
+
"flat": "cli.js"
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"node_modules/fs.realpath": {
|
|
425
|
+
"version": "1.0.0",
|
|
426
|
+
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
427
|
+
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
|
|
428
|
+
"dev": true
|
|
429
|
+
},
|
|
430
|
+
"node_modules/fsevents": {
|
|
431
|
+
"version": "2.3.3",
|
|
432
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
433
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
434
|
+
"dev": true,
|
|
435
|
+
"hasInstallScript": true,
|
|
436
|
+
"optional": true,
|
|
437
|
+
"os": [
|
|
438
|
+
"darwin"
|
|
439
|
+
],
|
|
440
|
+
"engines": {
|
|
441
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"node_modules/get-caller-file": {
|
|
445
|
+
"version": "2.0.5",
|
|
446
|
+
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
|
447
|
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
|
|
448
|
+
"dev": true,
|
|
449
|
+
"engines": {
|
|
450
|
+
"node": "6.* || 8.* || >= 10.*"
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
"node_modules/glob": {
|
|
454
|
+
"version": "7.2.0",
|
|
455
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
|
|
456
|
+
"integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
|
|
457
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
458
|
+
"dev": true,
|
|
459
|
+
"dependencies": {
|
|
460
|
+
"fs.realpath": "^1.0.0",
|
|
461
|
+
"inflight": "^1.0.4",
|
|
462
|
+
"inherits": "2",
|
|
463
|
+
"minimatch": "^3.0.4",
|
|
464
|
+
"once": "^1.3.0",
|
|
465
|
+
"path-is-absolute": "^1.0.0"
|
|
466
|
+
},
|
|
467
|
+
"engines": {
|
|
468
|
+
"node": "*"
|
|
469
|
+
},
|
|
470
|
+
"funding": {
|
|
471
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"node_modules/glob-parent": {
|
|
475
|
+
"version": "5.1.2",
|
|
476
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
477
|
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
478
|
+
"dev": true,
|
|
479
|
+
"dependencies": {
|
|
480
|
+
"is-glob": "^4.0.1"
|
|
481
|
+
},
|
|
482
|
+
"engines": {
|
|
483
|
+
"node": ">= 6"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"node_modules/glob/node_modules/minimatch": {
|
|
487
|
+
"version": "3.1.5",
|
|
488
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
|
|
489
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
490
|
+
"dev": true,
|
|
491
|
+
"dependencies": {
|
|
492
|
+
"brace-expansion": "^1.1.7"
|
|
493
|
+
},
|
|
494
|
+
"engines": {
|
|
495
|
+
"node": "*"
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
"node_modules/growl": {
|
|
499
|
+
"version": "1.10.5",
|
|
500
|
+
"resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz",
|
|
501
|
+
"integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==",
|
|
502
|
+
"dev": true,
|
|
503
|
+
"engines": {
|
|
504
|
+
"node": ">=4.x"
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"node_modules/has-flag": {
|
|
508
|
+
"version": "4.0.0",
|
|
509
|
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
|
510
|
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
511
|
+
"dev": true,
|
|
512
|
+
"engines": {
|
|
513
|
+
"node": ">=8"
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
"node_modules/he": {
|
|
517
|
+
"version": "1.2.0",
|
|
518
|
+
"resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
|
|
519
|
+
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
|
|
520
|
+
"dev": true,
|
|
521
|
+
"bin": {
|
|
522
|
+
"he": "bin/he"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"node_modules/hooks-fixed": {
|
|
526
|
+
"version": "2.0.2",
|
|
527
|
+
"resolved": "https://registry.npmjs.org/hooks-fixed/-/hooks-fixed-2.0.2.tgz",
|
|
528
|
+
"integrity": "sha512-YurCM4gQSetcrhwEtpQHhQ4M7Zo7poNGqY4kQGeBS6eZtOcT3tnNs01ThFa0jYBByAiYt1MjMjP/YApG0EnAvQ==",
|
|
529
|
+
"dev": true,
|
|
530
|
+
"engines": {
|
|
531
|
+
"node": ">=0.4.0"
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
"node_modules/inflight": {
|
|
535
|
+
"version": "1.0.6",
|
|
536
|
+
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
537
|
+
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
|
|
538
|
+
"deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
|
|
539
|
+
"dev": true,
|
|
540
|
+
"dependencies": {
|
|
541
|
+
"once": "^1.3.0",
|
|
542
|
+
"wrappy": "1"
|
|
543
|
+
}
|
|
544
|
+
},
|
|
545
|
+
"node_modules/inherits": {
|
|
546
|
+
"version": "2.0.4",
|
|
547
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
548
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
549
|
+
"dev": true
|
|
550
|
+
},
|
|
551
|
+
"node_modules/is-binary-path": {
|
|
552
|
+
"version": "2.1.0",
|
|
553
|
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
|
554
|
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
|
555
|
+
"dev": true,
|
|
556
|
+
"dependencies": {
|
|
557
|
+
"binary-extensions": "^2.0.0"
|
|
558
|
+
},
|
|
559
|
+
"engines": {
|
|
560
|
+
"node": ">=8"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"node_modules/is-extglob": {
|
|
564
|
+
"version": "2.1.1",
|
|
565
|
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
566
|
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
567
|
+
"dev": true,
|
|
568
|
+
"engines": {
|
|
569
|
+
"node": ">=0.10.0"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"node_modules/is-fullwidth-code-point": {
|
|
573
|
+
"version": "3.0.0",
|
|
574
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
575
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
576
|
+
"dev": true,
|
|
577
|
+
"engines": {
|
|
578
|
+
"node": ">=8"
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
"node_modules/is-glob": {
|
|
582
|
+
"version": "4.0.3",
|
|
583
|
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
584
|
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
585
|
+
"dev": true,
|
|
586
|
+
"dependencies": {
|
|
587
|
+
"is-extglob": "^2.1.1"
|
|
588
|
+
},
|
|
589
|
+
"engines": {
|
|
590
|
+
"node": ">=0.10.0"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"node_modules/is-number": {
|
|
594
|
+
"version": "7.0.0",
|
|
595
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
596
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
597
|
+
"dev": true,
|
|
598
|
+
"engines": {
|
|
599
|
+
"node": ">=0.12.0"
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
"node_modules/is-plain-obj": {
|
|
603
|
+
"version": "2.1.0",
|
|
604
|
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
|
|
605
|
+
"integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
|
|
606
|
+
"dev": true,
|
|
607
|
+
"engines": {
|
|
608
|
+
"node": ">=8"
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"node_modules/is-unicode-supported": {
|
|
612
|
+
"version": "0.1.0",
|
|
613
|
+
"resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
|
|
614
|
+
"integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
|
|
615
|
+
"dev": true,
|
|
616
|
+
"engines": {
|
|
617
|
+
"node": ">=10"
|
|
618
|
+
},
|
|
619
|
+
"funding": {
|
|
620
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
621
|
+
}
|
|
622
|
+
},
|
|
623
|
+
"node_modules/isarray": {
|
|
624
|
+
"version": "1.0.0",
|
|
625
|
+
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
|
626
|
+
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
|
|
627
|
+
"dev": true
|
|
628
|
+
},
|
|
629
|
+
"node_modules/isexe": {
|
|
630
|
+
"version": "2.0.0",
|
|
631
|
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
632
|
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
633
|
+
"dev": true
|
|
634
|
+
},
|
|
635
|
+
"node_modules/js-yaml": {
|
|
636
|
+
"version": "4.1.0",
|
|
637
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
638
|
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
639
|
+
"dev": true,
|
|
640
|
+
"dependencies": {
|
|
641
|
+
"argparse": "^2.0.1"
|
|
642
|
+
},
|
|
643
|
+
"bin": {
|
|
644
|
+
"js-yaml": "bin/js-yaml.js"
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
"node_modules/just-extend": {
|
|
648
|
+
"version": "6.2.0",
|
|
649
|
+
"resolved": "https://registry.npmjs.org/just-extend/-/just-extend-6.2.0.tgz",
|
|
650
|
+
"integrity": "sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==",
|
|
651
|
+
"dev": true
|
|
652
|
+
},
|
|
653
|
+
"node_modules/kareem": {
|
|
654
|
+
"version": "1.5.0",
|
|
655
|
+
"resolved": "https://registry.npmjs.org/kareem/-/kareem-1.5.0.tgz",
|
|
656
|
+
"integrity": "sha512-DFYc05y1WSs6Ar++MHYRYu7/5r5356WDaKk8tQ8m6rlXD3VLpyG6Np81U78/wWJ4b5hjFXS7HkJNYrs85VypQA==",
|
|
657
|
+
"dev": true
|
|
658
|
+
},
|
|
659
|
+
"node_modules/locate-path": {
|
|
660
|
+
"version": "6.0.0",
|
|
661
|
+
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
|
662
|
+
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
|
|
663
|
+
"dev": true,
|
|
664
|
+
"dependencies": {
|
|
665
|
+
"p-locate": "^5.0.0"
|
|
666
|
+
},
|
|
667
|
+
"engines": {
|
|
668
|
+
"node": ">=10"
|
|
669
|
+
},
|
|
670
|
+
"funding": {
|
|
671
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
672
|
+
}
|
|
673
|
+
},
|
|
674
|
+
"node_modules/lodash": {
|
|
675
|
+
"version": "4.18.1",
|
|
676
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz",
|
|
677
|
+
"integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
|
|
678
|
+
"dev": true
|
|
679
|
+
},
|
|
680
|
+
"node_modules/lodash.get": {
|
|
681
|
+
"version": "4.4.2",
|
|
682
|
+
"resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
|
|
683
|
+
"integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==",
|
|
684
|
+
"deprecated": "This package is deprecated. Use the optional chaining (?.) operator instead.",
|
|
685
|
+
"dev": true
|
|
686
|
+
},
|
|
687
|
+
"node_modules/log-symbols": {
|
|
688
|
+
"version": "4.1.0",
|
|
689
|
+
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
|
|
690
|
+
"integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
|
|
691
|
+
"dev": true,
|
|
692
|
+
"dependencies": {
|
|
693
|
+
"chalk": "^4.1.0",
|
|
694
|
+
"is-unicode-supported": "^0.1.0"
|
|
695
|
+
},
|
|
696
|
+
"engines": {
|
|
697
|
+
"node": ">=10"
|
|
698
|
+
},
|
|
699
|
+
"funding": {
|
|
700
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"node_modules/minimatch": {
|
|
704
|
+
"version": "4.2.1",
|
|
705
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz",
|
|
706
|
+
"integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==",
|
|
707
|
+
"dev": true,
|
|
708
|
+
"dependencies": {
|
|
709
|
+
"brace-expansion": "^1.1.7"
|
|
710
|
+
},
|
|
711
|
+
"engines": {
|
|
712
|
+
"node": ">=10"
|
|
713
|
+
}
|
|
714
|
+
},
|
|
715
|
+
"node_modules/mocha": {
|
|
716
|
+
"version": "9.2.2",
|
|
717
|
+
"resolved": "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz",
|
|
718
|
+
"integrity": "sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g==",
|
|
719
|
+
"dev": true,
|
|
720
|
+
"dependencies": {
|
|
721
|
+
"@ungap/promise-all-settled": "1.1.2",
|
|
722
|
+
"ansi-colors": "4.1.1",
|
|
723
|
+
"browser-stdout": "1.3.1",
|
|
724
|
+
"chokidar": "3.5.3",
|
|
725
|
+
"debug": "4.3.3",
|
|
726
|
+
"diff": "5.0.0",
|
|
727
|
+
"escape-string-regexp": "4.0.0",
|
|
728
|
+
"find-up": "5.0.0",
|
|
729
|
+
"glob": "7.2.0",
|
|
730
|
+
"growl": "1.10.5",
|
|
731
|
+
"he": "1.2.0",
|
|
732
|
+
"js-yaml": "4.1.0",
|
|
733
|
+
"log-symbols": "4.1.0",
|
|
734
|
+
"minimatch": "4.2.1",
|
|
735
|
+
"ms": "2.1.3",
|
|
736
|
+
"nanoid": "3.3.1",
|
|
737
|
+
"serialize-javascript": "6.0.0",
|
|
738
|
+
"strip-json-comments": "3.1.1",
|
|
739
|
+
"supports-color": "8.1.1",
|
|
740
|
+
"which": "2.0.2",
|
|
741
|
+
"workerpool": "6.2.0",
|
|
742
|
+
"yargs": "16.2.0",
|
|
743
|
+
"yargs-parser": "20.2.4",
|
|
744
|
+
"yargs-unparser": "2.0.0"
|
|
745
|
+
},
|
|
746
|
+
"bin": {
|
|
747
|
+
"_mocha": "bin/_mocha",
|
|
748
|
+
"mocha": "bin/mocha"
|
|
749
|
+
},
|
|
750
|
+
"engines": {
|
|
751
|
+
"node": ">= 12.0.0"
|
|
752
|
+
},
|
|
753
|
+
"funding": {
|
|
754
|
+
"type": "opencollective",
|
|
755
|
+
"url": "https://opencollective.com/mochajs"
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
"node_modules/mongodb": {
|
|
759
|
+
"version": "2.2.34",
|
|
760
|
+
"resolved": "https://registry.npmjs.org/mongodb/-/mongodb-2.2.34.tgz",
|
|
761
|
+
"integrity": "sha512-JNW3PxPSMaG5Qu1yWb/BwVmAd5/d6sdX0Fy8Av3pAF3KbwDRqormEGIJMoDjiV/JtOR2zRSPk4xHgZxwI/bAnQ==",
|
|
762
|
+
"dev": true,
|
|
763
|
+
"dependencies": {
|
|
764
|
+
"es6-promise": "3.2.1",
|
|
765
|
+
"mongodb-core": "2.1.18",
|
|
766
|
+
"readable-stream": "2.2.7"
|
|
767
|
+
},
|
|
768
|
+
"engines": {
|
|
769
|
+
"node": ">=0.10.3"
|
|
770
|
+
}
|
|
771
|
+
},
|
|
772
|
+
"node_modules/mongodb-core": {
|
|
773
|
+
"version": "2.1.18",
|
|
774
|
+
"resolved": "https://registry.npmjs.org/mongodb-core/-/mongodb-core-2.1.18.tgz",
|
|
775
|
+
"integrity": "sha512-i+PcaD5a5xF6gc2ujgvQDORV2iSRfoJ+IeBWUZrq37KRMJp+3G79/gPRXVkj/3CEGCPIDDYoTkaRgNpxJDrKBA==",
|
|
776
|
+
"dev": true,
|
|
777
|
+
"dependencies": {
|
|
778
|
+
"bson": "~1.0.4",
|
|
779
|
+
"require_optional": "~1.0.0"
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"node_modules/mongoose": {
|
|
783
|
+
"version": "4.13.21",
|
|
784
|
+
"resolved": "https://registry.npmjs.org/mongoose/-/mongoose-4.13.21.tgz",
|
|
785
|
+
"integrity": "sha512-0VZtQu1rSUPwUtbb7zh6CymI0nNkVInOIDbtWNlna070qnUO14On8PpSVSwlx3gwmkKL2OkP4ioCj5YHC6trMg==",
|
|
786
|
+
"dev": true,
|
|
787
|
+
"dependencies": {
|
|
788
|
+
"async": "2.6.0",
|
|
789
|
+
"bson": "~1.0.4",
|
|
790
|
+
"hooks-fixed": "2.0.2",
|
|
791
|
+
"kareem": "1.5.0",
|
|
792
|
+
"lodash.get": "4.4.2",
|
|
793
|
+
"mongodb": "2.2.34",
|
|
794
|
+
"mpath": "0.5.1",
|
|
795
|
+
"mpromise": "0.5.5",
|
|
796
|
+
"mquery": "2.3.3",
|
|
797
|
+
"ms": "2.0.0",
|
|
798
|
+
"muri": "1.3.0",
|
|
799
|
+
"regexp-clone": "0.0.1",
|
|
800
|
+
"sliced": "1.0.1"
|
|
801
|
+
},
|
|
802
|
+
"engines": {
|
|
803
|
+
"node": ">=0.6.19"
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
"node_modules/mongoose/node_modules/async": {
|
|
807
|
+
"version": "2.6.0",
|
|
808
|
+
"resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz",
|
|
809
|
+
"integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==",
|
|
810
|
+
"dev": true,
|
|
811
|
+
"dependencies": {
|
|
812
|
+
"lodash": "^4.14.0"
|
|
813
|
+
}
|
|
814
|
+
},
|
|
815
|
+
"node_modules/mongoose/node_modules/ms": {
|
|
816
|
+
"version": "2.0.0",
|
|
817
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
818
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
819
|
+
"dev": true
|
|
820
|
+
},
|
|
821
|
+
"node_modules/mpath": {
|
|
822
|
+
"version": "0.5.1",
|
|
823
|
+
"resolved": "https://registry.npmjs.org/mpath/-/mpath-0.5.1.tgz",
|
|
824
|
+
"integrity": "sha512-H8OVQ+QEz82sch4wbODFOz+3YQ61FYz/z3eJ5pIdbMEaUzDqA268Wd+Vt4Paw9TJfvDgVKaayC0gBzMIw2jhsg==",
|
|
825
|
+
"dev": true,
|
|
826
|
+
"engines": {
|
|
827
|
+
"node": ">=4.0.0"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"node_modules/mpromise": {
|
|
831
|
+
"version": "0.5.5",
|
|
832
|
+
"resolved": "https://registry.npmjs.org/mpromise/-/mpromise-0.5.5.tgz",
|
|
833
|
+
"integrity": "sha512-b/IJDqWlRXIW3ZouxIkUYLZFrr4qK/oUEgfVAywuvm77nTdDmY6y57lHxA8kfLnOSM+SbAUN/VvU1RxsGBLkQw==",
|
|
834
|
+
"deprecated": "Unsupported",
|
|
835
|
+
"dev": true
|
|
836
|
+
},
|
|
837
|
+
"node_modules/mquery": {
|
|
838
|
+
"version": "2.3.3",
|
|
839
|
+
"resolved": "https://registry.npmjs.org/mquery/-/mquery-2.3.3.tgz",
|
|
840
|
+
"integrity": "sha512-NC8L14kn+qxJbbJ1gbcEMDxF0sC3sv+1cbRReXXwVvowcwY1y9KoVZFq0ebwARibsadu8lx8nWGvm3V0Pf0ZWQ==",
|
|
841
|
+
"dev": true,
|
|
842
|
+
"dependencies": {
|
|
843
|
+
"bluebird": "3.5.0",
|
|
844
|
+
"debug": "2.6.9",
|
|
845
|
+
"regexp-clone": "0.0.1",
|
|
846
|
+
"sliced": "0.0.5"
|
|
847
|
+
}
|
|
848
|
+
},
|
|
849
|
+
"node_modules/mquery/node_modules/debug": {
|
|
850
|
+
"version": "2.6.9",
|
|
851
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
|
852
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
|
853
|
+
"dev": true,
|
|
854
|
+
"dependencies": {
|
|
855
|
+
"ms": "2.0.0"
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
"node_modules/mquery/node_modules/ms": {
|
|
859
|
+
"version": "2.0.0",
|
|
860
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
861
|
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
862
|
+
"dev": true
|
|
863
|
+
},
|
|
864
|
+
"node_modules/mquery/node_modules/sliced": {
|
|
865
|
+
"version": "0.0.5",
|
|
866
|
+
"resolved": "https://registry.npmjs.org/sliced/-/sliced-0.0.5.tgz",
|
|
867
|
+
"integrity": "sha512-9bYT917D6H3+q8GlQBJmLVz3bc4OeVGfZ2BB12wvLnluTGfG6/8UdOUbKJDW1EEx9SZMDbjnatkau5/XcUeyOw==",
|
|
868
|
+
"deprecated": "Unsupported",
|
|
869
|
+
"dev": true
|
|
870
|
+
},
|
|
871
|
+
"node_modules/ms": {
|
|
872
|
+
"version": "2.1.3",
|
|
873
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
874
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
875
|
+
"dev": true
|
|
876
|
+
},
|
|
877
|
+
"node_modules/muri": {
|
|
878
|
+
"version": "1.3.0",
|
|
879
|
+
"resolved": "https://registry.npmjs.org/muri/-/muri-1.3.0.tgz",
|
|
880
|
+
"integrity": "sha512-FiaFwKl864onHFFUV/a2szAl7X0fxVlSKNdhTf+BM8i8goEgYut8u5P9MqQqIYwvaMxjzVESsoEm/2kfkFH1rg==",
|
|
881
|
+
"deprecated": "This package is no longer supported. Please use https://www.npmjs.com/package/mongodb-connection-string-url",
|
|
882
|
+
"dev": true
|
|
883
|
+
},
|
|
884
|
+
"node_modules/nanoid": {
|
|
885
|
+
"version": "3.3.1",
|
|
886
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz",
|
|
887
|
+
"integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==",
|
|
888
|
+
"dev": true,
|
|
889
|
+
"bin": {
|
|
890
|
+
"nanoid": "bin/nanoid.cjs"
|
|
891
|
+
},
|
|
892
|
+
"engines": {
|
|
893
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
894
|
+
}
|
|
895
|
+
},
|
|
896
|
+
"node_modules/nise": {
|
|
897
|
+
"version": "5.1.9",
|
|
898
|
+
"resolved": "https://registry.npmjs.org/nise/-/nise-5.1.9.tgz",
|
|
899
|
+
"integrity": "sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==",
|
|
900
|
+
"dev": true,
|
|
901
|
+
"dependencies": {
|
|
902
|
+
"@sinonjs/commons": "^3.0.0",
|
|
903
|
+
"@sinonjs/fake-timers": "^11.2.2",
|
|
904
|
+
"@sinonjs/text-encoding": "^0.7.2",
|
|
905
|
+
"just-extend": "^6.2.0",
|
|
906
|
+
"path-to-regexp": "^6.2.1"
|
|
907
|
+
}
|
|
908
|
+
},
|
|
909
|
+
"node_modules/nise/node_modules/@sinonjs/commons": {
|
|
910
|
+
"version": "3.0.1",
|
|
911
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz",
|
|
912
|
+
"integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==",
|
|
913
|
+
"dev": true,
|
|
914
|
+
"dependencies": {
|
|
915
|
+
"type-detect": "4.0.8"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"node_modules/nise/node_modules/@sinonjs/fake-timers": {
|
|
919
|
+
"version": "11.3.1",
|
|
920
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-11.3.1.tgz",
|
|
921
|
+
"integrity": "sha512-EVJO7nW5M/F5Tur0Rf2z/QoMo+1Ia963RiMtapiQrEWvY0iBUvADo8Beegwjpnle5BHkyHuoxSTW3jF43H1XRA==",
|
|
922
|
+
"dev": true,
|
|
923
|
+
"dependencies": {
|
|
924
|
+
"@sinonjs/commons": "^3.0.1"
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
"node_modules/normalize-path": {
|
|
928
|
+
"version": "3.0.0",
|
|
929
|
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
930
|
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
931
|
+
"dev": true,
|
|
932
|
+
"engines": {
|
|
933
|
+
"node": ">=0.10.0"
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
"node_modules/once": {
|
|
937
|
+
"version": "1.4.0",
|
|
938
|
+
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
939
|
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
940
|
+
"dev": true,
|
|
941
|
+
"dependencies": {
|
|
942
|
+
"wrappy": "1"
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
"node_modules/p-limit": {
|
|
946
|
+
"version": "3.1.0",
|
|
947
|
+
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
|
|
948
|
+
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
|
|
949
|
+
"dev": true,
|
|
950
|
+
"dependencies": {
|
|
951
|
+
"yocto-queue": "^0.1.0"
|
|
952
|
+
},
|
|
953
|
+
"engines": {
|
|
954
|
+
"node": ">=10"
|
|
955
|
+
},
|
|
956
|
+
"funding": {
|
|
957
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
"node_modules/p-locate": {
|
|
961
|
+
"version": "5.0.0",
|
|
962
|
+
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
|
|
963
|
+
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
|
|
964
|
+
"dev": true,
|
|
965
|
+
"dependencies": {
|
|
966
|
+
"p-limit": "^3.0.2"
|
|
967
|
+
},
|
|
968
|
+
"engines": {
|
|
969
|
+
"node": ">=10"
|
|
970
|
+
},
|
|
971
|
+
"funding": {
|
|
972
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
973
|
+
}
|
|
974
|
+
},
|
|
975
|
+
"node_modules/path-exists": {
|
|
976
|
+
"version": "4.0.0",
|
|
977
|
+
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
|
978
|
+
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
|
979
|
+
"dev": true,
|
|
980
|
+
"engines": {
|
|
981
|
+
"node": ">=8"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
"node_modules/path-is-absolute": {
|
|
985
|
+
"version": "1.0.1",
|
|
986
|
+
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
987
|
+
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
|
|
988
|
+
"dev": true,
|
|
989
|
+
"engines": {
|
|
990
|
+
"node": ">=0.10.0"
|
|
991
|
+
}
|
|
992
|
+
},
|
|
993
|
+
"node_modules/path-to-regexp": {
|
|
994
|
+
"version": "6.3.0",
|
|
995
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz",
|
|
996
|
+
"integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==",
|
|
997
|
+
"dev": true
|
|
998
|
+
},
|
|
999
|
+
"node_modules/picomatch": {
|
|
1000
|
+
"version": "2.3.2",
|
|
1001
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
|
|
1002
|
+
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
|
1003
|
+
"dev": true,
|
|
1004
|
+
"engines": {
|
|
1005
|
+
"node": ">=8.6"
|
|
1006
|
+
},
|
|
1007
|
+
"funding": {
|
|
1008
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"node_modules/process-nextick-args": {
|
|
1012
|
+
"version": "1.0.7",
|
|
1013
|
+
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
|
|
1014
|
+
"integrity": "sha512-yN0WQmuCX63LP/TMvAg31nvT6m4vDqJEiiv2CAZqWOGNWutc9DfDk1NPYYmKUFmaVM2UwDowH4u5AHWYP/jxKw==",
|
|
1015
|
+
"dev": true
|
|
1016
|
+
},
|
|
1017
|
+
"node_modules/randombytes": {
|
|
1018
|
+
"version": "2.1.0",
|
|
1019
|
+
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
|
|
1020
|
+
"integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
|
|
1021
|
+
"dev": true,
|
|
1022
|
+
"dependencies": {
|
|
1023
|
+
"safe-buffer": "^5.1.0"
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1026
|
+
"node_modules/readable-stream": {
|
|
1027
|
+
"version": "2.2.7",
|
|
1028
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.7.tgz",
|
|
1029
|
+
"integrity": "sha512-a6ibcfWFhgihuTw/chl+u3fB5ykBZFmnvpyZHebY0MCQE4vvYcsCLpCeaQ1BkH7HdJYavNSqF0WDLeo4IPHQaQ==",
|
|
1030
|
+
"dev": true,
|
|
1031
|
+
"dependencies": {
|
|
1032
|
+
"buffer-shims": "~1.0.0",
|
|
1033
|
+
"core-util-is": "~1.0.0",
|
|
1034
|
+
"inherits": "~2.0.1",
|
|
1035
|
+
"isarray": "~1.0.0",
|
|
1036
|
+
"process-nextick-args": "~1.0.6",
|
|
1037
|
+
"string_decoder": "~1.0.0",
|
|
1038
|
+
"util-deprecate": "~1.0.1"
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
"node_modules/readdirp": {
|
|
1042
|
+
"version": "3.6.0",
|
|
1043
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
|
1044
|
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
|
1045
|
+
"dev": true,
|
|
1046
|
+
"dependencies": {
|
|
1047
|
+
"picomatch": "^2.2.1"
|
|
1048
|
+
},
|
|
1049
|
+
"engines": {
|
|
1050
|
+
"node": ">=8.10.0"
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
"node_modules/regexp-clone": {
|
|
1054
|
+
"version": "0.0.1",
|
|
1055
|
+
"resolved": "https://registry.npmjs.org/regexp-clone/-/regexp-clone-0.0.1.tgz",
|
|
1056
|
+
"integrity": "sha512-tfYXF0HXEYh3AtgdjqNLQ8+tmZSAKIS7KtOjmB1laJgfbsi+Lf2RVNwLZVOE3U27yBXikzQuIXglLlakvb8Thw==",
|
|
1057
|
+
"dev": true
|
|
1058
|
+
},
|
|
1059
|
+
"node_modules/require_optional": {
|
|
1060
|
+
"version": "1.0.1",
|
|
1061
|
+
"resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz",
|
|
1062
|
+
"integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==",
|
|
1063
|
+
"dev": true,
|
|
1064
|
+
"dependencies": {
|
|
1065
|
+
"resolve-from": "^2.0.0",
|
|
1066
|
+
"semver": "^5.1.0"
|
|
1067
|
+
}
|
|
1068
|
+
},
|
|
1069
|
+
"node_modules/require-directory": {
|
|
1070
|
+
"version": "2.1.1",
|
|
1071
|
+
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
|
|
1072
|
+
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
|
|
1073
|
+
"dev": true,
|
|
1074
|
+
"engines": {
|
|
1075
|
+
"node": ">=0.10.0"
|
|
1076
|
+
}
|
|
1077
|
+
},
|
|
1078
|
+
"node_modules/resolve-from": {
|
|
1079
|
+
"version": "2.0.0",
|
|
1080
|
+
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz",
|
|
1081
|
+
"integrity": "sha512-qpFcKaXsq8+oRoLilkwyc7zHGF5i9Q2/25NIgLQQ/+VVv9rU4qvr6nXVAw1DsnXJyQkZsR4Ytfbtg5ehfcUssQ==",
|
|
1082
|
+
"dev": true,
|
|
1083
|
+
"engines": {
|
|
1084
|
+
"node": ">=0.10.0"
|
|
1085
|
+
}
|
|
1086
|
+
},
|
|
1087
|
+
"node_modules/safe-buffer": {
|
|
1088
|
+
"version": "5.2.1",
|
|
1089
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
1090
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
1091
|
+
"dev": true,
|
|
1092
|
+
"funding": [
|
|
1093
|
+
{
|
|
1094
|
+
"type": "github",
|
|
1095
|
+
"url": "https://github.com/sponsors/feross"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"type": "patreon",
|
|
1099
|
+
"url": "https://www.patreon.com/feross"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"type": "consulting",
|
|
1103
|
+
"url": "https://feross.org/support"
|
|
1104
|
+
}
|
|
1105
|
+
]
|
|
1106
|
+
},
|
|
1107
|
+
"node_modules/semver": {
|
|
1108
|
+
"version": "5.7.2",
|
|
1109
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
|
|
1110
|
+
"integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
|
|
1111
|
+
"dev": true,
|
|
1112
|
+
"bin": {
|
|
1113
|
+
"semver": "bin/semver"
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
"node_modules/serialize-javascript": {
|
|
1117
|
+
"version": "6.0.0",
|
|
1118
|
+
"resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz",
|
|
1119
|
+
"integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==",
|
|
1120
|
+
"dev": true,
|
|
1121
|
+
"dependencies": {
|
|
1122
|
+
"randombytes": "^2.1.0"
|
|
1123
|
+
}
|
|
1124
|
+
},
|
|
1125
|
+
"node_modules/should": {
|
|
1126
|
+
"version": "13.2.3",
|
|
1127
|
+
"resolved": "https://registry.npmjs.org/should/-/should-13.2.3.tgz",
|
|
1128
|
+
"integrity": "sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ==",
|
|
1129
|
+
"dev": true,
|
|
1130
|
+
"dependencies": {
|
|
1131
|
+
"should-equal": "^2.0.0",
|
|
1132
|
+
"should-format": "^3.0.3",
|
|
1133
|
+
"should-type": "^1.4.0",
|
|
1134
|
+
"should-type-adaptors": "^1.0.1",
|
|
1135
|
+
"should-util": "^1.0.0"
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
"node_modules/should-equal": {
|
|
1139
|
+
"version": "2.0.0",
|
|
1140
|
+
"resolved": "https://registry.npmjs.org/should-equal/-/should-equal-2.0.0.tgz",
|
|
1141
|
+
"integrity": "sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==",
|
|
1142
|
+
"dev": true,
|
|
1143
|
+
"dependencies": {
|
|
1144
|
+
"should-type": "^1.4.0"
|
|
1145
|
+
}
|
|
1146
|
+
},
|
|
1147
|
+
"node_modules/should-format": {
|
|
1148
|
+
"version": "3.0.3",
|
|
1149
|
+
"resolved": "https://registry.npmjs.org/should-format/-/should-format-3.0.3.tgz",
|
|
1150
|
+
"integrity": "sha512-hZ58adtulAk0gKtua7QxevgUaXTTXxIi8t41L3zo9AHvjXO1/7sdLECuHeIN2SRtYXpNkmhoUP2pdeWgricQ+Q==",
|
|
1151
|
+
"dev": true,
|
|
1152
|
+
"dependencies": {
|
|
1153
|
+
"should-type": "^1.3.0",
|
|
1154
|
+
"should-type-adaptors": "^1.0.1"
|
|
1155
|
+
}
|
|
1156
|
+
},
|
|
1157
|
+
"node_modules/should-type": {
|
|
1158
|
+
"version": "1.4.0",
|
|
1159
|
+
"resolved": "https://registry.npmjs.org/should-type/-/should-type-1.4.0.tgz",
|
|
1160
|
+
"integrity": "sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==",
|
|
1161
|
+
"dev": true
|
|
1162
|
+
},
|
|
1163
|
+
"node_modules/should-type-adaptors": {
|
|
1164
|
+
"version": "1.1.0",
|
|
1165
|
+
"resolved": "https://registry.npmjs.org/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz",
|
|
1166
|
+
"integrity": "sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA==",
|
|
1167
|
+
"dev": true,
|
|
1168
|
+
"dependencies": {
|
|
1169
|
+
"should-type": "^1.3.0",
|
|
1170
|
+
"should-util": "^1.0.0"
|
|
1171
|
+
}
|
|
1172
|
+
},
|
|
1173
|
+
"node_modules/should-util": {
|
|
1174
|
+
"version": "1.0.1",
|
|
1175
|
+
"resolved": "https://registry.npmjs.org/should-util/-/should-util-1.0.1.tgz",
|
|
1176
|
+
"integrity": "sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==",
|
|
1177
|
+
"dev": true
|
|
1178
|
+
},
|
|
1179
|
+
"node_modules/sinon": {
|
|
1180
|
+
"version": "14.0.2",
|
|
1181
|
+
"resolved": "https://registry.npmjs.org/sinon/-/sinon-14.0.2.tgz",
|
|
1182
|
+
"integrity": "sha512-PDpV0ZI3ZCS3pEqx0vpNp6kzPhHrLx72wA0G+ZLaaJjLIYeE0n8INlgaohKuGy7hP0as5tbUd23QWu5U233t+w==",
|
|
1183
|
+
"deprecated": "16.1.1",
|
|
1184
|
+
"dev": true,
|
|
1185
|
+
"dependencies": {
|
|
1186
|
+
"@sinonjs/commons": "^2.0.0",
|
|
1187
|
+
"@sinonjs/fake-timers": "^9.1.2",
|
|
1188
|
+
"@sinonjs/samsam": "^7.0.1",
|
|
1189
|
+
"diff": "^5.0.0",
|
|
1190
|
+
"nise": "^5.1.2",
|
|
1191
|
+
"supports-color": "^7.2.0"
|
|
1192
|
+
},
|
|
1193
|
+
"funding": {
|
|
1194
|
+
"type": "opencollective",
|
|
1195
|
+
"url": "https://opencollective.com/sinon"
|
|
1196
|
+
}
|
|
1197
|
+
},
|
|
1198
|
+
"node_modules/sinon/node_modules/supports-color": {
|
|
1199
|
+
"version": "7.2.0",
|
|
1200
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
1201
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
1202
|
+
"dev": true,
|
|
1203
|
+
"dependencies": {
|
|
1204
|
+
"has-flag": "^4.0.0"
|
|
1205
|
+
},
|
|
1206
|
+
"engines": {
|
|
1207
|
+
"node": ">=8"
|
|
1208
|
+
}
|
|
1209
|
+
},
|
|
1210
|
+
"node_modules/sliced": {
|
|
1211
|
+
"version": "1.0.1",
|
|
1212
|
+
"resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz",
|
|
1213
|
+
"integrity": "sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==",
|
|
1214
|
+
"deprecated": "Unsupported",
|
|
1215
|
+
"dev": true
|
|
1216
|
+
},
|
|
1217
|
+
"node_modules/string_decoder": {
|
|
1218
|
+
"version": "1.0.3",
|
|
1219
|
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz",
|
|
1220
|
+
"integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==",
|
|
1221
|
+
"dev": true,
|
|
1222
|
+
"dependencies": {
|
|
1223
|
+
"safe-buffer": "~5.1.0"
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
"node_modules/string_decoder/node_modules/safe-buffer": {
|
|
1227
|
+
"version": "5.1.2",
|
|
1228
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
1229
|
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
1230
|
+
"dev": true
|
|
1231
|
+
},
|
|
1232
|
+
"node_modules/string-width": {
|
|
1233
|
+
"version": "4.2.3",
|
|
1234
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
1235
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
1236
|
+
"dev": true,
|
|
1237
|
+
"dependencies": {
|
|
1238
|
+
"emoji-regex": "^8.0.0",
|
|
1239
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
1240
|
+
"strip-ansi": "^6.0.1"
|
|
1241
|
+
},
|
|
1242
|
+
"engines": {
|
|
1243
|
+
"node": ">=8"
|
|
1244
|
+
}
|
|
1245
|
+
},
|
|
1246
|
+
"node_modules/strip-ansi": {
|
|
1247
|
+
"version": "6.0.1",
|
|
1248
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
1249
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
1250
|
+
"dev": true,
|
|
1251
|
+
"dependencies": {
|
|
1252
|
+
"ansi-regex": "^5.0.1"
|
|
1253
|
+
},
|
|
1254
|
+
"engines": {
|
|
1255
|
+
"node": ">=8"
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
"node_modules/strip-json-comments": {
|
|
1259
|
+
"version": "3.1.1",
|
|
1260
|
+
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
|
|
1261
|
+
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
|
|
1262
|
+
"dev": true,
|
|
1263
|
+
"engines": {
|
|
1264
|
+
"node": ">=8"
|
|
1265
|
+
},
|
|
1266
|
+
"funding": {
|
|
1267
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"node_modules/supports-color": {
|
|
1271
|
+
"version": "8.1.1",
|
|
1272
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
1273
|
+
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
|
1274
|
+
"dev": true,
|
|
1275
|
+
"dependencies": {
|
|
1276
|
+
"has-flag": "^4.0.0"
|
|
1277
|
+
},
|
|
1278
|
+
"engines": {
|
|
1279
|
+
"node": ">=10"
|
|
1280
|
+
},
|
|
1281
|
+
"funding": {
|
|
1282
|
+
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
"node_modules/to-regex-range": {
|
|
1286
|
+
"version": "5.0.1",
|
|
1287
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
1288
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
1289
|
+
"dev": true,
|
|
1290
|
+
"dependencies": {
|
|
1291
|
+
"is-number": "^7.0.0"
|
|
1292
|
+
},
|
|
1293
|
+
"engines": {
|
|
1294
|
+
"node": ">=8.0"
|
|
1295
|
+
}
|
|
1296
|
+
},
|
|
1297
|
+
"node_modules/type-detect": {
|
|
1298
|
+
"version": "4.0.8",
|
|
1299
|
+
"resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
|
|
1300
|
+
"integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
|
|
1301
|
+
"dev": true,
|
|
1302
|
+
"engines": {
|
|
1303
|
+
"node": ">=4"
|
|
1304
|
+
}
|
|
1305
|
+
},
|
|
1306
|
+
"node_modules/util-deprecate": {
|
|
1307
|
+
"version": "1.0.2",
|
|
1308
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
1309
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
1310
|
+
"dev": true
|
|
1311
|
+
},
|
|
1312
|
+
"node_modules/which": {
|
|
1313
|
+
"version": "2.0.2",
|
|
1314
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
1315
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
1316
|
+
"dev": true,
|
|
1317
|
+
"dependencies": {
|
|
1318
|
+
"isexe": "^2.0.0"
|
|
1319
|
+
},
|
|
1320
|
+
"bin": {
|
|
1321
|
+
"node-which": "bin/node-which"
|
|
1322
|
+
},
|
|
1323
|
+
"engines": {
|
|
1324
|
+
"node": ">= 8"
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
"node_modules/workerpool": {
|
|
1328
|
+
"version": "6.2.0",
|
|
1329
|
+
"resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz",
|
|
1330
|
+
"integrity": "sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==",
|
|
1331
|
+
"dev": true
|
|
1332
|
+
},
|
|
1333
|
+
"node_modules/wrap-ansi": {
|
|
1334
|
+
"version": "7.0.0",
|
|
1335
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
1336
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
1337
|
+
"dev": true,
|
|
1338
|
+
"dependencies": {
|
|
1339
|
+
"ansi-styles": "^4.0.0",
|
|
1340
|
+
"string-width": "^4.1.0",
|
|
1341
|
+
"strip-ansi": "^6.0.0"
|
|
1342
|
+
},
|
|
1343
|
+
"engines": {
|
|
1344
|
+
"node": ">=10"
|
|
1345
|
+
},
|
|
1346
|
+
"funding": {
|
|
1347
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
1348
|
+
}
|
|
1349
|
+
},
|
|
1350
|
+
"node_modules/wrappy": {
|
|
1351
|
+
"version": "1.0.2",
|
|
1352
|
+
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
1353
|
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
1354
|
+
"dev": true
|
|
1355
|
+
},
|
|
1356
|
+
"node_modules/y18n": {
|
|
1357
|
+
"version": "5.0.8",
|
|
1358
|
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
|
1359
|
+
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
|
|
1360
|
+
"dev": true,
|
|
1361
|
+
"engines": {
|
|
1362
|
+
"node": ">=10"
|
|
1363
|
+
}
|
|
1364
|
+
},
|
|
1365
|
+
"node_modules/yargs": {
|
|
1366
|
+
"version": "16.2.0",
|
|
1367
|
+
"resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
|
|
1368
|
+
"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
|
|
1369
|
+
"dev": true,
|
|
1370
|
+
"dependencies": {
|
|
1371
|
+
"cliui": "^7.0.2",
|
|
1372
|
+
"escalade": "^3.1.1",
|
|
1373
|
+
"get-caller-file": "^2.0.5",
|
|
1374
|
+
"require-directory": "^2.1.1",
|
|
1375
|
+
"string-width": "^4.2.0",
|
|
1376
|
+
"y18n": "^5.0.5",
|
|
1377
|
+
"yargs-parser": "^20.2.2"
|
|
1378
|
+
},
|
|
1379
|
+
"engines": {
|
|
1380
|
+
"node": ">=10"
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
"node_modules/yargs-parser": {
|
|
1384
|
+
"version": "20.2.4",
|
|
1385
|
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz",
|
|
1386
|
+
"integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==",
|
|
1387
|
+
"dev": true,
|
|
1388
|
+
"engines": {
|
|
1389
|
+
"node": ">=10"
|
|
1390
|
+
}
|
|
1391
|
+
},
|
|
1392
|
+
"node_modules/yargs-unparser": {
|
|
1393
|
+
"version": "2.0.0",
|
|
1394
|
+
"resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz",
|
|
1395
|
+
"integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==",
|
|
1396
|
+
"dev": true,
|
|
1397
|
+
"dependencies": {
|
|
1398
|
+
"camelcase": "^6.0.0",
|
|
1399
|
+
"decamelize": "^4.0.0",
|
|
1400
|
+
"flat": "^5.0.2",
|
|
1401
|
+
"is-plain-obj": "^2.1.0"
|
|
1402
|
+
},
|
|
1403
|
+
"engines": {
|
|
1404
|
+
"node": ">=10"
|
|
1405
|
+
}
|
|
1406
|
+
},
|
|
1407
|
+
"node_modules/yocto-queue": {
|
|
1408
|
+
"version": "0.1.0",
|
|
1409
|
+
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
|
|
1410
|
+
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
|
|
1411
|
+
"dev": true,
|
|
1412
|
+
"engines": {
|
|
1413
|
+
"node": ">=10"
|
|
1414
|
+
},
|
|
1415
|
+
"funding": {
|
|
1416
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
}
|
|
1420
|
+
}
|